• Fabian Peters 8
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi everyone,

it is possible to retrieve query results trough BULK API as an xml document. However there seems no chance to get a corresponding schema definition (xsd), which is likely to be required for integrations with other systems.

I'm thankful for any ideas!
Hey,

I just ran into a serious issue regarding rerendering and Internet Explorer 11. Everything is fine in Firefox or Chrome, but in IE 11 I get the following error:

Are there any known workarounds?

User-added image
IN RED: "No such interface supported"
User-added image

Code of one of the columns which causes the reRender:
 
<apex:column id="salesPriceColumn">
			    		<apex:facet name="header">
			    			<apex:outputPanel >
			    				<apex:outputText value="{!$Label.productConfig_Verkaufspreis_Stueck} ({!Opportunity.CurrencyIsoCode})"/>
				    			<div id="salesPriceLoading" style="display:none;">
								    <div style="text-align: center;">
								    	<img src="/img/loading.gif" alt="Loading graphic" />
									</div>
								</div>
							</apex:outputPanel>
			    		</apex:facet>
			    		<div class="requiredInput">
                			<div class="requiredBlock"></div>
				    		<apex:inputField id="SalesPrice1" value="{!oli.Monatlicher_Umsatz__c}" style="width:75%;display:inline;" rendered="{!oli.PricebookEntry.Product2.Monatl_Umsatz__c}" styleClass="numberField" >
				    			<apex:actionSupport event="onchange" action="{!calculatePriceAmount}" status="status" onsubmit="showColumnLoading('salesPriceLoading'),checkValue(this)" oncomplete="hideColumnLoading('salesPriceLoading'),refreshTotalsGrid()" reRender="totalsGrid,totalPriceColumn,salesPriceColumn,discountColumn"/>
				    		</apex:inputField>
				    		<apex:inputField id="SalesPrice2" value="{!oli.Einmaliger_Umsatz__c}" style="width:75%;display:inline;" rendered="{!!oli.PricebookEntry.Product2.Monatl_Umsatz__c}" styleClass="numberField" >
				    			<apex:actionSupport event="onchange" action="{!calculatePriceAmount}" status="status" onsubmit="showColumnLoading('salesPriceLoading'),checkValue(this)" oncomplete="hideColumnLoading('salesPriceLoading'),refreshTotalsGrid()" reRender="totalsGrid,totalPriceColumn,salesPriceColumn,discountColumn"/>
				    		</apex:inputField>
				    		<c:helpicon helpText="Der Verkaufspreis muss mindestens dem Listenpreis von <b>{!oli.PricebookEntry.UnitPrice} {!oli.PricebookEntry.CurrencyIsoCode}</b> entsprechen" styling="display:none;position:absolute;padding-left:5px;padding-top:1px;"/>
					    </div>
					    <apex:inputHidden id="ListPrice" value="{!oli.PricebookEntry.UnitPrice}" />
					    <apex:inputHidden id="Discount" value="{!oli.PricebookEntry.Rabattierbar__c}" />
			    	</apex:column>
Hi everyone,

it is possible to retrieve query results trough BULK API as an xml document. However there seems no chance to get a corresponding schema definition (xsd), which is likely to be required for integrations with other systems.

I'm thankful for any ideas!
Hey,

I just ran into a serious issue regarding rerendering and Internet Explorer 11. Everything is fine in Firefox or Chrome, but in IE 11 I get the following error:

Are there any known workarounds?

User-added image
IN RED: "No such interface supported"
User-added image

Code of one of the columns which causes the reRender:
 
<apex:column id="salesPriceColumn">
			    		<apex:facet name="header">
			    			<apex:outputPanel >
			    				<apex:outputText value="{!$Label.productConfig_Verkaufspreis_Stueck} ({!Opportunity.CurrencyIsoCode})"/>
				    			<div id="salesPriceLoading" style="display:none;">
								    <div style="text-align: center;">
								    	<img src="/img/loading.gif" alt="Loading graphic" />
									</div>
								</div>
							</apex:outputPanel>
			    		</apex:facet>
			    		<div class="requiredInput">
                			<div class="requiredBlock"></div>
				    		<apex:inputField id="SalesPrice1" value="{!oli.Monatlicher_Umsatz__c}" style="width:75%;display:inline;" rendered="{!oli.PricebookEntry.Product2.Monatl_Umsatz__c}" styleClass="numberField" >
				    			<apex:actionSupport event="onchange" action="{!calculatePriceAmount}" status="status" onsubmit="showColumnLoading('salesPriceLoading'),checkValue(this)" oncomplete="hideColumnLoading('salesPriceLoading'),refreshTotalsGrid()" reRender="totalsGrid,totalPriceColumn,salesPriceColumn,discountColumn"/>
				    		</apex:inputField>
				    		<apex:inputField id="SalesPrice2" value="{!oli.Einmaliger_Umsatz__c}" style="width:75%;display:inline;" rendered="{!!oli.PricebookEntry.Product2.Monatl_Umsatz__c}" styleClass="numberField" >
				    			<apex:actionSupport event="onchange" action="{!calculatePriceAmount}" status="status" onsubmit="showColumnLoading('salesPriceLoading'),checkValue(this)" oncomplete="hideColumnLoading('salesPriceLoading'),refreshTotalsGrid()" reRender="totalsGrid,totalPriceColumn,salesPriceColumn,discountColumn"/>
				    		</apex:inputField>
				    		<c:helpicon helpText="Der Verkaufspreis muss mindestens dem Listenpreis von <b>{!oli.PricebookEntry.UnitPrice} {!oli.PricebookEntry.CurrencyIsoCode}</b> entsprechen" styling="display:none;position:absolute;padding-left:5px;padding-top:1px;"/>
					    </div>
					    <apex:inputHidden id="ListPrice" value="{!oli.PricebookEntry.UnitPrice}" />
					    <apex:inputHidden id="Discount" value="{!oli.PricebookEntry.Rabattierbar__c}" />
			    	</apex:column>