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: 

BADI or User Exit for Post Goods Issue Reverse (VL09)

Former Member
0 Kudos

Hi,

Could you please let me know any BADI/User Exit which will trigger while doing Post Goods Issue Reverse through VL09 transaction.

Thanks,

Sandeep

2 REPLIES 2

Former Member
0 Kudos

Sandeep - Following are the BADI's triggered while processing VL09

LE_SHP_DELIVERY_PROC

LE_SHP_PRICING

BADI_LAYER

CUKO_PLANT_CHANGE

CU_CONFIG_DELEGATION

WVKU_DETERMINE_SP

ME_COMMITMENT_STO_CH

BADI_PRKNG_NO_UPDATE

FM_POP_CORE

ATP_PUBLISH_RESULTS

MB_QUAN_CHECK_BADI

MB_CHECK_LINE_BADI

MB_STOR_LOC_BADI_GTS

CHECK_COBL_ADDON

FAGL_DERIVE_SEGMENT

FAGL_DERIVE_PSEGMENT

BADI_MATN1

deepak_dhamat
Active Contributor
0 Kudos

hi ,

This are user exit .

Exit Name Description

V02V0001 Sales area determination for stock transport order

V02V0002 User exit for storage location determination

V02V0003 User exit for gate + matl staging area determination (headr)

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)

if you dont want to use user exit then

use this function module SXV_GET_CLIF_BY_NAME

function sxv_get_clif_by_name .

*"----


""Lokale Schnittstelle:

*" IMPORTING

*" VALUE(NAME)

*" VALUE(PREFIX) TYPE SEEX_CLIF_PREFIX

*" EXPORTING

*" VALUE(CLIF) TYPE SEOCLSNAME

*"----


call function 'SXV_ADD_PREFIX'

exporting

name = name

prefix = prefix

importing

new_name = clif.

endfunction.

debug the function module you will get name of badi used for transaction while saving .

regards

Deepak.