[Home] [Help]
64: -- 1. G_Function_Stack holds the name of the called functions in a stack format.
65: -- 2. G_Counter is used to mark the current location in the function stack.
66: -- 3. G_Space is used to provide indentation in the stack of function calls
67:
68: G_Function_Stack PN_PLSQL_DATATYPES.Char50TabTyp;
69: G_Function_Counter NUMBER := 0;
70: G_Space VARCHAR2(4000);
71:
72: -- -------------------------------------------