GeoMedia - Primary key types are not matching

I'm working on converting Access Spatial layers into Oracle Spatial layers using the Locator in Oracle 9i.
I have the Access PK as Long Interger
and the Oracle PK as Number (10,0).
I can't get around this error : Primary key types are not matching

Hi,
please refer to
http://www.oracle.com/technology/pub/notes/technote_access_migration.html
You may try the OWM (Oracle Migration Workbench), if your data are more complex than one or two tables.
regards, Andreas
long integer(access) Number(11,0)(default) Number(11,0) (recommended)
-----

Similar Messages

  • Primary key and relevant not null check constraints....

    Hi ,
    There are some constraints of primary key type and not null check constraints on columns which constitute each primary key....
    Should I/Do I have to drop them....????
    Do they burden the db at the time of data validation....????
    Thanks...
    Sim

    Hi,
    >>There are some constraints of primary key type and not null check constraints on columns which constitute each primary key..
    In fact, a column that constitutes a primary key, by default cannot accept NULL values. In this case, defines a PK column as NOT NULL would not be necessary.
    LEGATTI@ORACLE10> create table x (id number constraint pk_x primary key);
    Table created.
    LEGATTI@ORACLE10> desc x
    Name                  Null?    Type
    ID                    NOT NULL NUMBER
    LEGATTI@ORACLE10> select constraint_name,constraint_type,table_name,search_condition from user_constraints where table_name='X';
    CONSTRAINT_NAME                C TABLE_NAME      SEARCH_CONDITION                
    PK_X                           P X
    LEGATTI@ORACLE10> create table y (id number not null constraint pk_y primary key);
    Table created.
    LEGATTI@ORACLE10> desc y
    Name                  Null?    Type
    ID                   NOT NULL NUMBER
    LEGATTI@ORACLE10> select constraint_name,constraint_type,table_name,search_condition from user_constraints where table_name='Y';
    CONSTRAINT_NAME                C TABLE_NAME      SEARCH_CONDITION
    SYS_C006327381 C Y "ID" IS NOT NULL 
    PK_Y                           P Y
    LEGATTI@ORACLE10> alter table y drop constraint SYS_C006327381;
    Table altered.
    LEGATTI@ORACLE10> desc y
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER
    LEGATTI@ORACLE10> insert into y values (NULL);
    insert into y values (NULL)
    ERROR at line 1:
    ORA-01400: cannot insert NULL into ("LEGATTI"."Y"."ID")
    LEGATTI@ORACLE10> insert into y values (1);
    1 row created.
    LEGATTI@ORACLE10> insert into y values (1);
    insert into y values (1)
    ERROR at line 1:
    ORA-00001: unique constraint (LEGATTI.PK_Y) violated
    >>Should I/Do I have to drop them....????
    I don't see any problem, otherwise, drop the NOT NULL constraint is the same with alter the column table like below:
    LEGATTI@ORACLE10> create table z (id number not null constraint pk_z primary key);
    Table created.
    LEGATTI@ORACLE10> select constraint_name,constraint_type,table_name,search_condition from user_constraints where table_name='Z';
    CONSTRAINT_NAME                C TABLE_NAME                     SEARCH_CONDITION
    SYS_C006328420 C Z "ID" IS NOT NULL
    PK_Z                           P Z
    LEGATTI@ORACLE10> desc z
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER
    LEGATTI@ORACLE10> alter table z modify id NULL;
    Table altered.
    LEGATTI@ORACLE10> select constraint_name,constraint_type,table_name,search_condition from user_constraints where table_name='Z';
    CONSTRAINT_NAME                C TABLE_NAME                     SEARCH_CONDITION
    PK_Z                           P Z
    LEGATTI@ORACLE10> desc z
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBERCheers
    Legatti

  • Some key figure are not update for movement type 101

    Dear All,
    I have done load for Inventory and now i am finding that for some material the with movement type 101 the key figures are not getting populated, for these materials the values in characteristics is getting populated fine.
    I have loaded the data according to stranded procedure in "How to Load...."
    I have checked the values of material in R3 and it is there.
    Example of the record::
    Material    Plant Movement type  Calender Day    quanity Base Unit
    10101      01       350                     01.02.2006     20             KG
    10101        01       101                     05.07.2006                      KG
    10101         01      101                      10.07.2006                      KG
    The Quantity is not appearing in second and third record.

    Hi,
    Please check whether you have set  ''Rule groups''  at transfermation level . There you can set the conditions like materials having movement type X can be updated to one Key Figure and material having movement type Y can be updated to another Key figure.
    Please check whether you have set this option at transfermation level.
    For example, may be in your case materials from different plants are updating to different key figure.
    Thanks,
    Edited by: kavitha nagandla on Feb 17, 2010 7:19 AM

  • Postings for account type M ( posting key 99 ) are not defined

    Hi,
    I am trying to post vendor credit memo KG through FB01 using posting key 21 - Debit Vendor and posting key 99 - Credit Material.
    I am getting the error "Postings for account type M ( posting key 99 ) are not defined Message F5204".
    The posting key 99 is set for account type material. Is there anything else that need to be configured?
    Is there any other way that i can debit a vendor and credit material through FI postings (without purchase order)
    Thanks
    Sukumar

    Hi Ravi,
    I am also having the same issue.
    I want to load some costs to materials thorugh Finance module.  In that case i am trying to post the values through F-43 document.
    In posting key 89, but system not accepted.  As per your suggestion i am trying to take 81 posting key.  Then system is asking the GL, there is i select the Stock GL, system won't allow to post the values to the stock account. 
    So what will be the solution to add or to deduct any other charges to the material cost through finance module.

  • Supported Primary Key Types

    Could someone please help as I haven't been able to find the answer from the TopLink doc?
    In the TopLink's implementation of JDO Spec, what are the allowed the primary key types for a Persistence class?
    I appreciate your information.
    Haiwei

    Doug, thanks very much for your response.
    My immediate problem is this:
    I am getting an exception (see below) while trying to use Byte[] as the primary key type in my testing. I wonder whether TopLink supports Byte[] primary key type.
    I use TopLinks' getObjectById method.
    A more general question, does TopLink support other data types for primary key (java.util.Date, java.sql.Date, java.sql.Time, java.sql.Timestamp, java.util.GregorianCalendar, etc.)? Your response seems to say Yes. Could you please confirm?
    Here is the exception. The input Byte[] has value 25, with length of 1.
    [4/19/04 12:26:26:126 EDT] 78c09b9c SystemOut O ServerSession(2046122932)--Exception [TOPLINK-3001] (OracleAS TopLink - 10g (9.0.4) (Build 031126)): oracle.toplink.exceptions.ConversionException
    Exception Description: The object [[Ljava.lang.Byte;@4ffd9b9f], of class [class [Ljava.lang.Byte;], could not be converted to [class [B].Local Exception Stack:
    Exception [TOPLINK-3001] (OracleAS TopLink - 10g (9.0.4) (Build 031126)): oracle.toplink.exceptions.ConversionException
    Exception Description: The object [[Ljava.lang.Byte;@4ffd9b9f], of class [class [Ljava.lang.Byte;], could not be converted to [class [B].
         at oracle.toplink.exceptions.ConversionException.couldNotBeConverted(ConversionException.java:35)
         at oracle.toplink.internal.helper.ConversionManager.convertObjectToByteArray(ConversionManager.java:278)
         at oracle.toplink.internal.helper.ConversionManager.convertObject(ConversionManager.java:129)
         at oracle.toplink.internal.databaseaccess.DatabasePlatform.convertObject(DatabasePlatform.java:556)
         at oracle.toplink.internal.databaseaccess.DatabasePlatform.convertToDatabaseType(DatabasePlatform.java:581)
         at oracle.toplink.internal.databaseaccess.DatabasePlatform.appendParameter(DatabasePlatform.java:182)
         at oracle.toplink.internal.databaseaccess.DatabaseCall.appendParameter(DatabaseCall.java:110)
         at oracle.toplink.queryframework.SQLCall.translate(SQLCall.java:343)
         at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(CallQueryMechanism.java:129)
         at oracle.toplink.internal.queryframework.CallQueryMechanism.executeCall(CallQueryMechanism.java:111)
         at oracle.toplink.internal.queryframework.CallQueryMechanism.selectOneRow(CallQueryMechanism.java:584)
         at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRowFromTable(ExpressionQueryMechanism.java:792)
         at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectOneRow(ExpressionQueryMechanism.java:763)
         at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:340)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:498)
         at oracle.toplink.queryframework.ReadQuery.execute(ReadQuery.java:111)
         at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1968)
         at oracle.toplink.threetier.ServerSession.internalExecuteQuery(ServerSession.java:629)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1096)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1048)
         at com.ford.it.persistence.jdo.toplink.PersistenceManagerWrapper.getObjectById(PersistenceManagerWrapper.java:130)
         at com.ford.it.persistence.jdo.toplink.unittest.PersistenceManagerWrapperTest.testGetObjectById13(PersistenceManagerWrapperTest.java:423)
         at java.lang.reflect.Method.invoke(Native Method)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at org.apache.cactus.ServletTestCase.runCactusTest(ServletTestCase.java:291)
         at org.apache.cactus.ServletTestCase.runBare(ServletTestCase.java:263)
         at org.apache.cactus.server.AbstractWebTestCaller.doTest(AbstractWebTestCaller.java:156)
         at org.apache.cactus.server.AbstractWebTestController.handleRequest_aroundBody0(AbstractWebTestController.java:130)
         at org.apache.cactus.server.AbstractWebTestController.handleRequest_aroundBody1$advice(AbstractWebTestController.java:158)
         at org.apache.cactus.server.AbstractWebTestController.handleRequest(AbstractWebTestController.java)
         at org.apache.cactus.server.ServletTestRedirector.doPost_aroundBody2(ServletTestRedirector.java:138)
         at org.apache.cactus.server.ServletTestRedirector.doPost_aroundBody3$advice(ServletTestRedirector.java:158)
         at org.apache.cactus.server.ServletTestRedirector.doPost(ServletTestRedirector.java)
         at org.apache.cactus.server.ServletTestRedirector.doGet_aroundBody0(ServletTestRedirector.java:109)
         at org.apache.cactus.server.ServletTestRedirector.doGet_aroundBody1$advice(ServletTestRedirector.java:158)
         at org.apache.cactus.server.ServletTestRedirector.doGet(ServletTestRedirector.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:114)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:431)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Haiwei

  • Javax.ejb.ObjectNotFoundException: Bean with primary key '555' was not foun

    When I delete a particular entity bean instance, i get the following exception:
    javax.ejb.ObjectNotFoundException: Bean with primary key '555' was not found by 'findByPrimaryKey'.
    But, the instance is being deleted from the database.
    Anyone please help,
    Thank u,
    Seshu

    Greetings,
    When I delete a particular entity bean instance, i get
    the following exception:
    javax.ejb.ObjectNotFoundException: Bean with primary
    key '555' was not found by 'findByPrimaryKey'.Interesting. How is your client calling the bean's remove method? Directly or through its home? Is it calling findByPrimaryKey before or after the call to remove? What is the PrimaryKey class type of your bean? Is the client passing a correct instance? All are things to be considered when troubleshooting your application. If more assistance is required, then seeing the relevant source code would be more helpful.
    But, the instance is being deleted from the database.As is generally to be expected. No?
    Anyone please help,
    Thank u,
    SeshuRegards,
    Tony "Vee Schade" Cook

  • The document type does not match any of the given schemas

    Hi,
    I have created an envelope schema.To precisely process inbound envelope documents,in the xml disassembler component i have used the Documentspec and envelopespec properties.
    in the properties i have the the schema name,Assemblyname
    but i have got the error like The document type does not match any of the given schemas.
    I have verified the schemas have deployed properly.
    can you help me on this?

    Hi Sujith,
    As pointed out by Johns lot's of thing can cause this. You have to analyze lot of things, but this kind of error indicates that the message type that you are debatching is not deployed. For Example :
    If you are debatching on Order than Order schema should be deployed in the admin console.
    One more point that you need not to specifiy Documentspec and envelopespec properties until and unless there are multiple schema's of same message type deployed in different assembly. The dissasembler component will automaticaly disassemble the messages
    just looking after the body XPATH.
    Regards,
    Rahul Madaan

  • Getting error when view - Requested data type does not match with existing

    I have the siebel web service
    In the BI publisher as mentioned in the 'Siebel_BI_Publisher_Integration_Concepts.pdf', I have imported the siebel web service
    BI can recognize the 'Web service' and methods.
    I have created the paramters. The data type is 'String'
    When I try to view the report using the BI publisher, I am getting teh following error in th UI
    "Requested data type does not match with existing data type"
    This is the first time I am using BI publisher to call the Siebel web service. I don't know what this error means
    I don't know whether any log file generated wit the details of this erro message
    Any help is much appriciated
    Thanks,
    Kavitha

    Hi all,
    have you find a fix for this issue? Im facing the same situation, using Complex type, and String data type both in the service and Bi publisher. We are consuming CC&B services, and we have noticed this error appears when BIPublisher is running on WebLogic (10.3) but it does not appear when BIPublisher is running on OC4J , of course running the same report on both application servers.
    Any idea?
    Thanks a lot, regards
    Nestor

  • My 6, 7, y, u, h, j, n, m key's are not working on my hp pavilion g6 PLEASE HELP!!!

    my 6, 7, y, u, h, j, n, m key's are not working. they used to work but even then i had to hold down one of those unresponsive keys to get the others to work now i can't use them at all!! i have to use the on screen keyboard which is really annoying but is the only way i can use my laptop
    i have a hp pavilion g6 4GB  i3 core 64 bit windows . i think the warrenty has expired as it is a refurbished laptop

    Hello momomhammed:
    I think you forgot to type in HP g6 1239as because I could not find HP g6 123sa. This is the only steps they give for your lat top. http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01458194&tmp_task=solveCategory&cc=uk&dlc=en&lc​... I would do the reset direction first then do the update drives for it. To see if that fixes the issue. If it doesn't then yout computer needs repairing. frrw.

  • Totals for CKF are not matching

    Hi All,
    We recently upgraded to BI7 and we created Aggregates in the system. We have few calculated key figures (CFK) in the system. When we execute the queries they are not hitting the aggregates in the system because of the property, calculation before aggregation.
    We changed that property calculation before aggregation to calculation after aggregation then the queries are hitting the aggregates. So we moved the aggregates to BQ and BP. There the values for the totals in the report are not matching. For ex: we have value 10 for a CKF in five rows then the total in the result row should be 50 but that is not the case now, it is showing as 45 or 55 some value. The totals are not matching in all the reports where this CKF is involved.
    But when we keep the calculation before aggregation property as it is, then the total values for this CKF are matching in the report. But now the problem is that the queries do not hit the aggregates.
    So instead of going for a CKF we tried with creating a formula in the query with the same calculation as it is in the CKF, but for that formula also the total values are not matching. When we check and compared the formula calculation with other CKFu2019s in the system, we found out that those CKFs which involved the calculations such as multiplication and division the totals are not matching but if the CKF is containing addition and subtraction then the Totals are matching. This is the same case in across all the systems except in Production.
    We have testing system (BT), which is a copy of production; the totals are matching for this CKF in one report. But if we include the same CKF in some other report then the totals for this CKF are not matching in that report.
    We are unable to figure out why the same CKF with same properties and calculations is not behaving in the same way across all the systems. If anybody comes across such issue please let us know how to proceed further.
    Thanks for your patience.
    Hope for your response...

    Hi himanshu,
    If you are using Addition, subtraction with Multiplication & Division, just maintain all in the Sequence how you required using brackets.
    If you are using formula in Row & Column also try to use formula Collision.
    http://help.sap.com/saphelp_nw04/helpdata/EN/d2/02223c5f00612be10000000a11402f/content.htm
    Regards,
    Rajdeep.

  • Activity prices are not matching compare to previous year

    Dear Sap Guru's,
    Activity prices are not matching for the year 09 compare to 08.But standard cost estimation is correct.how it is possible.can you guide me how system calculates activity prices.
    Ex: My client having business in egypt.Last year they started thier business at this time activity prices are maintained for INDO OH :13.81, Labur 0.44 per Min plan price 1.It is common for whole year -08.
          Now I copied the same activity prices for this year through kp97 by selecting object currency for both plan and cost.under planning currency tab.
    Activity prices are showing for IND oh is  17.14 ; instead of 13.81 and labour it is showing 0.55 instead of 0.44.
    Pls guide me.
    Regards
    KUMAR.

    Hi,
    guess you are using a controlling area currency (A) thats different from company code currency (B).
    First check if the prerequisites within KP97 / button "planning currencies" are met when ticking "object currency" and using the F1-help especially the point
    "It only makes sense to activate this indicator if you have activated all
    currencies
    1.  when copying: in the source and target versions".
    Whatever the reason is, your KP97 copy did the following thing:
    For each CO area and plan version there are settings for each fiscal year to be made (IMG: Controlling / General Controlling / Organization / maintain versions, mark the relevant version choose "Controlling area settings", mark it again and choose "settings for ecah fiscal year".
    Compare your 2 fiscal years, which exchange rate type (can be different, normally its "P") and value date (its often the first day of the new FY) is used?
    If you have a difference in minimum one of the mentioned settings in CO version you might have different act. prices in comp. code currency.
    Your KP97 process copied the values in controlling area currency (A) and converted this numbers to comp. code currency (B) based on your CO-version settings.
    Best regards, Christian

  • Oracle Streams 'ORA-25215: user_data type and queue type do not match'

    I am trying replication between two databases (10.2.0.3) using Oracle Streams.
    I have followed the instructions at http://www.oracle.com/technology/oramag/oracle/04-nov/o64streams.html
    The main steps are:
    1. Set up ARCHIVELOG mode.
    2. Set up the Streams administrator.
    3. Set initialization parameters.
    4. Create a database link.
    5. Set up source and destination queues.
    6. Set up supplemental logging at the source database.
    7. Configure the capture process at the source database.
    8. Configure the propagation process.
    9. Create the destination table.
    10. Grant object privileges.
    11. Set the instantiation system change number (SCN).
    12. Configure the apply process at the destination database.
    13. Start the capture and apply processes.
    For step 5, I have used the 'set_up_queue' in the 'dbms_strems_adm package'. This procedure creates a queue table and an associated queue.
    The problem is that, in the propagation process, I get this error:
    'ORA-25215: user_data type and queue type do not match'
    I have checked it, and the queue table and its associated queue are created as shown:
    sys.dbms_aqadm.create_queue_table (
    queue_table => 'CAPTURE_SFQTAB'
    , queue_payload_type => 'SYS.ANYDATA'
    , sort_list => ''
    , COMMENT => ''
    , multiple_consumers => TRUE
    , message_grouping => DBMS_AQADM.TRANSACTIONAL
    , storage_clause => 'TABLESPACE STREAMSTS LOGGING'
    , compatible => '8.1'
    , primary_instance => '0'
    , secondary_instance => '0');
    sys.dbms_aqadm.create_queue(
    queue_name => 'CAPTURE_SFQ'
    , queue_table => 'CAPTURE_SFQTAB'
    , queue_type => sys.dbms_aqadm.NORMAL_QUEUE
    , max_retries => '5'
    , retry_delay => '0'
    , retention_time => '0'
    , COMMENT => '');
    The capture process is 'capturing changes' but it seems that these changes cannot be enqueued into the capture queue because the data type is not correct.
    As far as I know, 'sys.anydata' payload type and 'normal_queue' type are the right parameters to get a successful configuration.
    I would be really grateful for any idea!

    Hi
    You need to run a VERIFY to make sure that the queues are compatible. At least on my 10.2.0.3/4 I need to do it.
    DECLARE
    rc BINARY_INTEGER;
    BEGIN
    DBMS_AQADM.VERIFY_QUEUE_TYPES(
    src_queue_name => 'np_out_onlinex',
    dest_queue_name => 'np_out_onlinex',
    rc => rc, , destination => 'scnp.pfa.dk',
    transformation => 'TransformDim2JMS_001x');
    DBMS_OUTPUT.PUT_LINE('Compatible: '||rc);
    If you dont have transformations and/or a remote destination - then delete those params.
    Check the table: SYS.AQ$_MESSAGE_TYPES there you can see what are verified or not
    regards
    Mette

  • Received unexpected message type does not match expected type

    1.Two Biztalk Applications A,B  one for sending the request(A) and other application will send the response to A.
    2.I have two schema  Request and Response in Aplication A which i have exposed as webservice.
    3. Application B share the same response schema .
    I am using WSBasicHTTP sysnchronous ports to send and receive the message.
    WHen Application B send the response , i get the error  "unexpected message type does not match expected type "
    but i dont know why i get such error when the schemas are share by both application. Please advice
    Regards
    Suresh

    Hi Suresh,
    Whenever you are doing request-response like calling web service etc, i would suggest to use Passthrough pipeline while sending and use XML receive for receiving the message.
    Because when you are sending the message out it doesn't needs any promoted properties so you can use Passthrough this will avoid extra Assembling/Validation etc tasks performed by XMLSend pipeline.
    But when you are receiving response that time it expects MessageType property to be promoted because normally you will have receive shape configured to some Typed Schema. So you will have to use XML Receive pipeline.
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • Yeild and Activity Types are not coming on confirmation

    Dear Sir's
    Hope everyone fine by the grace of GOD.
    Friends i am facing a problem while doing Confirmation of production order in T.Code Co11n .Yeild(net production) is not picking from the Production order and also Activity types are not coming while doing confirmation.
    please help me out in this problem
    Best Regards,
    HAFIZ ABDUL HASEEB KHAN
    SC.PP Consultant

    Dear
    There are 3 possibilities to populate the activity  and yeild field:
    1) The system can propose them based on quantity, using the standard
    formula, directly after entry of the operation being confirmed please check it in your order first
    2) The system can propose them at the time of saving
    3) They can be manually entered ~ however using this option, formula
    will not recalculate using the settings from the Standard value key,
    set for the work centre.
    To set one of the above as default in customising, follow these steps:
    - Call transaction OPK0
    - Select the default Confirmation Profile SAP001 is being ticked marked. - Default Values , Qty and Service in OPK0
    - Select the Default tab and set the default for Quants and Services
    to 'Immediate Proposal' or 'Propose When Saving'
    These options allow you to choose whether the activity  and yeild proposal in
    C011N is given immediately after entry of the operation to be
    confirmed or upon saving the confirmation. However note that if
    you subsequently override these proposals by maually entering activity
    details, the formulae will not be recalculated and manually entered
    data will take presidence.
    Hope this is clear
    Regards
    JH

  • The product key entered does not match any of the Windows images available for installation. Enter a different product key.

    how do you manage to install windows 7 when the message on the screen is "The product key entered does not match any of the Windows images available for installation. Enter a different product key. "

    That's a really helpful answer and not smug at all, thanks Carey.
    I just downloaded a DVD image from my university's MSDN Academic Alliance program, named "Microsoft
    Windows 7 with Service Pack 1 Debug/Checked Build 64-bit (English)", which I wanted to use to install over an existing 32-bit version. I thought the install screen was giving this weird unskippable error described in the OP before I even entered
    a key because the 32-bit key I had used on the HDD was somehow interpreted to be used in an upgrade, but no. Even after I wiped the hard drive, this error persisted.
    Guess I'll go Google some more on how to install my legit copy of Windows, because this self-serving shit sure isn't helping.
    edit: IF YOU GOOGLED THIS AND ARE STILL LOOKING FOR YOUR ANSWER, CHECK HERE:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_install/the-product-key-entered-does-not-match-any-of-the/47e6f575-5792-404b-9b7f-2065bdb91011

Maybe you are looking for

  • Create a new customer in EBS

    i am using BPEL to create a new customer in EBS. can any one let me know which module does this belong to? and which interface tables and which concurrent programs should i call ? I am new to EBS, let me know what details shud be provided while creat

  • PDFing from PPT 2007 using Acrobat 9 Pro - custom options

    I have just installed Adobe Acrobat 9 Pro and i have (unfortunately)PowerPoint 2007. I need to be able to export as a pdf to very specific parameters for our print house and they do not want to play with each other very well. PPT has an idiot button

  • HOW DO I SEND "PAGES" IN EMAIL SO THAT OTHERS CAN READ IT?

    HOW DO I SEND "PAGES" DOCUMENTS SO PC'S CAN READ THEM?

  • GDS 2.0 and changes to PI maps

    Hi Everyone, I am hoping that someone can help clear up some confusion. We currently use PI 7.11 and use graphical mappings for the transfer of data between R3 and GDS 1.0.  We are upgrading to GDS 2.0 in the next couple of weeks but need confirmatio

  • Weird 23" display pattern (picture)

    Hi there, A few months ago, my 23" cinema display has developed some kind of "marble" pattern , which appears to be underneath the screen surface. I have followed numerous discussions on color consistency woes with this particular monitor, but I have