DBA Data[Home] [Help]

APPS.FUN_RULE_OBJECTS_PKG dependencies on FND_APPLICATION

Line 865: FROM fnd_application

861: f_ludate := nvl(to_date(x_last_update_date, 'YYYY/MM/DD'), sysdate);
862:
863: BEGIN
864: SELECT application_id INTO appid
865: FROM fnd_application
866: WHERE application_short_name = X_APP_SHORT_NAME;
867: EXCEPTION
868: WHEN NO_DATA_FOUND THEN
869: -- Since this should never happen, throwing an exception with hard coded message text

Line 1015: FROM fnd_application

1011: --
1012: -- Get the APPLICATION_ID. Required
1013: begin
1014: SELECT application_id INTO appid
1015: FROM fnd_application
1016: WHERE application_short_name = X_APP_SHORT_NAME;
1017: exception
1018: WHEN NO_DATA_FOUND THEN
1019: -- Since this should never happen, throwing an exception with hard coded message text

Line 1203: FROM fnd_application

1199: begin
1200:
1201: BEGIN
1202: SELECT application_id INTO appid
1203: FROM fnd_application
1204: WHERE application_short_name = X_APP_SHORT_NAME;
1205: EXCEPTION
1206: WHEN NO_DATA_FOUND THEN
1207: -- Since this should never happen, throwing an exception with hard coded message text

Line 1213: FROM fnd_application

1209: END;
1210:
1211: if (X_DEFAULT_APP_SHORT_NAME IS NOT NULL) then
1212: SELECT application_id INTO default_appid
1213: FROM fnd_application
1214: WHERE application_short_name = X_DEFAULT_APP_SHORT_NAME;
1215: else
1216: default_appid := null;
1217: end if;