<?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: Load Documentation to Data elements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487690#M1556995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Follow the steps to do it&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"1. Save excel file to a text file.
"2. Goto SE11 and display the data element
"3. Menupath GoTo -&amp;gt; Documenation -&amp;gt; Change
"4. Now you see the documenation. Select Menupath Document -&amp;gt; Upload -&amp;gt; ASCII
"5. Provide the saved file location.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;OR &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"1. Goto SE11 and display the data element
"2. Menupath GoTo -&amp;gt; Documenation -&amp;gt; Change
"3. Now goto Menupath 'GoTo -&amp;gt; Change Editor'. Do it till you see an editor like MS word
"4. Now enter the excel file data&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Priyanka Chowdry on Dec 21, 2010 6:04 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Dec 2010 12:32:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-21T12:32:34Z</dc:date>
    <item>
      <title>Load Documentation to Data elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487688#M1556993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm looking for a smart standard solution (BAPI?)  to load documentation in DDIC to data elements.&lt;/P&gt;&lt;P&gt;The data which should be loaded is provided by an excel-file .&lt;/P&gt;&lt;P&gt;How knows a standard report or a BAPI/function module ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 10:03:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487688#M1556993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-21T10:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Load Documentation to Data elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487689#M1556994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think a BDC can be done on transaction SE61 with appropriate input......Unfortunately, I can't check the feasibility as I don't have authorization for the transaction as of now........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got a FM for this.......Chcek the code below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: i_lines  TYPE TABLE OF tline,
      wa_lines TYPE tline.

* Create Documentation
wa_lines-tdformat = '*'.
wa_lines-tdline   = 'TEST'.

DO 50 TIMES.
  APPEND wa_lines TO i_lines.
ENDDO.

* Create Document
CALL FUNCTION 'DOCU_UPD'
  EXPORTING
    id       = 'DE'            "For Data Element
    langu    = sy-langu
    object   = 'YA038539TEST5' "Data Element Name
  TABLES
    line     = i_lines
  EXCEPTIONS
    ret_code = 1
    OTHERS   = 2.

IF sy-subrc EQ 0.
  WRITE 'Documentation Update Successful'.
ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Satyajit on Dec 21, 2010 5:07 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 10:11:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487689#M1556994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-21T10:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Load Documentation to Data elements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487690#M1556995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Follow the steps to do it&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"1. Save excel file to a text file.
"2. Goto SE11 and display the data element
"3. Menupath GoTo -&amp;gt; Documenation -&amp;gt; Change
"4. Now you see the documenation. Select Menupath Document -&amp;gt; Upload -&amp;gt; ASCII
"5. Provide the saved file location.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;OR &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"1. Goto SE11 and display the data element
"2. Menupath GoTo -&amp;gt; Documenation -&amp;gt; Change
"3. Now goto Menupath 'GoTo -&amp;gt; Change Editor'. Do it till you see an editor like MS word
"4. Now enter the excel file data&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Priyanka Chowdry on Dec 21, 2010 6:04 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 12:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/load-documentation-to-data-elements/m-p/7487690#M1556995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-21T12:32:34Z</dc:date>
    </item>
  </channel>
</rss>

