<?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: Problem with Submit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809653#M2025481</link>
    <description>&lt;P&gt;In your question, you say "filed symbol used as the reference to data is getting failed", do you mean that the data reference is not bound? i.e. do you see the value {A:INITIAL} via the debugger?&lt;/P&gt;</description>
    <pubDate>Sun, 02 Jul 2023 18:02:15 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2023-07-02T18:02:15Z</dc:date>
    <item>
      <title>Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809649#M2025477</link>
      <description>&lt;P&gt;I've developed a program that calls program RM06BZ00 and automatically populates the selection criteria of this program. Program RM06BZ00 is not doing an export of its internal table which is what I need. Then I will import this internal table into my program and do some more filtering.&lt;/P&gt;
  &lt;P&gt;But The Program is getting exit after its Execution and the assignment to filed symbol used as the reference to data is getting failed,&lt;BR /&gt;kindly Help&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 18:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809649#M2025477</guid>
      <dc:creator>nisha24</dc:creator>
      <dc:date>2023-06-30T18:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809650#M2025478</link>
      <description>&lt;P&gt;Please supply more detail. Exactly what code are you writing?&lt;/P&gt;&lt;P&gt;And you should use the tag ABAP Development.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 19:18:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809650#M2025478</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-06-30T19:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809651#M2025479</link>
      <description>&lt;P&gt;Hi, &lt;BR /&gt;I am wring it as,&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF gty_me57_tab.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE MEREP_OUTTAB_EBAN.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;      TYPES: END OF gty_me57_tab.&lt;/P&gt;&lt;P&gt;DATA: gt_me57_tab TYPE STANDARD TABLE OF gty_me57_tab WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: lr_me57_data TYPE REF TO data.&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS : &amp;lt;lt_me57_data&amp;gt; TYPE ANY TABLE,&lt;/P&gt;&lt;P&gt;&amp;lt;lfs_me57&amp;gt;     TYPE any.&lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;set(    EXPORTING display  = abap_false&lt;/P&gt;&lt;P&gt;                                             metadata = abap_false&lt;/P&gt;&lt;P&gt;                                             data     = abap_true ).&lt;/P&gt;&lt;P&gt;*START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  SUBMIT rm06bz00  ##SUB_PAR&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;      WITH ba_ekgrp IN ba_ekgrp&lt;/P&gt;&lt;P&gt;      WITH s_werks IN s_werks&lt;/P&gt;&lt;P&gt;      WITH s_lfdat IN s_lfdat&lt;/P&gt;&lt;P&gt;      WITH s_knttp IN s_knttp&lt;/P&gt;&lt;P&gt;      WITH p_Zugba IN p_zugba&lt;/P&gt;&lt;P&gt;      WITH p_memory IN p_memory&lt;/P&gt;&lt;P&gt;      WITH p_bstba IN s_bstba&lt;/P&gt;&lt;P&gt;      WITH p_selgs IN s_selgs&lt;/P&gt;&lt;P&gt;      WITH p_selpo EQ p_selpo&lt;/P&gt;&lt;P&gt;      WITH p_lstub EQ p_lstub&lt;/P&gt;&lt;P&gt;      WITH p_srtkz eq p_srtkz&lt;/P&gt;&lt;P&gt;  AND RETURN.&lt;/P&gt;&lt;P&gt;  TRY.&lt;/P&gt;&lt;P&gt;      cl_salv_bs_runtime_info=&amp;gt;get_data_ref( IMPORTING r_data = lr_me57_data ).&lt;/P&gt;&lt;P&gt;      ASSIGN lr_me57_data-&amp;gt;* TO &amp;lt;lt_me57_data&amp;gt;.&lt;/P&gt;&lt;P&gt;    CATCH cx_salv_bs_sc_runtime_info.&lt;/P&gt;&lt;P&gt;* Error message&lt;/P&gt;&lt;P&gt;      MESSAGE TEXT-001 TYPE gc_e.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;clear_all( ).&lt;/P&gt;&lt;P&gt;  IF &amp;lt;lt_me57_data&amp;gt; IS NOT ASSIGNED.&lt;/P&gt;&lt;P&gt;* Error message&lt;/P&gt;&lt;P&gt;    MESSAGE TEXT-002 TYPE gc_e.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;* Get the COOIS report data into internal table&lt;/P&gt;&lt;P&gt;  LOOP AT &amp;lt;lt_me57_data&amp;gt; ASSIGNING  &amp;lt;lfs_me57&amp;gt;.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING  &amp;lt;lfs_me2n&amp;gt; TO gt_me57_tab.&lt;/P&gt;&lt;P&gt;    APPEND gt_me57_tab.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Jul 2023 10:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809651#M2025479</guid>
      <dc:creator>nisha24</dc:creator>
      <dc:date>2023-07-01T10:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809652#M2025480</link>
      <description>&lt;P&gt;Please edit your comment (Actions&amp;gt;Edit), select your code and press the button [CODE], which makes the code appear colored/indented, it'll be easier for people to look at it. Thanks! &lt;/P&gt;</description>
      <pubDate>Sun, 02 Jul 2023 17:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809652#M2025480</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-07-02T17:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809653#M2025481</link>
      <description>&lt;P&gt;In your question, you say "filed symbol used as the reference to data is getting failed", do you mean that the data reference is not bound? i.e. do you see the value {A:INITIAL} via the debugger?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jul 2023 18:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809653#M2025481</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-07-02T18:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Submit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809654#M2025482</link>
      <description>&lt;P&gt;Right after running the RM06BZ00, you try to get the result with:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;cl_salv_bs_runtime_info=&amp;gt;get_data_ref( IMPORTING r_data = lr_me57_data ).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;How do you know it even works? I don't think it does and you get no data in LR_ME57_DATA.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2023 05:46:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-submit/m-p/12809654#M2025482</guid>
      <dc:creator>Dominik_Tylczynski</dc:creator>
      <dc:date>2023-07-03T05:46:26Z</dc:date>
    </item>
  </channel>
</rss>

