0% found this document useful (0 votes)
1K views3 pages

RV03VFZZ

This document contains code for several user exits used to modify availability checking in an SAP system. It includes forms for influencing availability checks before and after they occur, initializing global data, and selecting plants to check availability for. The forms call include files and user-written code modules beginning with "ZZ" to customize the availability checking process.

Uploaded by

koyalp
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views3 pages

RV03VFZZ

This document contains code for several user exits used to modify availability checking in an SAP system. It includes forms for influencing availability checks before and after they occur, initializing global data, and selecting plants to check availability for. The forms call include files and user-written code modules beginning with "ZZ" to customize the availability checking process.

Uploaded by

koyalp
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

***INCLUDE LV03VFZZ .

************************************************************************
* *
* This include is reserved for user modifications *
* *
* Forms for availability check *
* *
* The name of modification modules should begin with 'ZZ'. *
* *
************************************************************************
*---------------------------------------------------------------------*
* FORM ZZEXAMPLE *
*---------------------------------------------------------------------*
* text...................................... *
*---------------------------------------------------------------------*
*FORM ZZEXAMPLE.
* ...
*ENDFORM.
*eject
*---------------------------------------------------------------------*
* FORM USEREXIT_AVAILABILITY_IN *
*---------------------------------------------------------------------*
* This userexit may be used to influence the availability *
* check which is carried out after this program *
* *
* This form is called from routine MVERF_PRUEFEN in LV03VF0M *
* *
*---------------------------------------------------------------------*
* --> US_ATPPR: ATP or forecast check (if blank) *
*---------------------------------------------------------------------*
FORM USEREXIT_AVAILABILITY_IN USING VALUE(US_ATPPR).
* Add your statements below
*{ INSERT DIFK901834 1
* ROI DF Instalaltion
include ZI203V01 .
include ZI203V11 .
* End of insert
*} INSERT
*{ INSERT DIFK912515 2
include zz45a140.
*} INSERT

ENDFORM.
*eject
*---------------------------------------------------------------------*
* FORM USEREXIT_AVAILABILITY_OUT *
*---------------------------------------------------------------------*
* This userexit may be used to influence the results of the *
* availability which was carried out before this program was *
* called *
* *
* This form is called from routine MVERF_PRUEFEN in LV03VF0M *
* *
*---------------------------------------------------------------------*
* --> US_ATPPR: ATP or forecast check (if blank) *
*---------------------------------------------------------------------*
FORM USEREXIT_AVAILABILITY_OUT USING VALUE(US_ATPPR).
* Add your statements below
*{ INSERT DIFK901834 1
* ROI DF Instalaltion
include ZI203V02 .
include ZI203V12 .
* End of insert
*} INSERT
*{ INSERT DIFK910043 2
* loosing tmvf-verpn i2 set to X
* should be set back
include zz45a140.
*} INSERT
ENDFORM.
*eject
*---------------------------------------------------------------------*
* FORM USEREXIT_DATA_REFRESH *
*---------------------------------------------------------------------*
* This userexit may be used to initialize global data which *
* are declared in LV03VTZZ. *
* *
* This form is called from routine BEDARF_INITIALISIEREN in *
* LV03VF0B *
*---------------------------------------------------------------------*
FORM USEREXIT_DATA_REFRESH.
* Add your statements below
*{ INSERT DIFK901834 1
*ROI DF Instalaltion
include ZI203V03 .
* End of insert
*} INSERT

ENDFORM.
*eject
*---------------------------------------------------------------------*
* FORM USEREXIT_PLANT_SELECTION *
*---------------------------------------------------------------------*
* This userexit may be used to provide a list of plants for *
* which availability is to be checked. *
* *
* This form is called from routine WERKE_ERMITTELN in LV03VF0W *
* *
*---------------------------------------------------------------------*
FORM USEREXIT_PLANT_SELECTION.
* Allowed plants in sales area
LOOP AT PLANTS WHERE NOT EXISTS IS INITIAL.
* Place in here the logic to select from the allowed plants, if a
* selection is desired set field PLANTS-SELKZ to X
ENDLOOP.
ENDFORM.
*eject
*{ INSERT DIFK901834 1
* ROI DF Instalaltion
include ZI203V21 .
* End of insert
*} INSERT

You might also like