<?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: Using Web service with complex data types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220896#M1523807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you right.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I removed this fields out of my question, because I didn't know that this is a SAP standard range.&lt;/P&gt;&lt;P&gt;But when this is a standard, do you have any code example on your side, to send such SAP range to a web service?  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Aug 2010 12:21:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-31T12:21:00Z</dc:date>
    <item>
      <title>Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220894#M1523805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to access a SAP web service consuming a complex data type. Iu2019m using VBA in MS-Office.&lt;/P&gt;&lt;P&gt;Calling a web service with a simple type like String or long is not a problem. But I have to send a NodeList (MSXML2.IXMLDOMNodeList) to the service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are the relevant parts out of the wsdl file:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;xsd:element name="SEARCH"&amp;gt;&amp;lt;xsd:complexType&amp;gt;&amp;lt;xsd:sequence&amp;gt;
&amp;lt;xsd:element name="CT_EQART_RANGE" type="tns:ZS_EQART_RANGE" minOccurs="0"&amp;gt;&amp;lt;/xsd:element&amp;gt;
&amp;lt;/xsd:sequence&amp;gt;
...
&amp;lt;xsd:complexType name="ZS_EQART_RANGE"&amp;gt;
	&amp;lt;xsd:sequence&amp;gt;
	  &amp;lt;xsd:element name="item" type="tns:ZS_EQART_RANGE_LINE" minOccurs="0" maxOccurs="unbounded"&amp;gt;&amp;lt;/xsd:element&amp;gt;
&amp;lt;/xsd:sequence&amp;gt;
...
&amp;lt;xsd:complexType name="ZS_EQART_RANGE_LINE"&amp;gt;
	&amp;lt;xsd:sequence&amp;gt;
		&amp;lt;xsd:element name="SIGN" type="tns:char1"&amp;gt;&amp;lt;/xsd:element&amp;gt;
		&amp;lt;xsd:element name="OPTION" type="tns:char2"&amp;gt;&amp;lt;/xsd:element&amp;gt;
&amp;lt;/xsd:sequence&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore I build a nodelist with one node containing following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;CT_EQART_RANGE&amp;gt;&amp;lt;item&amp;gt;&amp;lt;SIGN&amp;gt;F&amp;lt;/SIGN&amp;gt;&amp;lt;OPTION&amp;gt;TT&amp;lt;/OPTION&amp;gt;&amp;lt;/item&amp;gt;&amp;lt;/CT_EQART_RANGE&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;When I call the service with this parameter I receive following error:&lt;/P&gt;&lt;P&gt;Client:Fehler bei der Typumwandlung für Element "CT_EQART_RANGE"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Translation: Type conversion error for element "CT_EQART_RANGE"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 08:36:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220894#M1523805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T08:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220895#M1523806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it looks like type for SAP range but the fields LOW and HIGH are missing. For ranges you can have only I or E for sign and operators like EQ or BT for option. Have you tried with these values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 09:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220895#M1523806</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2010-08-31T09:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220896#M1523807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you right.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I removed this fields out of my question, because I didn't know that this is a SAP standard range.&lt;/P&gt;&lt;P&gt;But when this is a standard, do you have any code example on your side, to send such SAP range to a web service?  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 12:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220896#M1523807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T12:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220897#M1523808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body tell me how to send a SAP range to SAP using Web-Services?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 07:21:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220897#M1523808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-06T07:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220898#M1523809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can find how ranges work in ABAP [here|http://help.sap.com/saphelp_470/helpdata/en/9f/dba71f35c111d1829f0000e829fbfe/content.htm]. That tells you allowed values in each field. What's complete definition for type ZS_EQART_RANGE_LINE? You did not paste full definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 00:24:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220898#M1523809</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2010-09-07T00:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220899#M1523810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't know that this was necessary to find a solution.&lt;/P&gt;&lt;P&gt;Here are the definition out of the WSDL File:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;xsd:complexType name="ZS_EQART_RANGE_LINE"&amp;gt;
	&amp;lt;xsd:sequence&amp;gt;
		&amp;lt;xsd:element name="SIGN" type="tns:char1"/&amp;gt;
		&amp;lt;xsd:element name="OPTION" type="tns:char2"/&amp;gt;
		&amp;lt;xsd:element name="LOW" type="tns:char10"/&amp;gt;
		&amp;lt;xsd:element name="HIGH" type="tns:char10"/&amp;gt;
	&amp;lt;/xsd:sequence&amp;gt;
&amp;lt;/xsd:complexType&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for Help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 06:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220899#M1523810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-08T06:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220900#M1523811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I was right. It's a range. I already gave you a link which describes how ranges work in ABAP. What values do you want to pass to your web service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 06:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220900#M1523811</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2010-09-08T06:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220901#M1523812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will send following values:&lt;/P&gt;&lt;P&gt;Sign="I"&lt;/P&gt;&lt;P&gt;Option="EQ"&lt;/P&gt;&lt;P&gt;Low="We100"&lt;/P&gt;&lt;P&gt;High=""&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm still receiving the error message: Client:Fehler bei der Typumwandlung für Element "CT_EQART_RANGE"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 12:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220901#M1523812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-08T12:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using Web service with complex data types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220902#M1523813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it looks OK. Only one comment. The type EQART does not allow to have lower case characters. Have you tried with WE100?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 23:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-web-service-with-complex-data-types/m-p/7220902#M1523813</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2010-09-08T23:42:41Z</dc:date>
    </item>
  </channel>
</rss>

