DBA Data[Home] [Help]

APPS.ENG_WORKFLOW_API_PKG dependencies on STANDARD

Line 1041: l_doc_params qa_edr_standard.params_tbl_type;

1037:
1038: l_doc_id number;
1039: l_error number;
1040: l_error_msg varchar2(4000);
1041: l_doc_params qa_edr_standard.params_tbl_type;
1042: l_sig_id number;
1043: l_notification_result varchar2(1000);
1044: l_ret_status varchar2(30);
1045: l_msg_count number;

Line 1058: l_parameters qa_edr_standard.Params_tbl_type;

1054: l_autonomous_commit VARCHAR2(1);
1055:
1056: l_eres_doc NUMBER;
1057:
1058: l_parameters qa_edr_standard.Params_tbl_type;
1059: l_sign_params qa_edr_standard.Params_tbl_type;
1060:
1061: BEGIN
1062: IF P_FUNCMODE ='RUN' THEN

Line 1059: l_sign_params qa_edr_standard.Params_tbl_type;

1055:
1056: l_eres_doc NUMBER;
1057:
1058: l_parameters qa_edr_standard.Params_tbl_type;
1059: l_sign_params qa_edr_standard.Params_tbl_type;
1060:
1061: BEGIN
1062: IF P_FUNCMODE ='RUN' THEN
1063:

Line 1101: qa_edr_standard.open_Document (

1097: -- Bug 16063500
1098: -- The ECO Approval event should use the document format text/plain
1099: -- As otherwise the E-Record cannot be printed.
1100: --
1101: qa_edr_standard.open_Document (
1102: p_api_version => 1.0,
1103: p_init_msg_list => 'T',
1104: p_commit => 'FALSE',
1105: x_return_status => l_return_status,

Line 1131: qa_edr_standard.Post_DocumentParameters (

1127: l_parameters(2).param_value:= l_change_notice;
1128: l_parameters(2).param_displayname:=NULL;
1129:
1130: /******** postDocumentParameter ************/
1131: qa_edr_standard.Post_DocumentParameters (
1132: p_api_version => 1.0,
1133: p_init_msg_list => 'T',
1134: p_commit => 'FALSE',
1135: x_return_status => l_return_status,

Line 1190: qa_edr_standard.Request_Signature (

1186: ELSE
1187: l_user_response := 'Rejected';
1188: END IF;
1189:
1190: qa_edr_standard.Request_Signature (
1191: p_api_version => 1.0,
1192: p_init_msg_list => 'T',
1193: p_commit => 'FALSE',
1194: x_return_status => l_return_status,

Line 1204: qa_edr_standard.Post_Signature (

1200: P_OVERRIDING_COMMENT => NULL,
1201: x_signature_id => l_sig_id
1202: );
1203:
1204: qa_edr_standard.Post_Signature (
1205: p_api_version => 1.0,
1206: p_init_msg_list => 'T',
1207: p_commit => 'FALSE',
1208: x_return_status => l_return_status,

Line 1220: qa_edr_standard.Post_SignatureParameters (

1216: P_OVERRIDING_COMMENT => NULL,
1217: x_signature_id => l_sig_id
1218: );
1219:
1220: qa_edr_standard.Post_SignatureParameters (
1221: p_api_version => 1.0,
1222: p_init_msg_list => 'T',
1223: p_commit => 'FALSE',
1224: x_return_status => l_return_status,

Line 1312: p_xmldoc := ecx_standard.GENERATE(p_event_name => 'oracle.apps.eng.ecoApproval',

1308: p_parameterlist => i_param_list);
1309:
1310: wf_event.AddParameterToList('ECX_DOCUMENT_ID', X_change_id,i_param_list);
1311:
1312: p_xmldoc := ecx_standard.GENERATE(p_event_name => 'oracle.apps.eng.ecoApproval',
1313: p_event_key => X_change_id,
1314: p_parameter_list => i_param_list
1315: ) ;
1316:

Line 1367: -- Standard Voting Function

1363:
1364: END Get_ERES_Attributes;
1365:
1366: -- VoteForResultType
1367: -- Standard Voting Function
1368: -- IN
1369: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
1370: -- itemkey - A string generated from the application object's primary key.
1371: -- actid - The process activity(instance id).

Line 1390: -- - been cast then the standard timeout

1386: -- - percentage ofvotes cast.
1387: --
1388: -- - REQUIRE_ALL_VOTES - Evaluate voting after all votes are cast.
1389: -- - If a Timeout occurs and all votes have not
1390: -- - been cast then the standard timeout
1391: -- - transition is taken. Votes are calculated
1392: -- - as a percenatage of users notified to vote.
1393: --
1394: -- - TALLY_ON_EVERY_VOTE - Evaluate voting after every vote or a

Line 1404: -- - The standard Activity VOTEFORRESULTTYPE has the WFSTD_YES_NO

1400: -- - of votes cast.
1401: --
1402: -- "One attribute for each of the activities result type codes"
1403: --
1404: -- - The standard Activity VOTEFORRESULTTYPE has the WFSTD_YES_NO
1405: -- - result type assigned.
1406: -- - Thefore activity has two activity attributes.
1407: --
1408: -- Y - Percenatage required for Yes transition

Line 1482: Wf_Core.Token('OPERATION', 'Wf_Standard.VotForResultType');

1478: end if;
1479:
1480: -- SYNCHMODE: Not allowed
1481: if (itemkey = wf_engine.eng_synch) then
1482: Wf_Core.Token('OPERATION', 'Wf_Standard.VotForResultType');
1483: Wf_Core.Raise('WFENG_SYNCH_DISABLED');
1484: end if;
1485:
1486: -- Get Notifications group_id for activity

Line 1597: Wf_Core.Context('Wf_Standard', 'VoteForResultType', itemtype,

1593:
1594: return;
1595: exception
1596: when wf_invalid_command then
1597: Wf_Core.Context('Wf_Standard', 'VoteForResultType', itemtype,
1598: itemkey, to_char(actid), funcmode);
1599: Wf_Core.Token('COMMAND', l_voting_option);
1600: Wf_Core.Raise('WFSQL_COMMAND');
1601: when others then

Line 1602: Wf_Core.Context('Wf_Standard', 'VoteForResultType',itemtype,

1598: itemkey, to_char(actid), funcmode);
1599: Wf_Core.Token('COMMAND', l_voting_option);
1600: Wf_Core.Raise('WFSQL_COMMAND');
1601: when others then
1602: Wf_Core.Context('Wf_Standard', 'VoteForResultType',itemtype,
1603: itemkey, to_char(actid), funcmode);
1604: raise;
1605: end VoteForResultType;
1606:

Line 1649: QA_EDR_STANDARD.Close_Document (

1645: aname => 'DOC_ID');
1646: l_Event_Key := wf_engine.GETITEMATTRNUMBER(itemtype => p_itemtype,
1647: itemkey => p_itemkey,
1648: aname => 'CHANGE_ID');
1649: QA_EDR_STANDARD.Close_Document (
1650: p_api_version => 1.0,
1651: p_init_msg_list => 'T',
1652: p_commit => 'FALSE',
1653: x_return_status => l_return_status,

Line 1674: QA_EDR_STANDARD.SEND_ACKN

1670: END IF;
1671:
1672: IF l_send_ackn = TRUE
1673: then
1674: QA_EDR_STANDARD.SEND_ACKN
1675: (p_api_version => 1.0
1676: ,p_init_msg_list => 'T'
1677: ,x_return_status => l_return_status
1678: ,x_msg_count => l_msg_count