With BOI there is provision to invoke sage ERP window from other software. I can pass in the primary key to load a particular record when this window appears. eg. Following lines of code will open up customer maintenance window with the record having primary key as "01ABF": Set oBUSOBJ = oScript.NewObject("AR_Customer_UI", oSession) oBUSOBJ.nProcess("01ABF") Is there a way to let this process happen but load up new values for this record instead of those in the database so that user(coming from other software system) can directly go forward and save the record with updated values instead of typing them again.
↧