<?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 iw21 program maping in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456085#M1414780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working with IW21 PM notification enhancement program. Enhancement name is SAPLXQQM and screen number 100.&lt;/P&gt;&lt;P&gt;In that screen i added Work permit input fields and and check box fields. i have to GET the notification type and Field displaying user status field value.&lt;/P&gt;&lt;P&gt;But problem is notification type and Field displaying user status field is located in the program SAPLIQS0. One the program  SAPLXQQM is trigger the value of the notification type and user status field is disappearing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i'll get that value into my program SAPLXQQM? how we will map this SAPLIQS0 and SAPLXQQM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any one knows kindly give the solution immediate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;bab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jan 2010 09:08:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-20T09:08:02Z</dc:date>
    <item>
      <title>iw21 program maping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456085#M1414780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working with IW21 PM notification enhancement program. Enhancement name is SAPLXQQM and screen number 100.&lt;/P&gt;&lt;P&gt;In that screen i added Work permit input fields and and check box fields. i have to GET the notification type and Field displaying user status field value.&lt;/P&gt;&lt;P&gt;But problem is notification type and Field displaying user status field is located in the program SAPLIQS0. One the program  SAPLXQQM is trigger the value of the notification type and user status field is disappearing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i'll get that value into my program SAPLXQQM? how we will map this SAPLIQS0 and SAPLXQQM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any one knows kindly give the solution immediate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;bab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 09:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456085#M1414780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T09:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: iw21 program maping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456086#M1414781</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;Try like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;l_prog(50) TYPE C VALUE u2018(SAPMV45A)XVBAP[]u2019,&lt;/P&gt;&lt;P&gt;lt_xvbap TYPE STANDARD TABLE OF vbapvb,&lt;/P&gt;&lt;P&gt;ls_xvbap LIKE LINE OF lt_xvbap.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;xvbap&amp;gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get xvbap table from way back in call stack&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ASSIGN (l_prog) TO &amp;lt;xvbap&amp;gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;lt_xvbap[] = &amp;lt;xvbap&amp;gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Now we xvbap table stored in a local variable and can read from it as needed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above is for sales order,modify as per your requirement.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 09:13:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456086#M1414781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T09:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: iw21 program maping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456087#M1414782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm really thank full to you man... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;bab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 10:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/iw21-program-maping/m-p/6456087#M1414782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T10:45:09Z</dc:date>
    </item>
  </channel>
</rss>

