Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

customer master logic

Former Member
0 Likes
855

need logic for:-

if customer master has the tax classification is

available, if the tax classification is coming blank

then if the customer sales org is 1000 and if

the transaction code is XD01/VD01 then the

value in the customer tax classification

against US country is SIX(6).

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
820

Add in exit ZXF04U01

manas m.

6 REPLIES 6
Read only

Former Member
0 Likes
821

Add in exit ZXF04U01

manas m.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
820

Go for nested 'IF* conditions.

Read only

0 Likes
820

He just did.

Read only

Former Member
0 Likes
820

IF ( sy-tcode = 'XD01' OR sy-tcode = 'VD01' ) AND

i_knvv-vkorg EQ '1000'.

LOOP AT i_knvi.

IF i_knvi-taxkd IS INITIAL AND

i_knvi-aland EQ 'US'.

i_knvi-taxkd = '6'.

MODIFY i_knvi TRANSPORTING taxkd.

ENDLOOP.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
820

You question and the solution provided is nowhere related.

Were you asking for a exit ?????

Read only

0 Likes
820

Keshva,

I was wondering with the logic to be used. IF condition i used but it wasnt populating the value.

manas@ Modify helped me.

Thanks All!!!!!