DBA Data[Home] [Help]

APPS.PA_SCHEDULE_PVT dependencies on WF_ENGINE

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

7453:
7454: PA_SCHEDULE_UTILS.debug('l_conflict_mgr_user_name = '|| l_conflict_mgr_user_name);
7455:
7456: -- Create the WF process
7457: wf_engine.CreateProcess ( ItemType => l_item_type,
7458: ItemKey => l_item_key,
7459: process => 'PRO_PROJ_MGR_WARN');
7460:
7461: l_view_conflicts_url :=

Line 7467: wf_engine.SetItemAttrText

7463: ||'&paConflictGroupId='||p_conflict_group_id
7464: ||'&paProjectId='||l_source_proj_id
7465: ||'&paConflictProjectId='||l_conflict_proj_id;
7466:
7467: wf_engine.SetItemAttrText
7468: ( itemtype => l_item_type,
7469: itemkey => l_item_key,
7470: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7471: avalue => l_view_conflicts_url

Line 7474: wf_engine.SetItemAttrText

7470: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7471: avalue => l_view_conflicts_url
7472: );
7473:
7474: wf_engine.SetItemAttrText
7475: ( itemtype => l_item_type,
7476: itemkey => l_item_key,
7477: aname => 'ATTR_NTF_RECEPIENT',
7478: avalue => l_conflict_mgr_user_name

Line 7482: wf_engine.StartProcess

7478: avalue => l_conflict_mgr_user_name
7479: );
7480:
7481: -- Now start the WF process
7482: wf_engine.StartProcess
7483: ( itemtype => l_item_type,
7484: itemkey => l_item_key );
7485:
7486: -- Insert to PA tables wf process information.

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

7501: -- can not be informed.
7502: ELSE
7503:
7504: -- Create the WF process
7505: wf_engine.CreateProcess ( ItemType => l_item_type,
7506: ItemKey => l_item_key,
7507: process => 'PRO_PROJ_MGR_MISSING');
7508:
7509: wf_engine.SetItemAttrText

Line 7509: wf_engine.SetItemAttrText

