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

Select-Read-

Former Member
0 Likes
390

SELECT oprcd fisclos FROM zrops INTO TABLE i_zrops.

SELECT kostl bkzks FROM csks INTO TABLE i_csks

WHERE kostl = i_ccxdetimp-kostl.

and kokrs = l_chglog-kokrs.

LOOP AT I_CSKS where kostl = i_ccxdetimp-kostl .

loop at i_ccxdetimp.

read table csk

READ TABLE i_zrops WITH KEY oprcd = i_ccxdetimp-kostl.

if sy-subrc = 0.

IF i_csks-bkzkp = 'X'.

i_ccxdetimp-datbi = i_zrops-fisclos.

ENDIF.

endif.

Modify i_ccxdetimp.

clear i_ccxdetimp.

ENDLOOP.

endloop.

I am changing one internal table field ,if it satisfies that condition.

Is it works ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
351

Hi,

You should try it by yourself in SAP and see if it works or needs some fixing.

Regards,

Teddy

1 REPLY 1
Read only

Former Member
0 Likes
352

Hi,

You should try it by yourself in SAP and see if it works or needs some fixing.

Regards,

Teddy