‎2009 Dec 23 8:50 AM
Hello experts ,
I want some solution for the following scenerio
I have some zz fields in EBAN ( PR master table )
I want to create a PR using a BAPI ( strictly ) Simultaniously i want o update my Zfields in the table
What are the possible solution ,
How Can i add some passing paramaters to BAPI by extending some standard structre or table so that my zee fiels in eban also get updated
‎2009 Dec 23 9:02 AM
Hello ,
Use FM BAPI_REQUISITION_CREATE . In this you need the fill the parameter EXTENSIONIN with the additional fields in EBAN..
‎2009 Dec 23 9:04 AM
how am i going to update the fields to update EBAN zee fields ...using extention
‎2009 Dec 23 9:10 AM
Hello,
Here you have the pass the name of the append structure and concatante the values of those fields and pass to valuepart1
field.
data : i_extensionin type table of BAPIPAREX,
w_extensionin type BAPIPAREX..
w_extensionin-STRUCTURE = (Name of the append structure)
w_extensionin-VALUEPART1 = concatenated values of the custom fields.
‎2009 Dec 23 9:15 AM
Thanks buddy let me check ...!
Edited by: Anup Deshmukh on Dec 23, 2009 10:15 AM
‎2009 Dec 30 12:20 PM
The Fields are not getting updated though i have given correct structre name and Concatination is also correct
What do i do hello experts please help
Edited by: Anup Deshmukh on Dec 30, 2009 1:31 PM
‎2009 Dec 31 5:39 AM
Hi Anup,
Check if these links helps you in getting some idea:
http://wiki.sdn.sap.com/wiki/display/SRM/BBP_CREATE_BE_RQ_NEW-CreateRequisitionin+backend
Regards,
Swarna Munukoti
‎2010 Jan 01 5:05 AM