Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tzamora

    Built In Functions

    PeopleBooks PeopleCode Built-in Functions This chapter provides a reference to PeopleCode built-in functions and language constructs and discusses: PeopleCode Typographical Conventions Functions by category PeopleCode built-in functions and language constructs...
  2. tzamora

    converting date to month string

    create an expression SELECT A.ACQUISITION_DT, MONTH( A.ACQUISITION_DT) FROM PS_ASSET A WHERE A.ASSET_ID = '000000018629' http://programmer-by-the-hour.com
  3. tzamora

    Hi All, Can you pls tell me how to

    select SUM(XX.LENGTH) FROM SYSIBM.SYSCOLUMNS XX where XX.tbcreator = 'DBAADMIN' AND XX.tbname = 'YOUR_TABLE_NAME' http://programmer-by-the-hour.com
  4. tzamora

    ibm db2 if statement

    This should work... Select * from SW.ADDR_VERIFICATION where QUADRANT = pQUAD and STREET = pSTREET and pADDRESS_NUMBER between LOW_ADDRESS and HIGH_ADDRESS and STREET_TYPE between (CASE WHEN pSTREET_TYPE IS NULL THEN ' ' ELSE pSTREET_TYPE END) and...
  5. tzamora

    ibm db2 if statement

    Try something like this and you won't need the "IF"... Select * from SW.ADDR_VERIFICATION where QUADRANT = pQUAD and STREET = pSTREET and pADDRESS_NUMBER between LOW_ADDRESS and HIGH_ADDRESS and STREET_TYPE LIKE (CASE WHEN pSTREET_TYPE IS NULL...
  6. tzamora

    Triggers refining a statement

    Don't you need to say ":max" instead just "max" http://programmer-by-the-hour.com
  7. tzamora

    Problem using PS Query

    You could try concatenating in a ps_query expression... i.e. select tAP3L.BUSINESS_UNIT||'`'||tAP3H.journal_id FROM PS_JRNL_HEADER tAP3H, PS_JRNL_LN tAP3L http://programmer-by-the-hour.com
  8. tzamora

    Include local variable in cursor

    You can create a temp table to include your @local_vars and then select from it. http://programmer-by-the-hour.com
  9. tzamora

    Error with German Military Fields

    Sounds like a new field you've added and have not re-built the table (Personal_DATA). Be careful when building the table if you have data in it already. Back-it up, build table, re-load it. Best Regards, http://programmer-by-the-hour.com
  10. tzamora

    Create new "module" - Anyone experienced here?

    In reference to the "invalid column name" error, while you might have added the field in PeopleSoft, it sounds like the field is not on the database table. To verify that the table did get created do the following... If Oracle then do a (describe on the table). If MSSQL, then...
  11. tzamora

    Is there an SQR program that does Mass Increase for Salaried Employees

    This sounds like a job for a MassChange process... http://programmer-by-the-hour.com
  12. tzamora

    App Designer - Query - Create Expression

    An expression is just a column on the query and you don't have to create a field to have an expression. If Oracle you'd probably use DECODE() else CASE. SELECT A.BUSINESS_UNIT, A.ASSET_ID, DECODE ( A.ASSET_ID,'000000000001','ONE','NOT-ONE') FROM PS_ASSET A WHERE A.BUSINESS_UNIT = 'AUS01'...
  13. tzamora

    Sharing variables from subreport group

    I would created a view of what is on the sub-report to use on my main report... Hope this helps! http://programmer-by-the-hour.com
  14. tzamora

    Peoplesoft ERP fault monitoring

    Hope this helps... If you turn trace on, with options to trace>>sql,>>peoplecode. then you will have log files to look at http://programmer-by-the-hour.com
  15. tzamora

    PL/SQL w/ PS?

    I just tried it... Field(execute_pb) attatched to a "command button" in the FieldChange-event, I added the following... SQLExec("EXECUTE 8x_ztree1 'SHARE' ,'BD_DEPARTMENTS','ALGO')"); http://programmer-by-the-hour.com
  16. tzamora

    PL/SQL w/ PS?

    Hope this helps... on a command button SqlExec("myproc") http://programmer-by-the-hour.com
  17. tzamora

    Connecting VB to Oracle 8i using ADO

    Need help with the following... Connecting VB to Oracle 8i using ADO http://programmer-by-the-hour.com
  18. tzamora

    In my MDIForm I've got this code be

    I tried this and I get an error... Run-Time error '426': Only one MDI form allowed. ... MDIParentFormName.sbStatusBar.Panels.Item(1).Text = "location (" & g_sys_location & ") Year (" & g_sys_Year & ") Season (" & g_sys_Season & ")&quot...
  19. tzamora

    In my MDIForm I've got this code be

    In my MDIForm I've got this code below and it works fine... public sub updbar() sbStatusBar.Panels.Item(1).Text = "location (" & g_sys_location & ") Year (" & g_sys_Year & ") Season (" & g_sys_Season & ")" From any MDIchild forms, how can I reference the...
  20. tzamora

    PS Reporting: Crystal or Cognos

    Crystal and SQR is included with PeopleSoft and is the most common combination. PeopleSoft does include some canned reports, but like every business there is always a need for some custom reports. As far as format well Crystal is Crystal and SQR is batch process and one can use any editor...

Part and Inventory Search

Back
Top