2006 Sep 25 8:16 AM
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
2006 Sep 25 8:18 AM
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.
2006 Sep 25 8:19 AM
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,