<?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: check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194974#M129439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want to do as follows&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT SINGLE somefield INTO somevariable
                        FROM zx_pt_matkl
                       WHERE matkl = ivbap-matkl.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;IF somevariable = 'XYZ'.&lt;/P&gt;&lt;P&gt;*-- do something, I cannot tell what you want to do&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;*-- do something else&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jan 2006 05:35:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-05T05:35:00Z</dc:date>
    <item>
      <title>check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194971#M129436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Every one,&lt;/P&gt;&lt;P&gt;               i am modifying VA01/ VA02 screen, In that screen i have added a new button(telephone icon). when a item line and the button are selected, the following check should be performed..&lt;/P&gt;&lt;P&gt; - check whether the material group field is set for call monitoring on a bespoke configuration table(zx_pt_matkl).&lt;/P&gt;&lt;P&gt; how it can be carried out, can somebody provide me with a code.&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Kesi rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2006 22:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194971#M129436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-04T22:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194972#M129437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for something like this? I don't know what is availble to you at this user exit, but I am assuming that you don't have material group with you at this point. If you have, just replace the code where I get the material group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT SINGLE matkl FROM mara
                    INTO v_matkl
                   WHERE matnr = xvbap-matnr.
SELECT SINGLE call FROM zx_pt_matkl
                   INTO v_call_monitoring
                  WHERE matkl = v_matkl.
IF v_cal_monitoring = &amp;lt;somevalue&amp;gt;.
....do something
ELSE.
... do something else.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2006 22:23:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194972#M129437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-04T22:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194973#M129438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;I have to just check the material group (field ivbap-matkl) in that selected item line is set for some xyz function on config.table zx_pt_matkl.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;kesi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2006 22:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194973#M129438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-04T22:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194974#M129439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want to do as follows&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT SINGLE somefield INTO somevariable
                        FROM zx_pt_matkl
                       WHERE matkl = ivbap-matkl.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;IF somevariable = 'XYZ'.&lt;/P&gt;&lt;P&gt;*-- do something, I cannot tell what you want to do&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;*-- do something else&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2006 05:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check/m-p/1194974#M129439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-05T05:35:00Z</dc:date>
    </item>
  </channel>
</rss>

