Application Development 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: 

ALV Report(sap-abap)

Former Member
0 Kudos

Hi,

gt_field_cat_line-outputlen = 20.

gt_field_cat_line-coltext = 'PO Number'.

gt_field_cat_line-seltext = 'PO Number'.

gt_field_cat_line-inttype = 'C'.

gt_field_cat_line-fieldname = 'BSTKD'.

<b>gt_field_cat_line-lowercase = ?</b>

APPEND gt_field_cat_line TO gt_field_cat.

Could u pls tell me what would be the possible value for <b>lowercase</b> field of SLIS_FIELDCAT ?

Thx in Adv.

Bapi

4 REPLIES 4

Former Member
0 Kudos

Hi,

this is for case sensitive.

gt_field_cat_line-lowercase = 'x'

Regards,

Sapna

Former Member
0 Kudos

possible values are X (in CAPS) or SPACE '' or not to declare

regards

shiba dutta

Former Member
0 Kudos

Hi,

gt_field_cat_line-lowercase = 'X'.

Regards,

Umasankar.

varma_narayana
Active Contributor
0 Kudos

Hi...

The LowerCase Attribute means

Even if we enter the data in the field when the Grid is in Edit mode

The values entered will not be converted into Uppercase

incase of gt_field_cat_line-lowercase = 'X'

oterwise they the value will be automatically converted into uppercase.

incase of gt_field_cat_line-lowercase = ' '

To Set the Edit mode enabled for grid

data : s_layo type slis_layout_alv.

s_layo-edit = 'X'.

AND PASS THIS TO THE PARAMETER LS_LAYOUT.

Reward if it helps.