‎2009 Apr 29 12:29 PM
hi all,
i have appended a zstucture to a standard table , but how can i set the check box for initial values for the appended fields?
Please suggest me in this regard.
Thanks & Regards,
Deepak.
‎2009 Apr 29 12:50 PM
‎2009 Apr 29 1:29 PM
Hi,
Directly its not possible....
instead there is a way for doing it....
Go to the data element level of that checkbox...
in the further characteristic tab of the data element ...
specify a name for parameter ID.
then write a small program to set the parameter ID to the value 'X'.
say for example you give the parameter ID name as DPK
then in the program,
data : w_chk type c default 'X'
SET PARAMETER ID DPK FIELD W_CHK.Now the value X will be default for the checkbox field
Regards,
Siddarth
‎2009 Apr 29 3:27 PM
hi all,
thanks for replies...actually i have appended a zstructure to standard table
as we know that the initial values check box will be automatically checked when we first activate a table
after creating...my issue was to get all fields of my zstructure to be checked for iniial entries....
now the problem is sloved....what i did is in se14 we need to select force change..so all the fields will be checked for initial entries.
thnaks for replies n time..
Deepak.