2015 Dec 02 7:26 AM
Dear Team
IN PBO ,I have created custom container and used CALL METHOD gref_grid->set_table_for_first_display , the table which i am passing in CALL METHOD gref_grid->set_table_for_first_display has 10 columns in which one with length of 255 , but in the output i can only enter 128 character even i have changed field catalog length to 255 its only taking 128 . but i user want to enter more than 200 char , how to achieve this
in screen shot 4th column has 255 length there i have to enter text more than 200-255 char.
Thanks
2015 Dec 02 7:43 AM
You cannot in ALV grid - FAQ - use search tool
I would suggest you
when clicked display a popup window with long text editor, then copy left part of longtext converted to text in the displayed field, update the hidden field.
Regards,
Raymond
Dear Team
IN PBO ,I have created custom container and used CALL METHOD gref_grid->set_table_for_first_display , the table which i am passing in CALL METHOD gref_grid->set_table_for_first_display has 10 columns in which one with length of 255 , but in the output i can only enter 128 character even i have changed field catalog length to 255 its only taking 128 . but i user want to enter more than 200 char , how to achieve this
in screen shot 4th column has 255 length there i have to enter text more than 200-255 char.
Thanks
2015 Dec 02 7:43 AM
You cannot in ALV grid - FAQ - use search tool
I would suggest you
when clicked display a popup window with long text editor, then copy left part of longtext converted to text in the displayed field, update the hidden field.
Regards,
Raymond
2015 Dec 02 10:34 AM
Thanks raymond
i have used CALL FUNCTION 'CATSXT_SIMPLE_TEXT_EDITOR' i m getting editor but i cannot pass value to screen after this .
CALL FUNCTION 'CATSXT_SIMPLE_TEXT_EDITOR'
EXPORTING
IM_TITLE = LV_title
* IM_DISPLAY_MODE = ' '
IM_START_COLUMN = 10
IM_START_ROW = 10
CHANGING
CH_TEXT = ITAB.
DATA : OUT_sTRING TYPE STRING.
CLEAR : OUT_STRING.
LOOP AT ITAB INTO fs_comment.
CONCATENATE OUT_STRING FS_COMMENT INTO OUT_sTRING.
ENDLOOP.
READ TABLE <fs_final2> ASSIGNING <fs_final1> INDEX e_row_id.
ASSIGN COMPONENT 'TLNUM' OF STRUCTURE <fs_final1> TO <fs_finalg5>.
<fs_finalg5> = OUT_STRING.
2015 Dec 02 11:07 AM
2015 Dec 02 11:30 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |