<?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>Question Re: SAP metadata export in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812401#M4843791</link>
    <description>Thank you for your response. Could you please share some details regarding the VBA, or if you can point me to some code example or documentation.</description>
    <pubDate>Fri, 30 Aug 2024 13:09:12 GMT</pubDate>
    <dc:creator>WaqasQadri</dc:creator>
    <dc:date>2024-08-30T13:09:12Z</dc:date>
    <item>
      <title>SAP metadata export</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaq-p/13812372</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have to export the metadata of BO into an excel file. I read that we can use SAP BO SDK to export the metadata using java or VBA (&lt;SPAN&gt;BusinessObjects SDK for Microsoft Office)&lt;/SPAN&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need details of how to do this. What are the&amp;nbsp;&lt;SPAN&gt;prerequisites and other things to do this. I am unable to find much details regarding this. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am more interested in doing this using VBA and exporting the metadata directly into excel file. Any code example would also be helpful.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2024 12:44:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaq-p/13812372</guid>
      <dc:creator>WaqasQadri</dc:creator>
      <dc:date>2024-08-30T12:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAP metadata export</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812394#M4843788</link>
      <description>&lt;P&gt;Use BI RESTful API to retrieve the metadata.&lt;BR /&gt;You can call RESTful from your VBA or Java code.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2024 13:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812394#M4843788</guid>
      <dc:creator>ayman_salem</dc:creator>
      <dc:date>2024-08-30T13:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAP metadata export</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812401#M4843791</link>
      <description>Thank you for your response. Could you please share some details regarding the VBA, or if you can point me to some code example or documentation.</description>
      <pubDate>Fri, 30 Aug 2024 13:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812401#M4843791</guid>
      <dc:creator>WaqasQadri</dc:creator>
      <dc:date>2024-08-30T13:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAP metadata export</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812407#M4843794</link>
      <description>&lt;P&gt;Read the help guide for using the BI RESTful SDK&lt;BR /&gt;&lt;A href="https://help.sap.com/doc/2534ba1cbc6f433595e8582045503bcb/4.3.4/en-US/sbo43sp2_webi_restful_web_service_sdk_en.pdf" target="_blank" rel="noopener"&gt;https://help.sap.com/doc/2534ba1cbc6f433595e8582045503bcb/4.3.4/en-US/sbo43sp2_webi_restful_web_service_sdk_en.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;to call RESTfull from VBA. If you search the internet you will find many examples&lt;BR /&gt;here is one of them&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;Option&lt;/SPAN&gt; &lt;SPAN class=""&gt;Explicit&lt;/SPAN&gt;

&lt;SPAN class=""&gt;Sub&lt;/SPAN&gt; Test_LateBinding()

    &lt;SPAN class=""&gt;Dim&lt;/SPAN&gt; objRequest &lt;SPAN class=""&gt;As&lt;/SPAN&gt; &lt;SPAN class=""&gt;Object&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;Dim&lt;/SPAN&gt; strUrl &lt;SPAN class=""&gt;As&lt;/SPAN&gt; &lt;SPAN class=""&gt;String&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;Dim&lt;/SPAN&gt; blnAsync &lt;SPAN class=""&gt;As&lt;/SPAN&gt; &lt;SPAN class=""&gt;Boolean&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;Dim&lt;/SPAN&gt; strResponse &lt;SPAN class=""&gt;As&lt;/SPAN&gt; &lt;SPAN class=""&gt;String&lt;/SPAN&gt;

    &lt;SPAN class=""&gt;Set&lt;/SPAN&gt; objRequest = CreateObject(&lt;SPAN class=""&gt;"MSXML2.XMLHTTP"&lt;/SPAN&gt;)
    strUrl = &lt;SPAN class=""&gt;"https://&amp;lt;server&amp;gt;:&amp;lt;port&amp;gt;/&amp;lt;1&amp;gt;"&lt;/SPAN&gt;
    blnAsync = &lt;SPAN class=""&gt;True&lt;/SPAN&gt;

    &lt;SPAN class=""&gt;With&lt;/SPAN&gt; objRequest
        .Open &lt;SPAN class=""&gt;"GET"&lt;/SPAN&gt;, strUrl, blnAsync
        .SetRequestHeader &lt;SPAN class=""&gt;"Content-Type"&lt;/SPAN&gt;, &lt;SPAN class=""&gt;"application/json"&lt;/SPAN&gt;
        .Send
        &lt;SPAN class=""&gt;'spin wheels whilst waiting for response&lt;/SPAN&gt;
        &lt;SPAN class=""&gt;While&lt;/SPAN&gt; objRequest.readyState &amp;lt;&amp;gt; &lt;SPAN class=""&gt;4&lt;/SPAN&gt;
            DoEvents
        Wend
        strResponse = .ResponseText
    &lt;SPAN class=""&gt;End&lt;/SPAN&gt; &lt;SPAN class=""&gt;With&lt;/SPAN&gt;

    Debug.Print strResponse

&lt;SPAN class=""&gt;End&lt;/SPAN&gt; &lt;SPAN class=""&gt;Sub&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2024 13:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13812407#M4843794</guid>
      <dc:creator>ayman_salem</dc:creator>
      <dc:date>2024-08-30T13:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAP metadata export</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13852164#M4881596</link>
      <description>Thank you, we are actually running a migration project for SAP BO. We need these metadata for that purpose. I am new to this so do you suggest any other better approach for this project?</description>
      <pubDate>Tue, 03 Sep 2024 04:41:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-metadata-export/qaa-p/13852164#M4881596</guid>
      <dc:creator>WaqasQadri</dc:creator>
      <dc:date>2024-09-03T04:41:28Z</dc:date>
    </item>
  </channel>
</rss>

