<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Refresh fieldcatalog during runtime in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600151#M24522</link>
    <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105070-capture13.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;line 192, i check values of fieldcatalog and line 197, i have the same table so this table haven't been updated&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jan 2018 08:11:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2018-01-24T08:11:38Z</dc:date>
    <item>
      <title>Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600132#M24503</link>
      <description>&lt;P&gt;Hi experts, i need to delete duplicate entries when the user hide fields but the value of the fieldcatalog isn't refresh. Can you help me please ? Thanks in advance for your help &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Here is my code :&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;REPORT ZTESTALEX01 NO STANDARD PAGE HEADING.
TYPE-POOLS: slis.
CLASS cl_event_receiver DEFINITION DEFERRED.
*&amp;amp;-------------------------------------------------------------------*
*&amp;amp; Module STATUS_0100 OUTPUT
*&amp;amp;-------------------------------------------------------------------*
* text
*--------------------------------------------------------------------*
MODULE STATUS_0100 OUTPUT.
 SET PF-STATUS 'MAIN'.
 SET TITLEBAR 'ALV_EXAMPLES'.
ENDMODULE. " STATUS_0100 OUTPUT
MODULE display_grid OUTPUT.
 PERFORM read_data.
 PERFORM display_grid.
ENDMODULE.
MODULE user_command_0100 INPUT.
* to react on oi_custom_events:
 call method cl_gui_cfw=&amp;gt;dispatch.
 CASE sy-ucomm.
 WHEN 'BACK' OR
 'EXIT' OR
 'CANCEL'.
 LEAVE PROGRAM.
 WHEN OTHERS.
* do nothing
 ENDCASE.

ENDMODULE.

TYPES: BEGIN OF ty_mara,
 MATNR LIKE MARA-MATNR, "Article
 ZZBIOJFA LIKE MARA-ZZBIOJFA, "Article bio
 MTART LIKE MARA-MTART, "
 ZZFRUIT LIKE MARA-ZZFRUIT, "
 ZZALLERGENE LIKE MARA-ZZALLERGENE, "
 PRDHA LIKE MARA-PRDHA, "
 LABOR LIKE MARA-LABOR, "lab./bureau d'étude
END OF ty_mara.

DATA: g_cont TYPE REF TO cl_gui_custom_container,
 g_grid TYPE REF TO cl_gui_alv_grid,
 rcv_ev TYPE REF TO cl_event_receiver,
 gs_layout TYPE lvc_s_layo,
 it_mara TYPE TABLE OF ty_mara,
 it_aff TYPE TABLE OF ty_mara,
 wa_mara TYPE ty_mara,
 it_fieldcat TYPE lvc_t_fcat,
 wa_fieldcat TYPE lvc_s_fcat,
 NOOUT1 TYPE STRING,
 NOOUT2 TYPE STRING,
 TEST TYPE C VALUE 'X',
 l_valid TYPE C,
 RS_SELFIELD TYPE SLIS_SELFIELD.
FIELD-SYMBOLS : &amp;lt;mara&amp;gt;,&amp;lt;aff&amp;gt;,&amp;lt;field&amp;gt; TYPE lvc_s_fcat ,&amp;lt;from&amp;gt;,&amp;lt;to&amp;gt;.
TABLES: MARA.

* CLASS lcl_events_d0100 DEFINITION
 class cl_event_receiver definition.

 public section.
 methods:
 handle_after_refresh for event after_refresh
 of cl_gui_alv_grid.
endclass. "lcl_events_d0100 DEFINITION
* CLASS lcl_events_d0100 IMPLEMENTATION
 class cl_event_receiver implementation.

* METHOD after_refresh *
 method handle_after_refresh.
 IF TEST = 'X'.
 perform d0100_event_after_refresh.
 ENDIF.
 endmethod. "after_refresh *
endclass. "lcl_events_d0100 IMPLEMENTATION
INITIALIZATION.
 PERFORM REMPLIR_AFFICHAGE.
 START-OF-SELECTION.
 CALL SCREEN 0100.

*&amp;amp;-------------------------------------------------------------------*
*&amp;amp; Form read_data
*&amp;amp;-------------------------------------------------------------------*
FORM read_data.
 SELECT MATNR ZZBIOJFA MTART ZZFRUIT ZZALLERGENE PRDHA LABOR
 INTO CORRESPONDING FIELDS OF TABLE it_mara
 FROM MARA.
ENDFORM.

*&amp;amp;-------------------------------------------------------------------*
*&amp;amp; Form display_grid
*&amp;amp;-------------------------------------------------------------------*
FORM display_grid.
 IF g_cont IS INITIAL.
 CREATE OBJECT g_grid
 EXPORTING
 i_appl_events = 'X'
 i_parent = cl_gui_container=&amp;gt;default_screen.

* create handler
 CREATE OBJECT rcv_ev.

