DBA Data[Home] [Help]

APPS.FND_OID_SUBSCRIPTIONS dependencies on WF_RULE

Line 356: return(wf_rule.default_rule(p_subscription_guid, p_event));

352: , p_user_guid => l_orcl_guid
353: , x_user_id => l_user_id
354: );
355: end if;
356: return(wf_rule.default_rule(p_subscription_guid, p_event));
357: exception
358: when others then
359: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
360: then

Line 363: return(wf_rule.error_rule(p_subscription_guid, p_event));

359: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
360: then
361: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
362: end if;
363: return(wf_rule.error_rule(p_subscription_guid, p_event));
364:
365: end identity_add;
366: --
367: -------------------------------------------------------------------------------

Line 401: return(wf_rule.default_rule(p_subscription_guid, p_event));

397: then
398: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
399: end if;
400:
401: return(wf_rule.default_rule(p_subscription_guid, p_event));
402:
403: exception
404: when others then
405: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 409: return(wf_rule.error_rule(p_subscription_guid, p_event));

405: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
406: then
407: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
408: end if;
409: return(wf_rule.error_rule(p_subscription_guid, p_event));
410:
411: end identity_modify;
412: --
413: -------------------------------------------------------------------------------

Line 436: return(wf_rule.default_rule(p_subscription_guid, p_event));

432: then
433: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
434: end if;
435:
436: return(wf_rule.default_rule(p_subscription_guid, p_event));
437:
438: exception
439: when others then
440: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 444: return(wf_rule.error_rule(p_subscription_guid, p_event));

440: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
441: then
442: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
443: end if;
444: return(wf_rule.error_rule(p_subscription_guid, p_event));
445:
446: end identity_delete;
447: --
448: -------------------------------------------------------------------------------

Line 516: return(wf_rule.default_rule(p_subscription_guid, p_event));

512: then
513: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
514: end if;
515:
516: return(wf_rule.default_rule(p_subscription_guid, p_event));
517:
518: exception
519: when others then
520: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 524: return(wf_rule.error_rule(p_subscription_guid, p_event));

520: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
521: then
522: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
523: end if;
524: return(wf_rule.error_rule(p_subscription_guid, p_event));
525:
526: end subscription_add;
527: --
528: -------------------------------------------------------------------------------

Line 614: return(wf_rule.default_rule(p_subscription_guid, p_event));

610: then
611: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
612: end if;
613:
614: return(wf_rule.default_rule(p_subscription_guid, p_event));
615:
616: exception
617: when others then
618: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 622: return(wf_rule.error_rule(p_subscription_guid, p_event));

618: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
619: then
620: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
621: end if;
622: return(wf_rule.error_rule(p_subscription_guid, p_event));
623: end subscription_delete;
624: -------------------------------------------------------------------------------
625: --
626: function synch_oid_to_tca(

Line 786: return(wf_rule.default_rule(p_subscription_guid, p_event));

782: then
783: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
784: end if;
785:
786: return(wf_rule.default_rule(p_subscription_guid, p_event));
787: exception
788: when others then
789: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
790: then

Line 793: return(wf_rule.error_rule(p_subscription_guid, p_event));

789: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
790: then
791: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
792: end if;
793: return(wf_rule.error_rule(p_subscription_guid, p_event));
794: end synch_oid_to_tca;
795:
796: -------------------------------------------------------------------------------
797: --

Line 837: return(wf_rule.default_rule(p_subscription_guid, p_event));

833: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source,
834: ' After synch l_result: '||l_result);
835: end if;
836:
837: return(wf_rule.default_rule(p_subscription_guid, p_event));
838:
839: exception
840: when others then
841: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 845: return(wf_rule.error_rule(p_subscription_guid, p_event));

841: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
842: then
843: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
844: end if;
845: return(wf_rule.error_rule(p_subscription_guid, p_event));
846:
847: end on_demand_user_create;
848: -------------------------------------------------------------------------------
849: --

Line 894: return(wf_rule.default_rule(p_subscription_guid, p_event));

890: then
891: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'End');
892: end if;
893:
894: return(wf_rule.default_rule(p_subscription_guid, p_event));
895:
896: exception
897: when others then
898: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 902: return(wf_rule.error_rule(p_subscription_guid, p_event));

898: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
899: then
900: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
901: end if;
902: return(wf_rule.error_rule(p_subscription_guid, p_event));
903: end event_error;
904: --
905: -------------------------------------------------------------------------------
906: function event_resend(

Line 950: return(wf_rule.default_rule(p_subscription_guid, p_event));

946: then
947: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'End');
948: end if;
949:
950: return(wf_rule.default_rule(p_subscription_guid, p_event));
951:
952: exception
953: when others then
954: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 958: return(wf_rule.error_rule(p_subscription_guid, p_event));

