DBA Data[Home] [Help]

APPS.CS_WF_EVENT_PKG dependencies on FND_GLOBAL

Line 449: --avalue => FND_GLOBAL.USER_ID );

445: WF_ENGINE.SetItemAttrText(
446: itemtype => l_itemtype,
447: itemkey => l_item_key,
448: aname => 'USER_ID',
449: --avalue => FND_GLOBAL.USER_ID );
450: avalue => l_user_id);
451: WF_ENGINE.SetItemAttrText(
452: itemtype => l_itemtype,
453: itemkey => l_item_key,

Line 455: --avalue => FND_GLOBAL.RESP_ID );

451: WF_ENGINE.SetItemAttrText(
452: itemtype => l_itemtype,
453: itemkey => l_item_key,
454: aname => 'RESP_ID',
455: --avalue => FND_GLOBAL.RESP_ID );
456: avalue => l_resp_id );
457:
458: WF_ENGINE.SetItemAttrText(
459: itemtype => l_itemtype,

Line 462: --avalue => FND_GLOBAL.RESP_APPL_ID );

458: WF_ENGINE.SetItemAttrText(
459: itemtype => l_itemtype,
460: itemkey => l_item_key,
461: aname => 'RESP_APPL_ID',
462: --avalue => FND_GLOBAL.RESP_APPL_ID );
463: avalue => l_resp_appl_id );
464:
465: -- Start Bug 12411987
466: BEGIN

Line 574: p_USER_ID IN NUMBER DEFAULT FND_GLOBAL.USER_ID, -- p_last_updated_by from Update_ServiceREquest()

570: p_commit IN VARCHAR2 DEFAULT fnd_api.g_false,
571: p_validation_level IN NUMBER DEFAULT fnd_api.g_valid_level_full,
572: p_Event_Code IN VARCHAR2,
573: p_Incident_Number IN VARCHAR2,
574: p_USER_ID IN NUMBER DEFAULT FND_GLOBAL.USER_ID, -- p_last_updated_by from Update_ServiceREquest()
575: p_RESP_ID IN NUMBER, -- p_resp_id from Update_ServiceREquest()
576: p_RESP_APPL_ID IN NUMBER, -- p_resp_appl_id from Update_ServiceREquest()
577: p_Old_SR_Rec IN CS_ServiceRequest_PVT.service_request_rec_type,
578: p_New_SR_Rec IN CS_ServiceRequest_PVT.service_request_rec_type,

Line 854: /* Initializing the vars with FND_GLOBAL values if the input vars are null in value */

850: p_value => p_Incident_Number,
851: p_parameterlist => l_param_list);
852:
853: /* Roopa - Begin - Fix for bug 3360069 */
854: /* Initializing the vars with FND_GLOBAL values if the input vars are null in value */
855: IF(p_USER_ID is NULL or p_USER_ID = -1) THEN
856: wf_event.AddParameterToList(p_name => 'USER_ID',
857: p_value => FND_GLOBAL.USER_ID,
858: p_parameterlist => l_param_list);

Line 857: p_value => FND_GLOBAL.USER_ID,

853: /* Roopa - Begin - Fix for bug 3360069 */
854: /* Initializing the vars with FND_GLOBAL values if the input vars are null in value */
855: IF(p_USER_ID is NULL or p_USER_ID = -1) THEN
856: wf_event.AddParameterToList(p_name => 'USER_ID',
857: p_value => FND_GLOBAL.USER_ID,
858: p_parameterlist => l_param_list);
859: ELSE
860: wf_event.AddParameterToList(p_name => 'USER_ID',
861: p_value => p_USER_ID,

Line 868: p_value => FND_GLOBAL.RESP_ID,

864: END IF;
865:
866: IF(p_RESP_ID is NULL or p_RESP_ID = -1) THEN
867: wf_event.AddParameterToList(p_name => 'RESP_ID',
868: p_value => FND_GLOBAL.RESP_ID,
869: p_parameterlist => l_param_list);
870: ELSE
871: wf_event.AddParameterToList(p_name => 'RESP_ID',
872: p_value => p_RESP_ID,

Line 878: p_value => FND_GLOBAL.RESP_APPL_ID,

874: END IF;
875:
876: IF(p_RESP_APPL_ID is NULL or p_RESP_APPL_ID = -1) THEN
877: wf_event.AddParameterToList(p_name => 'RESP_APPL_ID',
878: p_value => FND_GLOBAL.RESP_APPL_ID,
879: p_parameterlist => l_param_list);
880: ELSE
881: wf_event.AddParameterToList(p_name => 'RESP_APPL_ID',
882: p_value => p_RESP_APPL_ID,