Search results

  1. Ramesh Chand Rebari

    Question Monitoring R-code activity

    My question about R-code execution environment statistics. how we will use the -y and -yd parameters. I have seen
  2. Ramesh Chand Rebari

    Question Monitoring R-code activity

    I have seen this document https://documentation.progress.com/output/OpenEdge102a/oe102ahtml/wwhelp/wwhimpl/js/html/wwhelp.htm?href=dpspr/dpspr-1-1.html. So want to know is there any way to get these information by a progress procedure or any?
  3. Ramesh Chand Rebari

    Question Monitoring R-code activity

    How to monitor the R-Code activity? Could we write a code to get it?
  4. Ramesh Chand Rebari

    Progress startup parameter

    Thanks Osborne :) This is I want.
  5. Ramesh Chand Rebari

    Progress startup parameter

    I am using progress 11.6v, Windows10. "Database startup parameters? Client startup parameters? Progress version? I understand it as he wants to programmatically enquire of the startup params and display them. " This is I want programmatically please.
  6. Ramesh Chand Rebari

    Progress startup parameter

    How we can list the startup parameter by an procedure?
  7. Ramesh Chand Rebari

    Answered How To capture the trigger actions into a table.

    thanks tom next time i will try my best ,I'm just beginner so learning from you people. thanks again
  8. Ramesh Chand Rebari

    Answered How To capture the trigger actions into a table.

    main Procedure {Table_audit.i &Table = "Order" }/*here we included the session.i file that is used for auditing*/ define variable lChoice as logical no-undo. define variable iCustNum as integer no-undo. /*Frame for all the Creating or Updating activities*/ define frame CustInfo with size...
  9. Ramesh Chand Rebari

    Question How to Use Table name Dynamically in this Programe?

    "table_capture.p" {Table_Audit.i} /*here we included the session.i file that is used for auditing*/ define variable lChoice as logical no-undo. define variable iCustNum as integer no-undo. /*Frame for all the Creating or Updating activities*/ define frame CustInfo with size 500 by 20...
  10. Ramesh Chand Rebari

    Write an ABL which captures the triggers of Customer table and stores it in a table "EventLog" (action,time,date,oldvalue,newvalue).

    i'm not saying to write code i just want to know flow how to get out from this stuck,what will bee the steps to do.
  11. Ramesh Chand Rebari

    Write an ABL which captures the triggers of Customer table and stores it in a table "EventLog" (action,time,date,oldvalue,newvalue).

    Dear Sir I want to use Trigger for write,create,delete on customer table ,then i want to store changes that changes(ex. Action, time, date, OldValue ,NewValue) into a table table name (ex EventLog).
  12. Ramesh Chand Rebari

    Question How to audit database changes into a table by using Triggers.

    I want to use Trigger for Write, Create, Delete of Customer table and i want to store that changes(action,time,date,oldvalue,newvalue) into a table (Ex. EventLog) This is the my Question:- Please Write an ABL program which captures the triggers of Customer table and stores it in a table...
  13. Ramesh Chand Rebari

    Write an ABL which captures the triggers of Customer table and stores it in a table "EventLog" (action,time,date,oldvalue,newvalue).

    and stores it in a table "EventLog" (action,time,date,oldvalue,newvalue).
  14. Ramesh Chand Rebari

    Question How to create table ?

    Table has Student_name,Student_id,Marks,Rank all should be dynamic.rank will be according to the marks, I provides Student_id ,marks randomly by random function as random number an also using sequence.
  15. Ramesh Chand Rebari

    Question create an internal procedure which takes input as a customer number and outputs the orders(include all fields of that Order) of that customer.

    I am able to get how many Orders of the Customer (that is entered by user). but am not able to get orders of that customer that should be return by internal procedure. define variable iNum as integer no-undo. define variable istatus as integer no-undo. form iNum label "enter...
Top