Attribute Order in generated WSDL

Hi,
Is it possible to have autotype or servicegen maintain the order of my attributes as defined in my input schema? The WSDL file generated by the weblogic tasks is alphabitizing the input attributes and this is leading to an interoperatiblity issue with a .NET client that is calling my service.
My input schema is defined as follows:
<xs:element name="Response">
<xs:annotation>
<xs:documentation>Comment describing your root element</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="SessionID" type="xs:int"/>
<xs:element name="LoanRegistration" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="LoanID" type="LoanID_Type" />
<xs:element name="PropertyID" type="ID_Type" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="ContactID" type="ID_Type" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RateLock" minOccurs="0"/>
<xs:element name="TradeAuthorizationComplete" minOccurs="0"/>
<xs:element name="GeneralUpdate" minOccurs="0"/>
<xs:element name="ApprovedByCreditCommittee" minOccurs="0"/>
<xs:element name="ApplicationIssued" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
This is translating into the following response as defined in the WSDL:
- <xsd:complexType name="Response">
- <xsd:sequence>
<xsd:element type="xsd:anyType" name="applicationIssued" minOccurs="1" nillable="true" maxOccurs="1" />
<xsd:element type="xsd:anyType" name="approvedByCreditCommittee" minOccurs="1" nillable="true" maxOccurs="1" />
<xsd:element type="xsd:anyType" name="generalUpdate" minOccurs="1" nillable="true" maxOccurs="1" />
<xsd:element type="stns:LoanRegistration" name="loanRegistration" minOccurs="1" nillable="true" maxOccurs="1" />
<xsd:element type="xsd:anyType" name="rateLock" minOccurs="1" nillable="true" maxOccurs="1" />
<xsd:element type="xsd:int" name="sessionID" minOccurs="1" maxOccurs="1" />
<xsd:element type="xsd:anyType" name="tradeAuthorizationComplete" minOccurs="1" nillable="true" maxOccurs="1" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
Thanks much for any assistance!
Regards,
Michaelp

Hi
Which order should I use for the index? Someone said it should be (C2, C1)
because of the smaller cardinality of C2, but since we use C1 for an equi-join
(right word?) I wonder if (C1, C2) might be better.If substr(A.C2) is an option (does that really makes sense?) the index (C2, C1) will not be used by the query optimizer. Therefore, I see only (C1, C2) as option.
To complicate things there is also a column C3 in both tables, which will be
used for partitioning (so no index necessary?) and might be used in the
where-condition as well, if it helps.If the indexes are local when also C3 is specified partition pruning will be used in addition to the index lookup. This can only improve the performance.
HTH
Chris

