DBA Data[Home] [Help]

APPS.WSH_DOCUMENT_SETS dependencies on FND_GLOBAL

Line 394: 10002, fnd_global.resp_appl_id,

390: AND application_id = p_application_id
391: AND level_value_id =
392: Decode(level_type_id,
393: 10001, 0,
394: 10002, fnd_global.resp_appl_id,
395: 10003, fnd_global.resp_id,
396: 10004, fnd_global.user_id)
397: AND enabled_flag = 'Y';
398:

Line 395: 10003, fnd_global.resp_id,

391: AND level_value_id =
392: Decode(level_type_id,
393: 10001, 0,
394: 10002, fnd_global.resp_appl_id,
395: 10003, fnd_global.resp_id,
396: 10004, fnd_global.user_id)
397: AND enabled_flag = 'Y';
398:
399: CURSOR c_report_printer

Line 396: 10004, fnd_global.user_id)

392: Decode(level_type_id,
393: 10001, 0,
394: 10002, fnd_global.resp_appl_id,
395: 10003, fnd_global.resp_id,
396: 10004, fnd_global.user_id)
397: AND enabled_flag = 'Y';
398:
399: CURSOR c_report_printer
400: (p_concurrent_program_id NUMBER,

Line 412: 10002, fnd_global.resp_appl_id,

408: AND level_type_id = p_printer_level
409: AND level_value_id =
410: Decode(p_printer_level,
411: 10001, 0,
412: 10002, fnd_global.resp_appl_id,
413: 10003, fnd_global.resp_id,
414: 10004, fnd_global.user_id)
415: AND enabled_flag = 'Y';
416:

Line 413: 10003, fnd_global.resp_id,

409: AND level_value_id =
410: Decode(p_printer_level,
411: 10001, 0,
412: 10002, fnd_global.resp_appl_id,
413: 10003, fnd_global.resp_id,
414: 10004, fnd_global.user_id)
415: AND enabled_flag = 'Y';
416:
417: no_reportset_to_process EXCEPTION;

Line 414: 10004, fnd_global.user_id)

410: Decode(p_printer_level,
411: 10001, 0,
412: 10002, fnd_global.resp_appl_id,
413: 10003, fnd_global.resp_id,
414: 10004, fnd_global.user_id)
415: AND enabled_flag = 'Y';
416:
417: no_reportset_to_process EXCEPTION;
418:

Line 492: l_main_conc_request_id := FND_GLOBAL.CONC_REQUEST_ID;

488:
489: end if;
490:
491: -- bug 1589045
492: l_main_conc_request_id := FND_GLOBAL.CONC_REQUEST_ID;
493: if l_main_conc_request_id = -1 then
494: l_main_conc_request_id := null;
495: end if;
496:

Line 982: 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 ) );

978: --
979: -- Debug Statements
980: --
981: IF l_debug_on THEN --{
982: 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 ) );
983: END IF; --}
984: --
985:
986: if ( l_printer_name IS NULL or l_printer_name = '-1' ) then --{

Line 998: p_user_id => fnd_global.user_id,

994: WSH_REPORT_PRINTERS_PVT.Get_Printer(p_concurrent_program_id => document.concurrent_program_id,
995: p_organization_id => l_organization_id , -- Bug 3534965(3510460 Frontport)
996: p_equipment_type_id => null,
997: p_equipment_instance => null,
998: p_user_id => fnd_global.user_id,
999: p_zone => null,
1000: p_department_id => null,
1001: p_responsibility_id => fnd_global.resp_id,
1002: p_application_id => l_application_id ,

Line 1001: p_responsibility_id => fnd_global.resp_id,

997: p_equipment_instance => null,
998: p_user_id => fnd_global.user_id,
999: p_zone => null,
1000: p_department_id => null,
1001: p_responsibility_id => fnd_global.resp_id,
1002: p_application_id => l_application_id ,
1003: p_site_id => 0,
1004: x_printer => l_printer_name,
1005: x_api_status => l_status,