‎2010 Jan 14 9:17 AM
Hi ABAPers,
I have a requirement to develope a new report program which should accept a file which contains a list of PO and related Line Items to be closed. Basically the u201CDelivery completedu201D (EKPO-ELIKZ) check-box should be ticked and the PO should be saved.
I know I have to use BAPI: BAPI_PO_CHANGE.
But I am not aware how the parameters of this BAPI is populated.
Please let me know how to populate the parameters of this BAPI in order to Close the list of POs from file.
Input for this BAPI - I have only PO number, item number.
Thanks,
~Sachin
‎2010 Feb 19 10:20 AM
u define like it_item like standard table of BAPIMEPOITEM,
wa_item like BAPIMEPOITEM,
and then you update like
WA_ITEM-NO_MORE_GR= 'x'.
Edited by: Krupaji on Feb 19, 2010 11:22 AM
‎2010 Jan 14 9:21 AM
‎2010 Feb 18 3:36 PM
Hi all,
Now I am able to close the PO using BAPI BAPI_PO_CHANGE.
Here I have one requirement to stop triggering messages while closing PO.
Please tell me how to stop triggering of output type if I close PO using this program.
Thanks,
~Sachin
‎2010 Feb 18 4:04 PM
>
> Hi all,
>
> Now I am able to close the PO using BAPI BAPI_PO_CHANGE.
>
> Here I have one requirement to stop triggering messages while closing PO.
> Please tell me how to stop triggering of output type if I close PO using this program.
>
> Thanks,
> ~Sachin
check parameter to BAPI
NO_MESSAGING = 'X'
‎2010 Feb 19 12:30 PM
Hi,
Pass 'X' to NO_MESSAGEING parameter of this BAPI while closing POs to stop triggering messages.
Ganga
‎2010 Feb 19 10:20 AM
u define like it_item like standard table of BAPIMEPOITEM,
wa_item like BAPIMEPOITEM,
and then you update like
WA_ITEM-NO_MORE_GR= 'x'.
Edited by: Krupaji on Feb 19, 2010 11:22 AM
‎2010 May 04 5:17 AM