cancel
Showing results for 
Search instead for 
Did you mean: 

New screen with table control information in Process Bid Invitation

Former Member
0 Kudos

Experts,

This is again a similar requirement as my earlier post today. We are on SRM 5.0

I need to add a new screen with table control information in Process Bid Invitation.

I need to add the new screen under Item Data tab.

I need to name that screen and that name shud appear on top under the Item Data Tab as a link to that screen.

( Typically like what we have for

Header data

Basic Data | Partner | Bidder/Bids )

How to go about this?

Any help on this regard is appreciated.

Rgds

SV

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Also see this note which will be very useful;

Note 942611 - BBP_CUF_BADI: No tabular customer enhancements

BR,

Disha.

Pls reward points for useful answers.

Answers (2)

Answers (2)

Former Member
0 Kudos

Any Answers Experts....

Thanks

SV

Former Member
0 Kudos

hi,

You will need to implement the BADI "BBP_CUF_BADI" for the custom tab/screen.

To use the BBP_CUF_BADI you have to:

-Define your own Function Group (FG)

-Create your specific screen at its flow logic in the FG

-Create 2 Function modules in the FG:

---You'll use the first to send data to the screen FG from the method PUT_DATA of the BADI

---You'll use the second to get data from the screen FG to the BADI (method PUT_DATA of the BADI)

The pupose of these 2 FM is to exchange data between the BADIs methods and the Function Group (with global data of the FG).

The 1st FM is to be called from the PUT_DATA method of the BADI, to send data to the Function Group (FG global data): for example items and/or header and iv_mode, ...

The 2nd FM is to be called from the GET_DATA method of the BADI to get the result of the subscreen (CUF changes).

Also Check note 672960 for CUF functionality

BR,

Disha.

Pls reward points for useful answers.