CX_XSLT_SERIALIZATION_ERROR

Hi SAP Experts,
Please help me to solve the problem....
I have one interface program who is transferring some file data to XI. The problem which i am getting is when i am executing program on devlopment it is running successfully whereas when i am executing on Quality server then i am getting exception error (CX_XSLT_SERIALIZATION_ERROR ) described as XML_NOT_SUPPORTED. I am getting this error while Call transformation, I have debugged and analyze that the data(Source, transformation name) which we are passing to call transformation on Dev Server and Quality Server is same. But After doing F5 in Dev Server it is executing Successfully where in Quality Server it is giving Error CX_XSLT_SERIALIZATION_ERROR .
Please tell me where is the exact error and how i can correct it...
Waiting For the Positive Response....
Warm Regards
Shelly Malik

Problem solved, it was to do with the fact SAP had changed something in the user exit which was throwing out our code.  Changed this now and works fine.
Thanks
Craig

Similar Messages

  • Xml conversion of data refs with dynamic type

    Hi Colleagues,
    I have to create an XML from a TYPE REF TO DATA, where this data is created using a dynamic internal table. By dynamic internal table i mean that the internal table is created dynamically using the class method cl_alv_table_create=>create_dynamic_table.
    Now the problem that i face is when i use the statement:
    CALL TRANSFORMATION id
          SOURCE jsag_data = im_context_b64
          RESULT XML lv_xml
          OPTIONS data_refs = 'embedded'
                  value_handling = 'move'.
    to generate the XML i get a dump of type CX_XSLT_SERIALIZATION_ERROR saying "The ABAP data cannot be serialized."
    I found a solution to avoid the dump by adding the additional option " TECHNICAL_TYPES = 'ignore' " to the  CALL TRANSFORMATION statement, like
    CALL TRANSFORMATION id
          SOURCE jsag_data = im_context_b64
          RESULT XML lv_xml
          OPTIONS data_refs = 'embedded'
                  value_handling = 'move'
                  TECHNICAL_TYPES = 'ignore'.
    But, using this addition the dynamic type ref to data part is totally ignored from the XML generation.
    If I use a specific DDIC table type to create the data, we do not face this issue and the XML is generated as desired
    Does anyone have a solution to this problem as it has become a sort of blockade for our development?
    Thanks and Cheers,
    Gaurav.

    Hello,
    I reached same problem with dynamic data references, the only solution I got is to used global DDIC types (also for table types !!) when creating data which needs to be serialized.
    The options technical_types = 'ignore' doesn't solve the problem - it just instructs the parser to skip data references without global ddic type. The options value_handling = 'move' is very helpful as XML serialization is very picky about values beeing serialized.
    Here is summary of my observations:
    - Global DDIC type has to be associated with data reference, otherwise only technical type is there and this is not supported (you can use OPTIONS TECHNICAL_TYPES = u2018IGNOREu2019 but this will just skip the data to be serialized to XML) u2026
    - The above means that if you are serializing data reference to table then you have to have also global DDIC type for the table-type !! Unfortunatelly there is no default table type available for transparent tables u2026. They are treated as structures not as table-types u2026 thus:
    - CREATE DATA lr_data TYPE <global_ddic_structure> - can be serialized
    - CREATE DATA lr_data TYPE STANDARD TABLE OF <global_ddic_structure> - cannot be serialized
    - CREATE DATA lr_data TYPE <global_ddic_table_type> - can be serialized
    - !! Unfortunatelly !! CREATE DATA lr_data TYPE <type_pool_ddic_structure/ type_pool_table_type> - also cannot be serialized u2013 this is pitty u2026 this should be supported u2026.

Maybe you are looking for

  • Creative cloud  - Menu Bar and Palette's are tiny font.

    I just downloaded creative cloud on my lenovo Yoga Pro 2.  The size of my Menu Bar and Palette's are tiny font.  However, Lightroom menu bar and palette's are in a normal size easy to read font.  Can anyone tell me how to change just Photoshop?

  • Link to a file in a drop down menu

    Hello I have about 30 Pdfs to upload to my website, instead of just listing them I wanted to use a drop menu. I have worked out how to create the menu, but I don't know how to make the items active. So that when you click on them a PDF automatically

  • RM-CA Mass activity

    Hi all! I trying to learn how create mass process and  i have some issues trying to follow the note 144461 - Mass activities step by step setup ...  is not very clear about the relationship between the transaction and the jobs that i want to be execu

  • File name trouble when exporting

    Sometimes FCP is adding three characters (like for example #DD2) to the file name when exporting (cmd+e). I have never had trouble with this before. What can be the reason for this?

  • Database DAO - JDBC Query Class - Code review please

    I use the following class (Database.java) as a DAO for handling all database calls. The class works. You can use this if you're looking for a DAO solution (i.e. a way to query databases using connection pools / JNDI). I am looking for some suggestion