Application Development 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: 

EXIT FOR IK11

Former Member
0 Kudos

Hai

in tcode ik11 when user mesurement point and press enter

in the next screen he enters counter reading

i need exit here if counter reading exceeds total ctr reading

ineed to call tcode iw21 and enter values and saveit.

exits for ik11 are iwrc0001,2,3,4,5.

thanking you.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Asif,

IMRC0001 MeasPoint/MeasDoc: Exit before update (after COMMIT WORK)

IMRC0002 MeasPoint: Menu exit for customer-specific function

IMRC0003 MeasDoc: Menu exit for customer-specific function

IMRC0004 Measure.doc.:Exit according to stndrd checks for new mes.doc

IMRC0005 Measure point: Exit in AUTHORITY_CHECK_IMPT

These are d available exits for IK11, hope it will be helpful for u.

Regards

Karan Arya

4 REPLIES 4

Former Member
0 Kudos

I think you can try with the menu exit 'IMRC0002'.

After checking the required condition, you can call the other transaction.

Former Member
0 Kudos

Hi Asif,

IMRC0001 MeasPoint/MeasDoc: Exit before update (after COMMIT WORK)

IMRC0002 MeasPoint: Menu exit for customer-specific function

IMRC0003 MeasDoc: Menu exit for customer-specific function

IMRC0004 Measure.doc.:Exit according to stndrd checks for new mes.doc

IMRC0005 Measure point: Exit in AUTHORITY_CHECK_IMPT

These are d available exits for IK11, hope it will be helpful for u.

Regards

Karan Arya

0 Kudos

Hai karan

Thanks for ur replay

I think IMRC0001 works here

I need to call a transaction by checking the condition

Condition is if counter reading exceeds upper range then call the tcode iw21.

Could u help me.

Thank you

0 Kudos

Hi Asif,

u can check for the counter and call the transaction using Call Transaction statement.

data: t_code(4) value 'IW21'.

Call Transaction t_code.

Hope it works..

Regards

Karan Arya