Order Interface Example

Hello,
I need an example on how to insert data into the oe_headers_interface and oe_lines_interface for order insert and cancellation, does anyone has this examples and show them to me so I can use them in a procedure. Do I need to also populate de PO open interface tables? Please advice.
Also does anyone know if there a way that once an order is created in application base tables, be able to updated thru an api or an interface?
Thanks for your quick responses.

-- To cancel Order lines
INSERT INTO OE_LINES_IFACE_ALL
(order_source_id
,ORIG_SYS_DOCUMENT_REF
,orig_sys_line_ref
,CHANGE_SEQUENCE
,operation_code
,created_by
,creation_date
,last_updated_by
,last_update_date)
SELECT orl.order_source_id,orl.orig_sys_document_ref,orl.orig_sys_line_ref,-100,'CANCEL',23583,SYSDATE,23583,SYSDATE
FROM pel_sx_orders a,oe_order_headers_all orh,oe_order_lines_all orl
WHERE SHIPTYPE = 'BN'
AND EXISTS ( SELECT 1 FROM pel_sx_orders b WHERE b.ordernum=a.ordernum AND a.parent=b.line)
AND a.ordernum = orh.orig_sys_document_ref
AND orh.header_id = orl.header_id
AND orl.line_number=a.line
AND orl.cancelled_flag <> 'Y'
INSERT INTO oe_headers_iface_all
(order_source_id
,ORIG_SYS_DOCUMENT_REF
,CHANGE_SEQUENCE
,operation_code
,created_by
,creation_date
,last_updated_by
,last_update_date
,force_apply_flag)
SELECT DISTINCT orl.order_source_id,orl.orig_sys_document_ref,-100,'UPDATE',23583,SYSDATE,23583,SYSDATE,'Y'
FROM pel_sx_orders a,oe_order_headers_all orh,oe_order_lines_all orl
WHERE SHIPTYPE = 'BN'
AND EXISTS ( SELECT 1 FROM pel_sx_orders b WHERE b.ordernum=a.ordernum AND a.parent=b.line)
AND a.ordernum = orh.orig_sys_document_ref
AND orh.header_id = orl.header_id
AND orl.line_number=a.line
AND orl.cancelled_flag <> 'Y'     
INSERT INTO oe_actions_iface_all
(order_source_id
,ORIG_SYS_DOCUMENT_REF
,orig_sys_line_ref
,CHANGE_SEQUENCE
,operation_code)
SELECT orl.order_source_id,orl.orig_sys_document_ref,orl.orig_sys_line_ref,-100,'CANCEL'
FROM pel_sx_orders a,oe_order_headers_all orh,oe_order_lines_all orl
WHERE SHIPTYPE = 'BN'
AND EXISTS ( SELECT 1 FROM pel_sx_orders b WHERE b.ordernum=a.ordernum AND a.parent=b.line)
AND a.ordernum = orh.orig_sys_document_ref
AND orh.header_id = orl.header_id
AND orl.line_number=a.line
AND orl.cancelled_flag <> 'Y'     
I used these scripts recently you may want to modify them accordingly,after this run the Order Import program

