<?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: Passing data between BADI and custom subscreen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526081#M1854733</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Janis,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;The way I understand it from the description, SAP standard will be calling all the 4 interface interface methods, two of which you can use to pass the data to your Z program (method subscreen_DATA_SET()),&amp;nbsp; and get the data from your Z program, in order to return it to SAP (method &lt;SPAN style="color: #333333; font-size: 12px;"&gt;SUBSCREEN_DATA_GET() via ES_WAPI)&lt;/SPAN&gt;.&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally someone talking some sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="810136" __jive_macro_name="user" class="jive_macro_user jive_macro" data-orig-content="Jonas VandeSteene" href="https://community.sap.com/"&gt;&lt;/A&gt;: Did you create the implementation of the BAdI in your system? You have to provide the name of your custom program/function group to the implementation and standard SAP will pick up the data from the table &lt;EM&gt;BADIIMPL_SCREEN&lt;/EM&gt;. (Check the PBO module&amp;nbsp; &lt;EM&gt;D8300_SUBSCR_DATA_BEFORE&amp;nbsp; &lt;/EM&gt;&lt;SPAN class="L0S52"&gt;&lt;EM&gt;OUTPUT&lt;/EM&gt;&lt;/SPAN&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/jiveimages/512810" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Others: Atleast check the BAdI definition before posting your responses. Why do you think that SAP has provided the methods SUBSCREEN_DATA_GET( ) &amp;amp; SUBSCREEN_DATA_SET( )? &lt;SPAN __jive_emoticon_name="angry" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.sap.com/978/images/emoticons/angry.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2014 14:49:46 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2014-08-04T14:49:46Z</dc:date>
    <item>
      <title>Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526071#M1854723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have implemented the BADI: BADI_WCM_WAPI_001, it is for making a subscreen for WCM.&lt;/P&gt;&lt;P&gt;I have created a subscreen in a Z program and added this to the BADI.&lt;/P&gt;&lt;P&gt;I now want to pass the data between the BADI and my Z program, searched on the internet but nothing found, only CMOD solutions...&lt;/P&gt;&lt;P&gt;Is there any best-practice for doing this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 07:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526071#M1854723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T07:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526072#M1854724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I understand from your requirement is, you have created a sub-screen in a Z-program (something like a module pool program) and have called that in your BADI implementation? What does that Z program contain? What parameters does it contain on the selection-screen or is it not an executable program? Please provide these details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the statement SUBMIT and pass parameters to your Z program if you have defined a selection-screen for your Z program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use MEMORY,you can write this statement - &amp;gt; EXPORT &amp;lt;Field&amp;gt; from &amp;lt;Field&amp;gt; to &amp;lt;MEMORY ID&amp;gt; in your BADI and this statement -&amp;gt; IMPORT &amp;lt;Field&amp;gt; to &amp;lt;Field&amp;gt; from &amp;lt;MEMORY ID&amp;gt; in your Z program for the parameters you want to pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have to many parameters, you can create a small FM to store your data from your BADI and use that data in your sub-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But also check if it is advisable to call a sub-screen in a BADI, a pop-up screen or so is ok but not sure about a sub-screen as BADI is generally a modification to a normal standard SAP processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 09:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526072#M1854724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T09:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526073#M1854725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi A N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you quick reply, but I don't want do it with the MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BADI I've implemented had those 4methods:&lt;/P&gt;&lt;P&gt;IF_EX_BADI_WCM_WAPI_001~SUBSCREEN_DATA_GET&lt;/P&gt;&lt;P&gt;IF_EX_BADI_WCM_WAPI_001~SUBSCREEN_DATA_SET&lt;/P&gt;&lt;P&gt;IF_EX_BADI_WCM_WAPI_001~SUBSCREEN_FCODE_EXECUTE&lt;/P&gt;&lt;P&gt;IF_EX_BADI_WCM_WAPI_001~TAB_PAGE_TITLE_GET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a Z program with a screen (just for testing it contains 2input fields, declared that in the TOP include), but I want to receive in my Z program some properties of an object from the BADI, to set some input fields grey or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I want to receive in my BADI the values what are entered in the screen input fields from my z program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my Z program I made a screen from screentype: subscreen (BADI need a subscreen).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 09:16:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526073#M1854725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T09:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526074#M1854726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can create a custom Function Module with changing parameters and work with that OR you can use SUBMIT statement with return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 09:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526074#M1854726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T09:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526075#M1854727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI A N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me an example of the FM or SUBMIT ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 09:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526075#M1854727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T09:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526076#M1854728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE37, create a FM with Importing,Exporting,Changing parameters. In your case, assuming from BADI-&amp;gt;Program =&amp;gt; Importing Parameters will be the parameters going from BADI to your program. &lt;/P&gt;&lt;P&gt;Exporting Parameters will be what you will extract in your Z program &lt;/P&gt;&lt;P&gt;Program-&amp;gt;BADI=&amp;gt; &lt;/P&gt;&lt;P&gt;Importing Parameters will be the parameters going from&amp;nbsp; your Z program to BADI. &lt;/P&gt;&lt;P&gt;Exporting Parameters will be what you will extract in your BADI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming BADI-&amp;gt;Z program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your BADI:&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;lt;Z***&amp;gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter1_from_BADI&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter2_from_BADI&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;In your program:&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;lt;Z***&amp;gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter1_from_BADI&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter2_from_BADI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do your logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your program:&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;lt;Z***&amp;gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter1_from_Zprog&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter2_from_Zprog&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your BADI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;lt;Z***&amp;gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter1_from_Zprog&lt;/P&gt;&lt;P&gt;&amp;nbsp; parameter2_from_Zprog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on your logic, you will have to build this FM which will be used just for transporting the parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 09:37:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526076#M1854728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T09:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526077#M1854729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, what kind of Z program do you have? In any case, in the Z program, which contains and processes your dynpro, you have to program some kind of data access routines (Form routines if the Z program is report or Module pool, or Function Modules - if the Z program is Function group), which you then can call from BADI implementation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Jānis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 09:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526077#M1854729</guid>
      <dc:creator>Private_Member_7726</dc:creator>
      <dc:date>2014-08-04T09:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526078#M1854730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi A N&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your detailed explanation, but that isn't what I am looking for.&lt;/P&gt;&lt;P&gt;I'm looking for a solution like this: &lt;A href="http://all-sap-abap.blogspot.nl/2008/11/sap-badi-screen-enhancements.html"&gt;http://all-sap-abap.blogspot.nl/2008/11/sap-badi-screen-enhancements.html&lt;/A&gt; but I can't accomplish this because I can't find my instances (&amp;nbsp; cl_exithandler=&amp;gt;get_instance_for_subscreens )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 11:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526078#M1854730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-04T11:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526079#M1854731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Possible ways to data transfer are...&lt;/P&gt;&lt;P&gt;1.IMPORT &amp;amp; EXPORT&lt;/P&gt;&lt;P&gt;2.Function group with two Function Module for data communication between main program and subscreen(in function group).&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Define screen field(s) in top(global data) of function group,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Using 1st function module assign value to global data in function group,&lt;/P&gt;&lt;P&gt;using 2nd function module assign value from screen filed(global data in function group) to main program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreekanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 11:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526079#M1854731</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-08-04T11:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526080#M1854732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are misunderstanding this badi a bit... But then maybe I'm the one misunderstanding it &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/978/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way I understand it from the description, SAP standard will be calling all the 4 interface interface methods, two of which you can use to pass the data to your Z program (method subscreen_DATA_SET()),&amp;nbsp; and get the data from your Z program, in order to return it to SAP (method &lt;SPAN style="color: #333333; font-size: 12px;"&gt;SUBSCREEN_DATA_GET() via ES_WAPI)&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How you transfer the tad back and forth between badi implementation class and z program/subscreen fields is entirely up to you, but it would need to involve some modularisation units of Z program, which you then can call from badi implementation methods...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example implementation class is &lt;SPAN style="color: #333333; font-size: 12px;"&gt;CL_IM_WCM_WAPI_001. It's somewhat confusing though, because there is no SAP implementation of the actual subscreen, which the class would interact with,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Jānis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 14:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526080#M1854732</guid>
      <dc:creator>Private_Member_7726</dc:creator>
      <dc:date>2014-08-04T14:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526081#M1854733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Janis,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;The way I understand it from the description, SAP standard will be calling all the 4 interface interface methods, two of which you can use to pass the data to your Z program (method subscreen_DATA_SET()),&amp;nbsp; and get the data from your Z program, in order to return it to SAP (method &lt;SPAN style="color: #333333; font-size: 12px;"&gt;SUBSCREEN_DATA_GET() via ES_WAPI)&lt;/SPAN&gt;.&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally someone talking some sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="810136" __jive_macro_name="user" class="jive_macro_user jive_macro" data-orig-content="Jonas VandeSteene" href="https://community.sap.com/"&gt;&lt;/A&gt;: Did you create the implementation of the BAdI in your system? You have to provide the name of your custom program/function group to the implementation and standard SAP will pick up the data from the table &lt;EM&gt;BADIIMPL_SCREEN&lt;/EM&gt;. (Check the PBO module&amp;nbsp; &lt;EM&gt;D8300_SUBSCR_DATA_BEFORE&amp;nbsp; &lt;/EM&gt;&lt;SPAN class="L0S52"&gt;&lt;EM&gt;OUTPUT&lt;/EM&gt;&lt;/SPAN&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/jiveimages/512810" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Others: Atleast check the BAdI definition before posting your responses. Why do you think that SAP has provided the methods SUBSCREEN_DATA_GET( ) &amp;amp; SUBSCREEN_DATA_SET( )? &lt;SPAN __jive_emoticon_name="angry" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.sap.com/978/images/emoticons/angry.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 14:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526081#M1854733</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-08-04T14:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526082#M1854734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I created an implementation of the BADI, add I added there my program and screennumber where you pictured it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have followed this guide provided by SAP, but it won't work. &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm" title="http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm"&gt;SAP Library - Changing the SAP Standard (BC)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The problem here is that I don't get an instance -&amp;gt; ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 07:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526082#M1854734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-05T07:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526083#M1854735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Janis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Okay, that clear some thing up for me!&lt;/P&gt;&lt;P&gt;And yes that is now my problem, how I do the data transfer from badi implementation class and z program/subscreen fields, I followed this guide provided by Sap but it won't work, get dump after calling the get_instance method, doesn't know why ...&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm" title="http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm"&gt;SAP Library - Changing the SAP Standard (BC)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 07:35:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526083#M1854735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-05T07:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526084#M1854736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jonas,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;The problem here is that I don't get an instance -&amp;gt; ?&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But why do you need the instance?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;how I do the data transfer from badi implementation class and z program/subscreen fields,&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Read this &lt;A href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0d2f214-b1a5-2a10-f3a0-98c95afcf281?QuickLink=index&amp;amp;overridelayout=true&amp;amp;24051816865340"&gt;documentation&lt;/A&gt; on how to implement a Kernel BAdI e.g., BADI_SORTER with screen enhancement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case you have to enhance(include CI_WCAAP) &amp;amp; then utilise the structure WCSWAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 09:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526084#M1854736</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-08-05T09:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526085#M1854737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there maybe a way of adding a Function group with a subscreen to the BADI instead of the z program, because if I can connect it to my Function group I have the solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 09:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526085#M1854737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-05T09:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526086#M1854738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Jonas VandeSteene wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Hi Suhas&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Is there maybe a way of adding a Function group with a subscreen to the BADI instead of the z program, because if I can connect it to my Function group I have the solution?&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi Jonas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would have created a FuGr &amp;amp; created a sub-screen. Use this function-pool program (SAPL+&amp;lt;FuGr name&amp;gt;) &amp;amp; screen in the BAdI implementation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create GET &amp;amp; SET FMs to move the values between the custom sub-screen &amp;amp; the original application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 09:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526086#M1854738</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-08-05T09:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data between BADI and custom subscreen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526087#M1854739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas&lt;/P&gt;&lt;P&gt;Thank you for the documentation, that's what I was looking for!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2014 09:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-between-badi-and-custom-subscreen/m-p/10526087#M1854739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-05T09:56:00Z</dc:date>
    </item>
  </channel>
</rss>