7505: wf_engine.CreateProcess ( ItemType => l_item_type,
7506: ItemKey => l_item_key,
7507: process => 'PRO_PROJ_MGR_MISSING');
7508:
7509: wf_engine.SetItemAttrText
7510: ( itemtype => l_item_type,
7511: itemkey => l_item_key,
7512: aname => 'ATTR_PROJ_NAME',
7513: avalue => l_source_proj_name

Line 7515: wf_engine.SetItemAttrText

7511: itemkey => l_item_key,
7512: aname => 'ATTR_PROJ_NAME',
7513: avalue => l_source_proj_name
7514: );
7515: wf_engine.SetItemAttrText
7516: ( itemtype => l_item_type,
7517: itemkey => l_item_key,
7518: aname => 'ATTR_PROJ_NUMBER',
7519: avalue => l_source_proj_number

Line 7521: wf_engine.SetItemAttrText

7517: itemkey => l_item_key,
7518: aname => 'ATTR_PROJ_NUMBER',
7519: avalue => l_source_proj_number
7520: );
7521: wf_engine.SetItemAttrText
7522: ( itemtype => l_item_type,
7523: itemkey => l_item_key,
7524: aname => 'ATTR_PROJ_MANAGER',
7525: avalue => l_source_proj_mgr_name

Line 7527: wf_engine.SetItemAttrText

7523: itemkey => l_item_key,
7524: aname => 'ATTR_PROJ_MANAGER',
7525: avalue => l_source_proj_mgr_name
7526: );
7527: wf_engine.SetItemAttrText
7528: ( itemtype => l_item_type,
7529: itemkey => l_item_key,
7530: aname => 'ATTR_PROJ_ORGANIZATION',
7531: avalue => l_source_proj_organization

Line 7533: wf_engine.SetItemAttrText

7529: itemkey => l_item_key,
7530: aname => 'ATTR_PROJ_ORGANIZATION',
7531: avalue => l_source_proj_organization
7532: );
7533: wf_engine.SetItemAttrText
7534: ( itemtype => l_item_type,
7535: itemkey => l_item_key,
7536: aname => 'ATTR_PROJ_CUSTOMER',
7537: avalue => l_source_proj_customer

Line 7539: wf_engine.SetItemAttrText

7535: itemkey => l_item_key,
7536: aname => 'ATTR_PROJ_CUSTOMER',
7537: avalue => l_source_proj_customer
7538: );
7539: wf_engine.SetItemAttrText
7540: ( itemtype => l_item_type,
7541: itemkey => l_item_key,
7542: aname => 'ATTR_CONFLICT_PROJ_NAME',
7543: avalue => v_c2.name

Line 7545: wf_engine.SetItemAttrText

7541: itemkey => l_item_key,
7542: aname => 'ATTR_CONFLICT_PROJ_NAME',
7543: avalue => v_c2.name
7544: );
7545: wf_engine.SetItemAttrText
7546: ( itemtype => l_item_type,
7547: itemkey => l_item_key,
7548: aname => 'ATTR_CONFLICT_PROJ_NUMBER',
7549: avalue => v_c2.segment1

Line 7558: wf_engine.SetItemAttrText

7554: ||'&paConflictGroupId='||p_conflict_group_id
7555: ||'&paProjectId='||l_source_proj_id
7556: ||'&paConflictProjectId='||l_conflict_proj_id;
7557:
7558: wf_engine.SetItemAttrText
7559: ( itemtype => l_item_type,
7560: itemkey => l_item_key,
7561: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7562: avalue => l_view_conflicts_url

Line 7565: wf_engine.SetItemAttrText

7561: aname => 'ATTR_VIEW_CONFLICTS_URL_INFO',
7562: avalue => l_view_conflicts_url
7563: );
7564:
7565: wf_engine.SetItemAttrText
7566: ( itemtype => l_item_type,
7567: itemkey => l_item_key,
7568: aname => 'ATTR_NTF_RECEPIENT',
7569: avalue => p_fnd_user_name

Line 7573: wf_engine.StartProcess

7569: avalue => p_fnd_user_name
7570: );
7571:
7572: -- Now start the WF process
7573: wf_engine.StartProcess
7574: ( itemtype => l_item_type,
7575: itemkey => l_item_key );
7576:
7577: -- Insert to PA tables wf process information.

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

7599: -- Create the WF process
7600: SELECT PA_PRM_WF_ITEM_KEY_S.nextval
7601: INTO l_item_key
7602: FROM DUAL;
7603: wf_engine.CreateProcess ( ItemType => l_item_type,
7604: ItemKey => l_item_key,
7605: process => 'PRO_SELF_OVC_WARN');
7606:
7607: wf_engine.SetItemAttrText

Line 7607: wf_engine.SetItemAttrText

7603: wf_engine.CreateProcess ( ItemType => l_item_type,
7604: ItemKey => l_item_key,
7605: process => 'PRO_SELF_OVC_WARN');
7606:
7607: wf_engine.SetItemAttrText
7608: ( itemtype => l_item_type,
7609: itemkey => l_item_key,
7610: aname => 'ATTR_PROJ_NAME',
7611: avalue => l_source_proj_name

Line 7613: wf_engine.SetItemAttrText

7609: itemkey => l_item_key,
7610: aname => 'ATTR_PROJ_NAME',
7611: avalue => l_source_proj_name
7612: );
7613: wf_engine.SetItemAttrText
7614: ( itemtype => l_item_type,
7615: itemkey => l_item_key,
7616: aname => 'ATTR_PROJ_NUMBER',
7617: avalue => l_source_proj_number

Line 7619: wf_engine.SetItemAttrText

7615: itemkey => l_item_key,
7616: aname => 'ATTR_PROJ_NUMBER',
7617: avalue => l_source_proj_number
7618: );
7619: wf_engine.SetItemAttrText
7620: ( itemtype => l_item_type,
7621: itemkey => l_item_key,
7622: aname => 'ATTR_PROJ_MANAGER',
7623: avalue => l_source_proj_mgr_name

Line 7625: wf_engine.SetItemAttrText

7621: itemkey => l_item_key,
7622: aname => 'ATTR_PROJ_MANAGER',
7623: avalue => l_source_proj_mgr_name
7624: );
7625: wf_engine.SetItemAttrText
7626: ( itemtype => l_item_type,
7627: itemkey => l_item_key,
7628: aname => 'ATTR_PROJ_ORGANIZATION',
7629: avalue => l_source_proj_organization

Line 7631: wf_engine.SetItemAttrText

7627: itemkey => l_item_key,
7628: aname => 'ATTR_PROJ_ORGANIZATION',
7629: avalue => l_source_proj_organization
7630: );
7631: wf_engine.SetItemAttrText
7632: ( itemtype => l_item_type,
7633: itemkey => l_item_key,
7634: aname => 'ATTR_PROJ_CUSTOMER',
7635: avalue => l_source_proj_customer

Line 7643: wf_engine.SetItemAttrText

7639: 'JSP:/OA_HTML/OA.jsp?akRegionApplicationId=275&akRegionCode=PA_VIEW_CONFLICTS_LAYOUT&paCallingPage=SelfConflictNotif&addBreadCrumb=RP'
7640: ||'&paConflictGroupId='||p_conflict_group_id
7641: ||'&paProjectId='||l_source_proj_id;
7642:
7643: wf_engine.SetItemAttrText
7644: ( itemtype => l_item_type,
7645: itemkey => l_item_key,
7646: aname => 'ATTR_SELF_CONFLICTS_URL_INFO',
7647: avalue => l_view_conflicts_url

Line 7650: wf_engine.SetItemAttrText

7646: aname => 'ATTR_SELF_CONFLICTS_URL_INFO',
7647: avalue => l_view_conflicts_url
7648: );
7649:
7650: wf_engine.SetItemAttrText
7651: ( itemtype => l_item_type,
7652: itemkey => l_item_key,
7653: aname => 'ATTR_NTF_RECEPIENT',
7654: avalue => p_fnd_user_name

Line 7658: wf_engine.StartProcess

7654: avalue => p_fnd_user_name
7655: );
7656:
7657: -- Now start the WF process
7658: wf_engine.StartProcess
7659: ( itemtype => l_item_type,
7660: itemkey => l_item_key );
7661:
7662: -- Insert to PA tables wf process information.