<?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: ME_PROCESS_REQ_CUST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/me-process-req-cust/m-p/3416333#M820528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are debugging a BADI, click 'call'.&lt;/P&gt;&lt;P&gt;It will give you all the programs which are called or active and from where you can get any information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example if you find the program SAPMV45A and the variable you require is available in the program then in debugger just find out its value as a variable::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(SAPMV45A)VBAK-AUART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now right the below code in your BADI to get the information....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: C_VBAK(14) TYPE C VALUE '(SAPMV45A)VBAK',&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FS_VBAK&amp;gt; TYPE VBAK.&lt;/P&gt;&lt;P&gt;ASSIGN (C_VBAK) TO &amp;lt;FS_VBAK&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK &amp;lt;FS_VBAK&amp;gt;-AUART = C_ZSQT OR&lt;/P&gt;&lt;P&gt;&amp;lt;FS_VBAK&amp;gt;-AUART = C_ZDQT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE AUART&lt;/P&gt;&lt;P&gt;              	   FROM VBAK&lt;/P&gt;&lt;P&gt;              	   INTO V_AUART&lt;/P&gt;&lt;P&gt;              	   WHERE VBELN = &amp;lt;FS_VBAK&amp;gt;-VGBEL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 19:36:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T19:36:37Z</dc:date>
    <item>
      <title>ME_PROCESS_REQ_CUST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me-process-req-cust/m-p/3416332#M820527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I implement badi ME_PROCESS_REQ_CUST metod &lt;/P&gt;&lt;P&gt;PROCESS_ITEM ( check record by record of request )&lt;/P&gt;&lt;P&gt;i need to read cost center to do a custom control&lt;/P&gt;&lt;P&gt;but in structure MEREQ_ITEM there isnt cost center.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have me any help??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 17:36:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me-process-req-cust/m-p/3416332#M820527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T17:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: ME_PROCESS_REQ_CUST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/me-process-req-cust/m-p/3416333#M820528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are debugging a BADI, click 'call'.&lt;/P&gt;&lt;P&gt;It will give you all the programs which are called or active and from where you can get any information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example if you find the program SAPMV45A and the variable you require is available in the program then in debugger just find out its value as a variable::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(SAPMV45A)VBAK-AUART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now right the below code in your BADI to get the information....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: C_VBAK(14) TYPE C VALUE '(SAPMV45A)VBAK',&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FS_VBAK&amp;gt; TYPE VBAK.&lt;/P&gt;&lt;P&gt;ASSIGN (C_VBAK) TO &amp;lt;FS_VBAK&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK &amp;lt;FS_VBAK&amp;gt;-AUART = C_ZSQT OR&lt;/P&gt;&lt;P&gt;&amp;lt;FS_VBAK&amp;gt;-AUART = C_ZDQT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE AUART&lt;/P&gt;&lt;P&gt;              	   FROM VBAK&lt;/P&gt;&lt;P&gt;              	   INTO V_AUART&lt;/P&gt;&lt;P&gt;              	   WHERE VBELN = &amp;lt;FS_VBAK&amp;gt;-VGBEL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 19:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/me-process-req-cust/m-p/3416333#M820528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T19:36:37Z</dc:date>
    </item>
  </channel>
</rss>

