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

AIST0002

Former Member
0 Likes
887

Hi

I have created additional fields using the enhancement AIST0002.

How and where do I make the changes so that this new field is editable only in the change mode and non-editable in the create and display mode.

Please advise.

Thank you.

Hi

I have created additional fields using the enhancement AIST0002.

How and where do I make the changes so that this new field is editable only in the change mode and non-editable in the create and display mode.

Please advise.

Thank you.

5 REPLIES 5
Read only

Former Member
0 Likes
806

Hi,

You can go through the below link, which has detail explaination.

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

Reward points if useful.

Regards,

Atish

Read only

0 Likes
806

Hi Atish

I've already read the document which is similar to the documentation in SMOD and it does not really help me.

Perhaps you can advise:

there is an include program LXAISF00 which disable input if called by display transaction

MODULE CHECK_MODE OUTPUT.

IF GD_MODE = 'A'.

LOOP AT SCREEN.

SCREEN-INPUT = '0'.

MODIFY SCREEN.

ENDLOOP.

ENDIF.

ENDMODULE.

The program does not read this. Hence the customised fields are editable in dispaly mode (transaction AS03).

Can you advise what is wrong.

Thanks.

Read only

0 Likes
806

Hi,

Chek out this Enhancement AIST0002 in SMOD and in this the function module EXIT_SAPL1022_001. Check out this and i think this will help you.

Reward points if it is help ful.

Regards,

Kiran i

Read only

0 Likes
806

Hi,

I have implemented this functioanlity, but now not able to recollect fully, and I am also not in front of the system.

But as far as I remeber I had checked for the sy-tcode = 'AS03' and based on that I had written my logic in one of the includes.

Hope it helps or I may send you the correct steps tomorrow.

Regards,

Atish

Read only

0 Likes
806

Hi

Thank you for the tips. I have managed to solve my problem.