<?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: How can I importing when create object? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967065#M700178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again everybody,&lt;/P&gt;&lt;P&gt;I solved it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2007 18:48:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-10T18:48:36Z</dc:date>
    <item>
      <title>How can I importing when create object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967061#M700174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;I&amp;#146;m beginner with OO Abap. Please give me a hand with this.&lt;/P&gt;&lt;P&gt;I&amp;#146;m using the programming interface REPORT  Z_TEST_ST_TEXT_EDITOR for text editor found on /people/igor.barbaric/blog/2005/06/06/the-standard-text-editor-oo-abap-cfw-class which is good and useful for me (highly recommended) but I need to import the text created (t_text)  in method constructor in order to send it via e.mail. &lt;/P&gt;&lt;P&gt;Could anybody tell me how to get/import the text created?&lt;/P&gt;&lt;P&gt;Thank you in advance. &lt;/P&gt;&lt;P&gt;Below is the coding. (program which uses the developed class and method consisting the created text)&lt;/P&gt;&lt;P&gt;DATA: o_txe     TYPE REF TO &amp;lt;b&amp;gt;zcl_standard_text_editor&amp;lt;/b&amp;gt;,&lt;/P&gt;&lt;P&gt;      v_caption TYPE char100,&lt;/P&gt;&lt;P&gt;      s_thead   TYPE thead.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL SCREEN 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MODULE s0100_start&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MODULE s0100_start OUTPUT.&lt;/P&gt;&lt;P&gt;    SET PF-STATUS 'BASIC'.&lt;/P&gt;&lt;P&gt;    s_thead-tdname   = 'VENDOR0000000011'.&lt;/P&gt;&lt;P&gt;    s_thead-tdid     = 'ST'.&lt;/P&gt;&lt;P&gt;    s_thead-tdobject = 'TEXT'.&lt;/P&gt;&lt;P&gt;    s_thead-tdspras  = sy-langu.&lt;/P&gt;&lt;P&gt;    CONCATENATE 'Standard text:' s_thead-tdname&lt;/P&gt;&lt;P&gt;                INTO v_caption SEPARATED BY space.&lt;/P&gt;&lt;P&gt;    IF o_txe IS INITIAL.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;       CREATE OBJECT o_txe&amp;lt;/b&amp;gt;          &lt;/P&gt;&lt;P&gt;EXPORTING i_thead   = s_thead&lt;/P&gt;&lt;P&gt;                   i_caption = v_caption.  &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IMPORTING????&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;method CONSTRUCTOR&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA: o_dialogbox TYPE REF TO cl_gui_dialogbox_container,&lt;/P&gt;&lt;P&gt;      t_text      TYPE STANDARD TABLE OF tdline,&lt;/P&gt;&lt;P&gt;      s_event     TYPE cntl_simple_event,&lt;/P&gt;&lt;P&gt;      t_events    TYPE cntl_simple_events,&lt;/P&gt;&lt;P&gt;      t_lines     TYPE STANDARD TABLE OF tline,&lt;/P&gt;&lt;P&gt;      v_text      TYPE tdline,&lt;/P&gt;&lt;P&gt;      v_text_temp TYPE tdline,&lt;/P&gt;&lt;P&gt;      v_line_temp TYPE tdline,&lt;/P&gt;&lt;P&gt;      v_line_len  TYPE i,&lt;/P&gt;&lt;P&gt;      v_index     TYPE i.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;line&amp;gt; TYPE tline.&lt;/P&gt;&lt;P&gt;me-&amp;gt;thead   = i_thead.&lt;/P&gt;&lt;P&gt;me-&amp;gt;caption = i_caption.&lt;/P&gt;&lt;P&gt;*------ containers&lt;/P&gt;&lt;P&gt;IF i_container IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT o_dialogbox&lt;/P&gt;&lt;P&gt;            EXPORTING top     = 50&lt;/P&gt;&lt;P&gt;                      left    = 200&lt;/P&gt;&lt;P&gt;                      height  = 150&lt;/P&gt;&lt;P&gt;                      width   = 500&lt;/P&gt;&lt;P&gt;                      caption = i_caption.&lt;/P&gt;&lt;P&gt;    me-&amp;gt;main_container = o_dialogbox.&lt;/P&gt;&lt;P&gt;    SET HANDLER me-&amp;gt;on_container_close FOR o_dialogbox.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;    me-&amp;gt;main_container = i_container.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF me-&amp;gt;splitter IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT me-&amp;gt;splitter&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;                 parent        = me-&amp;gt;main_container&lt;/P&gt;&lt;P&gt;                 orientation   = me-&amp;gt;splitter-&amp;gt;orientation_vertical&lt;/P&gt;&lt;P&gt;                 sash_position = 10. "percentage of containers&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ------ toolbar&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CREATE OBJECT me-&amp;gt;toolbar&lt;/P&gt;&lt;P&gt;          EXPORTING parent = me-&amp;gt;splitter-&amp;gt;top_left_container.&lt;/P&gt;&lt;P&gt;    CALL METHOD me-&amp;gt;toolbar-&amp;gt;add_button&lt;/P&gt;&lt;P&gt;         EXPORTING  fcode       = me-&amp;gt;c_save&lt;/P&gt;&lt;P&gt;                    is_disabled = ' '&lt;/P&gt;&lt;P&gt;                    icon        = '@2L@' "icon_system_save&lt;/P&gt;&lt;P&gt;                    butn_type   = cntb_btype_button.&lt;/P&gt;&lt;P&gt;    CALL METHOD me-&amp;gt;toolbar-&amp;gt;add_button&lt;/P&gt;&lt;P&gt;         EXPORTING  fcode       = me-&amp;gt;c_close&lt;/P&gt;&lt;P&gt;                    is_disabled = ' '&lt;/P&gt;&lt;P&gt;                    icon        = '@3X@' "icon_close&lt;/P&gt;&lt;P&gt;                    butn_type   = cntb_btype_button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*------ register events&lt;/P&gt;&lt;P&gt;    REFRESH t_events.&lt;/P&gt;&lt;P&gt;    s_event-eventid = cl_gui_toolbar=&amp;gt;m_id_function_selected.&lt;/P&gt;&lt;P&gt;    s_event-appl_event = ' '.&lt;/P&gt;&lt;P&gt;    APPEND s_event TO t_events.&lt;/P&gt;&lt;P&gt;    CALL METHOD me-&amp;gt;toolbar-&amp;gt;set_registered_events&lt;/P&gt;&lt;P&gt;          EXPORTING events = t_events.&lt;/P&gt;&lt;P&gt;    SET HANDLER: me-&amp;gt;on_toolbar_func_sel FOR me-&amp;gt;toolbar.&lt;/P&gt;&lt;P&gt;*------ create textedit control&lt;/P&gt;&lt;P&gt;    CREATE OBJECT me-&amp;gt;textedit&lt;/P&gt;&lt;P&gt;       EXPORTING parent = me-&amp;gt;splitter-&amp;gt;bottom_right_container.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; get text&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING ID       = me-&amp;gt;thead-tdid&lt;/P&gt;&lt;P&gt;                  LANGUAGE = me-&amp;gt;thead-tdspras&lt;/P&gt;&lt;P&gt;                  NAME     = me-&amp;gt;thead-tdname&lt;/P&gt;&lt;P&gt;                  OBJECT   = me-&amp;gt;thead-tdobject&lt;/P&gt;&lt;P&gt;        TABLES    LINES    = t_lines&lt;/P&gt;&lt;P&gt;        EXCEPTIONS 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;*------- convert text to text editor format&lt;/P&gt;&lt;P&gt;LOOP AT t_lines ASSIGNING &amp;lt;line&amp;gt;.&lt;/P&gt;&lt;P&gt;    IF &amp;lt;line&amp;gt;-tdformat = space OR &amp;lt;line&amp;gt;-tdformat = '=' OR sy-tabix = 1.&lt;/P&gt;&lt;P&gt;        v_line_temp = &amp;lt;line&amp;gt;-tdline.&lt;/P&gt;&lt;P&gt;        CONCATENATE v_text v_line_temp INTO v_text_temp.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;        CONCATENATE: cl_abap_char_utilities=&amp;gt;cr_lf &amp;lt;line&amp;gt;-tdline&lt;/P&gt;&lt;P&gt;                     INTO v_line_temp.&lt;/P&gt;&lt;P&gt;        CONCATENATE  v_text v_line_temp   INTO v_text_temp.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        v_text = v_text_temp.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;        APPEND v_text TO t_text.&lt;/P&gt;&lt;P&gt;        v_text = v_line_temp.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    APPEND v_text TO &amp;lt;b&amp;gt;t_text&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;*------- display text&lt;/P&gt;&lt;P&gt;CALL METHOD me-&amp;gt;textedit-&amp;gt;set_text_as_stream&lt;/P&gt;&lt;P&gt;         EXPORTING text = t_text.&lt;/P&gt;&lt;P&gt;me-&amp;gt;t_initial_text = t_text.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2007 20:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967061#M700174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-09T20:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I importing when create object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967062#M700175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sasha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The class ZCL_STANDARD_TEXT_EDITOR will use the text object information to read the texts from the DB (tables STXH and others) using function module READ_TEXT, e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'READ_TEXT'
    EXPORTING
