Quantcast
Channel: SCN : Document List - ABAP Development
Viewing all articles
Browse latest Browse all 935

How to - Add Custom XML Parts to Microsoft PowerPoint using ABAP

$
0
0

This document explains how to:

 

Add Custom XML Parts to PowerPoint using ABAP

 

    1. Prepare XML data

METHOD prepare_customxml.
*    Exporting  EV_CUSTOMXML4PPT  TYPE XSTRING
*    Exception  XSLT_ERROR
  CONSTANTS:  lc_encode        TYPE abap_encod VALUE 'UTF-8'.
  DATA:
        lv_customxml4ppt              TYPE string,
        l_convout                          TYPE REF TO cl_abap_conv_out_ce,
        lv_len                                TYPE i.
  l_convout = cl_abap_conv_out_ce=>create( encoding = lc_encode ).
  lv_customxml4ppt = '<xmlPPT value="This is an example of valid xml" />'. "You can add a valid xml here
  l_convout->convert(
      EXPORTING
              data  = lv_customxml4ppt
      IMPORTING
              buffer = ev_customxml4ppt
              len    = lv_len ).

ENDMETHOD.

    2. Get the PowerPoint template

              The template can be uploaded to the MIME repository and can be read from there.
METHOD get_ppt_template.
*    Exporting EV_PPT TYPE XSTRING
  DATA:
  lo_mr_api                  TYPE REF TO if_mr_api.
  lo_mr_api = cl_mime_repository_api=>get_api( ).
  lo_mr_api->get(
        EXPORTING
              i_url    = ppt_template_url          "Give the template url in MIME repository here
        IMPORTING
              e_content = ev_ppt
        EXCEPTIONS
              OTHERS    = 1
  ).

ENDMETHOD.

    3. Add Custom XML to PowerPoint template

METHOD add_customxml2ppt.
*    Importing      IV_PPT                    TYPE XSTRING
*    Importing      IV_CUSTOMXML    TYPE XSTRING
*    Exporting      EV_PPT                    TYPE XSTRING   
*    Exception      XSLT_ERROR
  DATA:
    ppt                              TYPE REF TO cl_pptx_document,
    presentationpart          TYPE REF TO cl_pptx_presentationpart,
    l_packagecontent        TYPE string,
    customxmlpartcoll      TYPE REF TO cl_openxml_partcollection,
    customxmlpart            TYPE REF TO cl_oxml_customxmlpart,
    customxmlpropspart  TYPE REF TOTO cl_oxml_customxmlpropspart,
    propertyxml                TYPE xstring,
    preguid                        TYPE string,
    guid                            TYPE string.
  TRY.
      ppt = cl_pptx_document=>load_document( iv_data = iv_ppt ).
      l_packagecontent = ppt->get_content_type( ).
* get the presentation part
      presentationpart = ppt->get_presentationpart( ).
* get collection of customXML parts
      customxmlpartcoll = presentationpart->get_customxmlparts( ).
* create a customXML part here
      customxmlpart = presentationpart->add_customxmlpart( ).
* insert xml data
      customxmlpart->feed_data( iv_customxml  ).
* add customXML properties part
      customxmlpropspart = customxmlpart->add_customxmlpropspart( ).
* create GUID string
      preguid = cl_openxml_helper=>create_guid_string( ).
* enclose with {...} brackets
      CONCATENATE '{' preguid '}' INTO guid.
* create custom XML property content
      CALL TRANSFORMATION docx_create_custompropscontent
            PARAMETERS guid = guid
            SOURCE XML iv_customxml
            RESULT XML propertyxml.
* insert propertyxml
      customxmlpropspart->feed_data( propertyxml ).
      ev_ppt = ppt->get_package_data( ).
    CATCH cx_openxml_format.
    CATCH cx_openxml_not_allowed.
    CATCH cx_openxml_not_found.
    CATCH cx_transformation_error.
      RAISE xslt_error.
  ENDTRY.

ENDMETHOD.

    4. Integrate the above steps - XML, PowerPoint template, Custom XML

METHOD get_ppt_download.
*      Exporting EV_XML_XSTRING_PPT      TYPE XSTRING
*      Exception ERROR_OCCURRED
  DATA:
              lv_customxml4ppt      TYPE xstring,
              lv_ppt_template          TYPE xstring.
  prepare_customxml(
    IMPORTING
      ev_customxml4ppt = lv_customxml4ppt
    EXCEPTIONS
      xslt_error          = 1
      OTHERS          = 2
                        ).
  IF sy-subrc = 1.
    RAISE error_occurred.
  ELSEIF sy-subrc = 2.
    RAISE error_occurred.
  ENDIF.
  get_ppt_template(
    IMPORTING
      ev_ppt          = lv_ppt_template
                  ).

  add_customxml2ppt(
    EXPORTING
      iv_ppt                = lv_ppt_template
      iv_customxml    = lv_customxml4ppt
    IMPORTING
      ev_ppt                = ev_xml_xstring_ppt
    EXCEPTIONS
      xslt_error        = 1
      OTHERS        = 2
                    ).

  IF sy-subrc <> 0.
    RAISE error_occurred.
  ENDIF.

ENDMETHOD.

 

 

 

Related Articles:

 


Viewing all articles
Browse latest Browse all 935

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>