Reputation: 41
Normal creation of checkbox:
PARAMETERS : p_check TYPE char1 AS CHECKBOX.
Without using this will it is possible to declare the parameter as checkbox?
Upvotes: -1
Views: 1968
Reputation: 59
PARAMETERS : p_check TYPE flag.
PARAMETERS : p_check TYPE boole_d.
This will also display a check box on the screen.
So any domain which is having a length of single character and with a value range of fixed values as 'X' and blank/space helps us to display the parameter as check box.
Here in this case flag data element is assigned to domain 'flag' with data length single character and value range having 'X' and blank.
For boole_d it is assigned to domain 'boole' having the properties mentioned as above.
Upvotes: 0
Reputation: 241
Checkbox can be created in Dynpro Painter too. Without coding, you can drag and drop there.
Upvotes: 0
Reputation: 41
Yes it is possible.
PARAMETERS : p_check TYPE boole_d.
This will display the parameter as check box.
Upvotes: 4