September 2024

Issue with Dynamic Table Access for Copying MOLGA Content Between Tables

Hi @ALL, I’m currently developing a report to copy MOLGA content from one MOLGA to another. I’ve implemented dynamic table access for this, but it’s unable to retrieve the table data. I’ll share the program below, and any assistance would be greatly appreciated.   TYPES: BEGIN OF ty_tbl_list,         tabname TYPE tabname,       END OF ty_tbl_list. DATA: lt_tables TYPE TABLE OF ty_tbl_list,      ls_table  TYPE ty_tbl_list,      lv_src_ctry TYPE land1 VALUE ’06’, ” France      lv_tgt_ctry TYPE land1 VALUE ‘MA’. ” Morocco. FIELD-SYMBOLS: <lt_src_data> TYPE STANDARD TABLE,               <lt_tgt_data> TYPE STANDARD TABLE,               <ls_data>     TYPE any,               <fs_country>  TYPE any,               <fs_table>    TYPE STANDARD TABLE. START-OF-SELECTION.   CLEAR lt_tables.  CLEAR ls_table.   ” Manually populating the internal table  ls_table–tabname = ‘V_T52D1’.  APPEND ls_table TO lt_tables.   LOOP AT lt_tables INTO ls_table.    PERFORM copy_tbl_content USING ls_table–tabname lv_src_ctry lv_tgt_ctry.  ENDLOOP. FORM copy_tbl_content USING pv_tabname TYPE tabname                              pv_src_ctry TYPE land1                              pv_tgt_ctry TYPE land1. ASSIGN (pv_tabname) TO <fs_table>.IF sy–subrc <> 0.  WRITE: / ‘Table’, pv_tabname, ‘not found’.  RETURN.ENDIF.   ” Select data from source country  SELECT * FROM (pv_tabname) INTO TABLE <lt_src_data> WHERE country = pv_src_ctry.   IF <lt_src_data> IS INITIAL.    WRITE: / ‘No data found in table’, pv_tabname, ‘for country’, pv_src_ctry.    RETURN.  ENDIF. …

Issue with Dynamic Table Access for Copying MOLGA Content Between Tables Read More »

Issue with Dynamic Table Access for Copying MOLGA Content Between Tables

Hi @ALL, I’m currently developing a report to copy MOLGA content from one MOLGA to another. I’ve implemented dynamic table access for this, but it’s unable to retrieve the table data. I’ll share the program below, and any assistance would be greatly appreciated.   TYPES: BEGIN OF ty_tbl_list,         tabname TYPE tabname,       END OF ty_tbl_list. DATA: lt_tables TYPE TABLE OF ty_tbl_list,      ls_table  TYPE ty_tbl_list,      lv_src_ctry TYPE land1 VALUE ’06’, ” France      lv_tgt_ctry TYPE land1 VALUE ‘MA’. ” Morocco. FIELD-SYMBOLS: <lt_src_data> TYPE STANDARD TABLE,               <lt_tgt_data> TYPE STANDARD TABLE,               <ls_data>     TYPE any,               <fs_country>  TYPE any,               <fs_table>    TYPE STANDARD TABLE. START-OF-SELECTION.   CLEAR lt_tables.  CLEAR ls_table.   ” Manually populating the internal table  ls_table–tabname = ‘V_T52D1’.  APPEND ls_table TO lt_tables.   LOOP AT lt_tables INTO ls_table.    PERFORM copy_tbl_content USING ls_table–tabname lv_src_ctry lv_tgt_ctry.  ENDLOOP. FORM copy_tbl_content USING pv_tabname TYPE tabname                              pv_src_ctry TYPE land1                              pv_tgt_ctry TYPE land1. ASSIGN (pv_tabname) TO <fs_table>.IF sy–subrc <> 0.  WRITE: / ‘Table’, pv_tabname, ‘not found’.  RETURN.ENDIF.   ” Select data from source country  SELECT * FROM (pv_tabname) INTO TABLE <lt_src_data> WHERE country = pv_src_ctry.   IF <lt_src_data> IS INITIAL.    WRITE: / ‘No data found in table’, pv_tabname, ‘for country’, pv_src_ctry.    RETURN.  ENDIF. …

Issue with Dynamic Table Access for Copying MOLGA Content Between Tables Read More »

Nadchodzące spotkania SAP Community – wrzesień/październik 2024

Cześć Katowice SAP Community! Dziś odbyło się w Katowicach luźne spotkanie przy piwie SAP Stammtisch: katowice-sap-stammtisch-10-09-2024 Cieszymy się, że udało się zorganizować spotkanie jeszcze na koniec lata 🍻 Dajcie znać w komentarzach pod tym postem lub na grupie LinkedIn: Silesia o Waszych propozycjach następnego terminu spotkania 💬 Z innych wydarzeń, dziejących się po sąsiedzku – @Bartek organizuje SIT Warszawa, bardzo …

Nadchodzące spotkania SAP Community – wrzesień/październik 2024 Read More »

Nadchodzące spotkania SAP Community – wrzesień/październik 2024

Cześć Katowice SAP Community! Dziś odbyło się w Katowicach luźne spotkanie przy piwie SAP Stammtisch: katowice-sap-stammtisch-10-09-2024 Cieszymy się, że udało się zorganizować spotkanie jeszcze na koniec lata 🍻 Dajcie znać w komentarzach pod tym postem lub na grupie LinkedIn: Silesia o Waszych propozycjach następnego terminu spotkania 💬 Z innych wydarzeń, dziejących się po sąsiedzku – @Bartek organizuje SIT Warszawa, bardzo …

Nadchodzące spotkania SAP Community – wrzesień/październik 2024 Read More »

Nadchodzące spotkania SAP Community – wrzesień/październik 2024

Cześć Katowice SAP Community! Dziś odbyło się w Katowicach luźne spotkanie przy piwie SAP Stammtisch: katowice-sap-stammtisch-10-09-2024 Cieszymy się, że udało się zorganizować spotkanie jeszcze na koniec lata 🍻 Dajcie znać w komentarzach pod tym postem lub na grupie LinkedIn: Silesia o Waszych propozycjach następnego terminu spotkania 💬 Z innych wydarzeń, dziejących się po sąsiedzku – @Bartek organizuje SIT Warszawa, bardzo …

Nadchodzące spotkania SAP Community – wrzesień/październik 2024 Read More »

Re: Digital Skills Initiative Applicant Guide (For self-study candidates)

Dear @David_Chaviano, I am excited to express my interest in participating in the SAP Digital Skills Initiative. I have a bachelor’s degree of Arts but I migrated to the data science field. Currently I’m working as a Microsoft power platform developer, im looking taking the opportunity of taking this challenge of migrating into SAP hana …

Re: Digital Skills Initiative Applicant Guide (For self-study candidates) Read More »

Re: Digital Skills Initiative Applicant Guide (For self-study candidates)

Dear @David_Chaviano, I am excited to express my interest in participating in the SAP Digital Skills Initiative. I have a bachelor’s degree of Arts but I migrated to the data science field. Currently I’m working as a Microsoft power platform developer, im looking taking the opportunity of taking this challenge of migrating into SAP hana …

Re: Digital Skills Initiative Applicant Guide (For self-study candidates) Read More »

Scroll to Top