* register handler for events
 SET HANDLER rcv_ev-&amp;gt;handle_after_refresh FOR g_grid.

 CALL METHOD g_grid-&amp;gt;set_table_for_first_display
* EXPORTING
* I_BUFFER_ACTIVE =
* I_BYPASSING_BUFFER =
* I_CONSISTENCY_CHECK =
* I_STRUCTURE_NAME = 'MARA'
* IS_VARIANT =
* I_SAVE =
* I_DEFAULT = 'X'
* IS_LAYOUT =
* IS_PRINT =
* IT_SPECIAL_GROUPS =
* IT_TOOLBAR_EXCLUDING =
* IT_HYPERLINK =
* IT_ALV_GRAPHICS =
* IT_EXCEPT_QINFO =
* IR_SALV_ADAPTER =
 CHANGING
 it_outtab = it_aff
 IT_FIELDCATALOG = it_fieldcat
* IT_SORT =
* IT_FILTER =
 EXCEPTIONS
 invalid_parameter_combination = 1
 program_error = 2
 too_many_lines = 3
 OTHERS = 4.
 IF sy-subrc &amp;lt;&amp;gt; 0.
 MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
 ENDIF.
 ENDIF.
ENDFORM.

FORM REMPLIR_AFFICHAGE.
 wa_fieldcat-col_pos = 1.
 wa_fieldcat-fieldname = 'MATNR'.
 wa_fieldcat-tabname = 'TB_MARA'.
 wa_fieldcat-ref_table = 'MARA'.
 APPEND wa_fieldcat TO it_fieldcat.
 clear wa_fieldcat.
 wa_fieldcat-col_pos = 2.
 wa_fieldcat-fieldname = 'ZZBIOJFA'.
 wa_fieldcat-tabname = 'TB_MARA'.
 wa_fieldcat-ref_table = 'MARA'.
 APPEND wa_fieldcat TO it_fieldcat.
 clear wa_fieldcat.
 wa_fieldcat-col_pos = 3.
 wa_fieldcat-fieldname = 'MTART'.
 wa_fieldcat-tabname = 'TB_MARA'.
 wa_fieldcat-ref_table = 'MARA'.
 APPEND wa_fieldcat TO it_fieldcat.
 clear wa_fieldcat.
 wa_fieldcat-col_pos = 4.
 wa_fieldcat-fieldname = 'ZZFRUIT'.
 wa_fieldcat-tabname = 'TB_MARA'.
 wa_fieldcat-ref_table = 'MARA'.
 APPEND wa_fieldcat TO it_fieldcat.
 clear wa_fieldcat.
 wa_fieldcat-col_pos = 5.
 wa_fieldcat-fieldname = 'ZZALLERGENE'.
 wa_fieldcat-tabname = 'TB_MARA'.
 wa_fieldcat-ref_table = 'MARA'.
 APPEND wa_fieldcat TO it_fieldcat.
 clear wa_fieldcat.
 wa_fieldcat-col_pos = 6.
 wa_fieldcat-fieldname = 'PRDHA'.
 wa_fieldcat-tabname = 'TB_MARA'.
 wa_fieldcat-ref_table = 'MARA'.
 APPEND wa_fieldcat TO it_fieldcat.
 clear wa_fieldcat.
ENDFORM.



FORM d0100_event_after_refresh.

 CLEAR TEST. "Pour éviter le redondance de l'événement after refresh
 CLEAR it_aff. "La table devant etre affichée
* CLEAR it_fieldcat[].
* if g_grid is INITIAL.
 CALL METHOD g_grid-&amp;gt;get_frontend_fieldcatalog
 IMPORTING
 et_fieldcatalog = it_fieldcat[].
* ENDIF.
 LOOP AT it_mara ASSIGNING &amp;lt;mara&amp;gt;.
 APPEND INITIAL LINE TO it_aff ASSIGNING &amp;lt;aff&amp;gt;.
 LOOP AT it_fieldcat ASSIGNING &amp;lt;field&amp;gt; WHERE no_out IS INITIAL AND tech IS INITIAL.
 ASSIGN COMPONENT &amp;lt;field&amp;gt;-fieldname OF STRUCTURE &amp;lt;mara&amp;gt; TO &amp;lt;from&amp;gt;.
 CHECK &amp;lt;from&amp;gt; IS ASSIGNED.
 ASSIGN COMPONENT &amp;lt;field&amp;gt;-fieldname OF STRUCTURE &amp;lt;aff&amp;gt; TO &amp;lt;to&amp;gt;.
 CHECK &amp;lt;to&amp;gt; IS ASSIGNED.
 &amp;lt;to&amp;gt; = &amp;lt;from&amp;gt;.
 ENDLOOP.
 ENDLOOP.

