Thursday, April 11, 2024

Tax Code in Transactions

Create an entry in the transaction OBZT.

Saturday, November 26, 2022

Only & & of material & & available

 

  • Error message VL150 - 'Only & & of material & & available' appears due to many reasons:
    The following are some of them.
  • Causes:
  1. There is not enough quantity available for the confirmation of the delivery although you can see enough available quantity in transaction MMBE or MD04.
  2. Different scope of checks (transaction OVZ9) for the preceding document (e.g. sales order) and follow-up document (delivery).
  3. Negative cumulated ATP quantity in transaction CO09.
  4. Sufficient available stock on storage location level but not on plant level.
  5. ATP quantities are checked against a storage location in spite of no storage location has been determined in the predecessor sales document so the system should check available quantities on plant level only.
  6. Inconsistencies.


    The resolution is depended on the the cause of the issue.
    The resolution for the above causes is explained in KBA 1513607. You can refer it for further explaination.

Tuesday, November 1, 2022

Shipping Point Determination

Transaction - ovl2

Assign Shipping Point to Plant

 Transaction - OVXC

Wednesday, August 17, 2022

Monday, June 27, 2022

Code for Hiding Variant

 TYPES: BEGIN OF ty_exl,
line TYPE char72,
END OF ty_exl.
DATA: t_exclude TYPE STANDARD TABLE OF ty_exl,
s_exclude TYPE ty_exl.

INITIALIZATION.

CALL FUNCTION 'RS_SUBMIT_INFO'
* IMPORTING
* P_SUBMIT_INFO =
.

s_exclude-LINE = 'SPOS'.
APPEND s_exclude TO t_exclude.
CLEAR s_exclude.

CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = '%_00'
* P_PROGRAM = ' '
TABLES
p_exclude = t_exclude.