DBA Data[Home] [Help]

APPS.HRDU_DO_API_TRANSLATE dependencies on FND_PROFILE

Line 129: fnd_profile.get('PER_DATA_EXCHANGE_DIR', l_location);

125: -- Fill in first column of the csv file
126: utl_file.put(p_filehandle, 'ID' );
127:
128: -- Open the new script file for writing
129: fnd_profile.get('PER_DATA_EXCHANGE_DIR', l_location);
130: l_scripthandle := utl_file.fopen(l_location, 'hrdu_' || LOWER(p_api_name) || '.sql', 'w', 32767);
131:
132: -- First create the header for the new script file
133: utl_file.put_line(l_scripthandle, 'REM /* $Header: perduapi.pkb 120.0 2005/05/31 17:19:43 appldev noship $ */' );

Line 264: fnd_profile.get('PER_DATA_EXCHANGE_DIR', l_location);

260: close api_id_csr;
261:
262: IF l_api_id is not null THEN
263:
264: fnd_profile.get('PER_DATA_EXCHANGE_DIR', l_location);
265:
266: l_filehandle := utl_file.fopen(l_location, p_file_name, 'w', 32767);
267:
268: utl_file.put_line(l_filehandle, 'Descriptor,Start');