Create IR probelm

Hi All,
I have some problem on that when i create the IR using transaction MRHR
error message.
- Only 0.000 qty Invoice, 0.000 qty Receipt -> 0.000 EA is possible for Good Receipt
I have some question about:
if i create 2 IR using 1 invoice to reference
Can i ?
Regards,
Luke

Hi
Please check if GR-Based IV is flagged in the PO line item for the error.
Yes you can post 2 invoices using 1 invoice refernce if you have not activated the check Duplicate invoice for the Vendor & the Company code.
Thanks & Regards
Kishore

Similar Messages

  • How to select header group with detailed data in one SQL

    Dear,
    I would like to have a little help from you. My goal is to create a view where data must be in appropriate format. In this format i would like to have for each group one header.
    I have 3 tables which they ar connected to each other (representing hierachical data where financial plan breaks across different groups).
    CRM_PLAN
    CRM_PLAN_ID
    DATE
    AMOUNT
    CRM_PLAN_PE
    CRM_PLAN_PE_ID
    TITLE
    AMOUNT
    CRM_PLAN_ID (ref key to CRM_PLAN.CRM_PLAN_ID)
    CRM_PLAN_MONTH
    CRM_PLAN_MONTH_ID
    YEAR
    MONTH
    AMOUNT
    CRM_PLAN_PE_ID (foreign key to CRM_PLAN_PE.CRM_PLAN_PE_ID)
    Data looks like:
    CRM_PLAN
    CRM_PLAN_ID | DATE | AMOUNT
    1 | 01.01.2012 | 500
    2 | 01.02.2012 | 200
    CRM_PLAN_PE
    CRM_PLAN_PE_ID |TITLE | AMOUNT | CRM_PLAN_ID
    1 | Organization 1 |100 | 1
    2 | Organization 2 |400 | 1
    3 | Organization 3 |200 | 2
    CRM_PLAN_MONTH
    CRM_PLAN_MONTH_ID | YEAR | MONTH | AMOUNT | CRM_PLAN_PE_ID
    1 | 2012| 1 | 60 |1
    2 | 2012| 2 | 40 |1
    3 | 2012| 1 | 350 |2
    4 | 2012| 2 | 50 |2
    5 | 2012| 1 | 200 |3
    I would like view which would return data like:
    MONTH | AMOUNT
    Organization 1 |null
    1 | 60
    2 | 40
    Organization 2 | null
    1 | 350
    2 | 50
    Organization 3 | null
    1 | 200
    The main question is hot to write an sql as source for view to insert before each group a row with title column value from table CRM_PLAN_PE. Is that even possible? Maybe you could suggest me some other method.
    View will be used in oracle form where will be possible to edit data - I will arrange that through insted of trigger.
    Regards,
    Igor
    Edited by: user5528050 on 29.11.2012 2:23
    Edited by: user5528050 on 29.11.2012 2:24
    Edited by: user5528050 on 29.11.2012 2:25

    Hi, Igor,
    user5528050 wrote:
    ... I would like view which would return data like:
    MONTH | AMOUNT
    Organization 1 |null
    1 | 60
    2 | 40
    Organization 2 | null
    1 | 350
    2 | 50
    Organization 3 | null
    1 | 200
    The main question is hot to write an sql as source for view to insert before each group a row with title column value from table CRM_PLAN_PE. Is that even possible? Maybe you could suggest me some other method. So, you want to have 2 different kinds of rows in the output:
    (1) "parent" or "master" rows containing data from crm_plan_pe, such as
    MONTH          AMOUNT
    ==============     ======
    Organization 1(2) "child" or "detail" rows containing data from crm_plan_month, such as
    MONTH          AMOUNT
    ==============     ======
    1          60Sure, you can do that.
    One way is to do a UNION of 2 separate queries: (1) to generate just the parent rows, (2) to generate just the child rows.
    You could also join the 2 tables and use GROUP BY GROUPING SETS. The super-aggregate rows would be the parent rows.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved (it looks like crm_plan is not involved in this problem), and also post the results you want from that data. You need to post this whether or not you want SQL code in reply. The people who want to help you want to provide good answers, and that means they want to re-create the probelm and try their ideas.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • Set flag for a set of records

    Hi
    I have a table that stores requests raised by employees as below
    name Request_ID date status
    ABC 112 05-Dec-11 rejected
    ABC 786 06-Dec-11 approved
    ABC 987 07-Dec-11 rejected
    ABC 119 08-Dec-11 approved
    MNP 221 09-Nov-11 rejected
    MNP 666 10-Nov-11 approved
    MNP 221 11-Nov-11 rejected
    MNP 999 12-Nov-11 approved
    RST 99 23-Dec-11 rejected
    RST 101 24-Dec-11 approved
    RST 876 25-Dec-11 rejected
    RST 127 26-Dec-11 approved
    I need to check the status of the latest request of each employee and set the flag of all his requests as -
    ‘A’ if the latest request status is ‘approved’
    ‘B’ if the latest request status is ‘rejected’
    The resultset should be something like -
    name Request_ID date status Flag
    ABC 112 05-Dec-11 rejected A
    ABC 786 06-Dec-11 approved A
    ABC 987 07-Dec-11 rejected A
    ABC 119 08-Dec-11 approved A
    MNP 221 09-Nov-11 rejected B
    MNP 666 10-Nov-11 approved B
    MNP 221 11-Nov-11 approved B
    MNP 999 12-Nov-11 rejected B
    RST 99 23-Dec-11 approved A
    RST 101 24-Dec-11 approved A
    RST 876 25-Dec-11 rejected A
    RST 127 26-Dec-11 approved A
    Could you please help me in framing this SQL. Use of any analytical function would be helpful
    Regards
    -pankaj

    Hi, Pankaj,
    Welcome to the forum!
    910543 wrote:
    Hi
    I have a table that stores requests raised by employees as belowWhenever you have a problem, please post CREATE TABLE and INSERT statements for your sample data, so that the people who want to help you can re-create the probelm accurately and test their ideas. since this is your first message, I'll do it for you:
    CREATE TABLE     table_x
    (     name           VARCHAR2 (5)
    ,     request_id     NUMBER
    ,     dt          DATE          -- DATE is not a good column name
    ,     status          VARCHAR2 (10)
    ,     CONSTRAINT  x_uk     UNIQUE (name, dt)
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('ABC', 112, TO_DATE ('05-Dec-2011', 'DD-Mon-YYYY'), 'rejected');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('ABC', 786, TO_DATE ('06-Dec-2011', 'DD-Mon-YYYY'), 'approved');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('ABC', 987, TO_DATE ('07-Dec-2011', 'DD-Mon-YYYY'), 'rejected');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('ABC', 119, TO_DATE ('08-Dec-2011', 'DD-Mon-YYYY'), 'approved');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('MNP', 221, TO_DATE ('09-Nov-2011', 'DD-Mon-YYYY'), 'rejected');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('MNP', 666, TO_DATE ('10-Nov-2011', 'DD-Mon-YYYY'), 'approved');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('MNP', 221, TO_DATE ('11-Nov-2011', 'DD-Mon-YYYY'), 'rejected');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('MNP', 999, TO_DATE ('12-Nov-2011', 'DD-Mon-YYYY'), 'approved');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('RST',  99, TO_DATE ('23-Dec-2011', 'DD-Mon-YYYY'), 'rejected');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('RST', 101, TO_DATE ('24-Dec-2011', 'DD-Mon-YYYY'), 'approved');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('RST', 876, TO_DATE ('25-Dec-2011', 'DD-Mon-YYYY'), 'rejected');
    INSERT INTO table_x (name, request_id, dt, status) VALUES ('RST', 127, TO_DATE ('26-Dec-2011', 'DD-Mon-YYYY'), 'approved');
    COMMIT; name Request_ID date status ...If those are all the columns in the table, and you want to display a flag column, you can do something like this:
    SELECT     name
    ,     request_id
    ,     dt
    ,     status
    ,     CASE  FIRST_VALUE (status) OVER ( PARTITION BY  name
                               ORDER BY     dt     DESC
              WHEN  'approved'     THEN  'A'
              WHEN  'rejected'     THEN  'B'
         END          AS flag
    FROM     table_x
    ;If the table has a flag column, and you need to populate it, you can use the query above in a MERGE statement. (You may be better off not actually storing the flag, however, if it's hard to keep up to date.)
    MNP 221 09-Nov-11 rejected
    MNP 666 10-Nov-11 approved
    MNP 221 11-Nov-11 rejected
    MNP 999 12-Nov-11 approved ...
    I need to check the status of the latest request of each employee and set the flag of all his requests as -
    ‘A’ if the latest request status is ‘approved’
    ‘B’ if the latest request status is ‘rejected’
    The resultset should be something like -
    name Request_ID date status Flag
    MNP 221 09-Nov-11 rejected B
    MNP 666 10-Nov-11 approved B
    MNP 221 11-Nov-11 approved B
    MNP 999 12-Nov-11 rejected BIn the original data, the status for the row with request_id=999 was 'approved'. Is there a typo somewhere?
    Edited by: Frank Kulash on Jan 26, 2012 10:57 PM

  • Ora Upgrade from 8i to 10G

    Hi,
    I am migrating application from ora 8i to 10g. so i recompiled all my codes. but in 10G one of the files i got error DWORD not found. but in 8i it compiled fine.so i changed dword to sword then i compiled it.does SWORD create any probelm in 10G?. basically i am not aware of dword and sword. could some one please help.
    srinath

    Let's start with the basics.
    - What language is your application written in? What API are you using? I'm guessing some variant of a C/ C++/ C# application possibly using OCI?
    DWORD and SWORD probably represent different data types. A DWORD would normally be an unsigned integer, a SWORD would normally be a signed integer. Whether that causes any problems for your particular application will depend on the possible values this variable can have in your application. If you expect to store values in the upper half of the unsigned range, you'll probably have issues.
    Of course, I assume that you will be doing thorough regression testing as part of the upgrade.
    Justin

  • My iphone 3gs battery drains very fast

    my iphone 3gs battery drains very fast it won't last for whole day
    i just uses mail application and  facebook for some time
    can u tell why the problem is or need to change battery

    I'm having the same problem with my 3Gs.  In my case it is not the apps int he background or the brightness, or wifi or email push.  The folks at the apple stroe tell me that there is some software glitch that shows up every few months.
    I can only get rid of it by restoring my phone as a new device.  In which case I lose all of my contacts, settings and all data.  VERY frustrating. I had recived two new phones (before applecare ran out) and have done the resotre several times.  No one can tell me what is in that creates this probelm.  I've tried differenet chargers one by one in case they are the probelm.  one int he car, one in a kitchen outlet, one at my home computer (sync) and on at my office computer (non-sync). 
    Problem just showed up again randomly two days ago,  no new apps or hardware.  battery drains from full to 0 in two hours.
    Apple, please fix.

  • Probelm with Creating purchase order using BAPI_PO_CREATE1

    Hi Experts,
    I am trying to create a PO using the "BAPI_PO_CREATE1".
    The BAPI is returning a PO number but when I am checking for the same in ME23 its saying that the number doesnot exsists.
    In BAPI retrun I am gettig an info message as "Stock transport ord. Created number 4500016833". What does this indicate and what do I need do for the PO to get created?
    Thanks & Regards,
    Suma

    If so how can we make use of the PO create BAPI from an Integration like XI?
    I need to create a PO using BAPI from XI, and the returned PO number has to taken reference and create a Goods receipt using BAPI_GOODSMVT_CREATE. I am testing the data before using the same for XI.
    So what do i need to do for creating a PO from XI?
    Thanks,
    Suma

  • Probelm in creating R/3 source system in BW 3.5!

    Hi,
    steps i did for the creation of source system in BW are as follows!
    1) crated RFC destinations in each of the system (BW3.5 and R/3 4.7 IDES)
    2) created logical systems in each of the systems and assigned the client to the respective logical systems
    3) created back ground user in BW (Back ground user was already there in BW side, namely ALEREMOTE)
      4) and in RSA1 screen when i attempt to create source system, it is asking for RFC destination and Logical system which i did . and after that, i am seeing neither the source name created nor any other next screen .
    am i missing some thing here?
    do suggest me the steps furthur for creating source system
    Thanks,
    Ravi

    Hi Dinesh,
    Thanks for ur reply!
    now i did just as u told to me to do in automatic creation of source system!
    i am getting the following info on the pop up window :
    BW LS1 is already known T90CLNT090 in the source system
    do you want to delete this connection in source system?
    connection is restored after it has been  deleted successfully
    which option shud i use delete or dont delete?
    if i am selecting "don`t delete" option  iam getting the message as source system cannot be created with any of the proposed connections!
    and i donno what wud be the effect if i select delete option!
    pls suggest me on this !

  • How to Create a jar war or ear--Probelms in deploying

    I have the following dir structure. I am using Struts 1.1 and weblogic 7.0
    APP
    +jsp
    +WEB-INF
    + ---lib
    +--- classes
    +----com
    --ap
    --action
    --beans
    --handler
    --service
    --client
    --ejb
    --valueobject
    1> Do I need to create a ear file since i want both the ejb (under service folder) and war as reusable components. Whenever we have a EJB component do we always need to have an EAR file??
    2> Whats the best way to create the jar, war or ear file. I am facing great difficulty in deploying the war.Do we need to set any classpath before we create the war and jar files except for the deployment descriptors.I have created the ejb descriptors correctly through ejbc.
    3>I have kept struts.jar,log4j.jar under lib folder. However when i create the ear and try to deploy it under weblogic it deploys the war file but gives error in deploying the jar which has the ejb. I have aslo validated the jar using ejbc.
    It gives error indicating that it requires struts.jar in classpath. If we give the classpath of struts.jar at system leve the Application deploys with ease..Can anyone tell whats the error.The jar does not use any strust component .
    4>Also the valueobject which has some beans which are used to populate the jsp through Actionformbean. Is it ok if we give refrences in both ejb jar and war?
    ie while creating jar and war folder have the valueobject in both the files or will it lead to any errors..
    Thanks in Advance
    ....

    Yes, I have tried that. But, as the server is running and the jars are in use, it throws and EditFailedException

  • Probelm Addind new Table in Physical Layer, Create Dim in Business Model ..

    I have completed a task for a dash board, that is running sucessfully.
    Now I added a new table in "physical layer", (file->import->from database), table added successfully
    Now, I droped this table in "business model", but when I want to create its dimension, there is no any option (when I right click on this table)
    there are two cases
    case 1:
    I did not added modified fact table (with foreign key of new table) in "physical layer" and not in "business model and mapping"
    case 2:
    I added new table and modified "fact table (with foreign key of new table)" in "physical layer" and "business model and mapping"
    but in both cases there is no "create dimension" button to create dimension
    Please let me know the how to solve this problem, kindly define it in steps
    thanks

    Hi thr,
    Create Dimensions is only available if the selected logical table is a dimension table (defined by 1:N logical joins) and no dimension has been associated with this table.
    In you case, once you have imported the table successfully in physical layer, then join your table to fact table. Drag n drop in BMM under a new logical table and then join it to BMM Logical fact using complex join. Now, if you right click, you see the last option as 'Create Dimension'
    Hope you find it useful..

  • Probelm in creating a data source

    Hi,
    I am unable to create a data source in the visual administrator. The error log is as follows:
    java.rmi.RemoteException: com.sap.engine.services.dbpool.exceptions.BaseRemoteException: Error during start of application "sap.com/JDBCConnector_AmritaKediaDS.xml". [id = StartupError]
         at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.startApplication(DataSourceManagerImpl.java:608)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:58)
         at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
         at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
         at com.sap.pj.jmx.server.interceptor.MBeanServerWrapperInterceptor.invoke(MBeanServerWrapperInterceptor.java:288)
         at com.sap.engine.services.jmx.CompletionInterceptor.invoke(CompletionInterceptor.java:409)
         at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.invoke(BasicMBeanServerInterceptor.java:277)
         at com.sap.jmx.provider.ProviderInterceptor.invoke(ProviderInterceptor.java:258)
         at com.sap.engine.services.jmx.RedirectInterceptor.invoke(RedirectInterceptor.java:340)
         at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.invoke(MBeanServerInterceptorChain.java:330)
         at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.invoke(MBeanServerSecurityWrapper.java:287)
         at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:131)
         at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
         at com.sap.engine.services.jmx.ClusterInterceptor.invoke(ClusterInterceptor.java:766)
         at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:102)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.rmi.RemoteException: Error occurred while starting application in whole cluster and wait.; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Clusterwide exception: server ID 13169050:com.sap.engine.services.dbpool.exceptions.BaseDeploymentException: Cannot create DataSource "AmritaKediaDS".
         at com.sap.engine.services.dbpool.deploy.ContainerImpl.startDataSources(ContainerImpl.java:1843)
         at com.sap.engine.services.dbpool.deploy.ContainerImpl.prepareStart(ContainerImpl.java:489)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4761)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:661)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:645)
         at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.startApplication(DataSourceManagerImpl.java:606)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:58)
         at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
         at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
         at com.sap.pj.jmx.server.interceptor.MBeanServerWrapperInterceptor.invoke(MBeanServerWrapperInterceptor.java:288)
         at com.sap.engine.services.jmx.CompletionInterceptor.invoke(CompletionInterceptor.java:409)
         at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.invoke(BasicMBeanServerInterceptor.java:277)
         at com.sap.jmx.provider.ProviderInterceptor.invoke(ProviderInterceptor.java:258)
         at com.sap.engine.services.jmx.RedirectInterceptor.invoke(RedirectInterceptor.java:340)
         at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.invoke(MBeanServerInterceptorChain.java:330)
         at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.invoke(MBeanServerSecurityWrapper.java:287)
         at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:131)
         at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
         at com.sap.engine.services.jmx.ClusterInterceptor.invoke(ClusterInterceptor.java:766)
         at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:102)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.dbpool.exceptions.BaseInstantiationException: Cannot create instance ManagedConnectionFactoryImpl.
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.<init>(ManagedConnectionFactoryImpl.java:78)
         at com.sap.engine.services.dbpool.deploy.ContainerImpl.startDataSources(ContainerImpl.java:1779)
         ... 40 more
    Caused by: java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
    Found in negative cache
    Loader Info -
    ClassLoader name: [library:KedDriver]
    Parent loader name: [Frame ClassLoader]
    No references !
    Resources:
       E:\usr\sap\J2E\JC01\j2ee\cluster\server0\bin\ext\KedDriver\sqljdbc.jar
       E:\usr\sap\J2E\JC01\j2ee\cluster\server0\bin\core_lib\opensqlport.jar
    Loading model: {parent,local,references}
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:360)
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.<init>(ManagedConnectionFactoryImpl.java:74)
         ... 41 more
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:663)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:645)
         at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.startApplication(DataSourceManagerImpl.java:606)
         ... 29 more
    Caused by: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Clusterwide exception: server ID 13169050:com.sap.engine.services.dbpool.exceptions.BaseDeploymentException: Cannot create DataSource "AmritaKediaDS".
         at com.sap.engine.services.dbpool.deploy.ContainerImpl.startDataSources(ContainerImpl.java:1843)
         at com.sap.engine.services.dbpool.deploy.ContainerImpl.prepareStart(ContainerImpl.java:489)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:223)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:171)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:301)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:342)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:126)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4761)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:661)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:645)
         at com.sap.engine.services.dbpool.deploy.DataSourceManagerImpl.startApplication(DataSourceManagerImpl.java:606)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:58)
         at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
         at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
         at com.sap.pj.jmx.server.interceptor.MBeanServerWrapperInterceptor.invoke(MBeanServerWrapperInterceptor.java:288)
         at com.sap.engine.services.jmx.CompletionInterceptor.invoke(CompletionInterceptor.java:409)
         at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.invoke(BasicMBeanServerInterceptor.java:277)
         at com.sap.jmx.provider.ProviderInterceptor.invoke(ProviderInterceptor.java:258)
         at com.sap.engine.services.jmx.RedirectInterceptor.invoke(RedirectInterceptor.java:340)
         at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.invoke(MBeanServerInterceptorChain.java:330)
         at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.invoke(MBeanServerSecurityWrapper.java:287)
         at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:131)
         at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
         at com.sap.engine.services.jmx.ClusterInterceptor.invoke(ClusterInterceptor.java:766)
         at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:102)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.dbpool.exceptions.BaseInstantiationException: Cannot create instance ManagedConnectionFactoryImpl.
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.<init>(ManagedConnectionFactoryImpl.java:78)
         at com.sap.engine.services.dbpool.deploy.ContainerImpl.startDataSources(ContainerImpl.java:1779)
         ... 40 more
    Caused by: java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
    Found in negative cache
    Loader Info -
    ClassLoader name: [library:KedDriver]
    Parent loader name: [Frame ClassLoader]
    No references !
    Resources:
       E:\usr\sap\J2E\JC01\j2ee\cluster\server0\bin\ext\KedDriver\sqljdbc.jar
       E:\usr\sap\J2E\JC01\j2ee\cluster\server0\bin\core_lib\opensqlport.jar
    Loading model: {parent,local,references}
         at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:360)
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.<init>(ManagedConnectionFactoryImpl.java:74)
         ... 41 more
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.sleepClientThread(ParallelAdapter.java:270)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:127)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:245)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:4761)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:661)
         ... 31 more
         at com.sap.engine.services.dbpool.exceptions.BaseRemoteException.writeReplace(BaseRemoteException.java:178)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at java.io.ObjectStreamClass.invokeWriteReplace(ObjectStreamClass.java:896)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1011)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1332)
         at java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:367)
         at javax.management.MBeanException.writeObject(MBeanException.java:126)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:809)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1296)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1247)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1332)
         at java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:367)
         at com.sap.exception.BaseExceptionInfo.writeObject(BaseExceptionInfo.java:964)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:809)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1296)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1247)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1332)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1304)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1247)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
         at com.sap.engine.services.jmx.ResponseMessage.writeBody(ResponseMessage.java:177)
         at com.sap.engine.services.jmx.Message.writeMsg(Message.java:257)
         at com.sap.engine.services.jmx.Message.getMsg(Message.java:453)
         at com.sap.engine.services.jmx.Message.writeExternal(Message.java:505)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1267)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1245)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:66)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Thanks & regards
    Amrita

    Hello Amrita,
    The exception complains that it - Cannot create DataSource "AmritaKediaDS"
    The Data Source may not be defined correctly - the userid,
    password etc. or the database server name, port - one of them
    is not correct probably.
    Also check if you have included the following jar files for the driver:
    <li>spy.jar
    <li>mssqlserver.jar
    <li>sqlserver.jar
    <li>msutil.jar
    <li>base.jar
    <li>mssdup.jar
    <li>msbase.jar
    The driver class is
    com.microsoft.jdbc.sqlserver.SQLServerDriver
    and the URL is jdbc:microsoft:sqlserver://<yourserver>:1433
    I got this list from one of my working SQL Server drivers.
    Hope this helps.
    Easwar Ram
    http://www.parxlns.com

  • Probelm in document flow if sales order created with Propose item

    Hi,
      I am facing one pronlem  I have created some sales order  as one sales order was there as 100030636  then i have created new sales order by pressing the icon propse item ->sales document default material with quanity  then ref. to this in new sales order  all item with quanity as per order comes in the new order 100030637    but when i check the document flow of order it is showing as below
    100030636  being proseesd
    100030637  OPEN,
    as there si no link between those to  just to copy all the material from old SO i have use propse item , so how this link can be removed  so that in the document flow of 100030637  the order 100030636  should not come.
    regards,
    zafar

    Dear Zafar,
    Check if there is a copy control between your sale order types in VTAA.
    If yes, then in the item category, uncheck 'Update document flow' and then check.
    Thanks & Regards,
    Hegal K Charles

  • Probelms Creating a New Predefined Data Item in DataSocket

    I am doing a simple test using datasocket between two computers.  When I use the "SampleString" predefined data item I can write my string value to the data socket server, which is on the same computer, and read it on a networked computer.  When I create my own new predefined data item it doesn't work.  I get an error saying that I have insufficient priveleges to read, write, or create items in the datasocket server.  I have allowed anyhost to read or write to my new predefined item so I wouldn't think this would be a problem.  Any ideas?
    Solved!
    Go to Solution.

    JordanL,
    Can you provide a screenshot or desciription of the error you are getting? I found these two documents that sound related.
    DataSocket Error: "Not permitted to write data item (80004005)"
    DataSocket Error: "Not permitted to create data item (80004005)"
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

  • Probelms createing table as sysdba...

    On Oracle 9.2.06 on HP-UX, I'm running sqlplus "/ as sysdba" and trying to create thi table:
    CREATE TABLE CUSTOM.AUDIT_TRANS_DUMP_201110
    (dstrct_code varchar(4),
    process_date varchar(8),
    transaction_no varchar(11),
    userno varchar(4),
    rec900_type varchar(1),
    rec900_type_desc varchar(50),
    tran_type varchar(3),
    tran_desc varchar(50),
    tran_group_key varchar(28),
    line_no varchar(4),
    account_code varchar(28),
    cost_center varchar(10),
    batch_no varchar(10),
    creation_date date,
    creation_time varchar(6),
    full_period varchar(6),
    debit_amt number,
    credit_amt number,
    j_description varchar(40),
    currency varchar(4),
    creation_user varchar(10),
    created_by varchar(80),
    appr_user varchar(10),
    appr_by varchar(80))
    TABLESPACE USERS
    NOLOGGING
    NOPARALLEL
    NOCACHE;
    When I log on as / sysdba - aren't I logged on as SYS which should be able to create a table?
    I'm getting this error.

    user13716252 wrote:
    On Oracle 9.2.06 on HP-UX, I'm running sqlplus "/ as sysdba" and trying to create thi table:
    CREATE TABLE CUSTOM.AUDIT_TRANS_DUMP_201110
    (dstrct_code varchar(4),
    process_date varchar(8),
    transaction_no varchar(11),
    userno varchar(4),
    rec900_type varchar(1),
    rec900_type_desc varchar(50),
    tran_type varchar(3),
    tran_desc varchar(50),
    tran_group_key varchar(28),
    line_no varchar(4),
    account_code varchar(28),
    cost_center varchar(10),
    batch_no varchar(10),
    creation_date date,
    creation_time varchar(6),
    full_period varchar(6),
    debit_amt number,
    credit_amt number,
    j_description varchar(40),
    currency varchar(4),
    creation_user varchar(10),
    created_by varchar(80),
    appr_user varchar(10),
    appr_by varchar(80))
    TABLESPACE USERS
    NOLOGGING
    NOPARALLEL
    NOCACHE;
    When I log on as / sysdba - aren't I logged on as SYS which should be able to create a table?
    I'm getting this error.what error?

  • Probelm creating distribution model !

    After creating the distribution model  when i am trying to distribute it.Getting the following error "function MODEL_VIEW_REPLICATE"
    doesnot exists.
    Can anyone help ?

    Hi Bluefox,
    Do you have your RFC Destination configured correctly in SM59?
    You may also want to take a look at the following post for additional items to check.
    Idocs Error
    Good luck,
    Mike

  • CPIC-CALL Transaction program not registered Error while creating RFC Desti

    Hi All,
    I am trying to create a new RFC Destination.
    Details I have provided are..
    1.RFC Destination Name
    2.Connection Type - TCP/IP
    3.Description
    4. Activation Type - Registered Server Program.
    5.Program Id.
    6. Gateway Host and Gateway Service.
    But When I Test the connection, I am getting the following error.
    <b>" program xyz not registered / CPIC-CALL: 'ThSAPECMINIT'# Transaction program not registered"</b>
    However I was able to create and connect RFC Destinations successfully previously.
    I am not SAP guy. Could someone help resolve this issue.
    Thanks,
    Phani

    hi Sekhar,
    I request you to please help me out in this issue. I am getting similar kind of problem. I am trying to replicate the customer from CRM to R/3 and i get a bdoc message in SMW01 that "RFC connection failed please press the save button again". When the basis team further investigated they came up with the below error..
    User: CRREMOTE (Client: 071)
    Destination: OCR (handle: 1, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1462
    CPIC-CALL: 'ThSAPECMINIT'
    Transaction program not registered
    DEST =OCR
    HOST =%%RFCSERVER%%
    PROG =dpssrfc
    Trace file opened at 20061121 140451 EST SAP-REL 640,0,109 RFC-VER
    3 804778
    resize I/O buffer to 28000 bytes
    >>>> [2] MQ_LINK      : TCP  <ac: 3> K %%RFCSERVER%% >>> OPEN
      {45632F14-288E-0046-0000-0000A888A7AA}-
    ======> CPIC-CALL: 'ThSAPECMINIT'
    can you please tell me where can be probelm. Regarding your message, where can i get the communication channel to assign the program id.
    Awaiting your reply,
    Thanks & Regards,
    Yogesh

Maybe you are looking for

  • What's wrong with my Java?

    Hi all! While doing a little maintenance under AppleJack, I've noticed for the umpteenth time that a lot (and I mean a lot, like, dozens) of permissions related to Java were repaired. There are literally tons of them, each time I repair permission, w

  • Zen Nano 1GB (not plus) not playing DRM audio bo

    Okay. So I've read very similar problems here, but none quite like mine. I've read through my manual (actually, I only have the downloaded manuals, and there doesn't seem to be one for a Zen Nano GB... It's not a Plus and it's not a Nano 52MB). My wh

  • Bootcamp.msi ?

    I'm trying to update my Boot Camp drivers to 3.0 with the Snow Leopard install disk, but I keep getting this error in XP: The feature you are trying to use is on a network resource that is unavailable. Click OK to try again, or enter an alternate pat

  • When upgrading to Lion, will the documents, photos etc get wiped off..?

    When upgrading to Lion, will the documents, photos etc get wiped off..?

  • Lightroom 3 to Photoshop CS5 presets differ

    When I move an image from lightroom to Photoshop then save the image the resulting image differs when applying the same preset.  I notice a difference under calibration profile; the original (lightroom) file defaults to Adobe Standard while the psd f