Problem while creating a new internal order. Please help! URGENT!!!

Hi Experts,
After creating internal orders the currency and cost center fields under control data tab are getting greyed out when I check it via KO02 transaction. The order status is "REL". This in turn is not allowing me to change currency and cost center via KO02. What could be the problem? Why these control data fields are getting greyed out or disabled? Is there any configuration problem? Kindly help ASAP!
Actually I am creating the order via XI. The input order data is coming from a .Net application which sends the data to XI via webservice call. The XI then uses RFC BAPI "BAPI_INTERNALORDER_CREATE" to create the internal order in R/3 system.
kindly help please!
Thanks
Gopal
Edited by: gopalkrishna baliga on May 20, 2008 12:09 PM

Hi Gopal,
This is based on your configuration on ERP. You have to talk to your functional consultant to get the right order type and right configuration for same.
Thanx & Regards
Vinod

Similar Messages

  • Hi all, i'm new and facing a problem while creating a new file for Xcode. I can't select the box "with XIB for user interface" if the subclass is "UIViewController".this problem happen after i upgrade Xcode to 4.6 version.Appreciate for any help rendered.

    Hi all, i'm new to Mac book & Xcode. I'm learning and facing problems while creating a new file for Xcode. Before i upgrade the software, i have no issue to create simple steps in apps. After upgrade Xcode to 4.6 version, i'm facing lot's of issue eg.
    1) "the identity "iphone developer" doesn't match any valid certificate/ private key pair",
    2) can't select the box "with XIB for user interface" if the subclass is "UIViewController"..
    Appreciate for any help rendered.

    Mikko777 wrote:So what is the best?
    I wouldn't judge. I've been to Arch for a week, you know? But as said, it's VERY close to it.
    What I dislike after a week is makepkg not handling dependencies automatically (which would be overhead, so probably not appropriate).
    Mikko777 wrote:Also theres KDEmod for modular kde, dunno if its for 64 bits tho.
    Don't actually need that as said ... I see no real benefit of having that other than not beeing a KDE user or having Gentoos useflags.
    Mikko777 wrote:PS:You produce a lot of text and welcome smile
    Yeah. Wonder why I'm still employed? So do I ...

  • Problem while creating PO for Calibration order PR

    Hi,
    I am facing following problem while create PO for calibration order PR:
    "Comparison of the field selection strings from the G/L account 8000010800 and the account assignment category F reveals that there is an incompatible combination of field selections for the field selection group 'Network'.
    The G/L account field selection is stored in table T004F; that for the account assignment is stored in table T162K."
    Can anybody help me urgently.
    Regards,
    Mew

    Hi,
    Check the field selection for account assignment category & Field status group of G/L 8000010800.
    Compare both & set the field selection equally in both.
    Regards,
    Piyush

  • Problem while creating a new track

    Hi,
    When we create a new track, we get the following exception:
    Unexpected error; inform your system administrator: com.sap.cms.util.exception.CMSUnexpectedException: com.tssap.dtr.client.lib.cms.DTR.connect(Ljava/lang/String;Lcom/tssap/dtr/client/lib/protocol/ISessionContext;)V
    We have created a new product and a software component and defined the dependencies for the software component (SAP_BUILDT, SAP_JTECHS & SAP-JEE).  In the CMS, we have done Update CMS.  We are able to see the software component and have added the same in the 'Software Components for Development'.  All the usage dependencies are clearly visible.
    When we save the track, we get the above exception.  Can any one of you please respond this query?
    Thanks in advance.
    Regards,
    Ravi

    Hi Ravi,
    We enocounted a similar problem once.  For our situation it was a missing DTR url in the lanscape configurator.  To check/fix this do the following:
    1) login to CMS
    2) click on the Landscape Configurator link
    3) if not already selected, choose the track in the list of tracks on the left
    4) click on the Track Data tab for the selected track
    5) verify that the Design Time Repository URL is specified and correct (e.g. http://<server>:<port>/dtr
    Save the configuration.
    Hope this helps.

  • Problem while creating a new user on solaris

    I have a SUN ultra machine. Solaris 2.6 is installed on this machine.
    I have successfully created a new user in this machine using "admintool"
    Problem is I'm getting error messages when I'm trying to update NIS DATABASE.
    I'm doing-
    #cd /var/yp
    #/usr/ccs/bin/make
    and the response is----
    updated passwd
    pushed passwd
    make:Warning:Don't know how to make target /etc/ethers
    Current working directory /var/yp
    make:Warning:Don't know how to make target /etc/netgroup
    Current working directory /var/yp
    make:Warning:Don't know how to make target /etc/bootparams
    Current working directory /var/yp
    updated netid
    pushed netid
    Couldn't find /etc/timezone
    make:Warning:Target all not remade because of errors.
    Current working directory /var/yp

    I had the a similar problem with new users on sloaris 8.
    I wasn't able to add new users and change the shell variable while using admintool.
    Login back into the console would simply not happen.
    All i've been able to find is that changing the users' variable - i.e. .login or .profile to match that of a working existing user (root),
    would skip over the problems.
    Other variables in the skeleton files were helpful. I suggest you take a look at them.

  • Problem while creating a new row

    I am trying to create a new row in FulfillmentLineEntryResultVORowImpl which will be within the CheckAvailabilityOutputVORowImpl.
    For that I am trying to do the following coding and I am getting the "NullPointerException" while creating the "flrow".
    Please look in the code and suggest me the correct way.
    CheckAvailabilityOutputVOImpl outputVO = getCheckAvailabilityOutput1();
    CheckAvailabilityOutputVORowImpl outputRow = null;
    outputRow = (CheckAvailabilityOutputVORowImpl)outputVO.createRow();
    FulfillmentLineEntryResultVOImpl fle = getFulfillmentLineEntryResult1();
    FulfillmentLineEntryResultVORowImpl flrow = (FulfillmentLineEntryResultVORowImpl)fle.createRow();
    flrow.setErrorCode("26");
    fle.insertRowAtRangeIndex(0, flrow);
    and
    public CheckAvailabilityOutputVOImpl getCheckAvailabilityOutput1() {
    return (CheckAvailabilityOutputVOImpl)findViewObject("CheckAvailabilityOutput1");
    public FulfillmentLineEntryResultVOImpl getFulfillmentLineEntryResult1() {
    return (FulfillmentLineEntryResultVOImpl)findViewObject("FulfillmentLineEntryResult1");
    }

    Hi,
    I am using transient VO.
    The code that i mentioned earlier is to create the dummy response for the web service in error condition.
    For normal condition we are getting data from XML and by using readXML I am generating row nicely.
    The piece of code for normal scenario where it is working nicely is...
    Document doc = sendMessage("CheckAvailabilityInput", headerNode);
    CheckAvailabilityOutputVOImpl outputVO = getCheckAvailabilityOutput1();
    outputVO.readXML(doc.getDocumentElement(), -1, getXslForReadXML());
    if (AppsLogger.isEnabled(AppsLogger.FINE)) {
    Node headerNode1 = (XMLNode)outputVO.writeXML(-1, XMLInterface.XML_OPT_ALL_ROWS | XMLInterface.XML_OPT_ASSOC_CONSISTENT);
    try {
    Writer sw = new StringWriter();
    ((XMLNode)headerNode1).print(sw);
    } catch (IOException e) {
    AppsLogger.write(this.getClass(),
    "Couldn't convert the VO to xml",
    AppsLogger.FINE);
    outputRow = (CheckAvailabilityOutputVORowImpl)outputVO.getRowAtRangeIndex(0);
    And The xml that I am using is like below....
    <?xml version="1.0" encoding="utf-8"?>
    <checkAvailabilityOutput xmlns:op="http://xmlns.oracle.com/apps/scm/orderPromising/orderPromising/promisingServices/types/">
    <PromisingSystem>DOO-OP</PromisingSystem>
    <PromisingInstance>Instance</PromisingInstance>
    <PromiseDate>2012-08-22</PromiseDate>
    <FulfillmentLineEntryResult>
    <FulfillmentLineReply>
    <FulfillmentLineIdentifier>FID-003</FulfillmentLineIdentifier>
    <NumberOfAltOptions>0</NumberOfAltOptions>
    <DefaultAvailabilityOption>
    <OptionRank>0</OptionRank>
    <OptionSummary>0</OptionSummary>
    <FulfillmentLineResult>
    <FulfillmentLineIdentifier>FID-003</FulfillmentLineIdentifier>
    <TotalPrice>8000</TotalPrice>
    <TotalProfit>-392000</TotalProfit>
    <TotalMargin>-98</TotalMargin>
    <TotalValue>-392000</TotalValue>
    <NumberOfSplits>0</NumberOfSplits>
    <NumberOfSubstitutions>0</NumberOfSubstitutions>
    <FillRate>100</FillRate>
    <NumberOfAtpItems>1</NumberOfAtpItems>
    <NumberOfCtpItems>0</NumberOfCtpItems>
    <SourcingRule></SourcingRule>
    <ResultDetail>
    <SplitLineIdentifier></SplitLineIdentifier>
    <Customer>CUST_ID_001</Customer>
    <CustomerSite>CUST_SITE_001</CustomerSite>
    <InternalSalesOrderDestOrg>
    <OrgId></OrgId>
    </InternalSalesOrderDestOrg>
    <PromisingStatus></PromisingStatus>
    <RequestedDate>2012-06-02</RequestedDate>
    <PromisingType>Ship</PromisingType>
    <ExpectedArrivalDate>2012-06-01</ExpectedArrivalDate>
    <ExpectedShipDate>2012-06-01</ExpectedShipDate>
    <ExpectedPickDate>2012-06-01</ExpectedPickDate>
    <RequestedItem>ITEM_CODE_001</RequestedItem>
    <ExpectedAvailableItem>ITEM_CODE_001</ExpectedAvailableItem>
    <ExpectedAvailabilityOnRequestedDate>0</ExpectedAvailabilityOnRequestedDate>
    <ExpectedAvailableQuantity>200</ExpectedAvailableQuantity>
    <ExpectedAvailableQuantityUOM>EA</ExpectedAvailableQuantityUOM>
    <ExpectedShipFromOrg>
    <InstanceId></InstanceId>
    <OrgId>HYDERABAD</OrgId>
    </ExpectedShipFromOrg>
    <ExpectedDropShipSupplier></ExpectedDropShipSupplier>
    <ExpectedDropShipSupplierSite></ExpectedDropShipSupplierSite>
    <ExpectedMode></ExpectedMode>
    <ExpectedService></ExpectedService>
    <ExpectedCarrier></ExpectedCarrier>
    <CarrierCalendar></CarrierCalendar>
    <ExpectedDemandClass></ExpectedDemandClass>
    <ExpectedTotalFulfilmentCost>400000</ExpectedTotalFulfilmentCost>
    <ExpectedShippingCost>0</ExpectedShippingCost>
    <ExpectedMargin>-98</ExpectedMargin>
    <Price>8000</Price>
    <Profit>-392000</Profit>
    <Value>-392000</Value>
    <LineFillRate>100</LineFillRate>
    <ErrorCode></ErrorCode>
    <ErrorMessage></ErrorMessage>
    <PeggingDetail>
    <ItemId>ITEM_CODE_001</ItemId>
    <OrgInfo>
    <InstanceId></InstanceId>
    <OrgId>HYDERABAD</OrgId>
    </OrgInfo>
    <ShippingCalendar>Calendar1</ShippingCalendar>
    <ReceivingCalendar>Calendar2</ReceivingCalendar>
    <ManufacturingCalendar>Calendar3</ManufacturingCalendar>
    <ATPDetail>
    <Quantity>200</Quantity>
    <QuantityUom>EA</QuantityUom>
    <ATPCost>400000</ATPCost>
    <ATPMode>3</ATPMode>
    <LeadTime>0</LeadTime>
    <RequiredQuantity>200</RequiredQuantity>
    <RequiredDate>2012-06-01</RequiredDate>
    <AllocationRule></AllocationRule>
    <DemandClass></DemandClass>
    </ATPDetail>
    </PeggingDetail>
    </ResultDetail>
    </FulfillmentLineResult>
    </DefaultAvailabilityOption>
    </FulfillmentLineReply>
    </FulfillmentLineEntryResult>
    </checkAvailabilityOutput>

  • CRM BDoc Modeler - Problem while creating a new segment

    Hi all;
    I have created a new BDoc type and wanted to add a segment. I imported a structure with some QUAN fields and a UNIT type fields. While activating segment, I got an error. I saw that the structure was not activated since I used some QUAN type fields and they were not assigned a UNIT type field. But the assignment was already done in the structure I imported. Is there a solution to use QUAN fields in segment definitions or what data element should I use instead of them?
    Thanks for your answers in advance;
    Hakan

    Hi all;
    I have created a new BDoc type and wanted to add a segment. I imported a structure with some QUAN fields and a UNIT type fields. While activating segment, I got an error. I saw that the structure was not activated since I used some QUAN type fields and they were not assigned a UNIT type field. But the assignment was already done in the structure I imported. Is there a solution to use QUAN fields in segment definitions or what data element should I use instead of them?
    Thanks for your answers in advance;
    Hakan

  • Problem while creating a new Data element in a new table?

    Hello Everyone,
    I have downloaded Netweaver 7.1 trail version from internet and while creating a data element through the data dictionary: i got this input box:
    Register Object
    SAP Release 701
    Access key needed?
    Installation DEMOSYSTEM
    What could an access key be here in this demo version?
    please help experts. thanks for writing back.
    Cheers
    lastw0nd3r
    P.S:
    I tried this access key already which was in devaccess table
    29671482393151224771  but it didn't worked.
    Edited by: lastw0nd3r on Jun 8, 2010 5:30 PM

    in processformrequest() i wrote this:
    if ((tableBean.getName().equals(pageContext.getParameter(SOURCE_PARAM)))
    &&(ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM))))
    am.invokeMethod("createRecordInv") ;
    in Amimpl.java
    i wrote
    public void createRecordInv()
    try
    OAViewObject vo = getARTransactionLineVO1();
    if (!vo.isPreparedForExecution())
    {   vo.executeQuery();     }
    if (vo != null)
    vo.setMaxFetchSize(0);
    ARTransactionLineVORowImpl row1 = ( ARTransactionLineVORowImpl)vo.createRow();
    if (vo.getFetchedRowCount() == 0)
    {vo.insertRow(row1); }
    else
    { vo.insertRowAtRangeIndex(vo.getFetchedRowCount(),row1); }
    row1.setNewRowState(row1.STATUS_INITIALIZED);
    catch(Exception ex)
    { ex.getMessage();  }
    i am getting error
    oracle.apps.fnd.framework.OAException: java.lang.ClassCastException

  • Problem while creating a new project template

    I am trying to create a new project template under one operating unit newly created.
    I am using P A Super User responsibility for that operating unit.
    In profile setting the above responsibility has been assigned the new operating unit under Mo operating unit profile.
    Now when I go to Setup>>Projects>>Project Templates and click on New, the form to create new Project template opens up but in the field where I have to select the operating unit, it shows no values in the LOV.
    Can anyone please help me to know what setting do I have to perform so that I can select the operating unit in this new Template creation Form.
    Regards
    Hawker Hunter

    Dear Mr. Govind,
    we have followed all the Project Implementation Setup for the new operating unit except for the Implementation options which we have to fill up for each operating unit.
    In the implementation Options form in the first tab 'System' there are many fields to be filled up.
    For 'Summarization period Type' we choose 'G L Period' and based on this the fields 'Calendar Name' and 'P A Period Type' automatically gets populated.
    But in our case the 'P A Period Type' is not getting populated.
    Can you let me know where we can link the 'P A Period Type' to the chosen 'Calendar name'?
    Also there is a check box - 'Maintain common PA and GL Periods'. If we tick this check box, a message says: 'The Period Type and Calendar of the PA Period does not match the Period type and Calendar of the corresponding GL Period.'
    Can you please let me know where to create the PA Period based on the corresponding GL periods?
    Regards

  • Problem while creating a new row in a advanced table

    Hi
    i am getting a error when i click on the add another row button...i followed the same steps given in dev guide..
    please help me out
    Error: Cannot Display Page
    You cannot complete this task because one of the following events caused a loss of page data:
    * Your login session has expired.
    * A system failure has occurred.
    To proceed, please select the Home link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.

    in processformrequest() i wrote this:
    if ((tableBean.getName().equals(pageContext.getParameter(SOURCE_PARAM)))
    &&(ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM))))
    am.invokeMethod("createRecordInv") ;
    in Amimpl.java
    i wrote
    public void createRecordInv()
    try
    OAViewObject vo = getARTransactionLineVO1();
    if (!vo.isPreparedForExecution())
    {   vo.executeQuery();     }
    if (vo != null)
    vo.setMaxFetchSize(0);
    ARTransactionLineVORowImpl row1 = ( ARTransactionLineVORowImpl)vo.createRow();
    if (vo.getFetchedRowCount() == 0)
    {vo.insertRow(row1); }
    else
    { vo.insertRowAtRangeIndex(vo.getFetchedRowCount(),row1); }
    row1.setNewRowState(row1.STATUS_INITIALIZED);
    catch(Exception ex)
    { ex.getMessage();  }
    i am getting error
    oracle.apps.fnd.framework.OAException: java.lang.ClassCastException

  • Problem while starting Weblogic 7.0..please help

    Hi,
    Im facing this problem while starting the weblogic.
    Below is the error i get...
    <Nov 3, 2006 6:11:29 PM IST> <Alert> <WebLogicServer> <000297> <Inconsistent security configuration, java.lang.Exception: Certificate expired or not yet valid:
    fingerprint = a48264011b8f3aeb13f64147821dc941, not before = Sat Nov 02 01:32:23 IST 2002, not after = Mon Oct 16 01:32:23 IST 2006, holder = C=US SP=California
    L=San Francisco O=BEA WebLogic CN=weblogic.bea.com [email protected] , issuer = C=US SP=California L=San Francisco O=BEA WebLogic OU=Security CN=Demo Certi
    ficate Authority Constraints [email protected] , key = modulus length=65, exponent length=3>
    java.lang.Exception: Certificate expired or not yet valid: fingerprint = a48264011b8f3aeb13f64147821dc941, not before = Sat Nov 02 01:32:23 IST 2002, not after
    = Mon Oct 16 01:32:23 IST 2006, holder = C=US SP=California L=San Francisco O=BEA WebLogic CN=weblogic.bea.com [email protected] , issuer = C=US SP=California L=San Francisco O=BEA WebLogic OU=Security CN=Demo Certificate Authority Constraints [email protected] , key = modulus length=65, exponent length=3 at weblogic.t3.srvr.SSLListenThread.<init>(SSLListenThread.java:219)
    at weblogic.t3.srvr.SSLListenThread.<init>(SSLListenThread.java:122)
    at weblogic.t3.srvr.T3Srvr.initializeListenThreads(T3Srvr.java:1556)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:891)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:300)
    at weblogic.Server.main(Server.java:32)
    <Nov 3, 2006 6:11:29 PM IST> <Emergency> <Security> <090034> <Not listening for SSL, java.io.IOException: Inconsistent security configuration, Certificate expir
    ed or not yet valid: fingerprint = a48264011b8f3aeb13f64147821dc941, not before
    = Sat Nov 02 01:32:23 IST 2002, not after = Mon Oct 16 01:32:23 IST 2006, holder = C=US SP=California L=San Francisco O=BEA WebLogic CN=weblogic.bea.com Email=s
    [email protected] , issuer = C=US SP=California L=San Francisco O=BEA WebLogic OU=Security CN=Demo Certificate Authority Constraints [email protected] , key =
    modulus length=65, exponent length=3.>
    I have updated my license.bea file also. the date of expiration="2006-12-02" ..
    Please suggest as to how to proceed
    Thanks and Regards
    SmitaUdupa

    Your server certificate expired. You need to update your identity keystore with a new certificate.
    The expired certificate was issued by the demo BEA certificate authority (CA). These certs are not adequate for production but if you want to take this approach for your new cert you'll have to use the BEA CertGen utility. Have a look at http://edocs.bea.com/wls/docs70/secmanage/ssl.html for more details.
    Your other option is to use Java's keytool utility to create a private key. You'd then generate a certificate signing request (CSR) that you'd send to a CA such as Verisign. You might even have a CA in-house. The CA will then send you a signed certificate that you load in your keystore. Assuming you've configured WebLogic to use this keystore you should be back in business with SSL.
    Mike
    Weblogic/J2EE Security Blog: http://monduke.com

  • I have an MP3 file but would like to create a new one. Please help!

    I would like to take a current MP3 that I have on file and create a new MP3 using only the first 20 seconds of the original. How do I do this?
    (I have iTunes and another program called something like iGarageBand)
    Thanks!

    How do I open it in GarageBand
    Create a new basic track, then drag the MP3 into the
    track. Use command-T to split the track where you
    want.
    and how do you convert
    it back to an MP3 in iTunes?
    Use "Export to iTunes" in GarageBand. The file in
    iTunes will be an AIFF; use "Convert Selection to
    MP3" in the Advanced menu to convert it to an MP3.
    Your posts have been so helpful, thank you!
    I thought that it would have been more straightforward in how to delete the rest of the track... I guess I need a little pointer in that area too.
    So far, I've imported the track and split it at where I'd like. After that, I have no idea on how to delete the rest of the track. So... how do I do that?
    THANK YOU!!!

  • Problem while creating 3rd party sales order Recive Goods

    Hi,
    I am facing a problem in the t.code MIGO_GR, The messages are:
    1)Storage "bin 010" does not exist (check your entry).
    2) Material "3rdparty" does not exist in warehouse 010
    Please advice me how to resolve it.
    Thanks in advance.
    ANGKS

    Hi,
    It looks you are trying to use storage bin 010, which is not existing in the system.
    On the MIGO-GR line item level, try to change the bin to other available bin.
    Alternatively if you want to use the same bin number, then use transaction code LS01N to create a storage bin 010, then try to receive the goods.
    Regarding your second message, the material needs to be extended to warehouse 010. You can use transaction code MM01 to extend the material to warehouse 010. (meaning you need to create the warehouse views).
    Hope this helps.

  • Exception  thrown while creating the schema for FOD. please help.

    I couldn't run the schema for the FOD demo application. when I follow the steps, I get some exception during the database create part.
    From the File menu, choose Open. Open the workspace c:\temp\Infrastructure\infrastructure.jws.
    ( I edited the build.properties with correct values)
    In the MasterBuildScript project, select the build.xml file. In the Structure window, right-click the refreshSchema target and choose Run Target "refreshSchema."
    refreshSchema:
    [sql] Feb 13, 2008 4:44:54 PM oracle.jdbc.driver.OracleDriver registerMBeans
    [sql] SEVERE: Found Oracle Apps MBeanServer but the getMBeanServer method threw an exception.
    [sql] java.lang.reflect.InvocationTargetException
    [sql]      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [sql]      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [sql]      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [sql]      at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    [sql]      at oracle.jdbc.driver.OracleDriver.registerMBeans(OracleDriver.java:274)
    [sql]      at oracle.jdbc.driver.OracleDriver$1.run(OracleDriver.java:224)
    [sql]      at java.security.AccessController.doPrivileged(Native Method)
    [sql]      at oracle.jdbc.driver.OracleDriver.<clinit>(OracleDriver.java:220)
    [sql]      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [sql]      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [sql]      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [sql]      at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    [sql]      at java.lang.Class.newInstance0(Class.java:350)
    [sql]      at java.lang.Class.newInstance(Class.java:303)
    [sql]      at org.apache.tools.ant.taskdefs.JDBCTask.getDriver(JDBCTask.java:364)
    [sql]      at org.apache.tools.ant.taskdefs.JDBCTask.getConnection(JDBCTask.java:304)
    [sql]      at org.apache.tools.ant.taskdefs.SQLExec.execute(SQLExec.java:346)
    [sql]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [sql]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [sql]      at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:64)
    [sql]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [sql]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [sql]      at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:378)
    [sql]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [sql]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [sql]      at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:64)
    [sql]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [sql]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [sql]      at org.apache.tools.ant.taskdefs.MacroInstance.execute(MacroInstance.java:378)
    [sql]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [sql]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [sql]      at org.apache.tools.ant.Target.execute(Target.java:341)
    [sql]      at org.apache.tools.ant.Target.performTasks(Target.java:369)
    [sql]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    [sql]      at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:37)
    [sql]      at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    [sql]      at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:382)
    [sql]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [sql]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [sql]      at org.apache.tools.ant.Target.execute(Target.java:341)
    [sql]      at org.apache.tools.ant.Target.performTasks(Target.java:369)
    [sql]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    [sql]      at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    [sql]      at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    [sql]      at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    [sql]      at org.apache.tools.ant.Main.runBuild(Main.java:668)
    [sql]      at org.apache.tools.ant.Main.startAnt(Main.java:187)
    [sql]      at org.apache.tools.ant.Main.start(Main.java:150)
    [sql]      at org.apache.tools.ant.Main.main(Main.java:240)
    [sql] Caused by: java.lang.ClassNotFoundException: oracle.as.jmx.framework.standardmbeans.spi.JMXFrameworkProviderImpl
    [sql]      at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    [sql]      at java.security.AccessController.doPrivileged(Native Method)
    [sql]      at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    [sql]      at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    [sql]      at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    [sql]      at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    [sql]      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    [sql]      at java.lang.Class.forName0(Native Method)
    [sql]      at java.lang.Class.forName(Class.java:242)
    [sql]      at oracle.as.jmx.framework.PortableMBeanFactory.init(PortableMBeanFactory.java:1687)
    [sql]      at oracle.as.jmx.framework.PortableMBeanFactory.<init>(PortableMBeanFactory.java:156)
    [sql]      at oracle.as.jmx.framework.PortableMBeanFactory.<init>(PortableMBeanFactory.java:164)
    [sql]      ... 49 more
    [sql] Executing file: C:\temp\Infrastructure\DBSchema\Scripts\SQLRunner56601127.sql
    [sql] 11 of 11 SQL statements executed successfully
    Message was edited by:
    user620063

    Hi,
    please post this to the JDeveloper 11 forum
    JDeveloper and OC4J 11g Technology Preview
    Frank

  • Problem while creating the Partner Address in CRM

    Hi,
       We are facing one problem while creating the new address for the Business Partner.
       When ever customer wants to change the address : we are following one process : where we are      
       using 'BAPI_BUPA_ADDRESS_ADD' functin module. Becuse of this , new addrss number will be generated for the 
      corresponding account in BUT021_FS table.But this table contains old address number as a first record, so that when ever
      we display the partner address in UI, it is displaying the old address only because first entry of the the table 'BUT021_FS'
      contains the old address number.
      Because of this , we are getting lots of complaints regarding this.
    Can you please help on this ASAP.
    Thanks & Regards
    Pradeep.

    Try BAPI_BUPA_ADDRESS_CHANGE  for address change followed by BAPI_TRANSACTION_COMMIT . It works.

