Search results

  1. R

    Buffer Error

    Hi Team, I am writing a program to insert/update/delete records in db table. In this, I have defined 2-3 buffers for a table. 1) It is working fine in case of insert new records 2) It is working fine in case of update records 3) Working on to delete records in report mode 4) but giving below...
  2. R

    Question Regarding Pre-processor

    Hi All, I found below code snippet in one of the program. I do not understand the purpose of using "{&GLTRMTA-P-TAG4}". Even this per-porcessor is not defined anywhere. Could you some tell me the purpose of usng this ? Thank You. CREATE glt_det. glt_det.glt_domain = global_domain...
  3. R

    Capturing The Part Maint Details

    Hello Mfg/pro Users: Version QAD eB2.1 I need to capture below data whenever someone is chaning part master data using item maintenance of usnig some other program. 1) user id who changed part details using 1.4.3 2) program name if part master data is updated through any other program 3) old...
  4. R

    Trigger

    There is an item maintenance screen where user can update item status. Need to create a report where below details need to be added: 1) If some user is changing the item status through screen then his user id, old status,new status and date of modification 2) If changes is made thorugh any...
  5. R

    Procedure with same name.

    Can we have same name of the internal procedure say (try_load)? Ex: try_load procedure is defined in a.p & b.p and both .p are running as persistent/super procedure? Can we get error sometime while calling try_load by accessing through handle? Kindly advise.
  6. R

    Critical issue: Persistent procedure.

    /* plan.p*/ &if defined(plan-library-defined) = 0 &then &glob plan-library-defined YES {sys/procload.i} /* Persistent procedure handler. */ &if defined(csm-plan-super-proc) = 0 and {&v9} &then f-GetHandle("csm/plan.p":U). /* Load super-procedure. */ &else procedure plan-getPlansForProduct...
  7. R

    Buffer Advantages

    What are the advantages/disadvantages of creating buffer(s) of database table? Throughout my application, before doing anything with the db table, develpoer has defined the buffers for db table? Thanks
  8. R

    Populating table through csv file.

    Part of code : define tem-table t-acct like acct. input stream s-in from a.csv. repeat transaction: create t-acct. import stream s-in delimiter <tab> t-acct except migCreateDate migExtractDate no-error. -- -- end. I understand that the program will read a line and will updalod line data into...
  9. R

    Unable to show complete value in report.

    There is a field problem-desc in database table and data type is char with format x(30). But this is holding the value more than 30 in length.For example there is a value in this field - "loaddb swt/orcdrstatus.p : No product history (csm-productHistory) record for CPS call" Similar to this...
  10. R

    BI threshold

    Hi, I am facing BI threshold(BI size is exceeding) issue for a perticular process. So could anybody let me know the available options to get rid of this issue. Thanks Ravi
Top