How can I update ATTRIBUTE21 and ATTRIBUTE22 columns of GME_BATCH_HEADER table ?
Oracle EBS Applications : 12.2.10
RDBMS : 19.0.0.0.0
I need to update the ATTRIBUTE21 and ATTRIBUTE22 columns of the GME_BATCH_HEADER table.
I searched but did not find any API for the update.
However, I found an open interface GME_BATCH_HEADER_INTERFACE table for updating.
I tried inserting values into this table and importing them through a concurrent request but columns were not updated
Please share how it will work and how I can achieve this
insert query :
INSERT INTO GME_BATCH_HEADER_INTERFACE (INTERFACE_HEADER_ID,BATCH_ID,ATTRIBUTE21,ATTRIBUTE22,GROUP_ID,LOAD_TYPE,process_status)
VALUES (GME_BATCH_HEADER_INTERFACE_S.NEXTVAL,31113,'Dummy data 1','Dummy data 2',100,30,1)