<?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 Program output display nothing when calling BADI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144869#M1976363</link>
    <description>&lt;P&gt;Hi, im new to abap and currently learning badi. &lt;/P&gt;
  &lt;P&gt;I inserted simple logic in Z Badi Interface in Method&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;    
IV_MATNR	Importing	Type	MARA-MATNR
LS_MARA	        Changing	Type	MARA
GT_MARA	        Changing	Type	MARA



select matnr mtart  INTO gt_mara FROM mara
      WHERE matnr eq iv_matnr.

      if sy-subrc &amp;lt;&amp;gt; 0.
        clear gt_mara.
        ELSE.
          write: / , / ls_mara-matnr, ls_mara-mtart.
        endif.
       ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Im trying to call classic badi in program. Once selected material in parameter and execute, the output is empty.&lt;/P&gt;
  &lt;P&gt;Please correct me if there are any mistakes, thanks&lt;/P&gt;
  &lt;P&gt;Program code:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA o_badi TYPE REF TO ZIF_EX_ABAP_BADI.               ""Classic BADi interface name

DATA: gt_mara TYPE zmara_ttyp WITH HEADER LINE.
DATA: gs_mara LIKE LINE OF gt_mara.


PARAMETERS: p_matnr like gs_mara-matnr.



START-OF-SELECTION.

CALL METHOD CL_EXITHANDLER=&amp;gt;GET_INSTANCE          ""call this method create instance for Classic BADI definition
  EXPORTING
    EXIT_NAME                     = 'ZABAP_BADI'    ""classic BADi definition
*    NULL_INSTANCE_ACCEPTED        = SEEX_FALSE
*  IMPORTING
*    ACT_IMP_EXISTING              =
  CHANGING
    INSTANCE                      = o_badi
*  EXCEPTIONS
*    NO_REFERENCE                  = 1
*    NO_INTERFACE_REFERENCE        = 2
*    NO_EXIT_INTERFACE             = 3
*    CLASS_NOT_IMPLEMENT_INTERFACE = 4
*    SINGLE_EXIT_MULTIPLY_ACTIVE   = 5
*    CAST_ERROR                    = 6
*    EXIT_NOT_EXISTING             = 7
*    DATA_INCONS_IN_EXIT_MANAGEM   = 8
*    OTHERS                        = 9
        .
*IF SY-SUBRC &amp;lt;&amp;gt; 0.
** Implement suitable error handling here
*ENDIF.


CALL METHOD O_BADI-&amp;gt;MAT_DETAILS
  EXPORTING
    IV_MATNR = p_matnr
  CHANGING
    LS_MARA  = gs_mara
    GT_MARA  =  gt_mara   .




LOOP AT gt_mara INTO gs_mara.

  WRITE: gs_mara-matnr,
          gs_mara-mtart.

  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 05 Apr 2020 17:01:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-04-05T17:01:33Z</dc:date>
    <item>
      <title>Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144869#M1976363</link>
      <description>&lt;P&gt;Hi, im new to abap and currently learning badi. &lt;/P&gt;
  &lt;P&gt;I inserted simple logic in Z Badi Interface in Method&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;    
IV_MATNR	Importing	Type	MARA-MATNR
LS_MARA	        Changing	Type	MARA
GT_MARA	        Changing	Type	MARA



select matnr mtart  INTO gt_mara FROM mara
      WHERE matnr eq iv_matnr.

      if sy-subrc &amp;lt;&amp;gt; 0.
        clear gt_mara.
        ELSE.
          write: / , / ls_mara-matnr, ls_mara-mtart.
        endif.
       ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Im trying to call classic badi in program. Once selected material in parameter and execute, the output is empty.&lt;/P&gt;
  &lt;P&gt;Please correct me if there are any mistakes, thanks&lt;/P&gt;
  &lt;P&gt;Program code:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA o_badi TYPE REF TO ZIF_EX_ABAP_BADI.               ""Classic BADi interface name

DATA: gt_mara TYPE zmara_ttyp WITH HEADER LINE.
DATA: gs_mara LIKE LINE OF gt_mara.


PARAMETERS: p_matnr like gs_mara-matnr.



START-OF-SELECTION.

