DBA Data[Home] [Help]

APPS.WSH_DOCUMENT_SETS dependencies on FND_GLOBAL

Line 381: 10002, fnd_global.resp_appl_id,

377: AND application_id = p_application_id
378: AND level_value_id =
379: Decode(level_type_id,
380: 10001, 0,
381: 10002, fnd_global.resp_appl_id,
382: 10003, fnd_global.resp_id,
383: 10004, fnd_global.user_id)
384: AND enabled_flag = 'Y';
385:

Line 382: 10003, fnd_global.resp_id,

378: AND level_value_id =
379: Decode(level_type_id,
380: 10001, 0,
381: 10002, fnd_global.resp_appl_id,
382: 10003, fnd_global.resp_id,
383: 10004, fnd_global.user_id)
384: AND enabled_flag = 'Y';
385:
386: CURSOR c_report_printer

Line 383: 10004, fnd_global.user_id)

379: Decode(level_type_id,
380: 10001, 0,
381: 10002, fnd_global.resp_appl_id,
382: 10003, fnd_global.resp_id,
383: 10004, fnd_global.user_id)
384: AND enabled_flag = 'Y';
385:
386: CURSOR c_report_printer
387: (p_concurrent_program_id NUMBER,

Line 399: 10002, fnd_global.resp_appl_id,

395: AND level_type_id = p_printer_level
396: AND level_value_id =
397: Decode(p_printer_level,
398: 10001, 0,
399: 10002, fnd_global.resp_appl_id,
400: 10003, fnd_global.resp_id,
401: 10004, fnd_global.user_id)
402: AND enabled_flag = 'Y';
403:

Line 400: 10003, fnd_global.resp_id,

396: AND level_value_id =
397: Decode(p_printer_level,
398: 10001, 0,
399: 10002, fnd_global.resp_appl_id,
400: 10003, fnd_global.resp_id,
401: 10004, fnd_global.user_id)
402: AND enabled_flag = 'Y';
403:
404: no_reportset_to_process EXCEPTION;

Line 401: 10004, fnd_global.user_id)

397: Decode(p_printer_level,
398: 10001, 0,
399: 10002, fnd_global.resp_appl_id,
400: 10003, fnd_global.resp_id,
401: 10004, fnd_global.user_id)
402: AND enabled_flag = 'Y';
403:
404: no_reportset_to_process EXCEPTION;
405:

Line 476: l_main_conc_request_id := FND_GLOBAL.CONC_REQUEST_ID;

472:
473: end if;
474:
475: -- bug 1589045
476: l_main_conc_request_id := FND_GLOBAL.CONC_REQUEST_ID;
477: if l_main_conc_request_id = -1 then
478: l_main_conc_request_id := null;
479: end if;
480:

Line 952: WSH_DEBUG_SV.logmsg(l_module_name, 'APPLICATION ID: ' || TO_CHAR ( l_application_id ) || ' RESPONSIBILITY ID: ' || TO_CHAR ( FND_GLOBAL.RESP_ID ) || ' USER ID: ' || TO_CHAR ( FND_GLOBAL.USER_ID ) );

948: --
949: -- Debug Statements
950: --
951: IF l_debug_on THEN --{
952: WSH_DEBUG_SV.logmsg(l_module_name, 'APPLICATION ID: ' || TO_CHAR ( l_application_id ) || ' RESPONSIBILITY ID: ' || TO_CHAR ( FND_GLOBAL.RESP_ID ) || ' USER ID: ' || TO_CHAR ( FND_GLOBAL.USER_ID ) );
953: END IF; --}
954: --
955:
956: if ( l_printer_name IS NULL or l_printer_name = '-1' ) then --{

Line 968: p_user_id => fnd_global.user_id,

964: WSH_REPORT_PRINTERS_PVT.Get_Printer(p_concurrent_program_id => document.concurrent_program_id,
965: p_organization_id => l_organization_id , -- Bug 3534965(3510460 Frontport)
966: p_equipment_type_id => null,
967: p_equipment_instance => null,
968: p_user_id => fnd_global.user_id,
969: p_zone => null,
970: p_department_id => null,
971: p_responsibility_id => fnd_global.resp_id,
972: p_application_id => l_application_id ,

Line 971: p_responsibility_id => fnd_global.resp_id,

967: p_equipment_instance => null,
968: p_user_id => fnd_global.user_id,
969: p_zone => null,
970: p_department_id => null,
971: p_responsibility_id => fnd_global.resp_id,
972: p_application_id => l_application_id ,
973: p_site_id => 0,
974: x_printer => l_printer_name,
975: x_api_status => l_status,