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
959

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
924

Add in exit ZXF04U01

manas m.

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).

6 REPLIES 6
Read only

Former Member
0 Likes
925

Add in exit ZXF04U01

manas m.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
924

Go for nested 'IF* conditions.

Read only

0 Likes
924

He just did.

Read only

Former Member
0 Likes
924

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
924

You question and the solution provided is nowhere related.

Were you asking for a exit ?????

Read only

0 Likes
924

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!!!!!