<?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: sapscript  --  using se38 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156765#M119056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats the data type of lv_ebeln?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it has to be type ebeln.&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;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 15 Jan 2006 13:22:07 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2006-01-15T13:22:07Z</dc:date>
    <item>
      <title>sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156758#M119049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FORM get_lgpbe TABLES  in_par STRUCTURE itcsy&lt;/P&gt;&lt;P&gt;                      out_par STRUCTURE itcsy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   DATA: lv_matnr TYPE mard-matnr,&lt;/P&gt;&lt;P&gt;         lv_lgort TYPE mard-lgort,&lt;/P&gt;&lt;P&gt;         lv_lgpbe TYPE mard-lgpbe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   LOOP AT in_par.&lt;/P&gt;&lt;P&gt;     CASE in_par-name.&lt;/P&gt;&lt;P&gt;       WHEN 'LGORT'.&lt;/P&gt;&lt;P&gt;         MOVE in_par-value TO lv_lgort.&lt;/P&gt;&lt;P&gt;       WHEN 'MATNR'.&lt;/P&gt;&lt;P&gt;         MOVE in_par-value TO lv_matnr.&lt;/P&gt;&lt;P&gt;     ENDCASE.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &amp;lt;b&amp;gt;SELECT SINGLE lgpbe INTO lv_lgpbe&lt;/P&gt;&lt;P&gt;   FROM mard&lt;/P&gt;&lt;P&gt;   WHERE matnr = lv_matnr&lt;/P&gt;&lt;P&gt;   and lgort = lv_lgort&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   LOOP AT out_par.&lt;/P&gt;&lt;P&gt;     CASE out_par-name.&lt;/P&gt;&lt;P&gt;       WHEN 'EXT_LGPBE'.&lt;/P&gt;&lt;P&gt;         move lv_lgpbe  to out_par-value .&lt;/P&gt;&lt;P&gt;     ENDCASE.&lt;/P&gt;&lt;P&gt;     MODIFY out_par.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDFORM.                    "get_lgpbe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my program &lt;/P&gt;&lt;P&gt;if i made this select&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECT SINGLE lgpbe INTO lv_lgpbe&lt;/P&gt;&lt;P&gt;   FROM mard&lt;/P&gt;&lt;P&gt;   WHERE matnr = lv_matnr&lt;/P&gt;&lt;P&gt;   and lgort = lv_lgort&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in se16 i get value but in the program i dont get' why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 12:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156758#M119049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T12:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156759#M119050</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;Perhaps the code of material number is wrong, infact you have the code in output format (because you're using the value got out from sapscript) and it can have a differen value so your query is failing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IN_PAR.&lt;/P&gt;&lt;P&gt;    CASE IN_PAR-NAME.&lt;/P&gt;&lt;P&gt;      WHEN 'LGORT'.&lt;/P&gt;&lt;P&gt;        MOVE IN_PAR-VALUE TO LV_LGORT.&lt;/P&gt;&lt;P&gt;      WHEN 'MATNR'.&lt;/P&gt;&lt;P&gt;        MOVE IN_PAR-VALUE TO LV_MATNR.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Convertion for input format:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;             EXPORTING&lt;/P&gt;&lt;P&gt;                  INPUT  = LV_MATNR&lt;/P&gt;&lt;P&gt;             IMPORTING&lt;/P&gt;&lt;P&gt;                  OUTPUT = LV_MATNR.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:00:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156759#M119050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156760#M119051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check whether you get proper value passed ot lv_matnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also just before the select statement add the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    input              = lv_matnr&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT             = lv_matnr&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   LENGTH_ERROR       = 1&lt;/P&gt;&lt;P&gt;   OTHERS             = 2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156760#M119051</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-01-15T13:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156761#M119052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have lv_ebeln he need  this function too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156761#M119052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156762#M119053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;foe ebeln use FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to find out which conversion exit to use, check the underlying domain to see the conversion FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Durairaj Athavan Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:12:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156762#M119053</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-01-15T13:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156763#M119054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for another select i made this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    input              = lv_matnr&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT             = lv_matnr&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   LENGTH_ERROR       = 1&lt;/P&gt;&lt;P&gt;   OTHERS             = 2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = lv_ebeln&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;  OUTPUT        = lv_ebeln&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT SINGLE uptyp INTO lv_uptyp&lt;/P&gt;&lt;P&gt;   FROM ekpo&lt;/P&gt;&lt;P&gt;   WHERE ebeln = lv_ebeln&lt;/P&gt;&lt;P&gt;   AND   matnr = lv_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it's not working.help pls&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156763#M119054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156764#M119055</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;Yes I think you're right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you have to use a data got out fro sapscript, you should always check the data domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Infact here you can see if it's assigned the routine input/output convertions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The domain of your field for material code is MATNR and it has the routine MAT1. So you have to use fm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_MAT1_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The domain of your field for purchase number is EBELN and it has the routine ALPHA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally if the domain has the routine &amp;lt;ROUTINE&amp;gt;, you have to use the fm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_&amp;lt;ROUTINE&amp;gt;_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156764#M119055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156765#M119056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats the data type of lv_ebeln?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it has to be type ebeln.&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;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156765#M119056</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-01-15T13:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156766#M119057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: lv_ebeln TYPE ekpo-ebeln,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156766#M119057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156767#M119058</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;Yes, FM CONVERSION_EXIT_ALPHA_INPUT is right, see my previous answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:42:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156767#M119058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156768#M119059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why i dont get value and in se16 i get&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       input        = lv_matnr&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;       OUTPUT       = lv_matnr&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       LENGTH_ERROR = 1&lt;/P&gt;&lt;P&gt;       OTHERS       = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       INPUT  = lv_ebeln&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;       OUTPUT = lv_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT SINGLE uptyp INTO lv_uptyp&lt;/P&gt;&lt;P&gt;   FROM ekpo&lt;/P&gt;&lt;P&gt;   WHERE ebeln = lv_ebeln&lt;/P&gt;&lt;P&gt;   AND   matnr = lv_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if lv_uptyp = 2.&lt;/P&gt;&lt;P&gt;     lv_bonus = 'X'.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156768#M119059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156769#M119060</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;Are you sure there's the record you're looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code is correct but you shouldn't use SELECT SINGLE statament because you aren't using all fields key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If in your order there are more items than one with the same material, SELECT SINGLE statament'll always give the first record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT uptyp INTO lv_uptyp FROM ekpo&lt;/P&gt;&lt;P&gt;                                 WHERE ebeln = lv_ebeln&lt;/P&gt;&lt;P&gt;                                   AND matnr = lv_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if lv_uptyp = 2.&lt;/P&gt;&lt;P&gt;lv_bonus = 'X'.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 13:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156769#M119060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T13:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156770#M119061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it's not workin i add  ebelp too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  single uptyp INTO lv_uptyp&lt;/P&gt;&lt;P&gt;   FROM ekpo&lt;/P&gt;&lt;P&gt;   WHERE ebeln = lv_ebeln&lt;/P&gt;&lt;P&gt;   AND   matnr = lv_matnr&lt;/P&gt;&lt;P&gt;   AND   EBELP = lv_line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 14:01:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156770#M119061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T14:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: sapscript  --  using se38</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156771#M119062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure the field lv_line is correctly filled and try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_ekpo like ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT single * INTO w_ekpo FROM ekpo&lt;/P&gt;&lt;P&gt;WHERE ebeln = lv_ebeln&lt;/P&gt;&lt;P&gt;aND EBELP   = lv_line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF lv_matnr = w_ekpo-matnr.&lt;/P&gt;&lt;P&gt;  lv_uptyp = W_EKPO-UPTYP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2006 14:08:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sapscript-using-se38/m-p/1156771#M119062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-15T14:08:49Z</dc:date>
    </item>
  </channel>
</rss>

