DBA Data[Home] [Help]

APPS.PA_WORK_TYPE_UPGRADE dependencies on FND_API

Line 208: -- Call FND API to submit the same request for the EI update

204:
205: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '.....................');
206: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Project_Id = ' || Min_Project_Id);
207:
208: -- Call FND API to submit the same request for the EI update
209: l_child_req_id := FND_REQUEST.SUBMIT_REQUEST('PA',
210: 'PAWKTPUP',
211: '',
212: '',

Line 237: -- Call FND API to submit the same request for the EI update

233: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '.....................');
234: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Min Project_Id = ' || l_Min);
235: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Max Project_Id = ' || l_Max);
236:
237: -- Call FND API to submit the same request for the EI update
238: l_child_req_id := FND_REQUEST.SUBMIT_REQUEST('PA',
239: 'PAWKTPUP',
240: '',
241: '',

Line 394: -- Call FND API to submit the same request for the EI update

390: For i in 1..P_Num_Of_Processes Loop
391:
392: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '.....................');
393:
394: -- Call FND API to submit the same request for the EI update
395: l_child_req_id := FND_REQUEST.SUBMIT_REQUEST('PA',
396: 'PAWKTPUP',
397: '',
398: '',

Line 937: x_return_status := fnd_api.g_ret_sts_unexp_error;

933:
934: Exception
935:
936: When Others then
937: x_return_status := fnd_api.g_ret_sts_unexp_error;
938: x_error_message_code := (SQLCODE||' '||SQLERRM);
939: raise_application_error(-20001,SQLERRM);
940:
941: End Upgrade_WT_Main;