DBA Data[Home] [Help]

APPS.OTA_BATCH_ACTION_API dependencies on FND_FILE

Line 49: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating the batch range');

45: p_object_version_number := l_object_verion_number;
46:
47: Exception
48: when others then
49: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating the batch range');
50: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));
51: raise;
52: end create_batch_ranges;
53:

Line 50: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));

46:
47: Exception
48: when others then
49: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating the batch range');
50: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));
51: raise;
52: end create_batch_ranges;
53:
54: procedure create_bulk_enr_request

Line 93: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating OTA_BULK_ENR_REQUESTS record');

89: p_bulk_enr_request_id := l_bulk_enr_request_id;
90:
91: Exception
92: when others then
93: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating OTA_BULK_ENR_REQUESTS record');
94: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));
95: raise;
96: end create_bulk_enr_request;
97:

Line 94: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));

90:
91: Exception
92: when others then
93: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating OTA_BULK_ENR_REQUESTS record');
94: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));
95: raise;
96: end create_bulk_enr_request;
97:
98: procedure create_bulk_enr_request_member

Line 146: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating ota_bulk_enr_req_members record');

142: p_person_action_id := l_person_action_id;
143:
144: Exception
145: when others then
146: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating ota_bulk_enr_req_members record');
147: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));
148: raise;
149: end create_bulk_enr_request_member;
150:

Line 147: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));

143:
144: Exception
145: when others then
146: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error while creating ota_bulk_enr_req_members record');
147: FND_FILE.PUT_LINE(FND_FILE.LOG,'Error:'||substr(SQLERRM,1,2000));
148: raise;
149: end create_bulk_enr_request_member;
150:
151: end ota_batch_action_api;