SAP Managed Tags ABAP Development Hi Gurus, do I have access after calling the method SET_TABLE_FOR_FIRST_DISPLAY to the table in it ? I'd like to modify it before refreshing (I don't know the name of the table)
SAP Managed Tags ABAP Development Hi, Check this CALL METHOD GRID1->SET_TABLE_FOR_FIRST_DISPLAY EXPORTING I_STRUCTURE_NAME = 'gt_fcat' IS_PRINT = GS_PRINT IS_LAYOUT = GS_LAYOUT CHANGING IT_OUTTAB = IT_FINAL[] "<< Make iit in [] aRs Reply Former...
SAP Managed Tags ABAP Developmenthi experts, I am using the method set_table_for_first_display to display my grid output. when am excute the program its showing run time error. error is showing in call method alv_grid->set_table_for_first_display runtime error is showing in 'NULL'...
SAP Managed Tags ABAP Development TYPES: BEGIN OF TY_FINAL, KUNNR LIKE VBAK-KUNNR, VBELN LIKE VBAK-VBELN, POSNR LIKE VBAP-POSNR, MATNR LIKE VBAP-MATNR, NETPR LIKE VBAP-NETPR, END OF TY_FINAL. DATA: IT_FINAL TYPE STANDARD TABLE OF TY_FINAL WITH HEADER LINE. DATA: gt_fcat TY...
SAP Managed Tags ABAP Development HCM Employee Self-Service Hi friends, set_table_for_first_display using display interactive reports. My task: When am i select Some row inFirst DisplayandExecutMySecond displayhavesame related data. I have idea how to do Using Function Modules. I should use ...