CALL METHOD CL_EXITHANDLER=&amp;gt;GET_INSTANCE          ""call this method create instance for Classic BADI definition
  EXPORTING
    EXIT_NAME                     = 'ZABAP_BADI'    ""classic BADi definition
*    NULL_INSTANCE_ACCEPTED        = SEEX_FALSE
*  IMPORTING
*    ACT_IMP_EXISTING              =
  CHANGING
    INSTANCE                      = o_badi
*  EXCEPTIONS
*    NO_REFERENCE                  = 1
*    NO_INTERFACE_REFERENCE        = 2
*    NO_EXIT_INTERFACE             = 3
*    CLASS_NOT_IMPLEMENT_INTERFACE = 4
*    SINGLE_EXIT_MULTIPLY_ACTIVE   = 5
*    CAST_ERROR                    = 6
*    EXIT_NOT_EXISTING             = 7
*    DATA_INCONS_IN_EXIT_MANAGEM   = 8
*    OTHERS                        = 9
        .
*IF SY-SUBRC &amp;lt;&amp;gt; 0.
** Implement suitable error handling here
*ENDIF.


CALL METHOD O_BADI-&amp;gt;MAT_DETAILS
  EXPORTING
    IV_MATNR = p_matnr
  CHANGING
    LS_MARA  = gs_mara
    GT_MARA  =  gt_mara   .




