DBA Data[Home] [Help]

APPS.JL_ZZ_SYS_OPTIONS_PKG dependencies on AR_SYSTEM_PARAMETERS_ALL

Line 82: x_payment_action ar_system_parameters_all.global_attribute20%type;

78: (
79: p_org_id IN NUMBER
80: ) RETURN VARCHAR2 IS
81:
82: x_payment_action ar_system_parameters_all.global_attribute20%type;
83:
84: BEGIN
85:
86: BEGIN

Line 91: From ar_system_parameters_all

87:
88: /* 1-Anticipate; 2-Postpone; 3-Change Manually (previously Keep) */
89: Select global_attribute3
90: Into x_payment_action
91: From ar_system_parameters_all
92: Where nvl(org_id,-99) = nvl(p_org_id,-99);
93: Exception
94: when others THEN
95: x_payment_action := NULL;

Line 161: x_tx_use_wh_oper ar_system_parameters_all.global_attribute19%type;

157: (
158: p_org_id IN NUMBER
159: ) RETURN VARCHAR2 IS
160:
161: x_tx_use_wh_oper ar_system_parameters_all.global_attribute19%type;
162:
163: BEGIN
164:
165: BEGIN

Line 169: From ar_system_parameters_all

165: BEGIN
166:
167: Select global_attribute19
168: Into x_tx_use_wh_oper
169: From ar_system_parameters_all
170: Where nvl(org_id,-99) = nvl(p_org_id,-99);
171: Exception
172: when others THEN
173: x_tx_use_wh_oper := NULL;