Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ALV Grid

Status
Not open for further replies.

eduardoau

Programmer
Joined
May 27, 2002
Messages
1
Location
HK
Hv used this method CL_GUI_ALV_GRID=>SET_TABLE_FOR_FIRST_DISPLAY to integrade data on screen but some fields are corrupted, all of them are the last char shows a monster char. But sure the data in the container has no problem,
Is there any way I can check the date before integrade to on screen. Thanks for any advise.
 
have you tried the module below:

*MODULE create_control OUTPUT.
* IF container_r IS INITIAL.
* CREATE OBJECT container_r
* EXPORTING container_name = 'CONTAINER_1'.**

* CREATE OBJECT grid_r
* EXPORTING i_parent = container_r.

* CALL METHOD grid_r->set_table_for_first_display
* EXPORTING i_structure_name = 'it_list'
* CHANGING it_outtab = it_liste.
* ELSE.
* CALL METHOD grid_r->refresh_table_display
* EXPORTING i_soft_refresh = 'X'.
* ENDIF.
*ENDMODULE.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top