Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

USER-EXIT for post goods issue

former_member190312
Active Participant
0 Kudos

Hi all,

after the delivery (VL01n)is created, i have to go for post goods issue.there is a push button named 'post goods issue' in VL02n.

when i will press this button,all my data for this delivery ,should be downloaded to a text file.

for this thing, i want to use a USER-EXIT.can u plz advice me the correct & specific user-exit for this requirement.it is very urgent. i have to it by today.

your help is highly appreaciated.

Regards

pabitra

1 ACCEPTED SOLUTION

Former Member
0 Kudos

check BADI

LE_SHP_GOODSMOVEMENT

, it will tigger while doing the PGI.

<b>this BADI @ the time of PGI in VL02N , not @ the time of SAVFE.

more info.</b><b>http://help.sap.com/saphelp_nw04/helpdata/en/ee/a1d548892b11d295d60000e82de14a/content.htm</b>Regards

Prabhu

7 REPLIES 7

Former Member
0 Kudos

Check the following

V02V0001 Sales area determination for stock transport order

V02V0002 User exit for storage location determination

V02V0003 User exit for gate + matl staging area determination (h

V02V0004 User Exit for Staging Area Determination (Item)

V50PSTAT Delivery: Item Status Calculation

V50Q0001 Delivery Monitor: User Exits for Filling Display Fields

V50R0001 Collective processing for delivery creation

V50R0002 Collective processing for delivery creation

V50R0004 Calculation of stock for POs for shipping due date list

V50S0001 User Exits for Delivery Processing

V53C0001 Rough workload calculation in time per item

V53C0002 W&S: RWE enhancement - shipping material type/time slot

V53W0001 User exits for creating picking waves

VMDE0001 Shipping Interface: Error Handling - Inbound IDoc

VMDE0002 Shipping Interface: Message PICKSD (Picking, Outbound)

VMDE0003 Shipping Interface: Message SDPICK (Picking, Inbound)

VMDE0004 Shipping Interface: Message SDPACK (Packing, Inbound)

Regards

Former Member
0 Kudos

check BADI

LE_SHP_GOODSMOVEMENT

, it will tigger while doing the PGI.

<b>this BADI @ the time of PGI in VL02N , not @ the time of SAVFE.

more info.</b><b>http://help.sap.com/saphelp_nw04/helpdata/en/ee/a1d548892b11d295d60000e82de14a/content.htm</b>Regards

Prabhu

0 Kudos

Hi prabhu,

Thanks for ur help.i got the badi but in which TRANSACTION, i have to use this badi.i am new to badi.plz tell me , how can i use this LE_SHP_GOODSMOVEMENT.

plz tell me the procedure to follow?

it is very very urgent.i will reward the point.

Regards

pabitra

0 Kudos

Hi

You have checked LE_SHP_GOODSMOVEMENT BADI in SE18 Transaction.

Now Go to Tcode SE19 for implementing BADI , Give some Z... name for implemntation.

create

then it will ask for definition name give LE_SHP_GOODSMOVEMENT BADI name.

Now there is one interface that will autmatically available to you.

Double click on method QUANT_POSTING_CHANGE

Automatically you will get

Method ..

write ur code here.

endmethod.

0 Kudos

hi gudia,

i have putted that badi(LE_SHP_GOODSMOVEMENT) in se18.

it is not exist IT SEEMS(error message is comming).

Is this badi exist in SAP?

i want to create one badi for post goods issue.

In se24,i put CL_EXITHANDLER.then i put break points in GET_INSTANCE.but while pressing that PGI button,

control is not going to get_instance program.so i am not getting any badi created after PGI.

Former Member
0 Kudos

hi

Kindly check this Program MV50AFZ1 .

It has a form FORM userexit_save_document which is called when u click the PGI button

Inside put a check

IF fcode = 'WABU_T' " this is the Fcode for PGI Button

Copy from xlips and xlikp table to the TEXT file u desire to move it to using GUI_DOWNLOAD function module

ENDIF

Former Member
0 Kudos

Hi Pabitra,

From which tables your want to download the data . I am downloading data in this user exit from mseg and mkpf . For that I am using IF_EX_MB_DOCUMENT_BADI to export the data of mseg mkpf in memory then in delivery user exit I am importing the same data .

I am using delivery user exit .MV50AFZ1

form userexit save document .

Thanks,

Suhas