Search results

  1. Nikhil Limaye

    Execution Time Of a Batch Program

    Solution will depend on what is prg1 doing. If it is supposed to commit something on the DB and based on successful commit prg2 is to be triggered then above solutions won't help. Can you please specify more details?
  2. Nikhil Limaye

    Question How to recognize key f4 in ICT trigger program?

    ON ENDKEY ANYWHERE DO: MESSAGE "F4 key pressed" VIEW-AS ALERT-BOX. END. /* On Endkey */ Does the above code help?
  3. Nikhil Limaye

    Question 25.13.1 CIM loader spreadsheet

    What do you want? Do you want the code or spreadsheet columns?
  4. Nikhil Limaye

    Calculating previous 18 months in an array

    Yes you are right Stefan. I didn't consider the date format.
  5. Nikhil Limaye

    Calculating previous 18 months in an array

    Code below could be another way of doing it - /********************************************************************/ def var m_cnt as integer. def var m_date as date. ASSIGN m_date = today. do m_cnt = 1 to 18: if month(m_date) <> 3 then ASSIGN m_date = m_date - 30. else assign m_date =...
  6. Nikhil Limaye

    Question Need to get Date Range for Next 24 months

    Here is a quick code that will help you generate the dates that you are wanting - Assumption - 24 months = 24 * 30 = 720 days. Interval is 90 days. Thus, 720 / 90 = 8. Hence, the variable below is defined as Array of 8 Elements. DEFINE VARIABLE m_date AS DATE EXTENT 8 NO-UNDO. DEFINE VARIABLE...
  7. Nikhil Limaye

    Newbie NetUI question -- where is client propath set?

    There are 4 components in .NETUI - AS - App Server WS - Webspeed Broker connmgr - Connection Manager Script telnet - Telnet Connection Script AS & WS definition is located in ubroker.properties. This file is normally located in $DLC/properties. $DLC normally points to PROGRESS install...
  8. Nikhil Limaye

    Need to know the table name

    I assume you don't need to know the table. I suggest you use the standard QAD Include to determine if GL Period is open for a particular module. Below is the include file and the syntax. {gpglef.i ""AP"" entity effdate} Entity = Entity Code effdate = Transaction effective date
  9. Nikhil Limaye

    Need help in CIM program.

    The code should look something like this - DEFINE VARIABLE m_flag AS LOGICAL NO-UNDO. {gprunp.i "gpglvpl" "p" "initialize"} {gprunp.i "gpglvpl" "p" "set_disp_msgs" "(input false)"} {gprunp.i "gpglvpl" "p" "validate_fullcode" "(INPUT poacct, input posub, input pocc, """", OUTPUT m_flag)"}...
Top