Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set pagesize 0
set linesize 500
set trimspool on
set feedback off
spool flat-file-name.txt
select to_char(SYSDATE, 'DD-MON-YYYY')
||',PA Conversion,,,'
||VENDOR_SFX
||',,,PA Conversion,'
||to_char(SYSDATE, 'DD-MON-YYYY')
||',PA Conversion,,
||parse_name_function(CONTACT_NAME)
||','||CONTACT_TITLE||','
||MAIL_STOP
from co_vendor
/* insert WHERE and ORDER BY clauses here, if needed. */
;
spool off
set feedback on
set pagesize 35
getjbb said:I will call a function with ls_contact_name as an argument. The function will parse ls_contract_name and return a concatenated string with the needed information.