<?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 Translation Window? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016235#M412025</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 am writing a common ALV Grid program to avoid cumbersome table maintenance generator screens. Its have input will be Table Name. But i am struck up in one point , your help needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you go to SM30--&amp;gt;enter any table with TEXT table &lt;DEL&gt;&amp;gt; select any line&lt;/DEL&gt;&amp;gt; in the menu GOTO &lt;DEL&gt;&amp;gt; translation&lt;/DEL&gt;&amp;gt; Here you can see small popup window ask for language --&amp;gt; select language --&amp;gt; you will get another window to option to entry for translation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like to know how we are getting this window? whether i can able to get this window by any function module.? or class?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2007 15:28:32 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2007-03-23T15:28:32Z</dc:date>
    <item>
      <title>Translation Window?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016235#M412025</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 am writing a common ALV Grid program to avoid cumbersome table maintenance generator screens. Its have input will be Table Name. But i am struck up in one point , your help needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you go to SM30--&amp;gt;enter any table with TEXT table &lt;DEL&gt;&amp;gt; select any line&lt;/DEL&gt;&amp;gt; in the menu GOTO &lt;DEL&gt;&amp;gt; translation&lt;/DEL&gt;&amp;gt; Here you can see small popup window ask for language --&amp;gt; select language --&amp;gt; you will get another window to option to entry for translation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like to know how we are getting this window? whether i can able to get this window by any function module.? or class?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 15:28:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016235#M412025</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-23T15:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Translation Window?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016236#M412026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have debugged it and it appears that you want to try to use the function module VIEW_MULTI_LANGU_TEXT_MAINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program within the SM30 call where this function module is used is SAPL0IP2  in the include LSVIMFXL and in the FORM VIM_MULTI_LANGU_TEXT_MAINT&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 15:42:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016236#M412026</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-23T15:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Translation Window?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016237#M412027</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;Check this program for dynamic table maintenance for a given table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_TABLE TYPE DD02L-TABNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: T_OUTPUT LIKE SE16N_OUTPUT OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT FIELDNAME FROM DD03L INTO TABLE T_OUTPUT&lt;/P&gt;&lt;P&gt;       WHERE TABNAME = P_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  MESSAGE S208(00) WITH 'Table not found'.&lt;/P&gt;&lt;P&gt;  LEAVE LIST-PROCESSING.&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;CALL FUNCTION 'SE16N_INTERFACE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    i_tab                  = p_table&lt;/P&gt;&lt;P&gt;    I_EDIT                 = 'X'&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   IT_OUTPUT_FIELDS       = T_OUTPUT&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_VALUES              = 1&lt;/P&gt;&lt;P&gt;   OTHERS                 = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&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;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 15:44:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016237#M412027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T15:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Translation Window?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016238#M412028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks , This is what i am looking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;issue solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 15:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016238#M412028</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-23T15:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Translation Window?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016239#M412029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 15:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/translation-window/m-p/2016239#M412029</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-23T15:47:50Z</dc:date>
    </item>
  </channel>
</rss>

