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: 

Event double click

Former Member
0 Kudos
150

Hello Friends

I want to know whether I can make a field "BUDAT" editable at double click event in the tcode FV70 only, as it comes in display mode when called by a Transaction variant but we want to have it editable inly when double clicked at that time.

Is it only possible by taking an access key from SAP for that Tcode and then writing code in PAI, or is there any other way.

Thanks

2 REPLIES 2

Former Member
0 Kudos
100

you can only do it in an exit or BADI provided by SAP for this transaction.In this exit you can write the code for the field BUDAT.

You may modify standard SAP code also by using the access key but that is not recoomended as SAP will not support it in further upgrades.

dani_mn
Active Contributor
0 Kudos
100

HI,

you can dynamicallly change field attributes by using

LOOP AT SCREEN.

if screen-name = 'FIELD1'.

screen-input = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

do this in PBO module. and for this you need access key.

REgards,