Maybe you are looking for

  • Can I add a second 6-Core: 3.33GHz Intel Xeon "Westmere" processor later?

    Can I add a second 6-Core: 3.33GHz Intel Xeon "Westmere" processor later if I purchase a MacPro 2010 with a single Can I add a second 6-Core: 3.33GHz Intel Xeon "Westmere" processor? Why is the build to order 12 core processor limited to 2.66 GHz Int

  • Nouveu_XFCE4_Strange problems with screen resolution

    Hallo to all the people out here!!! I'm quite new to linux. I've been using Ubuntu and Mint for sometime but I decided to switch to Arch, since I decided to have more control over my machines. Before I go on I must clear out that most of those machin

  • Having trouble downloading adobe update on safari

    I am having trouble downloading adobe update on safari on my desktop, running maverick, and and older macbook running snow leopard

  • JAXP, XML without SchemaLocation against Schema

    I have problems with JAXP I have been checking samples JAXP in next URL: http://xml.apache.org/~edwingo/jaxp-ri-1.2.0-fcs/docs/samples.html I have - request.xml (on bottom) - http://www.oasis-open.org/committees/security/docs/cs-sstc-schema-protocol-

  • Get  window component id

    hi.. i am trying to fetch the windows components id from java..(as Testing tool do that) so is it possible to fetch the native windows components id in java?? Thanks & Regards fun_with_me