Oracle Forms Trace Local_PU.START Arguments
Forms Trace produces a trace file that includes the following text:
4130 [Local_PU.START,7] Timestamp=105386, EndEvent=4131, FormName=PERSON_LOOKUP(4), Name=/user_procs.plx/UPDATE_PERSON_INFORMATION
[Arguments]
Type=IN Position=0 DataType=CHAR Value=002030047
Type=OUT Position=1 DataType=NUMBER Value=(null)
Type=OUT Position=2 DataType=NUMBER Value=(null)
Type=OUT Position=3 DataType=NUMBER Value=(null)
Type=IN Position=4 DataType=CHAR Value=Y
4131 [Local_PU.END,7] Timestamp=105604, StartEvent=4130, Duration=218
I am trying to understand the [Arguments] list and at what point this is created. Specifically, are the values indicative of both the IN and OUT values after execution of the procedure? In my example above, does this indicate that the procedure completed successfully and is actually returning OUT values of (null).
4130 [Local_PU.START,7] Timestamp=105386, EndEvent=4131, FormName=PERSON_LOOKUP(4), Name=/user_procs.plx/UPDATE_PERSON_INFORMATION
[Arguments]
Type=IN Position=0 DataType=CHAR Value=002030047
Type=OUT Position=1 DataType=NUMBER Value=(null)
Type=OUT Position=2 DataType=NUMBER Value=(null)
Type=OUT Position=3 DataType=NUMBER Value=(null)
Type=IN Position=4 DataType=CHAR Value=Y
4131 [Local_PU.END,7] Timestamp=105604, StartEvent=4130, Duration=218
I am trying to understand the [Arguments] list and at what point this is created. Specifically, are the values indicative of both the IN and OUT values after execution of the procedure? In my example above, does this indicate that the procedure completed successfully and is actually returning OUT values of (null).
0