Recent content by daranroo7

  1. daranroo7

    27.10 (Customer Credit Review/Update) Comments load issue.

    Hi, I guess character length for each line is 108 (do not remember exactly). Split your "comments" value accordingly and load the same within a loop. The CIM character for "Enter" is "space". Regards, Daniel Ranjit.R
  2. daranroo7

    Remove duplicates from Temp table.

    Prashanth, The way which i can see here is, Group the temp-table records by a and b fields (that is break by). then "accumulate" the value of "c" for each record in the temp-table. IF last-of() loop, create another temp-table and store the "Accum" value of "c" there which will end up in creating...
  3. daranroo7

    7.9.1 Picklist/Pre-Shipper - Automatic

    please also check whether the SO is on credit Hold. Thanks and Regards, Daniel Ranjit.R
  4. daranroo7

    Transaction and Buffer Scope

    Hi, I was trying to understand the transaction scope at par with buffer scope. Below is the code which i tried out. Def var vname like customer.custname no-undo. update vname. ************** Procedure proc1: define buffer bcust for customer. Do transaction: find first bcust exclusive-lock...
  5. daranroo7

    Dont want to see title header comming from mfdtitle.i

    hi, yes. use {mfdeclre.i} instead. this will take care of all global variable declarations without title. Thanks and Regards, Daniel Ranjit.R
  6. daranroo7

    Field display in Frame

    Thanks to all for your suggestions.....
  7. daranroo7

    how to Go next or move to next frame field

    Hi Namasiva, you have used "go" and "return". "go" does not necessarily mean that if you press "f1" then that code gets invoked. on pressing "f1" if the control goes out of the frame then the code gets invoked. here when you press "f1" from nbr field it goes out of the frame as i suppose both...
  8. daranroo7

    Field display in Frame

    Hi Mjpowell, thanks for your reply. yes i thought of this. but the issue here is there could be more combination of display statements and in turn i will end up with creating that much include file or .p which would not be an ideal one i suppose... pls correct me if i am wrong..n let me...
  9. daranroo7

    Field display in Frame

    Hi, I have a scenario like, there is a display of 10 fields. the existing program displays this using frame. now i need to make one among the field display based on a condition. can i achieve this with display statement? if yes please let me know how? when i tried using "when", though...
  10. daranroo7

    how to join abs_mstr?

    Hi, As said above you can try it in MFG/PRO forum... anyways let me share what i know... abs_mstr in MFG/PRO is a tricky table wherein header and detail records be in the same table. for example: lets say we have a scenario like below;- Shipper number: Shipper1 Sales order number ...
  11. daranroo7

    Help regarding a Trigger program

    Hi Cringer, Thanks for your reply. I wanted to stop the records appearing in the temp table at first place. But i am not allowed to modify the core source code. Regards, Daniel Ranjit.R
  12. daranroo7

    Help regarding a Trigger program

    Dear all, I have a requirement, that i need to control the display of certain data. here are the following details. * The data is displayed from a work file which is new shared and shared in the consecutive programs. * The data is displayed using a scrollable window My requirement is I...
  13. daranroo7

    Editing

    This could be achieved wth triggers... Hope the below code helps... def variable hdle as handle no-undo. on go,enter anywhere do: if frame-field = "dept" then do: /* where dept is the field name for the department field*/ assign hdle = self:handle. do while hdle:screen-value = "Code"...
Top