cancel
Showing results for 
Search instead for 
Did you mean: 

Create Invoice Without PO- SRM

Former Member
0 Kudos

Hi,

I want to hide some fields in Create Invoice screen w/o PO. How can I achieve this?

Also is it correct that there is same Tcode for Create Invoice w/ and w/o PO(e.g. BBPIV01)? Actually our requirement is that we want to use Create Invoice w/o PO screen, but dont want many of the fields which exist on the std screen.

While, in create Invoice w/ PO screen, we dont want to hide anything.

Thanks for help,

Pravin

Accepted Solutions (1)

Accepted Solutions (1)

yeushengteo
Advisor
Advisor
0 Kudos

Hi,

You can considered to use the BADI BBP_UI_CONTROL_BADI to hide the screen field that you do not want to display. For invoice item that is created without a PO, the item has no reference to any PO item. So in this case, you can based on the item detail to determine that screen logic. However you cannot hide the field even before you start entering the invoice details.

If you want to hide the fields the moment you called the transaction code, please create your own Z transaction code referring to the standard program and create new screen variant for it by hiding the field you do not want to show. Use the BADI BBP_SCREENVARIANT to assign the screen variant over the transaction code you are executing.

Regards.

Answers (1)

Answers (1)

former_member181958
Participant
0 Kudos

Thanks.