|
please perform following action plan in test instance only
update RA_CUST_TRX_TYPES_ALL
set CUST_TRX_TYPE_ID = &CUST_TRX_TYPE_ID -- You need to make sure this is two character value and it is not already in the table.
where CUST_TRX_TYPE_ID = 1053
--If one row updated then commit.
update RA_INTERFACE_LINES_ALL
set CUST_TRX_TYPE_ID = &CUST_TRX_TYPE_ID
where CUST_TRX_TYPE_ID = 1053
and INTERFACE_LINE_ID = 490239
--If one row updated then commit.
After this run Autoinvoice for sales order 101100013364
Please do not migrate this to Production. |
|