Add a field (for example, order type AUART) to a display variant of the delivery due list (Transaction VL04). The field cannot be maintained using Customizing in the standard system.
Cause and prerequisitesCustomer requirement
Solution(Internal)
A solution is only possible with a modification. Ask your consultant for more information.
Proceed as follows:
1. Use function 'Dictionary: Initial screen ' (Transaction SE11) with:
- Database table VBVFI
2. Include the required field (for example AUART) in table VBVFI
3. Save and activate
4. Make the required field (for example, AUART) avaialble in program LV05LU03:
in the loop LOOP AT LVBVFI
...
VBVFI_TAB = LVBVFI.
SELECT * FROM VBAK WHERE VBELN = LVBVFI-VBELN. <<<<<< Insert
ENDSELECT. <<<<<< Insert
VBVFI_TAB-AUART = VBAK-AUART. <<<<<< Insert
APPEND VBVFI_TAB.
5. Customizing
Do not include the field in table T180A, since the delivery due list runs exclusively via the index.
Caution:
Refer to related Note 158367. This note draws your attention to the special include structure VBVFIZ and user exit MOVE_USERFIELDS.
Additional key words
Delivery due list
No comments:
Post a Comment