* CALL METHOD g_grid-&amp;gt;set_frontend_fieldcatalog
* EXPORTING
* it_fieldcatalog = it_fieldcat.
* IF g_grid is NOT INITIAL.
* call METHOD g_grid-&amp;gt;check_changed_data
* IMPORTING
* e_valid = l_valid.
* ENDIF.
* rs_selfield-refresh = l_valid.


 SORT it_aff ASCENDING. "On trie toutes les données
 DELETE ADJACENT DUPLICATES FROM it_aff COMPARING ALL FIELDS. "On supprime les duplicatas

 IF g_grid is NOT INITIAL.
 CALL METHOD g_grid-&amp;gt;refresh_table_display."Reaffichage
 ENDIF.

 TEST = 'X'.

ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jan 2018 13:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600132#M24503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T13:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600133#M24504</link>
      <description>&lt;P&gt;Look at your management of the field TEST which should prevent infinite loop between refresh_table_display and handle_after_refresh (what is its initial value, etc.)&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 14:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600133#M24504</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-01-23T14:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600134#M24505</link>
      <description>&lt;P&gt;I haven't infinite loop, this ABAP works one time, when i hide a column, datas are correctly sorted but when i try to make the field displayed again, the field is empty. So i have check my program via checkpoints where the refresh is trigerred and then, i deduced that when i call get_frontend_fieldcatalog, this table is update only the first time the program enter in the loop.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Concerning the value of the field TEST, it is set to empty when the event is trigerred. This prevent the infinite loop no ? Then for use it again, i set it to X after the method After_refresh. &lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 14:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600134#M24505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T14:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600135#M24506</link>
      <description>&lt;P&gt;Question: When a previously hidden column is displayed again, is the event raised, and what is the value of 'TEST'?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 14:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600135#M24506</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-01-23T14:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600136#M24507</link>
      <description>&lt;P&gt;First step :&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104993-capture1.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600136#M24507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600137#M24508</link>
      <description>&lt;P&gt;Second step :&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104994-capture2.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600137#M24508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600138#M24509</link>
      <description>&lt;P&gt;Third step : &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104995-capture3.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:00:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600138#M24509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600139#M24510</link>
      <description>&lt;P&gt;Fourth step :&lt;/P&gt;
  &lt;P&gt;On the fourth screenshot, we can see that TEST is null before the second call to refresh. And the event has been raised.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104990-capture4.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600139#M24510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600140#M24511</link>
      <description>&lt;P&gt;Fifth and sixth :&lt;/P&gt;
  &lt;P&gt;This is a view of the table it_fieldcat after the method get frontend fieldcatalog have been used. no_out value is unchanged from the moment the field has been hidden. &lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104991-capture5.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104992-capture6.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:02:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600140#M24511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600141#M24512</link>
      <description>&lt;P&gt;Sorry for multiple post, the website don't accept lot of picture for one post&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:03:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600141#M24512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600142#M24513</link>
      <description>&lt;P&gt;Try to add a "call method cl_gui_cfw=&amp;gt;flush" at start of the event handler before getting the field catalog to force synchronisation.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600142#M24513</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-01-23T15:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600143#M24514</link>
      <description>&lt;P&gt;Same issue, the field article is always empty.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105001-capture7.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600143#M24514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-23T15:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600144#M24515</link>
      <description>&lt;P&gt;Is the fieldcat-no_out parameter initial after the get fieldcatalog call (if not, try to switch order of the method call)&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 06:27:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600144#M24515</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-01-24T06:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600145#M24516</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105058-capture1.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;I lunch the program so line 192, i check at it_fieldcat-no_out value :&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105059-capture2.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;here, no_out is initial &lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:03:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600145#M24516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600146#M24517</link>
      <description>&lt;P&gt;so next step, line 197 : &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105080-capture5.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;i check the value of it_fieldcat :&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105081-capture6.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;values have been updated. So i continue the execute&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:03:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600146#M24517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600147#M24518</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105062-capture5.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;Here is datas who are firstly displayed.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105063-capture6.png" /&gt;&lt;/P&gt;
  &lt;P&gt;I want to hide the field Article&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600147#M24518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600148#M24519</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105064-capture7.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;again line 192, check if the fieldcatalog is initial:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105065-capture8.png" /&gt;&lt;/P&gt;
  &lt;P&gt;values are empty for the moment so it is initial&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:07:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600148#M24519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600149#M24520</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105066-capture9.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;line 197 again, check fieldcatalog again :&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105067-capture10.png" /&gt;&lt;/P&gt;
  &lt;P&gt;here the table has been correctly updated&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600149#M24520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600150#M24521</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105068-capture11.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;the display is correct so now, i want to display the field Article :&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105069-capture12.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600150#M24521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh fieldcatalog during runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600151#M24522</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/105070-capture13.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;line 192, i check values of fieldcatalog and line 197, i have the same table so this table haven't been updated&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2018 08:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-fieldcatalog-during-runtime/m-p/600151#M24522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-01-24T08:11:38Z</dc:date>
    </item>
  </channel>
</rss>

