on 2025 Apr 19 6:09 AM
Hi Experts,
In SAP S/4HANA Public Cloud, is there a way to make the "Delivery Note" field (LFSNR) mandatory during Goods Receipt (movement type 101)?
Can this be done via SSCUI, BAdI in Custom Logic App, or any other standard method?
Appreciate any suggestions.
Thanks!
Request clarification before answering.
Hello,
In SAP S/4HANA Public Cloud, the field "Delivery Note" (LFSNR) during Goods Receipt (Movement Type 101) is not mandatory by default.
Nevertheless, you can enforce this requirement using custom business logic, as SSCUIs do not provide direct control over the field's behaviour for inventory transactions.
Recommended Solution
You can utilise the Custom Logic App to implement a BAdI that validates the field during posting:
Use Case: Implement logic that checks whether the Delivery Note (field LFSNR) is filled. If it is empty, raise an error message.
IF im_header-deliverynote IS INITIAL.
RAISE EXCEPTION TYPE /BOBF/CX_FRW
EXPORTING textid = 'Delivery Note must be entered'.
ENDIF.
Let me know if it works
Thank you and kind regards
Chuma
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
11 | |
8 | |
2 | |
2 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.