DBA Data[Home] [Help]

APPS.PA_SCHEDULE_PVT dependencies on WF_ENGINE

Line 7164: wf_engine.CreateProcess ( ItemType => l_item_type,

7160:
7161: PA_SCHEDULE_UTILS.debug('l_conflict_mgr_user_name = '|| l_conflict_mgr_user_name);
7162:
7163: -- Create the WF process
7164: wf_engine.CreateProcess ( ItemType => l_item_type,
7165: ItemKey => l_item_key,
7166: process => 'PRO_PROJ_MGR_WARN');
7167:
7168: l_view_conflicts_url :=

Line 7174: wf_engine.SetItemAttrText

7170: ||'&paConflictGroupId='||p_conflict_group_id
7171: ||'&paProjectId='||l_source_proj_id
7172: ||'&paConflictProjectId='||l_conflict_proj_id;
7173:
7174: wf_engine.SetItemAttrText
7175: ( itemtype => l_item_type,
7176: itemkey => l_item_key,
7177: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7178: avalue => l_view_conflicts_url

Line 7181: wf_engine.SetItemAttrText

7177: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7178: avalue => l_view_conflicts_url
7179: );
7180:
7181: wf_engine.SetItemAttrText
7182: ( itemtype => l_item_type,
7183: itemkey => l_item_key,
7184: aname => 'ATTR_NTF_RECEPIENT',
7185: avalue => l_conflict_mgr_user_name

Line 7189: wf_engine.StartProcess

7185: avalue => l_conflict_mgr_user_name
7186: );
7187:
7188: -- Now start the WF process
7189: wf_engine.StartProcess
7190: ( itemtype => l_item_type,
7191: itemkey => l_item_key );
7192:
7193: -- Insert to PA tables wf process information.

Line 7212: wf_engine.CreateProcess ( ItemType => l_item_type,

7208: -- can not be informed.
7209: ELSE
7210:
7211: -- Create the WF process
7212: wf_engine.CreateProcess ( ItemType => l_item_type,
7213: ItemKey => l_item_key,
7214: process => 'PRO_PROJ_MGR_MISSING');
7215:
7216: wf_engine.SetItemAttrText

Line 7216: wf_engine.SetItemAttrText

7212: wf_engine.CreateProcess ( ItemType => l_item_type,
7213: ItemKey => l_item_key,
7214: process => 'PRO_PROJ_MGR_MISSING');
7215:
7216: wf_engine.SetItemAttrText
7217: ( itemtype => l_item_type,
7218: itemkey => l_item_key,
7219: aname => 'ATTR_PROJ_NAME',
7220: avalue => l_source_proj_name

Line 7222: wf_engine.SetItemAttrText

7218: itemkey => l_item_key,
7219: aname => 'ATTR_PROJ_NAME',
7220: avalue => l_source_proj_name
7221: );
7222: wf_engine.SetItemAttrText
7223: ( itemtype => l_item_type,
7224: itemkey => l_item_key,
7225: aname => 'ATTR_PROJ_NUMBER',
7226: avalue => l_source_proj_number

Line 7228: wf_engine.SetItemAttrText

7224: itemkey => l_item_key,
7225: aname => 'ATTR_PROJ_NUMBER',
7226: avalue => l_source_proj_number
7227: );
7228: wf_engine.SetItemAttrText
7229: ( itemtype => l_item_type,
7230: itemkey => l_item_key,
7231: aname => 'ATTR_PROJ_MANAGER',
7232: avalue => l_source_proj_mgr_name

Line 7234: wf_engine.SetItemAttrText

7230: itemkey => l_item_key,
7231: aname => 'ATTR_PROJ_MANAGER',
7232: avalue => l_source_proj_mgr_name
7233: );
7234: wf_engine.SetItemAttrText
7235: ( itemtype => l_item_type,
7236: itemkey => l_item_key,
7237: aname => 'ATTR_PROJ_ORGANIZATION',
7238: avalue => l_source_proj_organization

Line 7240: wf_engine.SetItemAttrText

7236: itemkey => l_item_key,
7237: aname => 'ATTR_PROJ_ORGANIZATION',
7238: avalue => l_source_proj_organization
7239: );
7240: wf_engine.SetItemAttrText
7241: ( itemtype => l_item_type,
7242: itemkey => l_item_key,
7243: aname => 'ATTR_PROJ_CUSTOMER',
7244: avalue => l_source_proj_customer

Line 7246: wf_engine.SetItemAttrText

7242: itemkey => l_item_key,
7243: aname => 'ATTR_PROJ_CUSTOMER',
7244: avalue => l_source_proj_customer
7245: );
7246: wf_engine.SetItemAttrText
7247: ( itemtype => l_item_type,
7248: itemkey => l_item_key,
7249: aname => 'ATTR_CONFLICT_PROJ_NAME',
7250: avalue => v_c2.name

Line 7252: wf_engine.SetItemAttrText

7248: itemkey => l_item_key,
7249: aname => 'ATTR_CONFLICT_PROJ_NAME',
7250: avalue => v_c2.name
7251: );
7252: wf_engine.SetItemAttrText
7253: ( itemtype => l_item_type,
7254: itemkey => l_item_key,
7255: aname => 'ATTR_CONFLICT_PROJ_NUMBER',
7256: avalue => v_c2.segment1

Line 7265: wf_engine.SetItemAttrText

7261: ||'&paConflictGroupId='||p_conflict_group_id
7262: ||'&paProjectId='||l_source_proj_id
7263: ||'&paConflictProjectId='||l_conflict_proj_id;
7264:
7265: wf_engine.SetItemAttrText
7266: ( itemtype => l_item_type,
7267: itemkey => l_item_key,
7268: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7269: avalue => l_view_conflicts_url

Line 7272: wf_engine.SetItemAttrText

7268: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7269: avalue => l_view_conflicts_url
7270: );
7271:
7272: wf_engine.SetItemAttrText
7273: ( itemtype => l_item_type,
7274: itemkey => l_item_key,
7275: aname => 'ATTR_NTF_RECEPIENT',
7276: avalue => p_fnd_user_name

Line 7280: wf_engine.StartProcess

7276: avalue => p_fnd_user_name
7277: );
7278:
7279: -- Now start the WF process
7280: wf_engine.StartProcess
7281: ( itemtype => l_item_type,
7282: itemkey => l_item_key );
7283:
7284: -- Insert to PA tables wf process information.

Line 7310: wf_engine.CreateProcess ( ItemType => l_item_type,

7306: -- Create the WF process
7307: SELECT PA_PRM_WF_ITEM_KEY_S.nextval
7308: INTO l_item_key
7309: FROM DUAL;
7310: wf_engine.CreateProcess ( ItemType => l_item_type,
7311: ItemKey => l_item_key,
7312: process => 'PRO_SELF_OVC_WARN');
7313:
7314: wf_engine.SetItemAttrText

Line 7314: wf_engine.SetItemAttrText

7310: wf_engine.CreateProcess ( ItemType => l_item_type,
7311: ItemKey => l_item_key,
7312: process => 'PRO_SELF_OVC_WARN');
7313:
7314: wf_engine.SetItemAttrText
7315: ( itemtype => l_item_type,
7316: itemkey => l_item_key,
7317: aname => 'ATTR_PROJ_NAME',
7318: avalue => l_source_proj_name

Line 7320: wf_engine.SetItemAttrText

7316: itemkey => l_item_key,
7317: aname => 'ATTR_PROJ_NAME',
7318: avalue => l_source_proj_name
7319: );
7320: wf_engine.SetItemAttrText
7321: ( itemtype => l_item_type,
7322: itemkey => l_item_key,
7323: aname => 'ATTR_PROJ_NUMBER',
7324: avalue => l_source_proj_number

Line 7326: wf_engine.SetItemAttrText

7322: itemkey => l_item_key,
7323: aname => 'ATTR_PROJ_NUMBER',
7324: avalue => l_source_proj_number
7325: );
7326: wf_engine.SetItemAttrText
7327: ( itemtype => l_item_type,
7328: itemkey => l_item_key,
7329: aname => 'ATTR_PROJ_MANAGER',
7330: avalue => l_source_proj_mgr_name

Line 7332: wf_engine.SetItemAttrText

7328: itemkey => l_item_key,
7329: aname => 'ATTR_PROJ_MANAGER',
7330: avalue => l_source_proj_mgr_name
7331: );
7332: wf_engine.SetItemAttrText
7333: ( itemtype => l_item_type,
7334: itemkey => l_item_key,
7335: aname => 'ATTR_PROJ_ORGANIZATION',
7336: avalue => l_source_proj_organization

Line 7338: wf_engine.SetItemAttrText

7334: itemkey => l_item_key,
7335: aname => 'ATTR_PROJ_ORGANIZATION',
7336: avalue => l_source_proj_organization
7337: );
7338: wf_engine.SetItemAttrText
7339: ( itemtype => l_item_type,
7340: itemkey => l_item_key,
7341: aname => 'ATTR_PROJ_CUSTOMER',
7342: avalue => l_source_proj_customer

Line 7350: wf_engine.SetItemAttrText

7346: 'JSP:/OA_HTML/OA.jsp?akRegionApplicationId=275&akRegionCode=PA_VIEW_CONFLICTS_LAYOUT&paCallingPage=SelfConflictNotif&addBreadCrumb=RP'
7347: ||'&paConflictGroupId='||p_conflict_group_id
7348: ||'&paProjectId='||l_source_proj_id;
7349:
7350: wf_engine.SetItemAttrText
7351: ( itemtype => l_item_type,
7352: itemkey => l_item_key,
7353: aname => 'ATTR_SELF_CONFLICTS_URL_INFO',
7354: avalue => l_view_conflicts_url

Line 7357: wf_engine.SetItemAttrText

7353: aname => 'ATTR_SELF_CONFLICTS_URL_INFO',
7354: avalue => l_view_conflicts_url
7355: );
7356:
7357: wf_engine.SetItemAttrText
7358: ( itemtype => l_item_type,
7359: itemkey => l_item_key,
7360: aname => 'ATTR_NTF_RECEPIENT',
7361: avalue => p_fnd_user_name

Line 7365: wf_engine.StartProcess

7361: avalue => p_fnd_user_name
7362: );
7363:
7364: -- Now start the WF process
7365: wf_engine.StartProcess
7366: ( itemtype => l_item_type,
7367: itemkey => l_item_key );
7368:
7369: -- Insert to PA tables wf process information.