I'm trying to determine the steps my ERP system uses when creating new serial numbers for parts in our database. I set the profile trace to respond to the EventsTSQL-SQL:StmtCompletedStored Procedures-SP:StmtCompletedI get the following at the point where the record is saved: INSERT INTO QALOTC (FCTYPE, FCDOC, FCPARTNO, FCPARTREV, FCLOT, FCUSEINTYPE, FCUSEINDOC, FCUSEINPART, FCUSEINREV, FCUSEINLOT, FNQUANTITY, FCNUMBER, FCCOMPANY, FDDATE, FCMEASURE, FAC, USEINFAC, FCUDREV)VALUES (@P1, @P2, @P3, @P4, @P5, @P6, @P7, @P8, @P9, @P10, @P11, @P12, @P13, @P14, @P15, @P16, @P17, @P18)
The values section are SQL Variables, right? How can I determine how those are figured or can't I because they are part of the ERP Program? TIA.