Similar Messages

  • Example Work Order Interface - Resource add

    Can anyone give me an example load script for wip_job_schedule_interface and wip_job_dtls_interface tables? The documentation has a couple of errors and if I could just see one example that works I think I could figure it out. I have an existing work order and just want to be able to add a resource using the work order interface.
    Any help you can give me would be greatly appreciated!!
    Thanks,
    Joe
    p.s. I am getting invalid value for load type when I use the following:
    insert into wip_job_schedule_interface(
    allow_explosion
    ,created_by
    ,created_by_name
    ,creation_date
    ,group_id
    ,header_id
    ,last_update_date
    ,last_updated_by
    ,last_updated_by_name
    ,load_type
    ,process_phase
    ,process_status
    ,wip_entity_id
    --,wip_entity_name
    --,line_code
    --,line_id
    ,organization_id
    --,organization_code
    ,start_quantity
    values(
    'Y'                               --allow explosion
    ,'1008119'                     --created_by
    ,'JCOLLINS'                     -- created by name
    ,sysdate           -- creation date
    ,'104747'      -- GROUP ID USE WIP_JOB_SCHEDULE_INTERFACE_S
    ,'2'                              --HEADER_ID
    ,sysdate                    -- last_update_date
    ,'1008119'                --last updated by
    ,'JCOLLINS'               --last updated by name
    ,'3'                    --load_type
    ,'2'                    --process_phase
    ,'1'                    --process_status
    ,'136715'                    --wip_entity_id
    ,'3159'                    --,organization_id
    ,'1'
    insert into wip_job_dtls_interface(
    --parent_header_id,
    group_id,
    assigned_units,
    autocharge_type,
    basis_type,
    completion_date,
    load_type, -- 1 for loading a resource
    operation_seq_num,
    process_phase,
    process_status,
    resource_id_old,
    resource_id_new,
    resource_seq_num,
    scheduled_flag,
    standard_rate_flag,
    start_date,
    usage_rate_or_amount,
    uom_code,     
    wip_entity_id,
    --wip_entity_name,
    organization_id,
    substitution_type,
    last_update_date,
    last_updated_by,
    creation_date,
    created_by,
    schedule_seq_num
    values(
    --'2'                              
    '104747'                -- group_id
    ,'1'                          --assigned_units,
    ,'1'                          --autocharge_type,
    ,'1'                          --basis_type,
    ,sysdate + 360               --completion_date,
    ,'1'                          load_type,                            1 for loading a resource
    ,'10'                          --operation_seq_num,
    ,'2'                         --process_phase,
    , '1'                          --process_status,
    ,'4267'                         --resource_id_old
    ,'4267'                         --rsource_id_new
    ,'50'                         --resource_seq_num,
    , '1'                         --scheduled_flag,
    ,'1'                          --standard_rate_flag,
    ,sysdate                     -- start_date,
    ,'1'                          --usage_rate_or_amount
    ,'HR'                          -- uom_code,     
    ,'136715'                     -- wip_entity_id
    ,'3159'                     -- organization_id
    ,'3'                          -- substitiution_type
    ,sysdate                     -- last_update_date
    ,'1068'                     --last_updated_by
    ,sysdate                     -- creation_date
    ,'1068'                     -- created by
    ,'40'                         --schedule_seq_number
    );

    Please find an example : we replace a group of resources by another group of resources:
    INSERT INTO WIP_JOB_SCHEDULE_INTERFACE
    (group_id
    ,header_id
    ,wip_entity_id
    ,organization_id
    ,first_unit_start_date
    ,firm_planned_flag
    ,status_type
    ,load_type
    ,process_phase
    ,process_status
    ,description
    ,created_by
    ,creation_date
    ,last_update_date
    ,last_update_login
    ,last_updated_by)
    VALUES
    (i_group_id
    ,i_job_id
    ,i_job_id
    ,i_organization_id
    ,i_first_unit_start_date
    ,i_firm_planned_flag
    ,1 -- STATUS_TYPE: Unreleased
    ,3 -- LOAD_TYPE: Update standard or non-standard Discrete Job
    ,2 -- PROCESS_PHASE: Validation
    ,1 -- PROCESS_STATUS: Pending
    ,i_description
    ,g_created_by
    ,g_creation_date
    ,g_last_update_date
    ,g_ast_update_login
    ,g_last_updated_by);
    INSERT INTO WIP_JOB_DTLS_INTERFACE
    (group_id
    ,wip_entity_id
    ,organization_id
    ,parent_header_id
    ,operation_seq_num
    ,department_id
    ,resource_id_old
    ,replacement_group_num
    ,resource_seq_num
    ,resource_id_new
    ,usage_rate_or_amount
    ,uom_code
    ,load_type
    ,substitution_type
    ,process_phase
    ,process_status
    ,description
    ,created_by
    ,creation_date
    ,last_update_date
    ,last_update_login
    ,last_updated_by)
    VALUES
    (i_group_id
    ,i_job_id
    ,i_organization_id
    ,i_job_id
    ,r_operations.operation_seq_num
    ,r_operations.department_id
    ,r_operations.resource_id
    ,r_operations.replacement_group_num
    ,r_operations.resource_seq_num
    ,r_operations.new_resource_id
    ,r_operations.usage_rate_or_amount
    ,r_operations.uom_code
    ,1 -- resource
    ,3 -- change
    ,2 -- validation
    ,1 -- pending
    ,i_description
    ,g_created_by
    ,g_creation_date
    ,g_last_update_date
    ,g_last_update_login
    ,g_last_updated_by);

  • How to run Sales order interface

    Hi All,
    I am trying to perform a task in vision instance. The task is creating a test data in a excel sheet and writing a code for moving the data from excel sheet to order interface tables and then run a concurrent program to move data from interface tables to main order header and lines tables. Can anybody suggest me some links where i can find the steps to perform this process .
    Thanks in advance,
    HK

    Please search/google before posting.
    If you have a large number of rows, you can save the excel as csv and load the data into interface table using sqlloader.
    If the volume is less, you can use TOAD's excel import feature
    OR you can build insert statements using excel's concatenate function.
    After loading the interface table or staging table, perform your validations and then run order import.
    See http://www.orafaq.com/forum/t/123225/2/ for sample code.
    Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • SOA Suite Order booking example error

    Hello!
    I have installed a SOA Suite 10.1.3.1.0 and SOA Demo order booking example. But SOAOrderBooking BPEL process doesn't work. I have this error:
    file:/D:/WORK/OraSOA/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_SOAOrderBooking_1.0_937b09d1bd8dae1b33b028b2871aef63.tmp/OrderSequence.wsdl [ OrderSequence_ptt::OrderSequence(OrderSequenceInput_msg,OrderSequenceOutputCollection) ] - WSIF JCA Execute of operation 'OrderSequence' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active.]
    ; nested exception is:
         ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active.]
    Caused by Исключение [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Внутреннее исключение: java.sql.SQLException: The method 'commit' cant be called when a global transaction is active. Error Code:0.
    I read some topics on this forum about this problem, but I still can't find out out any solutions. Could you help? Thanks in advance.

    try to check this Errors using external transaction controller in session bean + POJO conf.
    Also, can you tell us more about your DB Adapter? are you executing any Pl/SQL proc ? Did you try to change anything in toplink file ro WSDL file, like a field or the query ?

  • Need The Doc of Sales Order Interface

    Hi,
    I would like to import the Sales order Through Sales Order Interface. I need the Proper Metalink document ID who guides me to detail process of import sales order interface tables and complete scnerio. Please tell me the Doc ID of Sales order Open Interface.
    Thanks

    Check this out:
    http://download.oracle.com/docs/cd/B11454_01/11.5.9/acrobat/115omapi.pdf
    Neeraja

  • HR strutural Authorization check in the Lean order Interface (LORD)

    Hi ,
    We place Quotations , Orders in CRM 7.0 , via the Lean order Interface Screen (LORD) . So users in ECC have HR structural authorization and they seems to the checked ( for the HR# part of the Sales Team , and comming accross as partner function in the Quotations , Orders documents )
    Can we avoid the HR structural Authorization check in the Lean order Interface ?

    Dear Christophe,
    I do not understand the requirement...you create ERP orders via CRM interface, and you have set up authorization in ERP for the users. Why do you want to prevent the authority check when coming from CRM when it is needed ?
    However please consider note 1446253 quesiton 9.
    You might activate or deactivate the "current user" flag in sm59 for your ERP system.
    Hope this information helps...
    Regards
    Rene

  • HT201250 When restoring Time Machine after a failure, does it also restore the files to the same order, for example - within iPhoto I have pics/ videos in folders and sub folders organised as family/events etc - will it go back to this exact order after a

    When restoring Time Machine after a failure, does it also restore the files to the same order, for example - within iPhoto I have pics/ videos in folders and sub folders organised as family/events etc - will it go back to this exact order after a restore?

    Hi Stavros0203,
    When restoring your entire system from a Time Machine backup, it is restored to the state it was when that backup was made. See this article for reference -
    OS X Yosemite: Recover your entire system
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Goods Receipt for Production Order SDK example

    Hi all,
    Is it possible to do a goods receipt for a Production Order with the SDK?
    (I've tried but have no ideia hoe to fill the Documents & Document_Lines objects)
    If somebody could help me by providing an example, it will be great!
    Thanks all!
    mdias

    Ok, I've found the solution.
    I only need to set BaseType = 202 of my Documents object.
    Thanks anyway,
    mdias

  • India localization receipt error, import standard purchase order interface

    Hi
    I created PO using PO interface and then imported PO in Incomplete status. Now after applying taxes(India localization) i send it for approval and then tried creating receipt. at this point i got an error message which is about trigger JAI_RCV_RT_BRIUD_T1 and some routine and all.
    After doing little diagnostic here and there, i found that If i create Manual PO and apply Taxes i.e. Open Purhcase Order(Localized) select line level click on "Taxes" and apply a Tax on it and precedence, just after "Rate" there is a field of Curr which is defaulted with INR.
    In case of Import PO, at order localized form when I apply Tax, the field Curr is Null.
    Now when I somehow put currency INR in imported PO(by making that field editable and taking INR from LOV) everything goes smooth.
    So my doubt is, why INR is not coming by default at Tax screen at PO localized form when i create PO using interface.

    Hi
    Do you have a copy of your insert statement?
    regards

  • Purchase Order Interface

    Hi All
    I have below requirement Please suggest some solution on HOW SHOULD I PROCEDE.
    I Have below Info :
    1)<b>Aim :</b>  I have to create an Interface from Legacy system to SAP for Purchase Order creation.
    2)Legacy system will send a ASCII file, having proper structure. The file is translated into some Idoc (May be ORDERS or some other <b>U CAN SUGGEST</b>..) inside the middlewere XI.
    3) Idoc will reach SAP R3 ECC and here I need to create corresponding Purchase Order.
    4) One file will have many PO create and change.
    How can I procede and accomplish with this requirement.?
    <b>Give me what should I do step by step.</b>
    The good answers will get most of the points.
    Regards
    Tulip

    Dear Sandeep,
    Thanks alot for the help. After your instruction when I run concurrent request following message show.
    --> To get the log message for PDOI, please use the following id to query against FND_LOG_Messages Table: AUDSID = 8621728
    --> Concurrent request completed successfully.
    But No data found in the table "fnd_log_messages"
    And Neither data deleted from PO_Header_interface table nor inserted in PO_Headers_All and other detail tables.
    Can you please provide me the script for PO_Headers_Interface, Lines and Distribution.
    Regards,
    Siraj Gul

  • Purchase Order Interface Error

    Can any body help me out to resolve the issue.
    After inserting in the PO interface tables (PO_HEADERS_INTERFACE , PO_LINES_INTERFACE, PO_DISTRIBUTIONS_INTERFACE ) when I run request ( Import Standard Purchase Orders) following error occured. And no error is inserted in PO_INTERFACE_ERRORS also.
    ORA-01422: exact fetch returns more than requested number of rows in Package po.plsql.PO_PDOI_PVT. Procedure init_sys_parameters.0
    ORA-01422: exact fetch returns more than requested number of rows in Package po.plsql.PO_PDOI_PVT. Procedure init_startup_values.10
    ORA-01422: exact fetch returns more than requested number of rows in Package po.plsql.PO_PDOI_PVT. Procedure start_process.50
    User-Defined Exception in Packaged po.plsql.PO_PDOI_Concurrent. Procedure POXPDOI.30
    Regards,
    Siraj Gul

    Dear Sandeep,
    Thanks alot for the help. After your instruction when I run concurrent request following message show.
    --> To get the log message for PDOI, please use the following id to query against FND_LOG_Messages Table: AUDSID = 8621728
    --> Concurrent request completed successfully.
    But No data found in the table "fnd_log_messages"
    And Neither data deleted from PO_Header_interface table nor inserted in PO_Headers_All and other detail tables.
    Can you please provide me the script for PO_Headers_Interface, Lines and Distribution.
    Regards,
    Siraj Gul

  • Sales order interface issue

    Hi All,
    I am trying to create a new sales order in OM tables thru interface tables in vision instance.
    After doing some research in google i created a staging table , populated rows into it, prepared pl sql code for data validations, then moved the data from staging table to OE_HEADERS_IFACE_ALL and OE_LINES_IFACE_ALL Tables, then i have run 'ORDER IMPORT' concurent program . This program completed without errors but i could not find the new sales order in the base tables OE_ORDER_HEADERS_ALL AND OE_ORDER_LINES_ALL tables.
    Can anybody suggest me any work around , what else has to be done to populate the new sales orders in the base tables.
    Thank you

    Go to the Order Corrections screen in Order Management and see if you can find the record there. Has it been processed?
    Did you populate the org_id correctly?
    See http://www.orafaq.com/forum/t/81151/2/ for some sample code.
    Refer to download.oracle.com/docs/cd/A60725_05/pdf/finoig.pdf for details of the required and optional columsn.
    Hope this helps
    Sandeep Gandhi
    Independent Consultant

  • Production Order Interface

    Hi All,
    I am having 2 questions in regards to the interface development:
    1. I have to read and validate following details from the production order and prepare a file to write it in to the Network directory.
        -> Get all production order from (Table : AFKO)
        -> Check the status of Production Order
             ( Get OBJNR from table AUFK and check status in table JEST)
        -> Get the details for Operation No. 0020
             Which table do I look for ? (
             Check the status for that operation ( Is it the same table I can use?)
             If status is PCNR(Partially Confirmed)  then which table I can look for to get the open quantity and actual quantity?
             Get details regarding Work Center (Table?). (AFKO->AFVC->CRHD)
    2. Second scenario, I am getting a file to update the production order.
         -> I have to update the basic start & finish date, work center & status.
              I can not use BAPI_PRODORDER_CHANGE for it because it does not update work center of particular operation.
              Is BDC is ideal for this situation?
    If I am using different table then please correct me.
    Thanks for you valuable suggestion.
    Harry

    Resolved by myself.

  • Internal Order: Interface trip stop: ERROR: unknown status = ''

    Hello,
    I have completed the setups for Internal orders:(the two orgs are within the same Operating unit, transfer method: direct)
    I am able to
    1. Create internal requisition
    2. Import Order
    3. Book, Pick Release and Submit ship confirm
    Now, the interface trip stop ( the inventory interface part) The status changes to shipped in Shipping transactions.
    The log file does not have an explicit error message. Posting truncated error message below. In more than one place, the following
    vague error messages appear.
    ERROR: unknown status = ''
    X_MASTER_STATUS ==> ERROR
    "Calling program unit WSH_DSNO.SUBMIT_TRIP_STOP
    Entering WSH_DSNO.SUBMIT_TRIP_STOP () (09/27/2006 09:11:09 PM)
    P_TRIP_STOP_ID ==> 4677
    PROCESSING DSNO IN TRIP STOP 4677
    RLM INSTALLED: YES
    Calling program unit RLM_TPA_SV.UPDATECUMKEY
    CHECKING EDI INSTALLATION STATUS
    EDI INSTALLED: YES
    DSNO PROFILE: ENABLED
    No Eligible Delivery for the DSNO
    Terminating program
    INTERFACETRIPSTOP: RESULT OF DSNO SUBMISSION FOR STOP_ID 4677 =
    Entering WSH_SHIP_CONFIRM_ACTIONS.UPDATE_COMPLETION_STATUS (WSHDDSHB.pls 115.310.11510.3) (09/27/2006 09:11:10 PM)
    p_num_stops ==> 1
    p_batch_id ==> is NULL
    X_MASTER_STATUS ==> NORMAL
    P_API_STATUS ==>
    X_NORMAL_COUNT ==> 0
    X_WARNING_COUNT ==> 0
    X_INTERFACED_COUNT ==> 0
    ERROR: unknown status = ''
    X_MASTER_STATUS ==> ERROR
    P_API_STATUS ==>
    X_NORMAL_COUNT ==> 0
    X_WARNING_COUNT ==> 0
    X_INTERFACED_COUNT ==> 0
    Exiting WSH_SHIP_CONFIRM_ACTIONS.UPDATE_COMPLETION_STATUS (09/27/2006 09:11:10 PM, .01 seconds)
    l_api_completion_status ==> INTERFACED
    l_previous_interface ==> TRUE
    Your help is greatly appreciated.
    Thank You,
    Somnath Subramanyam

    Hi somnath,
    U have enabled the DSNO (departure Ship notice outbound) in the profile option
    ECE_DSNO_ENABLED = yes. (through your log file)
    You go to e-commerce gateway responsibility --> go to setup --> profile option --> query this profile option and Change to no and then try again.
    Regards,
    Prasad

  • How to make J2EE order (persistence) example run?

    I just used:
    ant
    ant deploy
    and it gave me following error:
    deploy:
         [echo] localhost
         [echo] 8080
         [echo] order
         [echo] C:\glassfishv3\glassfish\docs\javaee-tutorial\examples\bp-project\ma
    in.xml/../../../../../../bin/asadmin.bat
         [echo] order
         [echo] SQL92
         [exec] Deprecated syntax, instead use:
         [exec] asadmin --port 4848 --host localhost deploy [options] ...
         [exec] com.sun.enterprise.admin.cli.CommandException: remote failure: Excep
    tion while loading the app : javax.ejb.EJBException: javax.ejb.CreateException:
    Initialization failed for Singleton ConfigBean
         [exec]
         [exec] Cannot create tables for application order. The expected DDL file or
    der_order_createDDL.jdbc is not available.
         [exec]
         [exec]
         [exec] Command deploy failed.That means without making any changes. Then I included the following in the build.xml taken from roster example:
    <target name="-pre-deploy" unless="netbeans.home" depends="init">
            <antcall target="start-db"/>
        </target>But the problem remains the same. The server.log shows:
    Caused by: javax.ejb.EJBTransactionRolledbackException
         at com.sun.ejb.containers.BaseContainer.mapLocal3xException(BaseContainer.java:2253)
         at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:2053)
         at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1955)
         at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:198)
         at com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate.invoke(EJBLocalObjectInvocationHandlerDelegate.java:84)
         at $Proxy264.createPart(Unknown Source)
         at order.ejb.__EJB31_Generated__RequestBean__Intf____Bean__.createPart(Unknown Source)
         at order.ejb.ConfigBean.createData(ConfigBean.java:36)
         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:597)
         at com.sun.ejb.containers.interceptors.BeanCallbackInterceptor.intercept(InterceptorManager.java:1006)
         at com.sun.ejb.containers.interceptors.CallbackChainImpl.invokeNext(CallbackChainImpl.java:61)
         at com.sun.ejb.containers.interceptors.CallbackInvocationContext.proceed(CallbackInvocationContext.java:109)
         at com.sun.ejb.containers.interceptors.SystemInterceptorProxy.doCallback(SystemInterceptorProxy.java:133)
         at com.sun.ejb.containers.interceptors.SystemInterceptorProxy.init(SystemInterceptorProxy.java:115)
         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:597)
         at com.sun.ejb.containers.interceptors.CallbackInterceptor.intercept(InterceptorManager.java:961)
         at com.sun.ejb.containers.interceptors.CallbackChainImpl.invokeNext(CallbackChainImpl.java:61)
         at com.sun.ejb.containers.interceptors.InterceptorManager.intercept(InterceptorManager.java:390)
         at com.sun.ejb.containers.interceptors.InterceptorManager.intercept(InterceptorManager.java:373)
         at com.sun.ejb.containers.AbstractSingletonContainer.createSingletonEJB(AbstractSingletonContainer.java:521)
         ... 38 more
    Caused by: javax.ejb.TransactionRolledbackLocalException: Exception thrown from bean
         at com.sun.ejb.containers.BaseContainer.checkExceptionClientTx(BaseContainer.java:4975)
         at com.sun.ejb.containers.BaseContainer.postInvokeTx(BaseContainer.java:4810)
         at com.sun.ejb.containers.StatefulSessionContainer.postInvokeTx(StatefulSessionContainer.java:1656)
         at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:2004)
         ... 62 more
    Caused by: javax.ejb.EJBException: Object: order.entity.Part@63b596 is not a known entity type.
         at order.ejb.RequestBean.createPart(RequestBean.java:53)
         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:597)
         at org.glassfish.ejb.security.application.EJBSecurityManager.runMethod(EJBSecurityManager.java:1056)
         at org.glassfish.ejb.security.application.EJBSecurityManager.invoke(EJBSecurityManager.java:1128)
         at com.sun.ejb.containers.BaseContainer.invokeTargetBeanMethod(BaseContainer.java:4087)
         at com.sun.ejb.containers.BaseContainer.__intercept(BaseContainer.java:5272)
         at com.sun.ejb.containers.BaseContainer.intercept(BaseContainer.java:5252)
         at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:190)
         ... 60 moreTo tell you the truth every example of the J2EE tutorials have some problems and can't be run smoothly. I can't run them as is and have to spent time figuring out what went wrong. Can anyone point out what went wrong?
    Thanks.
    Edited by: amishera2006 on Aug 1, 2010 8:26 PM

    Just remembered. The examples in other places like spring/hibernate, GWT, Android all works smoothly as it gets. And they all work exactly as they claim in their documentation. I think those companies give the coders more money than oracle/sun that is why they are not motivated enough to test their stuff before releasing.

Maybe you are looking for

  • How Can i Disable this Button (Screenshots)

    Hi, I need to disable 2 buttons (Approve - Reject) for a specific responsibility (+see screenshot link below+) http://img825.imageshack.us/i/44310429.jpg/ Path : Intercompany User --> Transactions: Inbound --> Search for transaction --> Update Transa

  • HP Office Jet Pro 8610 won't save as PDF

    After scanning I hit save and it saves it as a bitmap even when I change it to pdf.

  • Safari 2 finger swipe issue in youtube

    I recently updated my Safari to 7.0.3. If I start a youtube video and use the 'Two Finger Gesture' to go to the previous page, say youtube home page, the page is turning to the home page. But the video I started do not stop and is still playing in ba

  • Unable to open notification from Order

    Hi All, We have created order and created notifications and added to the order in the Objects tab. We are able to open all other notifications in the order, but we can not open one notification. Even this notification we are unable to open with T cod

  • Syslog clarification LMS3.2

    Hi All, I need some clarification about the syslog. 1) Syslog is enabled in LM3.2 installation time. where the log files are stored? 2) Syslog configuration is in which module? 3) Enabled the logging configuration int he switches, but i am nott getti