*     CLIENT                        = SY-MANDT
      id                            = gs_header-tdid
      language                      = gs_header-tdspras
      name                          = gs_header-tdname
      object                        = gs_header-tdobject
*     ARCHIVE_HANDLE                = 0
*     LOCAL_CAT                     = ' '
*   IMPORTING
*     HEADER                        =
    TABLES
      lines                         = gt_lines  " type table of TDLINE
    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 &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To fill the textedit control you can use the following method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    CALL METHOD go_textedit-&amp;gt;set_text_as_r3table
      EXPORTING
        table           = gt_lines
      EXCEPTIONS
        error_dp        = 1
        error_dp_create = 2
        OTHERS          = 3.
    IF sy-subrc &amp;lt;&amp;gt; 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, to retrieve the text from the control you can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    CALL METHOD go_textedit-&amp;gt;get_text_as_r3table
*      EXPORTING
*        ONLY_WHEN_MODIFIED     = FALSE
      IMPORTING
        TABLE                  = gt_lines
*        IS_MODIFIED            =
*      EXCEPTIONS
*        ERROR_DP               = 1
*        ERROR_CNTL_CALL_METHOD = 2
*        ERROR_DP_CREATE        = 3
*        POTENTIAL_DATA_LOSS    = 4
*        others                 = 5
            .
    IF sy-subrc &amp;lt;&amp;gt; 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    CALL METHOD go_textedit-&amp;gt;get_text_as_stream
