DBA Data[Home] [Help]

APPS.POS_SUPPLIER_USER_REG_PKG dependencies on WF_ENGINE

Line 964: wf_engine.CreateProcess(itemtype => l_itemtype,

960:
961: l_itemtype := 'POSREGV2';
962: l_itemkey := gen_wf_item_key(p_registration_id,'approve');
963:
964: wf_engine.CreateProcess(itemtype => l_itemtype,
965: itemkey => l_itemkey,
966: process => l_process
967: );
968:

Line 969: wf_engine.SetItemAttrText (itemtype => l_itemtype,

965: itemkey => l_itemkey,
966: process => l_process
967: );
968:
969: wf_engine.SetItemAttrText (itemtype => l_itemtype,
970: itemkey => l_itemkey,
971: aname => 'LOGON_PAGE_URL',
972: avalue => pos_url_pkg.get_external_login_url
973: );

Line 975: wf_engine.SetItemAttrText (itemtype => l_itemtype,

971: aname => 'LOGON_PAGE_URL',
972: avalue => pos_url_pkg.get_external_login_url
973: );
974:
975: wf_engine.SetItemAttrText (itemtype => l_itemtype,
976: itemkey => l_itemkey,
977: aname => 'ASSIGNED_USER_NAME',
978: avalue => p_user_name
979: );

Line 981: wf_engine.SetItemAttrText (itemtype => l_itemtype,

977: aname => 'ASSIGNED_USER_NAME',
978: avalue => p_user_name
979: );
980:
981: wf_engine.SetItemAttrText (itemtype => l_itemtype,
982: itemkey => l_itemkey,
983: aname => 'FIRST_LOGON_KEY',
984: avalue => p_password
985: );

Line 987: wf_engine.SetItemAttrText (itemtype => l_itemtype,

983: aname => 'FIRST_LOGON_KEY',
984: avalue => p_password
985: );
986:
987: wf_engine.SetItemAttrText (itemtype => l_itemtype,
988: itemkey => l_itemkey,
989: aname => 'CONTACT_EMAIL',
990: avalue => get_contact_email
991: );

Line 994: wf_engine.SetItemAttrText (itemtype => l_itemtype,

990: avalue => get_contact_email
991: );
992:
993: IF p_is_invited <> 'Y' THEN
994: wf_engine.SetItemAttrText (itemtype => l_itemtype,
995: itemkey => l_itemkey,
996: aname => 'NOTE',
997: avalue => get_note(p_registration_id)
998: );

Line 1001: wf_engine.SetItemAttrText (itemtype => l_itemtype,

997: avalue => get_note(p_registration_id)
998: );
999: END IF;
1000:
1001: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1002: itemkey => l_itemkey,
1003: aname => 'ENTERPRISE_NAME',
1004: avalue => get_enterprise_name
1005: );

Line 1007: wf_engine.StartProcess (itemtype => l_itemtype,

1003: aname => 'ENTERPRISE_NAME',
1004: avalue => get_enterprise_name
1005: );
1006:
1007: wf_engine.StartProcess (itemtype => l_itemtype,
1008: itemkey => l_itemkey
1009: );
1010:
1011: END send_approval_ntf;

Line 1038: wf_engine.CreateProcess(itemtype => l_itemtype,

1034: ELSE
1035: l_process := 'SEND_REG_ADMIN_NTF';
1036: END IF;
1037:
1038: wf_engine.CreateProcess(itemtype => l_itemtype,
1039: itemkey => l_itemkey,
1040: process => l_process
1041: );
1042:

Line 1045: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1041: );
1042:
1043: IF (is_osn = 'Y') THEN
1044: lv_approver_role := get_approver_role_for_osn();
1045: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1046: itemkey => l_itemkey,
1047: aname => 'APPROVER_ROLE',
1048: avalue => lv_approver_role
1049: );

Line 1051: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1047: aname => 'APPROVER_ROLE',
1048: avalue => lv_approver_role
1049: );
1050: ELSE
1051: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1052: itemkey => l_itemkey,
1053: aname => 'APPROVER_ROLE',
1054: avalue => p_approver_role
1055: );

Line 1058: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1054: avalue => p_approver_role
1055: );
1056: END IF;
1057:
1058: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1059: itemkey => l_itemkey,
1060: aname => 'FIRST_NAME',
1061: avalue => p_first_name
1062: );

Line 1064: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1060: aname => 'FIRST_NAME',
1061: avalue => p_first_name
1062: );
1063:
1064: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1065: itemkey => l_itemkey,
1066: aname => 'LAST_NAME',
1067: avalue => p_last_name
1068: );

