Here XX is the custom application
---template definition download command
SELECT 'FNDLOAD apps/app5 0 Y DOWNLOAD $XDO_TOP/patch/115/import/xdotmpl.lct ' ||
template_code || '.ldt XDO_DS_DEFINITIONS'
FROM xdo_templates_b
WHERE application_short_name = 'XX';
---template definition upload command
SELECT 'FNDLOAD apps/apps 0 Y UPLOAD $XDO_TOP/patch/115/import/xdotmpl.lct ' ||
template_code || '.ldt'
FROM xdo_templates_b
WHERE application_short_name = 'XX';
--template file download command
SELECT 'java oracle.apps.xdo.oa.util.XDOLoader DOWNLOAD -DB_USERNAME
lob_type || ' -APPS_SHORT_NAME ' || application_short_name ||
' -LOB_CODE ' || lob_code || ' -LANGUAGE ' || LANGUAGE ||
' -TERRITORY ' || territory
FROM xdo_lobs
WHERE application_short_name = 'XX';
--template file upload command
SELECT 'java oracle.apps.xdo.oa.util.XDOLoader UPLOAD -DB_USERNAME
lob_type || ' -APPS_SHORT_NAME ' || application_short_name ||
' -LOB_CODE ' || lob_code || ' -LANGUAGE ' || LANGUAGE ||
' -TERRITORY ' || territory || ' -XDO_FILE_TYPE ' || xdo_file_type ||
' -FILE_CONTENT_TYPE ''' || file_content_type || ''' -FILE_NAME ' ||
lob_code
FROM xdo_lobs
WHERE application_short_name = 'XX';
No comments:
Post a Comment