‎2009 Feb 17 12:46 AM
I am trying to use SAMPLE_INTERFACE_PM000020 to update Equipment Record.
But it looks like another function is required as subsequent one as this BTE doesn't provide any change option. Have any one used this BTE successfully?
Thanks
Bala
‎2009 Feb 17 8:18 PM
‎2009 Feb 17 1:52 AM
Hi Bala,
I have not tried this BTE myself.
By looking at the interface of the function module, I would guess that we need to pass the changes using internal table IHPA_NEW.
Sorry if you have tried that before
Regards,
Lim...
‎2009 Feb 17 5:25 PM
Hi Lim,
Our requirments are to change Equiment master records i.e. in EQUI itself not IHPA.
thanks
Bala
‎2009 Feb 17 8:18 PM
‎2009 Feb 17 11:25 PM
BAPI_CHANGE doesn't seem to be working as I have to use it within SAMPLE_INTERFACE_PM000020. I could capture enough data for a change in this BTE , but I couldn't force the data change when an equipment record is created from a sales order.
‎2009 Feb 18 2:54 AM
Hi,
Can you see or access the EQUI internal table from the BADI?
If yes, then you can change this table even if it is NOT available in the importing parameters .. using the following method.
Please see the example below:
field-symbols: <zmseg> type mseg.
assign ('(SAPLQPL1)MSEG') to <zmseg>.
SAPLQPL1 is the main user exit program name and MSEG is the program internal table name.
move your_field to <zmseg>-anyfield.
By changing the content of your field symbol, you actually changing the value of that table directly.
Regards,
Lim...
‎2009 Feb 21 12:42 AM
‎2009 Feb 25 12:35 AM