Line 1071: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1067: avalue => p_last_name
1068: );
1069:
1070: IF (is_osn = 'Y' AND p_vendor_name IS NULL) THEN
1071: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1072: itemkey => l_itemkey,
1073: aname => 'VENDOR_NAME',
1074: avalue => get_tp_name(p_registration_id)
1075: );

Line 1077: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1073: aname => 'VENDOR_NAME',
1074: avalue => get_tp_name(p_registration_id)
1075: );
1076: ELSE
1077: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1078: itemkey => l_itemkey,
1079: aname => 'VENDOR_NAME',
1080: avalue => p_vendor_name
1081: );

Line 1084: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1080: avalue => p_vendor_name
1081: );
1082: END IF;
1083:
1084: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1085: itemkey => l_itemkey,
1086: aname => 'LOGON_PAGE_URL',
1087: avalue => pos_url_pkg.get_internal_login_url
1088: );

Line 1090: wf_engine.StartProcess (itemtype => l_itemtype,

1086: aname => 'LOGON_PAGE_URL',
1087: avalue => pos_url_pkg.get_internal_login_url
1088: );
1089:
1090: wf_engine.StartProcess (itemtype => l_itemtype,
1091: itemkey => l_itemkey
1092: );
1093:
1094: END send_respond_ntf;

Line 1121: wf_engine.CreateProcess(itemtype => l_itemtype,

1117: p_email => p_email,
1118: p_language_code => p_language_code
1119: );
1120:
1121: wf_engine.CreateProcess(itemtype => l_itemtype,
1122: itemkey => l_itemkey,
1123: process => l_process
1124: );
1125:

Line 1126: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1122: itemkey => l_itemkey,
1123: process => l_process
1124: );
1125:
1126: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1127: itemkey => l_itemkey,
1128: aname => 'ADHOC_USER_NAME',
1129: avalue => l_local_user_name
1130: );

Line 1132: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1128: aname => 'ADHOC_USER_NAME',
1129: avalue => l_local_user_name
1130: );
1131:
1132: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1133: itemkey => l_itemkey,
1134: aname => 'ENTERPRISE_NAME',
1135: avalue => get_enterprise_name
1136: );

Line 1138: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1134: aname => 'ENTERPRISE_NAME',
1135: avalue => get_enterprise_name
1136: );
1137:
1138: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1139: itemkey => l_itemkey,
1140: aname => 'REG_PAGE_URL',
1141: avalue => get_reg_page_url(p_invitation_key,
1142: p_language_code)

Line 1145: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1141: avalue => get_reg_page_url(p_invitation_key,
1142: p_language_code)
1143: );
1144:
1145: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1146: itemkey => l_itemkey,
1147: aname => 'NOTE',
1148: avalue => p_note
1149: );

Line 1151: wf_engine.StartProcess (itemtype => l_itemtype,

1147: aname => 'NOTE',
1148: avalue => p_note
1149: );
1150:
1151: wf_engine.StartProcess (itemtype => l_itemtype,
1152: itemkey => l_itemkey
1153: );
1154:
1155: END send_invitation_ntf;

Line 1180: wf_engine.CreateProcess(itemtype => l_itemtype,

1176: p_email => p_email,
1177: p_language_code => p_language_code
1178: );
1179:
1180: wf_engine.CreateProcess(itemtype => l_itemtype,
1181: itemkey => l_itemkey,
1182: process => l_process
1183: );
1184:

Line 1185: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1181: itemkey => l_itemkey,
1182: process => l_process
1183: );
1184:
1185: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1186: itemkey => l_itemkey,
1187: aname => 'ADHOC_USER_NAME',
1188: avalue => l_local_user_name
1189: );

Line 1191: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1187: aname => 'ADHOC_USER_NAME',
1188: avalue => l_local_user_name
1189: );
1190:
1191: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1192: itemkey => l_itemkey,
1193: aname => 'CONTACT_EMAIL',
1194: avalue => get_contact_email
1195: );

Line 1197: wf_engine.SetItemAttrText (itemtype => l_itemtype,

1193: aname => 'CONTACT_EMAIL',
1194: avalue => get_contact_email
1195: );
1196:
1197: wf_engine.SetItemAttrText (itemtype => l_itemtype,
1198: itemkey => l_itemkey,
1199: aname => 'ENTERPRISE_NAME',
1200: avalue => get_enterprise_name
1201: );

Line 1202: wf_engine.StartProcess (itemtype => l_itemtype,

1198: itemkey => l_itemkey,
1199: aname => 'ENTERPRISE_NAME',
1200: avalue => get_enterprise_name
1201: );
1202: wf_engine.StartProcess (itemtype => l_itemtype,
1203: itemkey => l_itemkey
1204: );
1205:
1206: END send_rejection_ntf;