*      EXPORTING
*        ONLY_WHEN_MODIFIED     = FALSE
      IMPORTING
        TEXT                   = gt_lines
*        IS_MODIFIED            =
*      EXCEPTIONS
*        ERROR_DP               = 1
*        ERROR_CNTL_CALL_METHOD = 2
*        others                 = 3
            .
    IF sy-subrc &amp;lt;&amp;gt; 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The text stream method returns text as stream with carrige retruns and linefeeds. Perhaps you have to use another itab having a different line type (&amp;lt;&amp;gt; TDLINE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus, add a method to the class which retrieves the current text using the methods mentioned above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 04:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967062#M700175</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-10-10T04:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can I importing when create object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967063#M700176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good book on ABAP objects(OOPS)&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/bc475662-82d6-4412-9083-28a7e7f1ce09/Abap-Objects---An-Introduction-To-Programming-Sap-Applications" target="test_blank"&gt;http://www.esnips.com/doc/bc475662-82d6-4412-9083-28a7e7f1ce09/Abap-Objects---An-Introduction-To-Programming-Sap-Applications&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt" target="test_blank"&gt;http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf" target="test_blank"&gt;http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt" target="test_blank"&gt;http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/" target="test_blank"&gt;http://www.allsaplinks.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/" target="test_blank"&gt;http://www.sap-img.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/" target="test_blank"&gt;http://www.sapgenie.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com" target="test_blank"&gt;http://help.sap.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/controls/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/controls/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf" target="test_blank"&gt;http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf" target="test_blank"&gt;http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these links &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For funtion module to class&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5954f411d194a60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5954f411d194a60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for classes&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for methods&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for inheritance&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for interfaces&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b6254f411d194a60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b6254f411d194a60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Materials:&lt;/P&gt;&lt;P&gt;1) &lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf&lt;/A&gt; -- Page no: 1291&lt;/P&gt;&lt;P&gt;2) &lt;A href="http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt" target="test_blank"&gt;http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;3) &lt;A href="http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf" target="test_blank"&gt;http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;4) &lt;A href="http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf" target="test_blank"&gt;http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;5) &lt;A href="http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt" target="test_blank"&gt;http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;6) &lt;A href="http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf" target="test_blank"&gt;http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;7) &lt;A href="http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt" target="test_blank"&gt;http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; &lt;A href="http://www.amazon.com/gp/explorer/0201750805/2/ref=pd_lpo_ase/102-9378020-8749710?ie=UTF8" target="test_blank"&gt;http://www.amazon.com/gp/explorer/0201750805/2/ref=pd_lpo_ase/102-9378020-8749710?ie=UTF8&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) &lt;A href="http://www.erpgenie.com/sap/abap/OO/index.htm" target="test_blank"&gt;http://www.erpgenie.com/sap/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2) &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful......................&lt;/P&gt;&lt;P&gt;Minal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 04:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967063#M700176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T04:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I importing when create object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967064#M700177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Uwe,&lt;/P&gt;&lt;P&gt;Thanks for your reply. May be I was not clear with my question.&lt;/P&gt;&lt;P&gt;The text is filled  and coding I use is OK (thanks for yours also) but I need to send the lines after "CREATE OBJECT" (t_text in coding I sent to you or gt_lines whatever). It' s visible inside the class only but I need to have later. How to do it?&lt;/P&gt;&lt;P&gt;MODULE s0200_start OUTPUT.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'BASIC'.&lt;/P&gt;&lt;P&gt;  s_thead-tdname   = 'Message Text'.&lt;/P&gt;&lt;P&gt;  s_thead-tdid     = 'ST'.&lt;/P&gt;&lt;P&gt;  s_thead-tdobject = 'TEXT'.&lt;/P&gt;&lt;P&gt;  s_thead-tdspras  = sy-langu.&lt;/P&gt;&lt;P&gt;  CONCATENATE 'Standard text:' s_thead-tdname&lt;/P&gt;&lt;P&gt;              INTO v_caption SEPARATED BY space.&lt;/P&gt;&lt;P&gt;  CLEAR o_txe.&lt;/P&gt;&lt;P&gt;  IF o_txe IS INITIAL.&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;CREATE OBJECT o_txe&amp;lt;/b&amp;gt;         EXPORTING i_thead   = s_thead&lt;/P&gt;&lt;P&gt;                   i_caption = v_caption.&lt;/P&gt;&lt;P&gt;????? &amp;lt;b&amp;gt;importing&amp;lt;/b&amp;gt; ???????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 15:33:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967064#M700177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T15:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I importing when create object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967065#M700178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again everybody,&lt;/P&gt;&lt;P&gt;I solved it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 18:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-i-importing-when-create-object/m-p/2967065#M700178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T18:48:36Z</dc:date>
    </item>
  </channel>
</rss>

