‎2008 Nov 14 9:30 AM
Hi
I am executing the function module BAPI_CONTRACT_CREATE.
It is not uploading the Item field Net price.
I want to Upload that field into Table EKKO-NETPR.
There is some type mismatching is there for bapi field and table field.
Tell me how to resolve it.
‎2008 Nov 14 9:36 AM
Hi
Declare the internal table field also just like that of the BAPI strucutre. Got it?
IN the BAPI for the structure HEADER...the declaration is like this(this can be seen in Import Parameters of the BAPI in se37):
HEADER type BAPIMEOUTHEADER.
Now declare your internal table in the program also in the same way:
itab type standard table of BAPIMEOUTHEADER with header line.(or using the work area,how it is feasible to u in that way).
Regards,
Vishwa.