<?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: call function -tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373436#M1402256</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;In your code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : EBELP TYPE EBELP .
DATA : EBELN TYPE EBELN .
DATA : begin of lt_tline occurs 0.
          include structure tline.
DATA : end of lt_tline.
 
CLEAR lv_name.
CONCATENATE ebeln ebelp INTO lv_name.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are the values that you are passing in ebeln and ebelp ?&lt;/P&gt;&lt;P&gt;Are there any values passed to these two variables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Nov 2009 10:42:03 GMT</pubDate>
    <dc:creator>former_member217544</dc:creator>
    <dc:date>2009-11-18T10:42:03Z</dc:date>
    <item>
      <title>call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373413#M1402233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in call function 'read_text' , what tables to use .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do i find out what sud be the  name of the table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 15:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373413#M1402233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T15:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373414#M1402234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joesph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to pass the TEXT ID, LANGUAGE, NAME OF THE TEXT TO BE READ, OBJECT OF THE TEXT TO BE READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you will get the lines of the text read in the TABLES parameter LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A sample code for your kind perusal:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of lt_tline occurs 0.
          include structure tline.
  data: end of lt_tline.
  data: l_tabix like sy-tabix.
  data: l_name like thead-tdname.

  sort it_kdgrp by spras kdgrp.

  loop at it_billing_docs into w_billing_docs.
    clear l_name.
    l_tabix = sy-tabix.
*-----Convert billing doc number to appropriate format
*    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
*      EXPORTING
*        INPUT         = w_billing_docs-vbeln
*      IMPORTING
*        OUTPUT        = l_name.
*-----Move to correct format for read_text
    move w_billing_docs-vbeln to l_name.
    call function 'READ_TEXT'
         exporting
              client                  = sy-mandt
              id                      = 'Z012'
              language                = sy-langu
              name                    = l_name
              object                  = 'VBBK'
         tables
              lines                   = lt_tline
         exceptions
              id                      = 1
              language                = 2
              name                    = 3
              not_found               = 4
              object                  = 5
              reference_check         = 6
              wrong_access_to_archive = 7
              others                  = 8.
    if sy-subrc eq 0.
*----Only the first line will be read
      read table lt_tline index 1.
      if sy-subrc eq 0.
        w_billing_docs-bill_name = lt_tline-tdline.
      endif.
    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Kindly set to resolved if it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please use code tags to help readability&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Nov 17, 2009 10:41 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 15:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373414#M1402234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T15:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373415#M1402235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks abhi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is my questions . i have to get the item text on GR-slip &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have written the code but i get stuck at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables &lt;/P&gt;&lt;P&gt;  lines = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do i write after equal to sign and then what i declare in the data stmnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have passed all the rest parametrs of item text like text id , name object etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is just this one .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 15:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373415#M1402235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T15:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373416#M1402236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just pass the parameter in the tables as I defined above. READ_TEXT will fill up this tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might get a doubt from where to find out the values of TEXT ID, LANGUAGE, NAME OF THE TEXT TO BE READ, OBJECT OF THE TEXT TO BE READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example : Say you have to read the Long text in the Sales Header. To find out  above values do as below :-&lt;/P&gt;&lt;P&gt;                 1) Go to VA03 ,enter billing number &amp;amp; hit enter.&lt;/P&gt;&lt;P&gt;                 2) Click on Go to Menu.&lt;/P&gt;&lt;P&gt;                 3) Then Select HEADER.&lt;/P&gt;&lt;P&gt;                 4) Then Select TEXTS.&lt;/P&gt;&lt;P&gt;                 5) Double click on the long text ,you see there.&lt;/P&gt;&lt;P&gt;                 6) It will open SAP script text editor.&lt;/P&gt;&lt;P&gt;                 7) Then click on GO TO &amp;amp; select HEADER&lt;/P&gt;&lt;P&gt;                 &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; You will find TEXT NAME, LANGUAGE, TEXT ID, &amp;amp; TEXT OBJECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly set to resolved if it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhii on Nov 17, 2009 4:54 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 15:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373416#M1402236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T15:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373417#M1402237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks abhi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i already told you i know where to get the rest of the parameters , i wanted to know how to get the table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you gave the entire program code , but my question i still not answered .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know what table name to write .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 16:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373417#M1402237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T16:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373418#M1402238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Abhii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You deserve full credit for your replies, however, I should point out that you should no longer use the 'OCCURS x' language statement. Beside the fact that it is obsolete, you simply cannot use it in classes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 16:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373418#M1402238</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-11-17T16:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373419#M1402239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is all there in Abhii's code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name of the table 'LT_LINES' (which is arbitrary).&lt;/P&gt;&lt;P&gt;Data declaration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: begin of lt_tline occurs 0.
          include structure tline.
  data: end of lt_tline.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What else do you need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 16:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373419#M1402239</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-11-17T16:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373420#M1402240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TABLES parameter passed while calling a Function module , combines the features of EXPORTING and IMPORTING parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ_TEXT will read the text maintained , and fill the itab passed in TABLES parameter. (Before calling FM, itab would be empty)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know if you still face any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nisha Vengal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 17:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373420#M1402240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T17:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373421#M1402241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function module will return texts in LINES table. you need to pass your internal table here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. - Please see Function Module Documentation of READ_TEXT in SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;PB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 21:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373421#M1402241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T21:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373422#M1402242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table LINES should be of type TLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_lines TYPE STANDARD TABLE OF tline,&lt;/P&gt;&lt;P&gt;           wa_lines TYPE tline.                            "work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this table in your function call.&lt;/P&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;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;lines = t_lines&lt;/P&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;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aparna Gaikwad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 21:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373422#M1402242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T21:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373423#M1402243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mickey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : EBELP TYPE EBELP .
