Sorry. Apparently I had screen images it didn’t like. Here is the text:
Currently giving me this:
=======================
SELECT kpc.record_status “Sts”
,kpc.customer_number || '-' || kpc.customer_suffix "Legacy"
,hca.account_number "Oracle"
,kib.batch_number "Batch"
,kpc.order_type "OTyp"
,hca.sales_channel_code "Channel"
,hca.account_name "Name"
,kpc.processing_control_number
"Processing Control Number"
,kpc.creation_date "Creation"
,kpc.error_message "Error Message"
,kpc.request_id "Request"
,kpc.last_update_date "Last Update"
FROM xxcnc.xxcnc_kcn_proc_control kpc
,hz_cust_accounts_all hca
,xxcnc.xxcnc_kcn_oe_ifac_batch_stg kib
=================
I would like to have this:
=================
SELECT kpc.record_status “Sts”
,kpc.customer_number || '-' || kpc.customer_suffix "Legacy"
,hca.account_number "Oracle"
,kib.batch_number "Batch"
,kpc.order_type "OTyp"
,hca.sales_channel_code "Channel"
,hca.account_name "Name"
,kpc.processing_control_number "Processing Control Number"
,kpc.creation_date "Creation"
,kpc.error_message “Error Message"
,kpc.request_id "Request"
,kpc.last_update_date "Last Update"
FROM xxcnc.xxcnc_kcn_proc_control kpc
,hz_cust_accounts_all hca
,xxcnc.xxcnc_kcn_oe_ifac_batch_stg kib
=================
Hopefully this gets through this time. Thanks for your reply!!! Gregg