cancel
Showing results for 
Search instead for 
Did you mean: 

URGENT!!while adding new char. into char!!!

Former Member
0 Kudos

Hi all,

I have added an New Characteristic EP INDICATOR ,But no mapping for it based on other Object Priority Code which has mapping...whereas I can get NO for other cube with these two fields ,but mapping is not done for Priority code..But I am not getting values like yes or no in my cube with the end routine written as

IF <result_fields>-/bic/zpriority <> 'EP'.

<result_fields>-/bic/zep_indic = 'N'.

ELSE.

<result_fields>-/bic/zep_indic = 'Y'.

ENDIF.

Is there any Select statement to be written for priority,if u have the mapping for priority?????

pls anyone help me URGENT!!

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Solved by myself

Former Member
0 Kudos

Hi

Hope the code below helps

if its update rule use the following code:

if comm_structure-/bic/zpriority NE 'EP'.

result eq 'N'.

else.

result eq 'Y'.

endif.

if transfer ruels use the following code:

if tran_structure-/bic/zpriority NE 'EP'.

result eq 'N'.

else.

result eq 'Y'.

endif.