<?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: function module for me51n ( text picking ) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337389#M1033192</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;use READ_TEXT function module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 11:18:06 GMT</pubDate>
    <dc:creator>GauthamV</dc:creator>
    <dc:date>2008-08-25T11:18:06Z</dc:date>
    <item>
      <title>function module for me51n ( text picking )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337388#M1033191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in transaction me51n  in item i  want to pick text entered by the user , which function module i use and what i have to put in its importing and exporting parameters , secondly texts are maintained in it as per line item wise , so please guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ankesh Jindal on Aug 25, 2008 1:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 11:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337388#M1033191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T11:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: function module for me51n ( text picking )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337389#M1033192</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;use READ_TEXT function module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 11:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337389#M1033192</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-08-25T11:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: function module for me51n ( text picking )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337390#M1033193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;read_text is used for almost all the text what importing parameters should i use in it which will differentiate it that it coming from me51n item&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 11:19:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337390#M1033193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T11:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: function module for me51n ( text picking )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337391#M1033194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use Function Module 'READ_TEXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am adding piece of code for reading text of VA01 just you change it as per ur transaction and ur reqt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: loc_id TYPE thead-tdid,&lt;/P&gt;&lt;P&gt;           vbeln TYPE thead-tdname,&lt;/P&gt;&lt;P&gt;        int_lines     TYPE  STANDARD TABLE OF  tline,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; vbeln = wa_vbak-vbeln.  "Sales Order No.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   loc_id = '0001'.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Call FM to Read Header Text of Pickup order.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        client                  = sy-mandt&lt;/P&gt;&lt;P&gt;        id                      = loc_id&lt;/P&gt;&lt;P&gt;        language                = sy-langu&lt;/P&gt;&lt;P&gt;        name                    = vbeln&lt;/P&gt;&lt;P&gt;        object                  = 'VBBK'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        lines                   = int_lines&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        id                      = 1&lt;/P&gt;&lt;P&gt;        language                = 2&lt;/P&gt;&lt;P&gt;        name                    = 3&lt;/P&gt;&lt;P&gt;        not_found               = 4&lt;/P&gt;&lt;P&gt;        object                  = 5&lt;/P&gt;&lt;P&gt;        reference_check         = 6&lt;/P&gt;&lt;P&gt;        wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;        OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will Help u,&lt;/P&gt;&lt;P&gt;Shyam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 11:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337391#M1033194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T11:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: function module for me51n ( text picking )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337392#M1033195</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;Pass Name = BANFN number &lt;/P&gt;&lt;P&gt;Language = 'EN'&lt;/P&gt;&lt;P&gt;Text ID = your id for ex B01&lt;/P&gt;&lt;P&gt;Text Object = 'EBANH'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is for header texts maintained with particular Id &lt;/P&gt;&lt;P&gt;For Item texts you need to pass &lt;/P&gt;&lt;P&gt;Name = Concatenate value of BANFN and BNFPO&lt;/P&gt;&lt;P&gt;Language = 'EN'&lt;/P&gt;&lt;P&gt;Text ID = your id for (ex B01)&lt;/P&gt;&lt;P&gt;Text Object = EBAN&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;Dwarakanath.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 11:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337392#M1033195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T11:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: function module for me51n ( text picking )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337393#M1033196</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;There is one way to find out which parameter you need to pass in this FM for ME51N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just you follow the process i am explaning below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to ME52n/    Means Change requisition  transaction .&lt;/P&gt;&lt;P&gt; Go to Item text tab.&lt;/P&gt;&lt;P&gt;Change any text you want , or write if not there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than Go to table &lt;STRONG&gt;STXH&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;Execute this table  by passing ur User name and date into&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TDLUSER and TDLDATE Field.&lt;/P&gt;&lt;P&gt;You will get all information like&lt;/P&gt;&lt;P&gt;TDOBJECT, TDNAME, TDID, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just you use the same in ur FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope This will sole ur Query,&lt;/P&gt;&lt;P&gt;Shyam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 11:38:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-me51n-text-picking/m-p/4337393#M1033196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T11:38:26Z</dc:date>
    </item>
  </channel>
</rss>