LOOP AT gt_mara INTO gs_mara.

  WRITE: gs_mara-matnr,
          gs_mara-mtart.

  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Apr 2020 17:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144869#M1976363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-04-05T17:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144870#M1976364</link>
      <description>&lt;P&gt;I see several ways to 'improve' your coding, but the main problem is the content of your badi-implementation and how you deal with tables that have a header line. For a better solution, see the end of the answer. First, here is what 'went' wrong&lt;/P&gt;&lt;P&gt;1. You use SELECT...ENDSELECT, which will only fetch one record at a time and write the record into a structure (and not a table, see &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapendselect.htm"&gt;ABAP documentation on ENDSELECT&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT matnr mtart  INTO gt_mara FROM mara WHERE matnr EQ iv_matnr.
   ...
ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;This way, the table of the variable GT_MARA[] never gets filled, but the structure of the variable GT_MARA gets filled.&lt;/STRONG&gt; In most cases, ABAP will choose the right 'part' (either table or structure) of a table with header line depending on the context. And in some cases this can be 'wrong' or not possible. For more infos see &lt;A href="https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-us/abenitab_header_line.htm"&gt;ABAP documentation on Internal Tables with Header Line&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;2. When a Record is found, you use the WRITE (to screen output) statement on an empty variable:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE: / , / ls_mara-matnr, ls_mara-mtart.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The variable LS_MARA has never been set, neither by your report, nor by the badi method. But you are still trying to read from it. And even worse, you are trying to write to the screen output, which in most cases of a Badi would not be ok, unless you were just trying to test your coding.&lt;/P&gt;&lt;P&gt;3. You are trying to obviously handle an unsuccessful call within the SELECT...ENDSELECT statement, instead of afterwards.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT ... .
  IF sy-subrc &amp;lt;&amp;gt; 0.
    clear: gt_mara.
  ENDIF.
ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This coding for the IF-clause will never be reached, because the inside of a SELECT...ENDSELECT is only processed for each record found (sy-subrc = 0), and if there is no record found, the sy-subrc will be &amp;lt;&amp;gt; 0 and the coding will continue after the ENDSELECT (see the setting of sy-subrc in &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapselect.htm"&gt;ABAP documentation about SELECT&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE:  &lt;/STRONG&gt;4. You define GT_MARA as TABLE with HEADER LINE in your report, but the BADI only uses the header line structure of GT_MARA in the CHANGING parameter. The table of GT_MARA never gets set.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD O_BADI-&amp;gt;MAT_DETAILS
  EXPORTING
    IV_MATNR = p_matnr
  CHANGING
    LS_MARA  = gs_mara
    GT_MARA  =  gt_mara.  " -&amp;gt; this obviously a just using the structure
APPEND gt_mara.           " -&amp;gt; this is how you would make your following coding work&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Solution [A] with SELECT...INTO &amp;lt;structure&amp;gt;...ENDSELECT:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE: &lt;/STRONG&gt;Since GT_MARA is a CHANGING parameter and the type is defined as a structure, your changing parameters ls_mara and gt_mara are of the same type and you do not add any functionality to your coding by having both. The following coding has been updated to work for your coding though:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR: gt_mara, ls_mara.
SELECT matnr mtart INTO gt_mara FROM mara WHERE matnr EQ iv_matnr.
  ls_mara = gt_mara.
ENDSELECT.
IF sy-subrc &amp;lt;&amp;gt; 0.
  " ...
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Solution [B] with SELECT...INTO TABLE &amp;lt;table&amp;gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE: &lt;/STRONG&gt;Can only be used if the interface parameter GT_MARA is a TABLES parameter and not a CHANGING parameter. As a TABLES parameter it is a TABLE TYPE with HEADER LINE. As a CHANGING parameter it is either or, but not both, and it depends on the given TYPE. And obviously the given TYPE is a structure and not a table.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT matnr mtart INTO TABLE gt_mara[] FROM mara WHERE matnr EQ iv_matnr.
IF sy-subrc &amp;lt;&amp;gt; 0.
  " ...
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE: Solution [C] with SELECT SINGLE...INTO &amp;lt;fields&amp;gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE matnr mtart INTO (ls_mara-matnr, ls_mara-mtart) FROM mara WHERE matnr EQ iv_matnr.
IF sy-subrc = 0.
  gt_mara = ls_mara.
ELSE
  clear: gt_mara, ls_mara.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE:&lt;/STRONG&gt; I would make the following changes to your BADI and Report coding:&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;In your BADI, get rid off GT_MARA, it is misleadingly not a table the way you have assigned the type&lt;BR /&gt;Since you are selecting from MARA by its primary key, you will always only fetch either no or exactly 1 record, a returned TABLE would therefore also be misleading&lt;/LI&gt;&lt;LI&gt;Dont use CHANGING parameters when you are actually not changing existing values, but returning 'new' values. In that case you should use EXPORTING parameters. Dont give your EXPORTING/CHANGING parameters prefixes like ls_ or gt_, if you want to use Hungarian notation, use in these cases es_ and cs_ instead&lt;/LI&gt;&lt;LI&gt;Give the parameter a more appropriate name then MARA, that is also misleading, since you currently only have matnr and mtart in that structure&lt;/LI&gt;&lt;LI&gt;Choose Solution [C] to fill your structure&lt;/LI&gt;&lt;LI&gt;In your Report, get rid off the definition of GT_MARA, it doesnt add any further functionality, your output that you are looking for from the BADI is only the one exporting parameter (defined as importing from the reports point of view)&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 06 Apr 2020 03:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144870#M1976364</guid>
      <dc:creator>michael_piesche</dc:creator>
      <dc:date>2020-04-06T03:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144871#M1976365</link>
      <description>&lt;P&gt;Just a tip since you are learning: &lt;A href="https://blogs.sap.com/2013/09/26/creation-of-custom-kernel-badi-and-calling-it-in-a-custom-program/" target="_blank"&gt;Kernel BAdI's are the new&lt;/A&gt; (&lt;A href="https://blogs.sap.com/2014/03/04/is-kernel-badi-really-faster-than-classic-badi/" target="_blank"&gt;and faster&lt;/A&gt;) way to have BAdI's on code, put that on you list.&lt;/P&gt;&lt;P&gt;"HEADER LINE" is a obsolete instruction because it causes troubles exactly like you passed and  &lt;SPAN class="mention-scrubbed"&gt;michael.piesche&lt;/SPAN&gt; detailed (TABLE with HEADER LINE is both a structure and a internal table). You should cross it from your study.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 10:06:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144871#M1976365</guid>
      <dc:creator>thalesvb</dc:creator>
      <dc:date>2020-04-06T10:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144872#M1976366</link>
      <description>&lt;P&gt;Hi, thanks for your reply. When I used solution A, it is showing me this error: &lt;/P&gt;&lt;P&gt;"GT_MARA" is not an internal table. "OCCURS n" specification is missing.&lt;/P&gt;&lt;P&gt;When i tried to remove endselect in solution B, it says "incorrect Nesting, Select must be closed by Endselect", which is why i put endselect.at the statement&lt;/P&gt;&lt;P&gt;When i changed the following from&lt;/P&gt;&lt;P&gt;     if sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; clear gt_mara.&lt;BR /&gt; ELSE.&lt;BR /&gt;&lt;STRONG&gt; write: / , / ls_mara-matnr, ls_mara-mtart.&lt;/STRONG&gt;&lt;BR /&gt; endif.&lt;/P&gt;&lt;P&gt;To:&lt;/P&gt;&lt;P&gt;     if sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; clear gt_mara.&lt;BR /&gt; ELSE.&lt;BR /&gt;&lt;STRONG&gt; write: / , / gt_mara-matnr, gt_mara-mtart.&lt;/STRONG&gt;&lt;BR /&gt; endif.&lt;/P&gt;&lt;P&gt;It is only showing one field - mtart in the output&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 10:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144872#M1976366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-04-06T10:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144873#M1976367</link>
      <description>&lt;P&gt;When I removed With Header Line, it is showing error ïnternal tables/structures not compatible (between the methods and the program) even though i changed several times&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 11:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144873#M1976367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-04-06T11:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144874#M1976368</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;arnold92&lt;/SPAN&gt;, see my &lt;STRONG&gt;"UPDATES:"&lt;/STRONG&gt; in the original answer.&lt;/P&gt;&lt;P&gt; As a first start, try Solution [C] as of right now. &lt;BR /&gt;If you continue having your issue with "It is only showing one field - mtart in the output", can you provide a screenshot of that.&lt;BR /&gt;Also, can you provide the defintion of your structure type zmara_ttyp.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 15:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144874#M1976368</guid>
      <dc:creator>michael_piesche</dc:creator>
      <dc:date>2020-04-06T15:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144875#M1976369</link>
      <description>&lt;P&gt;Hi Michael thanks for your answer, it works. For zmara_ttyp it's a table type where i inserted mara.&lt;/P&gt;&lt;P&gt;I have another question about calling new badi, it prompts error "No value was passed to the mandatory parameter "IV_ACT". I have marked parameters as "&lt;STRONG&gt;pass in value&lt;/STRONG&gt;" yet problem persists&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Report:

DATA: w_badi type REF TO ZABAP03_BADI_ENHANCEMENT. 

DATA: ev_percentage TYPE p.

PARAMETERS: iv_act TYPE i.
PARAMETERS: iv_max TYPE i.

TRY.
GET BADI w_badi.
call BADI w_badi-&amp;gt;cal_perc.
ENDTRY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1793033-capture.png" /&gt;&lt;/P&gt;&lt;P&gt;The badi is calling a method from a superclass&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1793012-capture.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 10:10:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144875#M1976369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-04-08T10:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144876#M1976370</link>
      <description>&lt;P&gt; &lt;A href="https://answers.sap.com/users/994537/arnold92.html"&gt;A S&lt;/A&gt;, I have answered your question and you say that it works, so please mark as answered, vote up, like or close this question and especially dont answer more question in this thread that are unrelated to the original question, especially when you already have an open question that deals with the same issue (which I have &lt;A href="https://answers.sap.com/questions/13020882/badi-enhancement-point-issue.html"&gt;answered&lt;/A&gt; by the way just now for you as well).&lt;/P&gt;&lt;P&gt;PS: Why do you use two accounts to post same and similar questions at the same time &lt;SPAN class="mention-scrubbed"&gt;gheing.sheng.sao&lt;/SPAN&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 10:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144876#M1976370</guid>
      <dc:creator>michael_piesche</dc:creator>
      <dc:date>2020-04-08T10:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Program output display nothing when calling BADI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144877#M1976371</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;gheing.sheng.sao&lt;/SPAN&gt;, please follow up on your open question.&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;comment answers or your question if there are still open issues.&lt;/LI&gt;&lt;LI&gt;otherwise mark an answer as accepted if it helped you solve your problem&lt;/LI&gt;&lt;LI&gt;or post an answer of yourself and accept it if you found another useful solution yourself&lt;/LI&gt;&lt;LI&gt;or redirect your question to another question that is related and was useful to solve your problem&lt;/LI&gt;&lt;LI&gt;in the end, close your question&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 13 May 2020 14:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-output-display-nothing-when-calling-badi/m-p/12144877#M1976371</guid>
      <dc:creator>michael_piesche</dc:creator>
      <dc:date>2020-05-13T14:54:34Z</dc:date>
    </item>
  </channel>
</rss>

