<?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: Purchase requisition- Mat. description problem. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441887#M1846626</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;program :SAPLMEGUI&lt;/P&gt;&lt;P&gt;screen:0014&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Jul 2014 11:54:20 GMT</pubDate>
    <dc:creator>former_member202818</dc:creator>
    <dc:date>2014-07-16T11:54:20Z</dc:date>
    <item>
      <title>Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441873#M1846612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I am stuck with one problem regarding Purchase requisition material description. The scenario is as follows.&lt;/P&gt;&lt;P&gt;We have two types of PR creation. With or without material code. &lt;/P&gt;&lt;P&gt;Material description is set to display only. But if the user enters the material code and random description and then press Enter button then the system doesnt pick the description from MAKT and keep the random description and disabling it for input. As shown in below screen shot. &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/498605" height="236" width="856" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to restrict this, So I used the enhancement - MEREQ001 in CMOD and exit - EXIT_SAPLMEREQ_010&amp;nbsp; and &lt;SPAN class="L0S52"&gt;INCLUDE &lt;/SPAN&gt;ZXM02U12 , to compare the material description and change it to master data from table MAKT. But the problem here is the original PR data fetched in to the exit is not changing. I have written below code. &lt;/P&gt;&lt;P&gt;+++++++++++++++++++++++++++++++++++++++++++++&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;im_t_eban &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;l_s_eban&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;l_s_eban&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;matnr &amp;lt;&amp;gt; &lt;SPAN class="L0S33"&gt;''&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SINGLE &lt;/SPAN&gt;maktx &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;makt &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;mde&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;matnr &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;l_s_eban&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;matnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;mde &amp;lt;&amp;gt; l_s_eban&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;txz01 &lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MESSAGE &lt;/SPAN&gt;w007&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;zm_msg&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;. &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" DISPLAY LIKE 'E'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; l_s_eban&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;txz01 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;mde&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S31"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODIFY im_t_eban FROM l_s_eban TRANSPORTING txz01. " THIS LINE IS GIVING SYNTAX ERROR THAT im_t_eban is not changeable &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;ENDLOOP. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;++++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;So how to solve this problem?? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Or is there any other way to restrict the user to change the material description ??&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Vishal . &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 08:57:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441873#M1846612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T08:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441874#M1846613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vishal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Did you try reading the screen field (Short Text) value using DYNP_VALUES_READ?&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 09:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441874#M1846613</guid>
      <dc:creator>Arun_Prabhu_K</dc:creator>
      <dc:date>2014-07-16T09:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441875#M1846614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;Yes the field - &lt;SPAN style="color: #333333; font-size: 12px;"&gt;l_s_eban&lt;/SPAN&gt;&lt;SPAN class="L0S70" style="font-size: 12px; color: #333333;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;txz01&lt;/SPAN&gt; in my code above reads the short text entered by the user,&lt;/P&gt;&lt;P&gt;which is ' test' in above screenshot. I compared it with MAKT description and if not matched then giving warning it should over write by MAKT-MAKTX value.&lt;/P&gt;&lt;P&gt;But its not happening as &lt;SPAN style="color: #333333; font-size: 12px;"&gt;im_t_eban &lt;/SPAN&gt; is not modifiable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 09:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441875#M1846614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T09:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441876#M1846615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vishal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; No need to modify any internal table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Just display the error message and EXIT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; That should be sufficient, right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 09:32:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441876#M1846615</guid>
      <dc:creator>Arun_Prabhu_K</dc:creator>
      <dc:date>2014-07-16T09:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441877#M1846616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;No the system should store the material description from MAKT and not the one that the user entered , after the warning message is displayed. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 09:37:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441877#M1846616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T09:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441878#M1846617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you couldn't found any suitable exits, you can do this using implicit enhancement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that you can directly access all variable available at the position where implementing.&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>Wed, 16 Jul 2014 09:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441878#M1846617</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-07-16T09:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441879#M1846618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello abaper,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a look on this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Gaurav, try this:&lt;/P&gt;&lt;P&gt; &lt;A _jive_internal="true" href="https://answers.sap.com/thread/3297154"&gt;http://scn.sap.com/thread/3297154&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;FIELD-SYMBOLS&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;: &lt;/SPAN&gt;&amp;lt;T_EBAN&amp;gt; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;type &lt;/SPAN&gt;mereq_t_eban&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;FIELD-SYMBOLS&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;: &lt;/SPAN&gt;&amp;lt;im_t_eban&amp;gt; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;type &lt;/SPAN&gt;mereq_t_eban&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;: &lt;/SPAN&gt;wa_eban &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;LIKE &lt;/SPAN&gt;eban&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ASSIGN ('(SAPLMEREQ)LT_EBAN[]') to&amp;nbsp; &amp;lt;T_EBAN&amp;gt; .&amp;nbsp;&amp;nbsp; &amp;lt;-Uncommet this line&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;AT &lt;/SPAN&gt;&amp;lt;im_t_eban&amp;gt; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;INTO &lt;/SPAN&gt;wa_eban&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S31" style="font-family: inherit;"&gt;* =&amp;gt; here you can change the value&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;SINGLE &lt;/SPAN&gt;matnr maktx &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;into &lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;(&lt;/SPAN&gt;mcode&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;,&lt;/SPAN&gt;mdesc&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;FROM &lt;/SPAN&gt;makt&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;WHERE &lt;/SPAN&gt;matnr &lt;SPAN class="L0S55" style="font-family: inherit;"&gt;= &lt;/SPAN&gt;wa_eban&lt;SPAN class="L0S70" style="font-family: inherit;"&gt;-&lt;/SPAN&gt;matnr&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;if &lt;/SPAN&gt;sy&lt;SPAN class="L0S70" style="font-family: inherit;"&gt;-&lt;/SPAN&gt;subrc &lt;SPAN class="L0S55" style="font-family: inherit;"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32" style="font-family: inherit;"&gt;0 &lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;move &lt;/SPAN&gt;mdesc &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;to &lt;/SPAN&gt;wa_eban&lt;SPAN class="L0S70" style="font-family: inherit;"&gt;-&lt;/SPAN&gt;txz01&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; MODIFY &amp;lt;T_EBAN&amp;gt; from wa_eban TRANSPORTING txz01.&amp;nbsp;&amp;nbsp; &amp;lt;-Change the field-symbol for the one that is referencing the standard table&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-family: inherit;"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #333333; font-size: 12px;"&gt;&lt;SPAN class="L0S52" style="font-family: inherit;"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 10:04:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441879#M1846618</guid>
      <dc:creator>SwadhinGhatuary</dc:creator>
      <dc:date>2014-07-16T10:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441880#M1846619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreekanth,&lt;/P&gt;&lt;P&gt;Can you please explain some more on what you are suggesting ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vishal . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 10:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441880#M1846619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T10:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441881#M1846620</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;Steps..&lt;/P&gt;&lt;P&gt;1.Press F1 on any field in table control, to get screen number&lt;/P&gt;&lt;P&gt;2.Press F9, double click on screen number&lt;/P&gt;&lt;P&gt;3.In PAI of this screen find out any suitable perform(inside any module,we can not do implicit enhancement in module,but can do inside a perform in a module).&lt;/P&gt;&lt;P&gt;now follow steps as shown below to implement your own logic.&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/498843" width="450" /&gt;&lt;/P&gt;&lt;P&gt;edit-&amp;gt;enhancement operations-&amp;gt;show implicit enhancement options&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/498844" /&gt;&lt;/P&gt;&lt;P&gt;Right click on any suitable ..&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/498846" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/498839" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/498840" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/498841" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441881#M1846620</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-07-16T11:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441882#M1846621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi swadhin,&lt;/P&gt;&lt;P&gt;I checked the thread, and as the last reply said its gives error. &lt;/P&gt;&lt;P&gt;So please suggest any other solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441882#M1846621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T11:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441883#M1846622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreekanth,&lt;/P&gt;&lt;P&gt;The step-2 for screen number is not working for PR- ME51N.&lt;BR /&gt;Check below screen shot. &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/498890" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:36:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441883#M1846622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T11:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441884#M1846623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you check the BADI - ME_PROCESS_REQ_CUST, Method- PROCESS_ITEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample Code -&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;lw_req_item&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;mereq_item,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_maktx&amp;nbsp; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;maktx.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CLEAR&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;lw_req_item &lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;lv_maktx&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;lv.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;im_item &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;im_item&lt;SPAN class="L0S70"&gt;-&amp;gt;&lt;/SPAN&gt;get_data&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECEIVING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; re_data &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lw_req_item&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;lw_req_item &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CLEAR &lt;/SPAN&gt;lv_maktx&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SINGLE &lt;/SPAN&gt;maktx &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;makt&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;lv_maktx&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;matnr &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lw_req_item&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;matnr&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;AND&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;spras &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;langu&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;( &lt;/SPAN&gt;lv_maktx &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lw_req_item&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;txz01 &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TRANSLATE &lt;/SPAN&gt;lv_maktx &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LOWER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CASE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TRANSLATE &lt;/SPAN&gt;lw_req_item&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;txz01 &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LOWER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CASE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF&amp;nbsp; &lt;/SPAN&gt;lw_req_item&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;txz01 &lt;SPAN class="L0S52"&gt;NE &lt;/SPAN&gt;lv_maktx&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;* Error Handling if any&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;*&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt; OR you set the value here &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lw_req_item&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;txz01 &lt;SPAN class="L0S52"&gt;= &lt;/SPAN&gt;lv_maktx&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;im_item&lt;SPAN class="L0S70"&gt;-&amp;gt;&lt;/SPAN&gt;set_data&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; im_data &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lw_req_item&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441884#M1846623</guid>
      <dc:creator>atul_mohanty</dc:creator>
      <dc:date>2014-07-16T11:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441885#M1846624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;double click on screen number 0014&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441885#M1846624</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-07-16T11:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441886#M1846625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sreekanth,&lt;/P&gt;&lt;P&gt;That is what I did and got the error &lt;/P&gt;&lt;P&gt;Click on the screen shot I posted and in status bar, you can see the error that the screen number 0014 does not exist. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441886#M1846625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-16T11:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441887#M1846626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;program :SAPLMEGUI&lt;/P&gt;&lt;P&gt;screen:0014&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 11:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441887#M1846626</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-07-16T11:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441888#M1846627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sry.. this is an alv not table control. let me check this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 12:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441888#M1846627</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-07-16T12:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase requisition- Mat. description problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441889#M1846628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks alot Atul,&lt;/P&gt;&lt;P&gt;Your solution works fine for me... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vishal . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2014 06:46:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-requisition-mat-description-problem/m-p/10441889#M1846628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-21T06:46:20Z</dc:date>
    </item>
  </channel>
</rss>