Similar Messages

  • Attribute order changed

    Hello all!
    I'm developing a webapplication with JSP technology.
    i have to manage xml files, change and rewrite them.
    i use those pakage for manage and edit xml files :
    "javax.xml.parsers.DocumentBuilder and DocumentBuilderFactory"
    and that one for rewrite in a file:
    "javax.xml.transform"
    Now the problem is that the xml file edited had a particular element attribute order. the file rewrited change this order into an alphabetical order.
    i want to mantein the previous order.
    Is that possible? how?
    Thanks!

    No you get over it. The spec doesn't say it, but it is clearly an oversight by engineers more concerned with computer consuming XML then humans. One of the big selling points is that it is human readable and editable, this goes right against that.
    Now that XML is more of a standard, programming languages and other things are being generated using it. Configuration files and all sorts of things. Consider you have a tag like <function name="" comment="" >
    Suppose comment becomes really long while name is very short. Right now XSLT will reverse these attributes..now comment comes before the name and the file becomes unreadable....XML is used by humans too!
    The spec also doesn't say you need it or not. Java and the rest of the community have actively decided to be like you, a complete dick, for no reason and not support it. Just lazying coding for no reason. I guess maybe open standards are a bad way to go huh? Man up and have the right attitude...no reason not to make it an option other then total disregard for other peoples real world ( not virtual specification ) problems.

  • Generated WSDL doesn't work in Visual Studio

    After an update of SAP we have some problems with our web service (WSDL).
    First of all we created a webservice using SE80. The generated WSDL url mentioned in SE80 doesn't work in visual studio which is in our opinion weird. When we use the url from the SOAMANAGER "Open WSDL document for selected binding" in visual studio we get a little bit further but it still doesn't work. The problem seems to be the "parameter(s)" with or without "s". Does anyone know how we can generated a WSDL with only "parameters"?
    ExampleWSDL:
    <wsdl:message name="ZPIQ_GET_LEERWEGResponse">
    <wsdl:part name="parameter" element="tns:ZPIQ_GET_LEERWEGResponse"/>
    </wsdl:message>
    u2212
    <wsdl:message name="ZPIQ_GET_NATIO">
    <wsdl:part name="parameters" element="tns:ZPIQ_GET_NATIO"/>
    </wsdl:message>
    SAP ECC 6.0
    SAPKA70014
    SAPKB70014
    SAPKW70015

    Hi Ralph,
    In order to consume SAP services in Microsoft Visual Studio .NET, you need to convert WSDL from SAP (Document style) to Microsoft (RPC style) standard. This conversion is transparent to you, if you use [ES Explorer for .NET|https://www.sdn.sap.com/irj/sdn/dotnet?rid=/library/uuid/c0319dc4-d76d-2a10-d19f-e4f4ff315bde].
    Best Regards,
    Rima.

  • Generated WSDL Issue - Glassfish App Server

    Hi,
    I am at a loss as to how to modify the generated WSDL and associated schema for a webservice I am deploying to Glassfish V2 Milestone 4 - Build 33. I'm using EJB 3.0 and the entity beans I developed have one to many and many to one references to each other:
    An OverrideVersion contains a reference to the OverrideRequest it belongs to. There can be numerous OverrideVersions. I've tested the database code extensively and there is no problem performing saves and retrieves. The following is taken from the OverrideVersion class:
    @ManyToOne
    @JoinColumn(name="request", referencedColumnName="pricingRef")
    private OverrideRequest request;and this is from the OverrideRequest class:
    @OneToMany(mappedBy="request", cascade=CascadeType.ALL,
              fetch = FetchType.EAGER)
    private Set<OverrideVersion> overrideVersionCollection;The problem is that if I leave the app server to generate the WSDL these references are generated, which I don't want - I only want the Verson to reference :
    <xs:complexType name="overrideVersion">
      <xs:sequence>
        <xs:element name="request" type="tns:overrideRequest" minOccurs="0"/>
      </xs:sequence>
    </xs:complexType>and<xs:complexType name="overrideRequest">
      <xs:sequence>
        <xs:element name="overrideVersionCollection" type="tns:overrideVersion" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
    </xs:complexType>I need to be able to change the WSDL as I am getting the following error on retrieves:
    com.sun.istack.SAXException2: A cycle is detected in the object graph. This will cause infinitely deep XML:I followed the advice in http://forum.java.sun.com/thread.jspa?threadID=725485&messageID=4184020
    "For now, the way is to do this manually : stop the app server, edit the as_install_dir/domains/domain1/generated/xml/j2ee-{apps|modules}/{your-app}/{META|WEB}-INF/wsdl/XXXXX.wsdl, and restart the app server"
    but no matter what I do the changes I make to the generated WSDL and schema files aren't refelected in the actual WSDL at the ?WSDL address.
    So I decided to take the generated WSDL file, modify it (remove the cyclic references), and drop it in my applications META-INF/wsdl directory (along with the previously generated schema) and specify the @WebService wsdlLocation attribute in my stateless session bean:
    @WebService(serviceName="PricingService",
              portName="PricingServicePort",
              wsdlLocation="META-INF/wsdl/PricingService.wsdl")But after deployment I try to access the WSDL (at the same address as the previous generated WSDL http://localhost:8080/PricingService/PricingService?wsdl) and get a plain white HTML page with: Invalid wsdl request http://localhost:8080/PricingService/PricingServiceI haven't been able to come up with a solution to this problem either.
    This is doing my head in so any help would be greatly appreciated.
    Thanks.

    Hi Arvind,
    First thing u shud do is..for invoking a webservice through XI do not import all the WSDLs ....Import only the WSDL under the porttypes....
    Port types defines the interface in XI...Once u import them....Then check the msg type.....As per u info u shud see them as
    getAuthorizationIn_doc---request
    getAuthorizationOut_doc---Response..
    If u want something more plz ask
    Regards,
    AshwinM
    Note:- Reward If helpful

  • How to block production order creation when maintenance order is generated.

    Hi All,
    Kindly share how to block production order generation when maintenance order is generated.

    Integration between PP module and PM module
    PP/PM Workcenter Integration
    There are many threads & documents available. Please do some search.

  • Error while Generating WSDL File from SAP WSDLGenerator

    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.NullReferenceException: Object reference not set to an instance of an object.
       at WebServiceDescription.SelectOperation.ShowUDOsList(String sessionID)
       at WebServiceDescription.SelectOperation..ctor(String sessionID)
       at WebServiceDescription.WsdlServicesGenerator.ShowOptions()
       at WebServiceDescription.Form1.btCreateWsdl_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    WsdlServicesGenerator
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/SAP%20Business%20One%20Web%20Services/WsdlServicesGenerator/WsdlServicesGenerator.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Web.Services
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    axh7tjvl
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    o_2nbqv_
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    I am facing problem While Generating WSDL File from WSDL Geerator which is provided by SAP Business One
    If any body has resolved this. Please help Me...!
    Thanks
    Mritunjay

    Hi.
    We've seen that error too few times.
    We downloaded the sourcecode for the wdsl generator and discovered,
    that in our case, it was because we had no user defined objects.
    Its actually a bug as far as I can see, where the wdsl generator tries
    to enumerate a empty recordset, and crashes.
    Regards
    Jørgen T.

  • Error while generating WSDL

    Hi,
    I am creating a web service which has a method that communicates with the Data access layer (classes that have database connectivity).
    While generating WSDL, I am getting the following error in IBM WSAD:
    "IWAB0132W Boolean property accessor getBoolean in bean Field begins with "get". Boolean getter methods should begin wth "is"."
    This is the error inspite of the fact that there is no boolean data member involved in the code.
    Kindly reply urgently with the possible solutions if anyone of u has come across such an error.
    Thanks in advance
    Karan

    Hi,
    While further investigating the problem, I found out that if i try to return a Vector from my Web Service the error message is thrown, otherwise on returning any other object there is no error.
    I tried to return an array of type Object, but same error was reported. I am using IBM WSAD 5.1
    Please help asap
    Thanks
    Karan

  • Error while generating WSDL: AnnotatedNoClassDefFoundError

    Hi Team,
    I am trying to generate WSDL from SOA IG responsibility getting the below error :
    "Service Provider Access resulted in exception 'oracle.apps.fnd.soa.util.SOAException: ServiceGenerationError: ServiceGenerationError: Error in Service Generationoracle/classloader/util/AnnotatedNoClassDefFoundError' when attempting to perform 'GENERATE'. Please view Service Provider logs for more details":
    Prerequisite.
    1. Created  PL SQL package.
    2. Annotated the Package spec as per SOA standard
    3. pasred and created iLDT and uploaded the package spec in IR(Integrated Repository)
    4. Could see the new interface in from SOA Integrated Gateway UI.
    5. provided grants to user
    6. click on generate WSDL button . Getting error.
    Please help.

    Hi Anybody Please help.

  • How to generate wsdl url in Siebel 8.1

    Dear Gurus,
    Please help, how to generate wsdl url from inbound web services in Siebel 8.1
    Regards,
    Eldin

    Hi Raj,
    I've tried, this url did'nt recognize as a web service.
    For example, in Oracle E-Business Suite ( Integration Repository ) there's a button to generate wsdl url. The wsdl url is http://servername/webservice/pls/test?WSDL.
    So is it possible we generate wsdl url like in E-Business Suite ? Or there's something we need to configure so Siebel wsdl url will recognize as web service in E-Business Suite.
    Thanks for your response.

  • Maintain attribute order in XML with a structure?

    I'm using xmlParse() to read an XML file into a structure, and then process the structure (replace some of the XML attributes) and then write the structure back out as an XML file. The problem is that I loose the original ordering of XML attrbutes when I convert to a structure, and instead end up with a new attribute order for each element that is alphabetical.
    In otherwords: <element c="text" d="text" a="text" />
    gets rewritten as: <element a="text" c="text" d="text" />
    which is a problem for this application.
    Is there a way to work with XML in CF but maintain attribute ordering (LinkedHashMap instead of a structure, maybe)?
    Thanks.
    Walter

    but using ColdFusion to process XML in this way is making a pretty big change in the XML structure.
    No, it's not changing the structure in any meaningful way: the attribute ordering isn't meaningful in XML, so if the order of them changes, then that's not a meaningful change.  In any way that XML should be used, it doesn't matter.
    When CF reads an string (like file contents) and parses it as XML, it needs to create an XML object; that XML object will adhere to the rules of XML; one of which is "atribute order has no significance", so it will not (and ought not) bother to "remember" the order that the attributes were in in the original string.  When one converts that object back into a string, some sort of ordering needs to be used to write them back, and CF seems to arbitrarily use alphabetical order.  But it cannot refer back to information that it doesn't have (the original ordering), so the original ordering can't be preserved.
    There's nothing unreasonable or that shouldn't be expected in this process, unfortunately (for you, I mean).
    Adam

  • Third Party Sales Order not generating a PR when going on Credit Block

    Hello Generous People,
    We are having a problem with creating 3rd Party Sales Orders and generating a PR when the customer goes on a credit block and the is subsequently released from there credit block. The system enters a loop of creating a PR and then deleting it once the sales order saved and then place the sales order back on credit block. The Credit Management system has been setup to cause a block for certain fields.
    We have looked at the OSS Notes that are recommended by SAP, for example 100861, 396791, etc. However we are implementing SAP ECC 6.0 with all the latest updates. I was looking at OVB5 and VOFM, but I have had no luck with these as well.
    Thank you in advance for your help or advice.

    Hi Jurijs,
    Have you checked LVKMPFZ1, LVKMPFZ2 & LVKMPFZ3 to find out if there is any code for credit checks and blocks in these user exits.  Also please check FORM USEREXIT_AVAIL_CHECK_CREDIT under include MV45AFZF to find out if there is any code which is entered to not allow the availability check for blocked sales orders and therefore stopping the transfer of requirements inthe form of PR generation.
    Don't worry about going into ECC 6.0. Once you will start the upgrade process on ECC 6.0, you will come to know a set of transaction codes which you can run into the system to find out the non standard ABAP code changes which exists in your SAP landscape.

  • Duplicate planned order is generated with  one sales order item.

    dear :
    when the production order is confirmed with sales order item.the other new planned order is generated.
    the   requiremet quantity of sales order item  is  1,but the custstock  is 2 .display exception:26. in md04.
    please help me analyze it .
    best regards.

    Hi
    Please check rescheduling horizon in OPPQ(by default it would be 100).
    May be you would have shifted the dates of production order after converting from planned order which had crossed rescheduled horizon. This would generate additional planned order to maintain initial dates.
    If this is the case, increase Rescheduling horizon.
    Regards,
    Krishna Mohan

  • F110 - Posting orders: 2 generated, 0 completed???

    Hello,
    Carried out Automatic Payment Run through F110
    Posting orders: 2 generated, 0 completed
    In Payment Run Log,  Accounting Docs. are shown however, infact Accounting Docs. are not generated by clearing open items within vendor account. Open Items within vendor account are Overdue Down Payment Requests
    What could be the reason for such behaviour?
    Will really appreciate your inputs on this
    Thanks & Regards,
    Ameya...

    Hi
    After you get the mesage
    Carried out Automatic Payment Run through F110
    Posting orders: 2 generated, 0 completed
    You need to refersh data by pressing Status or Pressing Enter.
    Regards
    Venkat

  • After firming planned order, new planned order is generating in MRP run

    Hi Experts,
    I am using SAP AFS. Planning strategy is 21- MTO with Project settlement. MRP type is PD. Lte size is EX. Procurement type is X.
    We are using the production versions. Individual / collective reqmts is 1. Planning time fence is not maintained.
    In sap AFS T.Code for MRP run is /n/afs/md02. After receiving the Sales order, MD04 screen gets updated accordingly and I am running the MRP.Planned orders are generated accordingly. I am firming the planned order manually through MD04. The satr mark is also appearing.
    My problem starts now. If I am running  the MRP again for the same requirements another planned order of the same qty. is getting generated. That means after the second MRP run, I am having two planned orders (one firmed plnd order) and second is the new planned order. My requirement is that MRP should not generate any new Plnd. order / PR's if there is no new Sales order.
    The parameters for MRP run are "1" for "Create PR's", '1" for "Plng Mode" and '"1" for "scheduling ".
    I have tried in all the possible ways, but of no use. Still new plnd order is generated after firming the 1st plnd. order in MRP run.

    Thanks all for your feedback..
    @ Vishal
    1. Yes, Both Old firmed planned order and newly generated planned order have the same grid value
    2. For both the planned orders :
    Special Stock is E u2013 Orders on hand,
    Consumption is V,
    Sales order is the same (As we are using MTO , Strategy 21) and same WBS element.
    3. First planned order is not in the assigned tab of MD04. This means that has been allocated to some object. u2013 I didu2019nt got this point. Can u please elaborate?
    @ Nikhil
    1. Quantity of sales order is not reducing after firming the sales order
    2. Account assignment category for both the planned orders is u201CZu201D - Indiv.cust./project
    I have made some more observations and found the following differences between the two planned orders
    From  MD04 , keep the cursor on corresponding planned order
    & click on upward arrow ( available on bottom side of the report).
    It will show what will be the originating requirements i e. for which requirements this planned order generated.
    For Firmed planned order it is taking me to screen u201CPegged Requirements
    u201D*And the following data is present:
    Planned dates: 04.07.2010
    MRP element No. 3100001185 (Sales Order No.)
    MRP element item 100
    Scheduling No. is 1
    MRP element indicator - VC u2013 Order
    MRP element data- 3100001185/000100/0001
    Plng segment u2013 3100001185000100000
    P.O / Order Type u2013 ZX
    Rec/reqd Quantity 10
    MRP element u2013 Order
    For new planned order generated, I am going to Screen *u201CProcurement without Requirementsu201D
    *The following data is present
    Planned date 03.07.2010
    MRP element No. 0000123522 (Planned order No. of the newly generated after MRP Run)
    MRP element Ind. u2013 PA
    MRP element data 0000123522/SO
    MRP element item 1
    Scheduling No. 1
    MRP segment 20
    Plng segment u2013 3100001185000100000
    Rec/reqd Quantity 10
    P.O/Order type- KD
    MRP element u2013 Plnd Order

  • F110 Issue: Posting orders: 8 generated, 7 completed

    Hi,
    I am facing issue with F110,
    Posting orders: 8 generated, 7 completed.
    The Payment Run Log shows a problem with the Form Type.
    I have checked SM13 as well and the log shows:
    Function Module        POST_DOCUMENT
    Status                 Update was terminated
    Report                 LF005F01
    Row                    1.990
    Error details   Class:     F1         Number:    805
    Clearing: Line item 005 in document 6650 1600001334 2012 already cleared.
    Finally, can any one help me out that Is there a problem with the Form as per the Payment Run Log  or is it because of SM13 log showing Line item cleared???
    Please assist.... Any input will be really appreciated.

    Hi Team,
    I am getting the following Error:
    In form ZF_110_HOME_TRF9 / window MAIN, the element 510-C (Text-C) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 515 (Heading) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 520 (Carry forward above) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 526 (Py.adv.note) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 530 (Total) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 615 (Heading) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 620 (Carry forward above) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 625 (Line items) is missing
    In form ZF_110_HOME_TRF9 / window MAIN, the element 630 (Total) is missing
    Output of the relevant forms is defective
    Is there any SAP Note for this????
    Please Assist....

Maybe you are looking for

  • I'm trying to install the Windows Phone 8.1 Preview for Developers but it won't install. I get x80188308. (I've tried 5 times)

    I want to install a windows phone app I've created via AppStudio, and apparently a prerequisite is to install the Preview for Developers.   However, it won't install. I get 0x80188308. (I've tried 5 times) My Phone info: NOKIA Lumia 920 OS version 8.

  • Screen dims slightly while I'm working.

    I just got my new MacBook Pro yesterday. So I'm surprised that it seems to be malfunctioning already. Specifically, while I'm working the screen will dim slightly even though I am typing or working. Thoughts?

  • Text not sent

    So after the Gingerbread update I have been having text issuews with the stock app and handcent.  Every few days I will get a text message not sent error after trying to send a text.  The only way it will start sending texts again is if I reboot and

  • Normalcursor vs sys_refcursor

    Hi, In the below code I have open the cursor two times. here, I am getting the cursor is already opened exception DECLARE CURSOR cur_emp IS                SELECT *                FROM emp; BEGIN OPEN cur_emp; OPEN cur_emp; END;I am using sys_refcurso

  • Installing iTunes Error

    I have been trying to install iTunes. I downloaded iTunes 10 to my desktop. I open the iTunes Setup, click Run. I get the window that says Welcome to the iTunes installer, click next. Get the agreement, click accept and next. Then I get the installat