DBA Data[Home] [Help]

APPS.ECX_RULE dependencies on WF_EVENT_FUNCTIONS_PKG

Line 84: i_debug_level := wf_event_functions_pkg.subscriptionparameters(debug_level, 'ECX_DEBUG_LEVEL');

80: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
81: 'Debug Level ' || debug_level);
82: end if;
83:
84: i_debug_level := wf_event_functions_pkg.subscriptionparameters(debug_level, 'ECX_DEBUG_LEVEL');
85:
86: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
87: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
88: 'Debug Level from subscription' || i_debug_level);

Line 333: r_dbg := wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_DEBUG_LEVEL');

329: begin
330: -- Get debug level, and default if not found
331: if r_myparams is not null
332: then
333: r_dbg := wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_DEBUG_LEVEL');
334: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
335: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
336: 'ECX_DEBUG_LEVEL:'||r_dbg||'XX');
337: end if;

Line 358: r_transaction_type := wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_TRANSACTION_TYPE');

354: begin
355: -- Get TRANSACTION_TYPE
356: if r_myparams is not null
357: then
358: r_transaction_type := wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_TRANSACTION_TYPE');
359: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
360: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
361: 'ECX_TRANSACTION_TYPE:'||r_transaction_type);
362: end if;

Line 377: wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_TRANSACTION_SUBTYPE');

373: -- Get TRANSACTION_SUBTYPE
374: if r_myparams is not null
375: then
376: r_transaction_subtype :=
377: wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_TRANSACTION_SUBTYPE');
378: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
379: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
380: 'ECX_TRANSACTION_SUBTYPE:'||r_transaction_subtype);
381: end if;

Line 394: r_party_site_id := wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_PARTY_SITE_ID');

390:
391: begin
392: -- Get PARTY_SITE_ID
393: if r_myparams is not null then
394: r_party_site_id := wf_event_functions_pkg.subscriptionparameters(r_myparams,'ECX_PARTY_SITE_ID');
395: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
396: wf_log_pkg.string(wf_log_pkg.level_statement, l_module,
397: 'ECX_PARTY_SITE_ID:'||r_party_site_id);
398: end if;

Line 685: dbg := wf_event_functions_pkg.

681: end;
682:
683: begin
684: -- Get debug level, and default if not found
685: dbg := wf_event_functions_pkg.
686: subscriptionparameters(myparams,'ECX_DEBUG_LEVEL');
687:
688: if dbg is null then
689: dbg := 0;

Line 703: mapcode := wf_event_functions_pkg.

699: end;
700:
701: begin
702: -- get map code
703: mapcode := wf_event_functions_pkg.
704: subscriptionparameters(myparams,'ECX_MAP_CODE');
705: exception
706: when others then
707: if (wf_log_pkg.level_error >= fnd_log.g_current_runtime_level) then

Line 1184: l_debug_level := wf_event_functions_pkg.subscriptionparameters(l_sub_param,

1180: if (l_sub_param is null) then
1181: return;
1182: end if;
1183:
1184: l_debug_level := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1185: 'ECX_DEBUG_LEVEL');
1186:
1187: -- if no ecx_debug_level is specified, then it should use the profile option.
1188: if l_debug_level is null then

Line 1193: l_transaction_type := wf_event_functions_pkg.subscriptionparameters(l_sub_param,

1189: return;
1190: end if;
1191:
1192: -- At this point, there is some debug level is set at subscription.
1193: l_transaction_type := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1194: 'ECX_TRANSACTION_TYPE');
1195:
1196: l_transaction_subtype := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1197: 'ECX_TRANSACTION_SUBTYPE');

Line 1196: l_transaction_subtype := wf_event_functions_pkg.subscriptionparameters(l_sub_param,

1192: -- At this point, there is some debug level is set at subscription.
1193: l_transaction_type := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1194: 'ECX_TRANSACTION_TYPE');
1195:
1196: l_transaction_subtype := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1197: 'ECX_TRANSACTION_SUBTYPE');
1198:
1199: l_party_site_id := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1200: 'ECX_PARTY_SITE_ID');

Line 1199: l_party_site_id := wf_event_functions_pkg.subscriptionparameters(l_sub_param,

1195:
1196: l_transaction_subtype := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1197: 'ECX_TRANSACTION_SUBTYPE');
1198:
1199: l_party_site_id := wf_event_functions_pkg.subscriptionparameters(l_sub_param,
1200: 'ECX_PARTY_SITE_ID');
1201:
1202: if (l_transaction_type is null) and (l_party_site_id is null) and
1203: (l_transaction_subtype is null) then