Search results

  1. Ramesh Chand Rebari

    Question Monitoring R-code activity

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

    Progress startup parameter

    How we can list the startup parameter by an procedure?
  3. 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...
  4. 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...
  5. 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...
  6. 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).
  7. 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.
  8. 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...
  9. Ramesh Chand Rebari

    How to create a table and populate data by using .txt file .

    DEFINE VARIABLE lcInfo as character no-undo. DEFINE VARIABLE lcTableName AS CHARACTER NO-UNDO. DEFINE variable htt as handle no-undo. DEFINE variable hBuf_TT_Empl as handle. input from "C:\Users\rrebari\Desktop\input3.txt". IMPORT UNFORMATTED lcInfo. IF TRIM(lcInfo) > ""...
  10. Ramesh Chand Rebari

    Learn Progress

    I freshly new in progress ABL, Where from i should learn this technology. And how to learn. Can anybody help me out.
Top