<?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: Help in Get cursor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762690#M1116663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to run WA_LIFNR-LIFNR through FM &lt;STRONG&gt;CONVERSION_EXIT_ALPHA_INPUT&lt;/STRONG&gt; before using the value in a SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Nov 2008 19:16:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-03T19:16:07Z</dc:date>
    <item>
      <title>Help in Get cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762688#M1116661</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;i'm working reports..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: f_value(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN  'PICK'.&lt;/P&gt;&lt;P&gt;GET CURSOR field F_VALUE VALUE f_VALUE .&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'LIF' FIELD WA_LIFNR-LIFNR.&lt;/P&gt;&lt;P&gt;IF  f_VALUE = WA_LIFNR-LIFNR .&lt;/P&gt;&lt;P&gt;SELECT ADRNR.....&lt;/P&gt;&lt;P&gt;end select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when im debugging for example the value of Wa_lifnr-lifnr = '000000228'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the value of f_value = '228'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how can i equal both these...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2008 19:02:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762688#M1116661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-03T19:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help in Get cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762689#M1116662</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;You have two posibilities:&lt;/P&gt;&lt;P&gt;1) type &lt;STRONG&gt;f_value&lt;/STRONG&gt; with &lt;STRONG&gt;n&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: f_value(10) type n.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2) convert &lt;STRONG&gt;wa_lifnr-lifnr&lt;/STRONG&gt; to type &lt;STRONG&gt;c&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: wa_c_lifnr(10) type c.
wa_c_lifnr = wa_lifnr-lifnr.
SET PARAMETER ID 'LIF' FIELD wa_c_lifnr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2008 19:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762689#M1116662</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2008-11-03T19:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help in Get cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762690#M1116663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to run WA_LIFNR-LIFNR through FM &lt;STRONG&gt;CONVERSION_EXIT_ALPHA_INPUT&lt;/STRONG&gt; before using the value in a SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2008 19:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762690#M1116663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-03T19:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help in Get cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762691#M1116664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;apply the changes, and can i know what are you doing here..&lt;/P&gt;&lt;P&gt;i think you need to use get , where are you getting the value wa_lifnr-lifnr&lt;/P&gt;&lt;P&gt;if you want it from parameter id then you have to use get.&lt;/P&gt;&lt;P&gt;also use conversion routine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT LINE-SELECTION.
CASE SY-UCOMM.
WHEN 'PICK'.
GET CURSOR field F_VALUE VALUE f_VALUE .
"use the coversion routine
call function 'CONVERSION_EXIT_ALPHA_INPUT'
exporting
 input  =   f_value
importing
 output         =  f_value.

GET PARAMETER ID 'LIF' FIELD WA_LIFNR-LIFNR.  "what are you doing, you should use GET 
IF f_VALUE = WA_LIFNR-LIFNR .
SELECT ADRNR.....
end select.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vijay Babu Dudla on Nov 3, 2008 2:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2008 19:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-get-cursor/m-p/4762691#M1116664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-03T19:17:23Z</dc:date>
    </item>
  </channel>
</rss>

