DBA Data[Home] [Help]

APPS.EGO_ITEM_ORG_BULKLOAD_PVT dependencies on FND_API

Line 153: IF (l_log_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

149: );
150:
151: Write_Conc_Log_Debug(' Log file location --> '||l_log_output_dir||'/'||G_ERROR_FILE_NAME ||' created with status '|| l_log_return_status);
152:
153: IF (l_log_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
154: Write_Conc_Log_Debug('Unable to open error log file. Error => '||l_errbuff);
155: END IF;
156:
157: END IF;--IF c_get_utl_file_dir%FOUND THEN

Line 279: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_TRUE

275: PROCEDURE Process_item_org_assignments (
276: ERRBUF OUT NOCOPY VARCHAR2
277: ,RETCODE OUT NOCOPY NUMBER
278: ,p_Set_Process_ID IN NUMBER
279: ,p_commit IN VARCHAR2 DEFAULT FND_API.G_TRUE
280: ) IS
281: -- Start OF comments
282: -- API name : Process Item Org Assignments
283: -- TYPE : Concurrent Program

Line 349: IF (p_commit = FND_API.G_TRUE) THEN

345:
346: -------------------------------------------------------------------------
347: -- Set the commit flag required to call to the IOI API --
348: -------------------------------------------------------------------------
349: IF (p_commit = FND_API.G_TRUE) THEN
350: l_item_ioi_commit := 1;
351: ELSE
352: l_item_ioi_commit := 2;
353: END IF;

Line 394: IF (p_commit = FND_API.G_TRUE) THEN

390: Write_Debug('IOI_Process : SYNC : l_err_text = ' || l_err_text);
391:
392: FND_FILE.put_line(FND_FILE.LOG, '*Import Item Org Assignments Completed* ');
393:
394: IF (p_commit = FND_API.G_TRUE) THEN
395: COMMIT;
396: END IF;
397:
398: -------------------------------------------------------------------------