<?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: EXPORTING DATA FROM SCREEN FIELDS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974616#M70560</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 guess you have extended structure CI_EBANDB to save the screen values in database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the following exits to pass data to and from subscreen -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPLMEREQ_001             Export Data to Customer Subscreen for Re &lt;/P&gt;&lt;P&gt;EXIT_SAPLMEREQ_002             Prepare Customer Subscreen for Requisiti &lt;/P&gt;&lt;P&gt;EXIT_SAPLMEREQ_003             Import Data from Customer Subscreen for  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Sep 2005 05:54:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-15T05:54:00Z</dc:date>
    <item>
      <title>EXPORTING DATA FROM SCREEN FIELDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974615#M70559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I AM DOING SCREEN EXIT FOR TCODE ME51N, ENHANCEMENT (MEREQ001) EXIT SAPLMEGUI , I HAVE ADDED TWO FIELDS &lt;/P&gt;&lt;P&gt;VALIDITY START DATE AND VALIDITY END DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAVE CONFUSION ABOUT HOW TO EXPORT DATA ENTERED IN SUBSCREEN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2005 05:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974615#M70559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-15T05:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORTING DATA FROM SCREEN FIELDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974616#M70560</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 guess you have extended structure CI_EBANDB to save the screen values in database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the following exits to pass data to and from subscreen -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPLMEREQ_001             Export Data to Customer Subscreen for Re &lt;/P&gt;&lt;P&gt;EXIT_SAPLMEREQ_002             Prepare Customer Subscreen for Requisiti &lt;/P&gt;&lt;P&gt;EXIT_SAPLMEREQ_003             Import Data from Customer Subscreen for  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2005 05:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974616#M70560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-15T05:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORTING DATA FROM SCREEN FIELDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974617#M70561</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;write code in EXIT_SAPLMEREQ_003&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:     ls_mereq_item type mereq_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*get values if PReq item exists&lt;/P&gt;&lt;P&gt;if not im_req_item is initial.&lt;/P&gt;&lt;P&gt;*read item data from system&lt;/P&gt;&lt;P&gt;  ls_mereq_item = im_req_item-&amp;gt;get_data( ).&lt;/P&gt;&lt;P&gt;*if customer field changed&lt;/P&gt;&lt;P&gt;  if eban-zflag ne *eban-zflag.&lt;/P&gt;&lt;P&gt;*fill field with new value&lt;/P&gt;&lt;P&gt;    ls_mereq_item-zflag = eban-zflag.&lt;/P&gt;&lt;P&gt;*set new item data to system&lt;/P&gt;&lt;P&gt;    call method im_req_item-&amp;gt;set_data( ls_mereq_item ).&lt;/P&gt;&lt;P&gt;*tell the system that there has something changed on the customer tab&lt;/P&gt;&lt;P&gt;    EX_CHANGED = 'X'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this helpful for you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2005 06:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exporting-data-from-screen-fields/m-p/974617#M70561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-15T06:08:26Z</dc:date>
    </item>
  </channel>
</rss>