DATA : EBELN TYPE EBELN .
DATA : begin of lt_tline occurs 0.
          include structure tline.
DATA : end of lt_tline.

CLEAR lv_name.
CONCATENATE ebeln ebelp INTO lv_name.

CALL FUNCTION 'READ_TEXT'

EXPORTING
           ID = 'F01'
           LANGUAGE = 'E'
           NAME = 'lv_name'
           OBJECT = 'EKPO'

 TABLES
          LINES = lt_tline
          
EXCEPTIONS
          NOT_FOUND = 04.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i check the print preview i get 00000 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where am i wrong . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also if there are 5 line items , what sud be the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 08:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373423#M1402243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T08:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373424#M1402244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'READ_TEXT'
 
EXPORTING
           ID = 'F01'
           LANGUAGE = 'E'
           " NAME = 'lv_name'
           NAME = lv_name
           OBJECT = 'EKPO'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should be it ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 08:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373424#M1402244</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-11-18T08:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373425#M1402245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;now i get a runtime error saying the field lv_name specifed is a different field type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what sud be the data type for lv_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: joseph_sweden on Nov 18, 2009 9:59 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 08:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373425#M1402245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T08:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373426#M1402246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_name like thead-tdname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 09:12:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373426#M1402246</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-11-18T09:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373427#M1402247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have declared it same way but it is giving 00000 in the print out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: joseph_sweden on Nov 18, 2009 10:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 09:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373427#M1402247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T09:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373428#M1402248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forget about the print out for the time being, debug the code &amp;amp; check if the table LT_TLINE is populated after READ_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If values are populated, then we proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 09:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373428#M1402248</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-11-18T09:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373429#M1402249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;print program is a standard program for m any smartforms , do i need to debugg the smartform , how do i do that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 09:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373429#M1402249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T09:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373430#M1402250</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; write the statement BREAK-POINT before calling your function module READ_TEXT.&lt;/P&gt;&lt;P&gt;Now check whether the input parameters are passed correctly or not. &lt;/P&gt;&lt;P&gt;Now execute the function module and then check the tables parameter whether any records are coming into this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 09:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373430#M1402250</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2009-11-18T09:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373431#M1402251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i debugged and no values are populated in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 10:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373431#M1402251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-18T10:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: call function -tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373432#M1402252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means that the call of your READ_TEXT is incorrect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are trying to read the long text for which object? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Nov 2009 10:21:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-tables/m-p/6373432#M1402252</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-11-18T10:21:01Z</dc:date>
    </item>
  </channel>
</rss>