954: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
955: then
956: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
957: end if;
958: return(wf_rule.error_rule(p_subscription_guid, p_event));
959: end event_resend;
960: --
961: -------------------------------------------------------------------------------
962: function hz_identity_add(

Line 991: return(wf_rule.default_rule(p_subscription_guid, p_event));

987: , p_return_status => l_return_status);
988: --RDESPOTO, End IDENTITY_ADD
989: end if;
990:
991: return(wf_rule.default_rule(p_subscription_guid, p_event));
992:
993: exception
994: when others then
995: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 999: return(wf_rule.error_rule(p_subscription_guid, p_event));

995: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
996: then
997: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
998: end if;
999: return(wf_rule.error_rule(p_subscription_guid, p_event));
1000: end hz_identity_add;
1001: --
1002: -------------------------------------------------------------------------------
1003: function hz_identity_modify(

Line 1036: return(wf_rule.default_rule(p_subscription_guid, p_event));

1032: then
1033: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
1034: end if;
1035:
1036: return(wf_rule.default_rule(p_subscription_guid, p_event));
1037:
1038: exception
1039: when hz_failed_exp then
1040: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 1046: return(wf_rule.error_rule(p_subscription_guid, p_event));

1042: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source,
1043: 'hz_failed_exp: l_return_status = ' ||
1044: l_return_status);
1045: end if;
1046: return(wf_rule.error_rule(p_subscription_guid, p_event));
1047:
1048: when others then
1049: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1050: then

Line 1053: return(wf_rule.error_rule(p_subscription_guid, p_event));

1049: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1050: then
1051: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
1052: end if;
1053: return(wf_rule.error_rule(p_subscription_guid, p_event));
1054: end hz_identity_modify;
1055: --
1056: -------------------------------------------------------------------------------
1057: function hz_identity_delete(

Line 1074: return(wf_rule.default_rule(p_subscription_guid, p_event));

1070: 'This is a no-op for now. This subscription should be disabled. ' ||
1071: ' Please contact your System administrator to disable subscription');
1072: end if;
1073:
1074: return(wf_rule.default_rule(p_subscription_guid, p_event));
1075:
1076: exception
1077: when others then
1078: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 1082: return(wf_rule.error_rule(p_subscription_guid, p_event));

1078: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1079: then
1080: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
1081: end if;
1082: return(wf_rule.error_rule(p_subscription_guid, p_event));
1083: end hz_identity_delete;
1084: --
1085: -------------------------------------------------------------------------------
1086: function hz_subscription_add(

Line 1119: return(wf_rule.default_rule(p_subscription_guid, p_event));

1115: then
1116: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
1117: end if;
1118:
1119: return(wf_rule.default_rule(p_subscription_guid, p_event));
1120:
1121: exception
1122: when hz_failed_exp then
1123: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 1129: return(wf_rule.error_rule(p_subscription_guid, p_event));

1125: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source,
1126: 'hz_failed_exp: l_return_status = ' ||
1127: l_return_status);
1128: end if;
1129: return(wf_rule.error_rule(p_subscription_guid, p_event));
1130:
1131: when others then
1132: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1133: then

Line 1136: return(wf_rule.error_rule(p_subscription_guid, p_event));

1132: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1133: then
1134: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
1135: end if;
1136: return(wf_rule.error_rule(p_subscription_guid, p_event));
1137: end hz_subscription_add;
1138: --
1139: -------------------------------------------------------------------------------
1140: function hz_subscription_delete(

Line 1157: return(wf_rule.default_rule(p_subscription_guid, p_event));

1153: 'This is a no-op for now. This subscription should be disabled. ' ||
1154: ' Please contact your System administrator to disable subscription');
1155: end if;
1156:
1157: return(wf_rule.default_rule(p_subscription_guid, p_event));
1158:
1159: exception
1160: when others then
1161: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 1165: return(wf_rule.error_rule(p_subscription_guid, p_event));

1161: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1162: then
1163: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
1164: end if;
1165: return(wf_rule.error_rule(p_subscription_guid, p_event));
1166: end hz_subscription_delete;
1167: --
1168: -------------------------------------------------------------------------------
1169: procedure hz_create_update(

Line 1429: return(wf_rule.default_rule(p_subscription_guid, p_event));

1425: then
1426: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');
1427: end if;
1428:
1429: return(wf_rule.default_rule(p_subscription_guid, p_event));
1430:
1431: exception
1432: when others then
1433: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 1437: return(wf_rule.error_rule(p_subscription_guid, p_event));

1433: if (fnd_log.LEVEL_ERROR >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1434: then
1435: fnd_log.string(fnd_log.LEVEL_ERROR, l_module_source, sqlerrm);
1436: end if;
1437: return(wf_rule.error_rule(p_subscription_guid, p_event));
1438:
1439: end assign_def_resp;
1440:
1441: --