DBA Data[Home] [Help]

APPS.JTF_DIAG_HELPER_UTILS dependencies on JTF_DIAG_INPUTTBL

Line 57: -- value for, and the JTF_DIAG_INPUTTBL of objects (table of JTF_DIAG_INPUTS)

53: END addInput;
54:
55: ----------------------------------------------------------------------
56: -- getInputValue takes the argument name that we want the associated
57: -- value for, and the JTF_DIAG_INPUTTBL of objects (table of JTF_DIAG_INPUTS)
58: -- the associated value is extracted from the JTF_DIAG_INPUTTBL and returned
59: -- for the passed in argument name.
60: ----------------------------------------------------------------------
61:

Line 58: -- the associated value is extracted from the JTF_DIAG_INPUTTBL and returned

54:
55: ----------------------------------------------------------------------
56: -- getInputValue takes the argument name that we want the associated
57: -- value for, and the JTF_DIAG_INPUTTBL of objects (table of JTF_DIAG_INPUTS)
58: -- the associated value is extracted from the JTF_DIAG_INPUTTBL and returned
59: -- for the passed in argument name.
60: ----------------------------------------------------------------------
61:
62: FUNCTION GET_INPUT_VALUE(argName IN VARCHAR2,

Line 63: inputs IN JTF_DIAG_INPUTTBL) RETURN VARCHAR2 IS

59: -- for the passed in argument name.
60: ----------------------------------------------------------------------
61:
62: FUNCTION GET_INPUT_VALUE(argName IN VARCHAR2,
63: inputs IN JTF_DIAG_INPUTTBL) RETURN VARCHAR2 IS
64: input JTF_DIAG_INPUTS;
65: BEGIN
66: FOR v_counter IN 1..inputs.COUNT LOOP
67: input := inputs(v_counter);