cancel
Showing results for 
Search instead for 
Did you mean: 

Hide condition types in pricing procedure

Former Member
0 Kudos

Is it possible to hide condition types in a pricing procedure, but still have the system calculate it as normal?

Kind regards

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Simen,

Specific condition types can be hidden on pricing screens; we did for VPRS condition type. This will hide the condition types for display only; they will be calculated normally and posted if not statistical.

In include LV69AFZZ there is a user exit - USEREXIT_FIELD_MODIFICATION; here you need to add code as follows but replace VPRS with the specific condition type you want.

if <whatever conditions in which you want to hide it>

CASE SCREEN-NAME.

WHEN 'KOMV-KBETR'.

IF KOMV-KSCHL = 'VPRS'.

SCREEN-ACTIVE = 0.

ENDIF.

WHEN 'KOMV-KWERT'.

IF KOMV-KSCHL = 'VPRS'.

SCREEN-ACTIVE = 0.

ENDIF.

WHEN 'KOMV-KWERT_K'.

IF KOMV-KSCHL = 'VPRS'.

SCREEN-ACTIVE = 0.

ENDIF.

ENDCASE.

ENDIF (for conditions in which the field has to be hidden)

However we found that this happened only at item level; header still showed the condition type. Smart users can proportionately allocate the header condition amount to arrive upon the item level values. But you may investigate along these lins to determine if it is possible at header too.

<b><REMOVED BY MODERATOR></b>.

Cheers,

KC

SAP SD

Message was edited by:

Yathish K

Former Member
0 Kudos

It's not possible to hide condition types in pricing procedures. What is the relevance of doing so?

Former Member
0 Kudos

Noufel,

as I said, note 105621 was created just to do this. You can really hide condition types in the pricing procedure.

Kind regards,

Paulo Café

Former Member
0 Kudos

Hi,

take a look at SAP note 105621.

Best regards,

Paulo