OWB package import error. PRS-00318. In need of urgent help

Hello everyone,
I am having a weird error when i try to import a package in owb. Saying "PRS-00318: SQL Error encountered while updating CMPALLFOLDERFCO for key ********************************* Please contact Oracle Support with the stack trace and details on how to reproduce it. " ( neglect the ** i didnt want to write that bit )
This started to happen a couple of days ago. When i try to import a package or re-import them it seems like the procedures in the packages all seems like they are requiring a parameter ( i understand it in the import window, the paranthesis after the procedure name like procudre_name( ) ) But actually there is not a parameter required for the procedure to work. It is not declared at all. When i hit the import button it gives me the error below.
Metadata Import Result Report
Date: Jan 31, 2011 7:41:38 AM
Installed Module Information:
Physical Name: ........... ****************
Logical Name: ............ ****************
Application Type: ........ Oracle Warehouse Application
System Type: ............. Oracle Database 8i/9i/10g
Database Link: ........... owb_8467
Dictionary Type: ......... DATABASE_DICTIONARY
Schema/Application System: null
The following actions have been applied:
+ View
+ Transformation
+ MS_********************* : Created with Second Class Object Failure
+ Package Spec ................. : Created
+ Package Body ................. : Created
+ EX_*******************() .. : PRS-00318: SQL Error encountered while updating CMPALLFOLDERFCO for key ******************************Please contact Oracle Support with the stack trace and details on how to reproduce it. ??
Well i have no idea what is going on. Even the existing packages ( that are imported long before this error ocurred ) are showing the procedures with parameters.
Anyone having any idea how to solve this problem ?
Your help would be appreciated.

finally sorted it out! it had something to do with the ArrayCollection in the mx.collections not being linked to the AS hence the error. so heres what i did:
import mx.collections.ArrayCollection;
import flash.net.registerClassAlias;
registerClassAlias("flex.messaging.io.ArrayCollection", ArrayCollection);
i imported the ArrayCollection class and the registerClassAlias class into the AS i was using and then registered the alias then voila! error gone!

Similar Messages

  • How to convert PO sapscript layout to pdf - need VERY URGENT Help

    Dear All,
    Requirement: PO sapscript layout after some modifications (say, ZMEDRUCK) has to be converted to pdf. Through me9f user will be able to give ranges of PO numbers and can view the print preview for the po. After that on clicking the print button we get the printout of the pos one after another based on the user input of PO numbers.
    Our requirement is that when the user will click on the "Print Preview" of po (rather than pressing the print button) it i.e. PO sapscript layout has to get converted to pdf.
    If you have already encountered this scenario, could you please send me the source code regarding this at the earliest. If you want to email it to my personal id, please let me know so that I can give it to you. Thank you.
    It will be very beneficial for mine if you can send me some source code in this regard. (FYI. We want only “Print output” of PO sapscript. So, Print Program /SMB40/FM06P [after copying it to our ZSMB40/FM06P program] need to be modified for downloading the PO into PDF where there is no FMs like OPEN_FORM, WRITE_FORM, CLOSE_FORM. So already available source code in SAP forums can not help me.)). Kindly help me at the earliest. It’s VERY URGENT…
    Thank you.
    Thanks & Regards
    Sudipta

    Hi Chaith,
    Could you please provide me the source code regarding this at the earliest.
    We want only “Print output” of PO sapscript. So we need to modify only the Print Program SAPFM06P after copying it to ZSAPFM06P for downloading of modified PO (ZMEDRUCK) sapscript layout into PDF.
    I am already having some source code from sdn portral. I am attaching it herewith. But it's not working as some constants and variable values need to be given. We want to take download of PO into PDF from ME9F transaction itself.
    Could you please provide necessary values in the missing constants and variables and kindly resend the corrected modified Source code to me so that I can run the same code to  download the modified PO ZMEDRUCK into PDF . Need YOUR URGENT HELP...
    DATA: l_druvo LIKE t166k-druvo,
            l_nast  LIKE nast,
            aux_nast LIKE nast,
            l_from_memory,
            l_doc   TYPE meein_purchase_doc_print,
            ent_screen TYPE c,
            ent_retco TYPE i,
            toa_dara TYPE toa_dara,
            arc_params LIKE arc_params,
            aux_form LIKE tnapr-fonam.
      DATA: otf LIKE itcoo OCCURS 0 WITH HEADER LINE,
            lt_docs      TYPE TABLE OF docs,
            pdf_bytecount TYPE i,
            nom_archivo TYPE string.
      aux_form = 'ZMEDRUCK'.
      l_from_memory = c_true.
      SELECT *
        FROM nast
        INTO aux_nast
        UP TO 1 ROWS
        WHERE kappl = c_po     " Purchase Order
        AND   objky = t_datos-ebeln
        AND   aktiv = space
        ORDER BY erdat DESCENDING eruhr DESCENDING.
      ENDSELECT.
      aux_nast-sort1 = c_swp.
      CLEAR ent_screen.
      CLEAR ent_retco.
      IF aux_nast-aende EQ space.
        l_druvo = c_1.
      ELSE.
        l_druvo = c_2.
      ENDIF.
    l_druvo = '2'.
      CALL FUNCTION 'ME_READ_PO_FOR_PRINTING'
        EXPORTING
          ix_nast        = aux_nast
          ix_screen      = ent_screen
        IMPORTING
          ex_retco       = ent_retco
          ex_nast        = l_nast
          doc            = l_doc
        CHANGING
          cx_druvo       = l_druvo
          cx_from_memory = l_from_memory.
      CHECK ent_retco EQ 0.
      CALL FUNCTION 'ECP_PRINT_PO'
        EXPORTING
          ix_nast        = l_nast
          ix_druvo       = l_druvo
          doc            = l_doc
          ix_screen      = ent_screen
          ix_from_memory = l_from_memory
          ix_toa_dara    = toa_dara
          ix_arc_params  = arc_params
          ix_fonam       = aux_form                            
        IMPORTING
          ex_retco       = ent_retco.
      CLEAR otf.
      CALL FUNCTION 'READ_OTF_FROM_MEMORY'
        EXPORTING
          memory_key   = l_nast-objky  " PO Number
        TABLES
          otf          = otf
        EXCEPTIONS
          memory_empty = 1
          OTHERS       = 2.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
        IMPORTING
          bin_filesize           = pdf_bytecount
        TABLES
          otf                    = otf
          doctab_archive         = lt_docs
          lines                  = pdfout
        EXCEPTIONS
          err_conv_not_possible  = 1
          err_otf_mc_noendmarker = 2
          OTHERS                 = 3.
      CONCATENATE c_dest t_datos-ebeln c_ext INTO nom_archivo.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize = pdf_bytecount
          filename     = nom_archivo
          filetype     = c_bin
        IMPORTING
          filelength   = pdf_bytecount
        TABLES
          data_tab     = pdfout.

  • Kindly advice me, I have iphone 5s and I forgot the log-in password (passcode), I tried to open it but my phone give 60 min. to let me try after I fail for first one. I dont sync. with icloud or itunes. Please I NEED YOUR URGENT HELP!!

    Kindly advice me, I have iphone 5s and I forgot the log-in password (passcode), I tried to open it but my phone give 60 min. to let me try after I fail for the first one. I dont sync. with icloud or itunes. Please I NEED YOUR URGENT HELP!! MY IPHONE IS STILL STUCK.

    I can't, look at this image

  • Package (import oracle.jdbc.driver.*) not found -----URGENT--------

    Hi All,
    i've been using oracle thin driver for oracle 9i server since a long. but now it gives error like
    package import oracle.jdbc.driver.* not found
    it seems some problem in classpath.
    but i've inludeed classes111.zip/classes12.zip to classpath and with this was working fine. dunno what's the problem . kindly mail me at the earliest to:[email protected]
    also i'm working with Tomcat server.
    to run the servlet i don't want to type the absolute url like
    http://localhost:8080/servlet/test rather http://localhost/test .so how to config it . can ne one tell me asap.
    with thanx abd rgds
    Sayed
    so can u tell me

    1. Copy classes12.zip to %TOMCAT_HOME\common\lib
    2. Go to %TOMCAT_HOME\common\lib dir, rename classes12.zip to classes12.jar
    I think someone else has reply same problem before, next time you can do a search before post your problem.

  • Support Package Import Error in ECC 6.0 SR2

    Hi,
    We tried to upgrade EA-GLTRADE in our ECC 6.0 SR 2 system with
    SAPKGPGD07 patch during which, we encounter with some error at
    DDIC_ACTIVATION. (Attached: Entire Log)
    Note:
    We have already updated the Kernal with latest patch and SPAM with
    latest version 7.00/0023.
    We also applied dependency patches for SAPKGPGD07.
    Please give us the steps to resolve it or to reset the Queue so that
    atleast we can continue with other patches
    Thanks,
    Vignesh P,
    Log from Log File:               
    ides\sapmnt\trans\log\SAPAGPGD07.I01
    Log File:               
    ides\sapmnt\trans\log\SAPAGPGD07.I01
            ABAP Dictionary: Activation
            Transport request   : SAPKGPGD07
                 System              : I01
            tp path             : tp
            Version and release: 370.01.01 700
         3T             Program start============================================================
            Mass Activation
            =========================================================================
                 Process..................: ides_9
            User.....................: DDIC
            Date, time...............: 20.04.2007, 17:14:35
            Platform.................: CUSTOMER-I01(700)/MSSQL/WindowsNT/ides
            Tool.....................: BATCH/RADMASG0
            Log......................: F,
    ides\sapmnt\trans\tmp\SAPAGPGD07.I01
            Program parameters:
            Input Medium...............: Transp. Request SAPKGPGD07
            Activation Method..........: Inactv.
            Chk Mode...................: T
            Version to be activated....: M
            Versions to be deleted.....: Delete Only Active Versions
            Lock Against Paral. Exec...: Shared
            Independent Statistics Log.: being written
            Parallel Mode..............: Switched on
            ..Resources................: 50% of Dialog Processes, Maximum 4 Processes
            .Costs for Each Task.......: Minimum: 3.000, Maximum: 150.000
            =========================================================================
            Number of objects to be analyzed: 121
            Number of relevant dependencies: 108
            Level 1:42 objects assigned, 52 less dependencies
            Level 2:34 objects assigned, 35 less dependencies
            Level 3:27 objects assigned, 10 less dependencies
            Level 4:7 objects assigned, 7 less dependencies
            Level 5:7 objects assigned, 4 less dependencies
            Level 6:4 objects assigned, 0 less dependencies
            Graph_Analysis: 121 objects on 6 topological levels
            Start phase 001 **********************************************************
                  Object Activation
         3T             *** Activate objects at level 1
    Parallel execution with maximal 3 concurrent tasks *
            Total of 42 objects with 28.630 costs in 8 tasks
         3T             Activate data element WB2_DEFAULT_TEW
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_FIELD
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KBETR_BAPI
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KBETR_SCALE_BAPI
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KOMXWRT_BAPI
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KSTBW_SCALE_BAPI
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_ORDER_KEY
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activate table BAPITCCOND
            Table BAPITCCOND was activated successfully
            Activate table BAPITCCONDCX
            Table BAPITCCONDCX was activated successfully
            Activate table BAPITCCONDD
            Table BAPITCCONDD was activated successfully
            Activate table BAPITCCONDDCX
            Table BAPITCCONDDCX was activated successfully
            Activate table E1BPTCCOND
            Table E1BPTCCOND was activated successfully
            Activate table E1BPTCCONDCX
            Table E1BPTCCONDCX was activated successfully
            Activate table E1BPTCCONDD
            Table E1BPTCCONDD was activated successfully
            Activate table E1BPTCCONDDCX
            Table E1BPTCCONDDCX was activated successfully
            Activate table KOMEXPENSE
            Table KOMEXPENSE was activated successfully
            Activate table KOMTCKO
            Table KOMTCKO was activated successfully
            Activate table KOMTCKOCX
            Table KOMTCKOCX was activated successfully
            Activate table KOMTCKOE
            Table KOMTCKOE was activated successfully
            Activate table KOMWBHIE_NEW
            Table KOMWBHIE_NEW was activated successfully
            Activate table KOMWBHKEX_NEW
            Table KOMWBHKEX_NEW was activated successfully
            Activate table KOMWBHKE_NEW
            Table KOMWBHKE_NEW was activated successfully
            Activate table WB2_CHANGED_FIELDS
            Table WB2_CHANGED_FIELDS was activated successfully
            Activate table WB2_COND_MAP
            Table WB2_COND_MAP was activated successfully
            Activate table WB2_KONV_SELECT
            Table WB2_KONV_SELECT was activated successfully
            Activate table WB2_SCALE_EXTERNAL
            Table WB2_SCALE_EXTERNAL was activated successfully
            Activate table WBHID_NEW
            WBHID_NEW-LGOBE: Table KOMWBHI in search help attachment differs from table of search field
            Table WBHID_NEW was activated successfully
            Activate table WCOCOH
            WCOCOH-RATE: Table KOMWCOCOH in search help attachment differs from table of search field
            Table WCOCOH was activated successfully
         3T             Activation of table type T681E_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type T6B2F_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TB2BN_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TB2BO_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TB2BP_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TWBACCTYPE_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TWBEXCLASSGROUP_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPIRET2_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_CONDSCALE_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_CONDSCALE_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_KONH_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_KONP_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_KONP_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_VAKE_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Server Usage ************************************************************
              Server..............     Workp     Tasks     Error     .Timesum     Objcount     ms/Obj     ..KCosts     ms/KCs     
              ides_I01_00.........     ....3     ....8     .....     .....106     ......42     .2.524     ......29     .3.655     
                 Parallel execution: 38 sec., Phase out time: 8 sec., Load: 9,2982456140350877E+01 percent
         3T             *** Activate objects at level 2
    Parallel execution with maximal 3 concurrent tasks *
            Total of 34 objects with 28.040 costs in 8 tasks
            Activate table APPEND_KOMWBHKEX
              8R      Enhancement category for table missing
         8R      Enhancement category for include or subtype missing
            Table APPEND_KOMWBHKEX was activated with warnings
            Activate table BAPITCCONDITIONITEM
            Table BAPITCCONDITIONITEM was activated successfully
            Activate table BAPITCCONDITIONITEMO
            Table BAPITCCONDITIONITEMO was activated successfully
            Activate table BAPITCCONDITIONITEMX
            Table BAPITCCONDITIONITEMX was activated successfully
            Activate table BAPITCCONDITIONKEY
            Table BAPITCCONDITIONKEY was activated successfully
            Activate table BAPITCCONDITIONKEYO
            Table BAPITCCONDITIONKEYO was activated successfully
            Activate table BAPITCCONDITIONKEYX
            Table BAPITCCONDITIONKEYX was activated successfully
            Activate dependent table KOMWBHIE_APPEND
            Activation of dependent table KOMWBHIE_APPEND successful
            Activate dependent table KOMWBHKE_APPEND
            Activation of dependent table KOMWBHKE_APPEND successful
            Activate dependent table KOMWCOCOH
            Activation of dependent table KOMWCOCOH successful
            Activate dependent table KOMWCOCOH_LI
            KOMWCOCOH_LI-RATE: Table KOMWCOCOH in search help attachment differs from table of search field
            Activation of dependent table KOMWCOCOH_LI successful
            Activate table TWGTA
            Table TWGTA was activated successfully
            Activate table WB2_KOMG
              8O      WB2_KOMG-ZZANZ_KG (combination reference table/field WB2_KOMG-ZZME_KG does not exist)
              8O      WB2_KOMG-ZZAUFMENG_KG (combination reference table/field WB2_KOMG-ZZME_KG does not exist)
         8R      Flag: 'Incorrect enhancement category' could not be updated
            Table WB2_KOMG was not activated
            Activate dependent table WBHID_APPEND
            Activation of dependent table WBHID_APPEND successful
         3T             Activation of table type KOMEXPENSE_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activate dependent table type TABKOMTCKO
            Activate dependent table type TABKOMTCKOCX
         3T             Activation of table type WB2B_FIELD_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_CHANGED_FIELDS_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_COND_MAP_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_SCALE_EXTERNAL_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activate dependent table type WCB_WCOCOH_STAB
            Activate dependent table type WCB_WCOCOH_TAB
            Activate dependent view DB_WCOCOA
                 View must be deleted from the database and created again
            Activate dependent view DB_WCOCOA_JEST
                 View must be deleted from the database and created again
            Activate dependent view DB_WCOCOH_I_ST
                 View must be deleted from the database and created again
            Activate dependent view V_WCOCOA_CUS_LST
            Check dependent search help WCB_SH_CC_NUM_CUS_LST_HEADER
            Search help WCB_SH_CC_NUM_CUS_LST_HEADER is consistent
                 View must be deleted from the database and created again
            Activate dependent view V_WCOCOA_VEN_LST
            Check dependent search help WCB_SH_CC_NUM_VEN_LST_HEADER
            Search help WCB_SH_CC_NUM_VEN_LST_HEADER is consistent
                 View must be deleted from the database and created again
            Activate dependent view V_WCOCOH_CUS_LST
            Check dependent search help WCB_SH_CC_NUM_CUS_LST_A
            Search help WCB_SH_CC_NUM_CUS_LST_A is consistent
                 View must be deleted from the database and created again
            Activate dependent view V_WCOCOH_VEN_LST
            Check dependent search help WCB_SH_CC_NUM_VEN_LST_A
            Search help WCB_SH_CC_NUM_VEN_LST_A is consistent
                 View must be deleted from the database and created again
            Server Usage ************************************************************
              Server..............     Workp     Tasks     Error     .Timesum     Objcount     ms/Obj     ..KCosts     ms/KCs     
              ides_I01_00.........     ....3     ....8     .....     .....171     ......34     .5.029     ......28     .6.107     
                 Parallel execution: 82 sec., Phase out time: 44 sec., Load: 6,9512195121951223E+01 percent
         3T             *** Activate objects at level 3
    Parallel execution with maximal 3 concurrent tasks *
            Total of 28 objects with 20.340 costs in 6 tasks
            Activate dependent search help WCB_SH_CC_NUM_CUS_LST_A
            Activate dependent search help WCB_SH_CC_NUM_CUS_LST_HEADER
            Activate dependent search help WCB_SH_CC_NUM_VEN_LST_A
            Activate dependent search help WCB_SH_CC_NUM_VEN_LST_HEADER
            Activate table BAPITCSCALE
            Table BAPITCSCALE was activated successfully
            Activate table BAPITCSCALEO
            Table BAPITCSCALEO was activated successfully
            Activate dependent table KOMWBHIE
            Activation of dependent table KOMWBHIE successful
            Activate dependent table KOMWBHKE
            Activation of dependent table KOMWBHKE successful
            Activate dependent table KOMWBHKEX
                 Append structure APPEND_KOMWBHKEX appended to table KOMWBHKEX
         8R      Enhancement category 2 possible, but include or subty. not yet classified
            Activation of dependent table KOMWBHKEX successful
            Activate table WB2_COND_CHANGE
            Table WB2_COND_CHANGE was activated successfully
            Activate table WB2_KEY_CHANGE
              8O      INCLUDE table WB2_KOMG is not active
              8O      Routine EXPAND (Table WB2_KEY_CHANGE could not be expanded)
            Table WB2_KEY_CHANGE was not activated
            Activate table WB2_KOMG_EXT
            Table WB2_KOMG_EXT was activated successfully
            Activate dependent table WBHID
            Activation of dependent table WBHID successful
            Activate dependent table type KOMWCOCOH_LI_TAB
            Activate dependent table type KOMWCOCOH_STAB
         3T             Activation of table type WB2_BAPITCCONDITIONITEMO_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONITEMX_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONITEM_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONKEYO_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONKEYX_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONKEY_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activation of table type WB2_KOMG_STAB
              8O      Row type WB2_KOMG is not active or does not exist
            Table type WB2_KOMG_STAB was not activated
            Activate dependent table type WCB_DB_WCOCOA_JEST_STAB
            Activate dependent table type WCB_DB_WCOCOA_STAB
            Activate dependent table type WCB_DB_WCOCOH_I_ST_STAB
            Activate view V_TWGTA
            Activate dependent view V_TWGTA_CFM
            Server Usage ************************************************************
              Server..............     Workp     Tasks     Error     .Timesum     Objcount     ms/Obj     ..KCosts     ms/KCs     
              ides_I01_00.........     ....3     ....6     .....     ......45     ......28     .1.607     ......20     .2.250     
                 Parallel execution: 17 sec., Phase out time: 3 sec., Load: 8,8235294117647058E+01 percent
         3T             *** Activate objects at level 4
            Too low cost (3.270) for parallel processing. Minimum: 6.000
    Synchronous execution, no parallel processing *
         3T             Activate dependent table KOMWBHI
            KOMWBHI-HKPSTP: Table KOMWBHK in search help attachment differs from table of search field
            Activation of dependent table KOMWBHI successful
            Activate dependent table type TABKOMWBHIE
         3T             Activation of table type WB2_BAPITCSCALEO_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCSCALE_TAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_COND_CHANGE_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activation of table type WB2_KEY_CHANGE_STAB
              8O      Row type WB2_KEY_CHANGE is not active or does not exist
            Table type WB2_KEY_CHANGE_STAB was not activated
         3T             Activation of table type WB2_KOMG_EXT_STAB
                 Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Synchronous processing: 19 sec., 7 objects, 3.270 costs
         3T             *** Activate objects at level 5
            Too low cost (4.630) for parallel processing. Minimum: 6.000
    Synchronous execution, no parallel processing *
         3T             Activate dependent table KOMWBHIH
            KOMWBHIH-HKPSTP: Table KOMWBHK in search help attachment differs from table of search field
            Activation of dependent table KOMWBHIH successful
         3T             Activate dependent table MCWBHI
            MCWBHI-HKPSTP: Table KOMWBHK in search help attachment differs from table of search field
            Activation of dependent table MCWBHI successful
            Activate dependent table WB2_NASTLIEF
            Activation of dependent table WB2_NASTLIEF successful
            Activate dependent table type KOMWBHI_TAB
            Activate dependent table type TABKOMWBHI
            Activate dependent table type TRCON_KOMWBHI_TAB
            Activate dependent table type WB2_KOMWBHI_STAB
            Synchronous processing: 27 sec., 7 objects, 4.630 costs
         3T             *** Activate objects at level 6
            Too low cost (2.160) for parallel processing. Minimum: 6.000
    Synchronous execution, no parallel processing *
            Activate dependent table TRCON_OUTP_DBDATA
            Activation of dependent table TRCON_OUTP_DBDATA successful
            Activate dependent table type GT_MCWBHI
            Activate dependent table type KOMWBHIH_TAB
            Activate dependent table type WB2_NASTLIEF_TAB
            Synchronous processing: 2 sec., 4 objects, 2.160 costs
                  Object Activation
            End phase  001 ***********************************************************
            Start phase 002 **********************************************************
                  Final log
            Following objects not activated/deleted or activated/deleted w. warning:
         3T          8O      Table WB2_KEY_CHANGE could not be activated
         8O      Table WB2_KOMG could not be activated
         8O      Table Type WB2_KEY_CHANGE_STAB could not be activated
            (E- Row type WB2_KEY_CHANGE is not active or does not exist )
         8O      Table Type WB2_KOMG_STAB could not be activated
         8R      Table Type WB2_CHANGED_FIELDS_STAB was activated (error in the dependencies)
         8R      Table Type WB2_VAKE_TAB was activated (error in the dependencies)
         8R      Table APPEND_KOMWBHKEX was activated (warning for the dependent tables)
         8R      Table KOMWBHKEX_NEW was activated (warning for the dependent tables)
                  Final log
            End phase  002 ***********************************************************
            Start phase 003 **********************************************************
                  Statistics on Activated and Deleted Objects
            Number of objects to be activated............:  118
            Objects not activated........................:  4
            Activated objects with errors in dependencies:  2
            Objects activated with warning...............:  2
            Successfully activated objects...............:  110
            Number of objects to be deleted..............:  0
            Objects not successfully deleted.............:  0
            Successfully deleted objects.................:  0
            Tables/views with DROP/CREATE................:  0
            No. of them marked for DROP/CREATE: 0
            Not marked for DROP/CREATE: 0
            Number of nametabs to be deleted.............:  0
            Successfully deleted nametabs................:  0
            Nametabs that were not successfully deleted..:  0
                  Statistics on Activated and Deleted Objects
            End phase  003 ***********************************************************
            =========================================================================
            Mass Activation
            =========================================================================
                 Process..................: ides_9
            Return code..............: 8
            Phase 001..................: 00:03:05 (Object Activation)
            Phase 002..................: < 1 sec. (Final log)
            Phase 003..................: < 1 sec. (Statistics on Activated and ...)
            Program runtime..........: 00:03:20
            Date, time...............: 20.04.2007, 17:17:55
            Program end==============================================================
            ABAP Dictionary: Activation
            End date and time : 20070420171755
         &#61487;     8O      Ended with return code:  ===> 8 <===
    ALOG
    ALL                  I01.ALL t 0000 20070419142033              DDIC         ides                    
    SAPKD70022           I01.ALL m 0000 20070419142040 SAPUSER      DDIC         ides                    
    SAPKD70022           I01.ALL L 0004 20070419142051 SAPUSER      DDIC         ides 20070419142042     
    SAPKD70022           I01.ALL P 0004 20070419142056 SAPUSER      DDIC         ides 20070419142053     
    SAPKD70022           I01.ALL H 0004 20070419142615 SAPUSER      DDIC         ides 20070419142100     
    SAPKD70022           I01.ALL A 0004 20070419142914 SAPUSER      DDIC         ides 20070419142100     
    ALL                  I01.ALL S 0000 20070419142929              DDIC         ides 20070419142100     
    ALL                  I01.ALL 6 0004 20070419142947              DDIC         ides 20070419142100     
    SAPKD70022           I01.ALL I 0004 20070419143215 SAPUSER      DDIC         ides 20070419142100     
    ALL                  I01.ALL n 0000 20070419143340              DDIC         ides 20070419142100     
    SAPKD70022           I01.ALL R 0000 20070419143413 SAPUSER      DDIC         ides 20070419142100     
    ALL                  I01.ALL t 0000 20070419145325              DDIC         ides                    
    SAPKD70023           I01.ALL m 0000 20070419145327 SAPUSER      DDIC         ides                    
    SAPKD70023           I01.ALL L 0004 20070419145330 SAPUSER      DDIC         ides 20070419145328     
    SAPKD70023           I01.ALL P 0004 20070419145332 SAPUSER      DDIC         ides 20070419145331     
    SAPKD70023           I01.ALL H 0004 20070419145350 SAPUSER      DDIC         ides 20070419145332     
    SAPKD70023           I01.ALL A 0004 20070419145432 SAPUSER      DDIC         ides 20070419145332     
    ALL                  I01.ALL S 0000 20070419145439              DDIC         ides 20070419145332     
    ALL                  I01.ALL 6 0000 20070419145443              DDIC         ides 20070419145332     
    SAPKD70023           I01.ALL I 0004 20070419145527 SAPUSER      DDIC         ides 20070419145332     
    ALL                  I01.ALL n 0000 20070419145529              DDIC         ides 20070419145332     
    SAPKD70023           I01.ALL R 0000 20070419145535 SAPUSER      DDIC         ides 20070419145332     
    ALL                  I01.ALL t 0000 20070419150805              DDIC         ides                    
    SAPKB70010           I01.ALL m 0000 20070419150826 SAPUSER      DDIC         ides                    
    SAPKB70010           I01.ALL L 0004 20070419151011 SAPUSER      DDIC         ides 20070419150915     
    SAPKB70010           I01.ALL P 0004 20070419151101 SAPUSER      DDIC         ides 20070419151032     
    SAPKB70010           I01.ALL H 0004 20070419152544 SAPUSER      DDIC         ides 20070419152217     
    SAPKB70010           I01.ALL A 0004 20070419154149 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070419154232              DDIC         ides 20070419154155     
    ALL                  I01.ALL N 0000 20070419154335              DDIC         ides 20070419154155     
    ALL                  I01.ALL 6 0004 20070419154820              DDIC         ides 20070419154155     
    SAPKB70010           I01.ALL I 0004 20070419163829 SAPUSER      DDIC         ides 20070419154155     
    ALL                  I01.ALL n 0000 20070419164133              DDIC         ides 20070419154155     
    SAPKB70010           I01.ALL R 0000 20070419171913 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070419172644              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420101414              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420102627              DDIC         ides                    
    SAPKA70010           I01.ALL m 0000 20070420102638 SAPUSER      DDIC         ides                    
    SAPKIPYJ7A           I01.ALL m 0000 20070420102647 PIBASISUSER  DDIC         ides                    
    SAPKW70010           I01.ALL m 0000 20070420102659 SAPUSER      DDIC         ides                    
    SAPKNA7007           I01.ALL m 0000 20070420102705 SAPAPUSER    DDIC         ides                    
    SAPKH60007           I01.ALL m 0000 20070420102728 SAPUSER      DDIC         ides                    
    SAPK-60007INFICA     I01.ALL m 0000 20070420102754 SAPUSER      DDIC         ides                    
    SAPK-60007INFICAX    I01.ALL m 0000 20070420102757 SAPUSER      DDIC         ides                    
    SAPKA70010           I01.ALL L 0004 20070420102832 SAPUSER      DDIC         ides 20070420102800     
    SAPKIPYJ7A           I01.ALL L 0004 20070420102838 PIBASISUSER  DDIC         ides 20070420102800     
    SAPKW70010           I01.ALL L 0004 20070420102906 SAPUSER      DDIC         ides 20070420102800     
    SAPKNA7007           I01.ALL L 0004 20070420102910 SAPAPUSER    DDIC         ides 20070420102800     
    SAPKH60007           I01.ALL L 0004 20070420102949 SAPUSER      DDIC         ides 20070420102800     
    SAPK-60007INFICA     I01.ALL L 0004 20070420103005 SAPUSER      DDIC         ides 20070420102800     
    SAPK-60007INFICAX    I01.ALL L 0004 20070420103007 SAPUSER      DDIC         ides 20070420102800     
    SAPKA70010           I01.ALL P 0004 20070420103039 SAPUSER      DDIC         ides 20070420103026     
    SAPKIPYJ7A           I01.ALL P 0004 20070420103042 PIBASISUSER  DDIC         ides 20070420103026     
    SAPKW70010           I01.ALL P 0004 20070420103053 SAPUSER      DDIC         ides 20070420103026     
    SAPKNA7007           I01.ALL P 0004 20070420103055 SAPAPUSER    DDIC         ides 20070420103026     
    SAPKH60007           I01.ALL P 0004 20070420103121 SAPUSER      DDIC         ides 20070420103026     
    SAPK-60007INFICA     I01.ALL P 0004 20070420103126 SAPUSER      DDIC         ides 20070420103026     
    SAPK-60007INFICAX    I01.ALL P 0004 20070420103128 SAPUSER      DDIC         ides 20070420103026     
    SAPKA70010           I01.ALL H 0004 20070420104455 SAPUSER      DDIC         ides 20070420104317     
    SAPKIPYJ7A           I01.ALL H 0004 20070420104510 PIBASISUSER  DDIC         ides 20070420104317     
    SAPKW70010           I01.ALL H 0004 20070420104614 SAPUSER      DDIC         ides 20070420104317     
    SAPKNA7007           I01.ALL H 0004 20070420104619 SAPAPUSER    DDIC         ides 20070420104317     
    SAPKH60007           I01.ALL H 0004 20070420105120 SAPUSER      DDIC         ides 20070420104317     
    SAPK-60007INFICA     I01.ALL H 0004 20070420105217 SAPUSER      DDIC         ides 20070420104317     
    SAPK-60007INFICAX    I01.ALL H 0004 20070420105228 SAPUSER      DDIC         ides 20070420104317     
    ALL                  I01.ALL t 0000 20070420110210              DDIC         ides                    
    SAPK-60007INFICA     I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPK-60007INFICAX    I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPKA70010           I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPKH60007           I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPKIPYJ7A           I01.ALL A 0004 20070420115140 PIBASISUSER  DDIC         ides                    
    SAPKNA7007           I01.ALL A 0004 20070420115140 SAPAPUSER    DDIC         ides                    
    SAPKW70010           I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420115355              DDIC         ides 20070420115217     
    ALL                  I01.ALL N 0000 20070420115401              DDIC         ides 20070420115217     
    ALL                  I01.ALL 6 0004 20070420120305              DDIC         ides 20070420115217     
    SAPKA70010           I01.ALL I 0004 20070420121421 SAPUSER      DDIC         ides 20070420115217     
    SAPKIPYJ7A           I01.ALL I 0004 20070420121612 PIBASISUSER  DDIC         ides 20070420115217     
    SAPKW70010           I01.ALL I 0004 20070420123219 SAPUSER      DDIC         ides 20070420115217     
    SAPKNA7007           I01.ALL I 0004 20070420123349 SAPAPUSER    DDIC         ides 20070420115217     
    SAPKH60007           I01.ALL I 0004 20070420130625 SAPUSER      DDIC         ides 20070420115217     
    SAPK-60007INFICA     I01.ALL I 0004 20070420131144 SAPUSER      DDIC         ides 20070420115217     
    SAPK-60007INFICAX    I01.ALL I 0004 20070420131253 SAPUSER      DDIC         ides 20070420115217     
    ALL                  I01.ALL n 0000 20070420131356              DDIC         ides 20070420115217     
    SAPKA70010           I01.ALL R 0000 20070420132346 SAPUSER      DDIC         ides                    
    SAPKIPYJ7A           I01.ALL R 0000 20070420132353 PIBASISUSER  DDIC         ides                    
    SAPKW70010           I01.ALL R 0000 20070420134358 SAPUSER      DDIC         ides                    
    SAPKNA7007           I01.ALL R 0000 20070420134934 SAPAPUSER    DDIC         ides                    
    SAPKH60007           I01.ALL R 0006 20070420140042 SAPUSER      DDIC         ides                    
    SAPK-60007INFICA     I01.ALL R 0000 20070420140703 SAPUSER      DDIC         ides                    
    SAPK-60007INFICAX    I01.ALL R 0000 20070420140713 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420141932              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420141939              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420142045              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420142823              DDIC         ides                    
    SAPKGPID07           I01.ALL m 0000 20070420142825 SAPUSER      DDIC         ides                    
    SAPKGPID07           I01.ALL L 0004 20070420142836 SAPUSER      DDIC         ides 20070420142828     
    SAPKGPID07           I01.ALL P 0004 20070420142839 SAPUSER      DDIC         ides 20070420142837     
    ALL                  I01.ALL 6 0000 20070420143317              DDIC         ides 20070420143303     
    SAPKGPID07           I01.ALL I 0004 20070420143348 SAPUSER      DDIC         ides 20070420143303     
    ALL                  I01.ALL t 0000 20070420143614              DDIC         ides                    
    SAPKW70011           I01.ALL m 0000 20070420143625 SAPUSER      DDIC         ides                    
    SAPKW70011           I01.ALL L 0004 20070420143742 SAPUSER      DDIC         ides 20070420143632     
    SAPKW70011           I01.ALL P 0004 20070420143811 SAPUSER      DDIC         ides 20070420143749     
    SAPKW70011           I01.ALL H 0004 20070420144247 SAPUSER      DDIC         ides 20070420144134     
    SAPKW70011           I01.ALL A 0004 20070420144612 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420144641              DDIC         ides 20070420144617     
    ALL                  I01.ALL 6 0004 20070420144903              DDIC         ides 20070420144617     
    SAPKW70011           I01.ALL I 0004 20070420150622 SAPUSER      DDIC         ides 20070420144617     
    ALL                  I01.ALL n 0000 20070420150652              DDIC         ides 20070420144617     
    SAPKW70011           I01.ALL R 0000 20070420151931 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420153322              DDIC         ides                    
    SAPKGPDD07           I01.ALL m 0000 20070420153324 SAPUSER      DDIC         ides                    
    SAPKGPDD07           I01.ALL L 0004 20070420153338 SAPUSER      DDIC         ides 20070420153326     
    SAPKGPDD07           I01.ALL P 0004 20070420153345 SAPUSER      DDIC         ides 20070420153340     
    SAPKGPDD07           I01.ALL H 0004 20070420153632 SAPUSER      DDIC         ides 20070420153610     
    SAPKGPDD07           I01.ALL A 0004 20070420153818 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420153831              DDIC         ides 20070420153823     
    ALL                  I01.ALL 6 0000 20070420153905              DDIC         ides 20070420153823     
    SAPKGPDD07           I01.ALL I 0004 20070420154205 SAPUSER      DDIC         ides 20070420153823     
    SAPKGPDD07           I01.ALL R 0000 20070420154226 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420154751              DDIC         ides                    
    SAPKGPAD07           I01.ALL m 0000 20070420154807 SAPUSER      DDIC         ides                    
    SAPKGPAD07           I01.ALL L 0004 20070420154851 SAPUSER      DDIC         ides 20070420154814     
    SAPKGPAD07           I01.ALL P 0004 20070420154911 SAPUSER      DDIC         ides 20070420154856     
    SAPKGPAD07           I01.ALL H 0004 20070420155533 SAPUSER      DDIC         ides 20070420155317     
    ALL                  I01.ALL t 0000 20070420155918              DDIC         ides                    
    SAPKGPAD07           I01.ALL A 0004 20070420160620 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420160638              DDIC         ides 20070420160625     
    ALL                  I01.ALL 6 0004 20070420160743              DDIC         ides 20070420160625     
    SAPKGPAD07           I01.ALL I 0004 20070420162359 SAPUSER      DDIC         ides 20070420160625     
    ALL                  I01.ALL n 0000 20070420162445              DDIC         ides 20070420160625     
    SAPKGPAD07           I01.ALL R 0004 20070420163533 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420163915              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420164004              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420164112              DDIC         ides                    
    SAPKGPFD07           I01.ALL m 0000 20070420164119 SAPUSER      DDIC         ides                    
    SAPKGPFD07           I01.ALL L 0004 20070420164205 SAPUSER      DDIC         ides 20070420164129     
    SAPKGPFD07           I01.ALL P 0004 20070420164217 SAPUSER      DDIC         ides 20070420164209     
    SAPKGPFD07           I01.ALL H 0004 20070420164645 SAPUSER      DDIC         ides 20070420164524     
    SAPKGPFD07           I01.ALL A 0004 20070420165233 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420165248              DDIC         ides 20070420165238     
    ALL                  I01.ALL 6 0000 20070420165322              DDIC         ides 20070420165238     
    SAPKGPFD07           I01.ALL I 0004 20070420170133 SAPUSER      DDIC         ides 20070420165238     
    ALL                  I01.ALL n 0000 20070420170156              DDIC         ides 20070420165238     
    SAPKGPFD07           I01.ALL R 0000 20070420170418 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420170650              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420171054              DDIC         ides                    
    SAPKGPGD07           I01.ALL m 0000 20070420171056 SAPUSER      DDIC         ides                    
    SAPKGPGD07           I01.ALL L 0004 20070420171108 SAPUSER      DDIC         ides 20070420171059     
    SAPKGPGD07           I01.ALL P 0004 20070420171112 SAPUSER      DDIC         ides 20070420171109     
    SAPKGPGD07           I01.ALL H 0004 20070420171431 SAPUSER      DDIC         ides 20070420171339     
    SAPKGPGD07           I01.ALL A 0008 20070420171755 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420171911              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420171918 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420172106              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420172117 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420173251              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420173255 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420173753              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420173756 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420173914              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420173917 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420174114              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420174541              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420174543 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420181327              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420181355 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420183111              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420183123 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420183655              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420183700 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420185422              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420185424 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420185611              TMSADM       ides                    
    ALL                  I01.ALL S 0000 20070420190348              DDIC         ides 20070420190338     
    ALL                  I01.ALL t 0000 20070420190358              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420190403 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL 6 0000 20070420190407              DDIC         ides 20070420190338     
    ALL                  I01.ALL a 0000 20070420190537              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420190559              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420190606 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL d 0000 20070420190622              DDIC         ides                    
    SAPKGPGD07           I01:000 I 0004 20070420190713 SAPUSER      DDIC         ides 20070420190338     
    ALL                  I01.ALL t 0000 20070420190713              DDIC         ides                    
    ALL                  I01.ALL Q 0000 20070420190717              DDIC         ides 20070420190338     
    SAPKGPGD07           I01.ALL A 0008 20070420190925 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420191154              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420191156 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420202424              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420202534 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420204507              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420204509 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420211533              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420211555 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420220457              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420220500 SAPUSER      DDIC         ides                    
    SLOG
    START CMDIMPORT            I01 L      20070419142043              DDIC         ides 20070419142042     
    STOP  CMDIMPORT            I01 L      20070419142052              DDIC         ides 20070419142042     
    START imp all              I01        20070419142100              DDIC         ides 20070419142100     
    INFO: event SAP_IMPORT_START triggered successfully
    START DD IMPORT            I01 H      20070419142101              DDIC         ides 20070419142100     
    STOP  DD IMPORT            I01 H      20070419142617              DDIC         ides 20070419142100     
    START DD ACTIVATION        I01 A      20070419142618              DDIC         ides 20070419142100     
    START tp_getprots          I01 J      20070419142620              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 J      20070419142918              DDIC         ides 20070419142100     
    STOP  DD ACTIVATION        I01 A      20070419142918              DDIC         ides 20070419142100     
    START DISTRIBUTION OF DD-O I01 S      20070419142918              DDIC         ides 20070419142100     
    START tp_getprots          I01 S      20070419142918              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 S      20070419142933              DDIC         ides 20070419142100     
    STOP  DISTRIBUTION OF DD-O I01 S      20070419142933              DDIC         ides 20070419142100     
    INFO  TBATG CONVERSION OF  I01 N      not needed                  DDIC         ides 20070419142100     
    START MOVE NAMETABS        I01 6      20070419142934              DDIC         ides 20070419142100     
    START tp_getprots          I01 P      20070419142934              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 P      20070419142949              DDIC         ides 20070419142100     
    STOP  MOVE NAMETABS        I01 6      20070419142949              DDIC         ides 20070419142100     
    START MAIN IMPORT          I01 I      20070419142949              DDIC         ides 20070419142100     
    STOP  MAIN IMPORT          I01 I      20070419143215              DDIC         ides 20070419142100     
    START TBATG CREATION OF EN I01 n      20070419143216              DDIC         ides 20070419142100     
    START tp_getprots          I01 Y      20070419143216              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 Y      200

    How was this problem fixed? We are running into the same problem. Any help will be much appreciated.
    Thanks so much.
    Mario

  • App-V 5 SP2 ODT Office 2013 32bit Package Import error

    I have used ODT to package Office 2013/Project/Visio.  The package is created without any errors.  When I go to import the package using App-V Management Console i get the below error.
    "There were problems interacting with the database on the server.  The error was: String or binary data would be truncated.
    The statement has been terminated."
    There are no further errors and the import fails.
    I have successfully imported the 64bit version using the exact same steps without issue.  Can someone please advise?

    Thanks for the escalation Brandon.  Yes i have created the 32bit version without the Languages, and this has worked. so it looks as if there is a String that is being created which may exceed the limits of the Database.
    I was able to open the Appv file in Sequencer and just change the name using that.  I am now able to publish the App.  I still find it strange that ODT allows the file to be created with such a long string and then throw an error.

  • OWB Demo Import Error

    Hi,
    I am trying to run the OWB 92 Demo available from OTN. I am getting an error when I import the mdl file:
    Import started at 12/29/2004 3:00:37 PM
    * Import for OWB Release: 10.1.0.2.0 Version: 10.1.0.1.0
    * User: owb92 Connect String: (DESCRIPTION=(ADDRESS=(HOST=vmrhel3)(PROTOCOL=tcp)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl.solstoneplus.co.uk)))
    * Definition File: null
    * Data File: c:\work\OWB92_demo\mdl\OWB92_DEMO.mdl
    * Log File: C:\oracle\owb101\owb\bin\admin\Log.log Log Message Level: ALL
    * Physical Names: Y Mode: CREATE Character Set: WE8MSWIN1252
    * Ignore Universal Identifier: N Commit At End: Y
    Error at line 518: MDL1402: Error importing dimension with physical name <SALES_REP>, business name <SALES_REP> and UOID <3557597D89FF47F3BF354D077E415A71> in module <WH>.
    Detailed Error Message:
    MDL1404: Error occurred on line 521, cannot import level with physical name <EMPLOYEE>, business name <EMPLOYEE> and UOID <C3E1A883AC764E15B8F7D5B4C1A7E949>.
    Internal Error: Error in createLevel()
    I am running 9.2.0.5 of the database and 10.1 OWB, however the database is running on a VMWare Red Hat Enterprise Linux 3 Virtual Machine. The host is running WinXP and OWB has been installed on both the host and guest. I have not had any other troubles running in this mode, but wandered if it may be causing a problem here,
    Thanks for any help,
    Jon

    I was able to resolve this by copying the mdl file to the linux guest machine and running the import from there.
    Jon

  • OWB mapping Import error

    Hi All,
    I'm facing the following error while importing a new version of an existing map via a .mdl file. this is the error message:
    Error at line 67: MDL1247: Error occurred importing mapping <COT_H_ORDERCATEGORYTYPE_IU0/COT_H_ORDERCATEGORYTYPE_IU0> (at line 67).
    Detailed Error Message:
    java.lang.ClassCastException: oracle.wh.repos.impl.mapping.CMPMappingParameterGroup
         at oracle.wh.repos.impl.component.ComponentService.instantiate(ComponentService.java:298)
         at oracle.wh.repos.impl.component.ComponentService.instantiate(ComponentService.java:203)
         at oracle.wh.repos.impl.foundation.CacheMediator.query(CacheMediator.java:2722)
         at oracle.wh.repos.impl.foundation.CacheMediator.query(CacheMediator.java:2682)
         at oracle.wh.repos.impl.foundation.OWBRoot.query(OWBRoot.java:1881)
         at oracle.wh.repos.impl.mapping.CMPMappingParameterGen.getConnectFrom(CMPMappingParameterGen.java:575)
         at oracle.wh.repos.impl.mapping.CMPMappingParameter.getConnectFrom(CMPMappingParameter.java:217)
         at oracle.wh.repos.impl.mapping.WBMappingParameterImpl.restoreConnection(WBMappingParameterImpl.java:269)
         at oracle.wh.repos.impl.mapping.WBStageImpl.<init>(WBStageImpl.java:113)
         at oracle.wh.service.impl.ContextServiceImpl.getBusinessObject(ContextServiceImpl.java:33)
         at oracle.wh.service.impl.metadataloader.WBImportMapping.importMappingStage(WBImportMapping.java:1271)
         at oracle.wh.service.impl.metadataloader.WBImportMapping.parseAndImportMappingStage(WBImportMapping.java:1068)
         at oracle.wh.service.impl.metadataloader.WBImportMapping.processKeyword(WBImportMapping.java:4147)
         at oracle.wh.service.impl.metadataloader.WBImportMapping.importMapping(WBImportMapping.java:4603)
         at oracle.wh.service.impl.metadataloader.WBImport.process(WBImport.java:6085)
         at oracle.wh.service.impl.metadataloader.WBRunImport.internalRunImport(WBRunImport.java:506)
         at oracle.wh.service.impl.metadataloader.WBRunImport.runImport(WBRunImport.java:570)
         at oracle.owb.Import.ImportServiceManager.internalImportMetaData(ImportServiceManager.java:198)
         at oracle.owb.Import.ImportServiceManager.importMetaDataFromFile(ImportServiceManager.java:145)
         at oracle.owb.scripting.ImportCmdExecuter.startMetaDataImportCommand(ImportCmdExecuter.java:297)
         at oracle.owb.scripting.ImportCmdExecuter.importFromFile(ImportCmdExecuter.java:100)
         at oracle.owb.scripting.ImportCmdParser.ImportCommand(ImportCmdParser.java:216)
         at oracle.owb.scripting.ImportCmdParser.parseCommand(ImportCmdParser.java:106)
         at oracle.owb.scripting.OMBMetaDataImportCmd.executeCommand(OMBMetaDataImportCmd.java:60)
         at oracle.owb.scripting.OMBCommand.cmdProc(OMBCommand.java:42)
         at tcl.lang.Parser.evalObjv(Parser.java:810)
         at tcl.lang.Parser.eval2(Parser.java:1209)
         at tcl.lang.Interp.eval(Interp.java:2042)
         at tcl.lang.Interp.eval(Interp.java:2101)
         at tcl.lang.ForeachCmd.cmdProc(ForeachCmd.java:112)
         at tcl.lang.AutoloadStub.cmdProc(Extension.java:144)
         at tcl.lang.Parser.evalObjv(Parser.java:810)
         at tcl.lang.Parser.eval2(Parser.java:1209)
         at tcl.lang.Interp.eval(Interp.java:2042)
         at tcl.lang.Interp.evalFile(Interp.java:2140)
         at tcl.lang.SourceCmd.cmdProc(SourceCmd.java:75)
         at tcl.lang.AutoloadStub.cmdProc(Extension.java:144)
         at tcl.lang.Parser.evalObjv(Parser.java:810)
         at tcl.lang.Parser.eval2(Parser.java:1209)
         at tcl.lang.Interp.eval(Interp.java:2042)
         at tcl.lang.ConsoleEvent.processEvent(ConsoleEvent.java:90)
         at tcl.lang.Notifier.serviceEvent(Notifier.java:429)
         at tcl.lang.Notifier.doOneEvent(Notifier.java:561)
         at tcl.lang.TclShell.run(TclShell.java:151)
         at oracle.owb.scripting.OMBShell.main(OMBShell.java:41)
    *************************************************************

    Hey did you found a solution to this problem because i'm in the same situation and i don't know how to fix it.
    Many thanks,
    Dani

  • GP CO implemention package imports error

    Hi Frndz..
    Am just implemanting the GP CO , so in the impemantion of Interface controller when am adding the below imports itz giving error how i can resolve this
    import com.sap.caf.eu.gp.co.api.GPCallableObjectFactory;
    import com.sap.caf.eu.gp.co.api.GPWebDynproResourceAccessor;
    import com.sap.caf.eu.gp.co.api.IGPCOResultStateInfo;
    And also by default in thid Interface Controller impelmantion am getting an error like
    "This compilation unit indiresctly refernces the missing type com.sap.caf.eu.gp.co.api.IGPTechnicalDescription(typically some required class file is referncing out side the classpath)"
    Am uysing NWDS 7.0.09 and java is JDK1.5.0_01
    I
    If any ideas plz share with me..
    Thanks in Advance
    Regards
    Rajesh

    Resolved, errors due to the NWDS

  • Transport Package Import Error/Warning

    Hi Experts,
      I Created a New Transport Package (SE80) in BI Development and Imported to BI Test System.
    I am getting the below Transport warning...What does it mean...can i ignore it
    ABAP Dictionary Activation---Result '(4) Ended with Warning'
    Log:
    No object to be deleted and activated exists 
    Thanks

    hi,
    i hope this is due to no objects selected in the package.
    try including any object in the package and transport to the testing server and you may not get this warning too.
    Ramesh

  • Import error 7.3.4 to 8i urgent

    IMP-00017: following statement failed with ORACLE error 1861:
    "CREATE TABLE "HRM_EMPLOYEE
    "CONFIRM_DATE" DATE DEFAULT '1900-01-01' NOT NULL, "C"
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 532480 NE"
    "XT 516096 MINEXTENTS 1 MAXEXTENTS 50 PCTINCREASE 0 FREELISTS 1 FREELIST GRO"
    "UPS 1) TABLESPACE "USER_DATA""
    IMP-00003: ORACLE error 1861 encountered
    ORA-01861: literal does not match format string
    Hi all i am facing this error in 8i
    Those tables which have date column and if thier default value is '1900-01-01'
    the error occurs.
    How to fix this please

    Will it affect the system?
    The data stored in those tables have 15-may-07
    but the default value is 1900-01-01.
    import create the table with the default option.I have created those tables and tried to import those objects but still the create table stmt fails.
    Message was edited by:
    Maran.E

  • Error When installing 11i (Need support urgently)

    I was trying to install Oracle Apps11i on Windows Server2003 but I've followed all pre-requistes tasks and after the step of Checking utility in the installation I got the following erro messages on Command prompt and the installation window closed :
    AC-00004: Error: Context Template file - G:\Stage11i\startCD\Disk1\rapidwiz\etc\
    adxdbctx.tmp not found.
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visdb\9.2.0\appsu
    til\VIS_oraclebs.xml (The system cannot find the file specified) thrown while cr
    eating OAVars object for file: g:\oracle\visdb\9.2.0\appsutil\VIS_oraclebs.xml
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visdb\9.2.0\appsu
    til\VIS_oraclebs.xml (The system cannot find the file specified) thrown while cr
    eating OAVars object for file: g:\oracle\visdb\9.2.0\appsutil\VIS_oraclebs.xml
    AC-00004: Error: Context Template file - G:\Stage11i\startCD\Disk1\rapidwiz\etc\
    adxmlctx.tmp not found.
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visappl\admin\VIS
    _oraclebs.xml (The system cannot find the file specified) thrown while creating
    OAVars object for file: g:\oracle\visappl\admin\VIS_oraclebs.xml
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visappl\admin\VIS
    _oraclebs.xml (The system cannot find the file specified) thrown while creating
    OAVars object for file: g:\oracle\visappl\admin\VIS_oraclebs.xml
    Database logfile - g:\oracle\visdb\9.2.0\appsutil\log\VIS_oraclebs\01300143.log
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visdb\9.2.0\appsu
    til\VIS_oraclebs.xml (The system cannot find the file specified) thrown while cr
    eating OAVars object for file: g:\oracle\visdb\9.2.0\appsutil\VIS_oraclebs.xml
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visappl\admin\VIS
    _oraclebs.xml (The system cannot find the file specified) thrown while creating
    OAVars object for file: g:\oracle\visappl\admin\VIS_oraclebs.xml
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visdb\9.2.0\appsu
    til\VIS_oraclebs.xml (The system cannot find the file specified) thrown while cr
    eating OAVars object for file: g:\oracle\visdb\9.2.0\appsutil\VIS_oraclebs.xml
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visdb\9.2.0\appsu
    til\VIS_oraclebs.xml (The system cannot find the file specified) thrown while cr
    eating OAVars object for file: g:\oracle\visdb\9.2.0\appsutil\VIS_oraclebs.xml
    AC-10006: Exception - java.io.FileNotFoundException: g:\oracle\visdb\9.2.0\appsu
    til\VIS_oraclebs.xml (The system cannot find the file specified) thrown while cr
    eating OAVars object for file: g:\oracle\visdb\9.2.0\appsutil\VIS_oraclebs.xml

    You can check the md5 checksums for the staged directory structure to validate the software integrity before starting the installation. Do this by running the md5sum program or an equivalent program for your platform from a shell program against the stage area and comparing the values returned against the ones published by Oracle.
    For more details, please refer to Note: 316843.1 - MD5 Checksums for 11i10.2 Rapid Install Media
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=316843.1

  • ADF Exception--Need some urgent help

    Hi Guys,
    I am a new biee in ADF and am trying to override an apply button on a JSPX page. I have created a Custom Bean, which popultes a drop down list and now now i want to select one item from drop down and when i click the apply button, the selected item from drop down needs to be saved in DB.
    Below is the code that i have written, however when i am trying to execute it i am getting exceptions. Please Help
    Caused By: javax.faces.FacesException: javax.el.PropertyNotFoundException: Missing Resource in EL implementation: ???propertyNotReadable???
    at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:261)
    at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
    at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:513)
    at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:782)
    at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1354)
    at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:71)
    at oracle.adfinternal.view.faces.unified.taglib.input.UnifiedSelectOneChoiceTag.doStartTag(UnifiedSelectOneChoiceTag.java:51)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:50)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspIterationTagNode.executeHandler(OracleJspIterationTagNode.java:45)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspClassicTagNode.evalBody(OracleJspClassicTagNode.java:87)
    at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:58)
    at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
    at oracle.jsp.runtime.tree.OracleJspNode.execute(OracleJspNode.java:89)
    at oracle.jsp.runtimev2.ShortCutServlet._jspService(ShortCutServlet.java:89)
    at oracle.jsp.runtime.OracleJspBase.service(OracleJspBase.java:29)
    Below is the extract from the jsff.xml
    <mds:insert parent="pfl1" position="first">
    <af:selectOneChoice xmlns:af="http://xmlns.oracle.com/adf/faces/rich" id="e4680291729" label="Custom Dropdown"
    valueChangeListener="#{backingBeanScope.userformbean.submitActionValidator}" binding="#{backingBeanScope.userformbean.emailSelected}">
                   <f:selectItems xmlns:f="http://java.sun.com/jsf/core" value="#{backingBeanScope.userformbean.emaillistdropdown}" id="emlis12" />
              </af:selectOneChoice>
    </mds:insert>
    package oracle.iam.ui.sample.userform.view;
    import java.util.ArrayList;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    import javax.faces.component.UIComponent;
    import java.util.StringTokenizer;
    import javax.el.MethodExpression;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    import javax.faces.model.SelectItem;
    import oracle.adf.model.BindingContext;
    import oracle.adf.view.rich.component.rich.input.RichSelectItem;
    import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice;
    import oracle.binding.BindingContainer;
    import oracle.iam.identity.exception.NoSuchUserException;
    import oracle.iam.identity.exception.UserSearchException;
    import oracle.iam.identity.usermgmt.api.UserManager;
    import oracle.iam.identity.usermgmt.api.UserManagerConstants;
    import oracle.iam.identity.usermgmt.vo.User;
    import oracle.iam.platform.Platform;
    import oracle.iam.platform.entitymgr.vo.SearchCriteria;
    import oracle.iam.selfservice.exception.UserLookupException;
    import oracle.jbo.uicli.binding.JUCtrlListBinding;
    import org.apache.tools.ant.taskdefs.Get;
    //import oracle.iam.ui.sample.common.model.OIMClientFactory;
    public class UserFormRequestBean {
    private static final String USER_LOGIN_ATTRIBUTE = "usr_login__c";
    private static final String EMAIL_ATTRIBUTE = "usr_email__c";
    private static final String EMAIL_LIST_ATTRIBUTE = "EMAIL_LIST__c";
    private static final String LAST_NAME_ATTRIBUTE = "usr_last_name__c";
    private static List<SelectItem> emaillistdropdown;
    private static RichSelectOneChoice emailSelected;
    private String preffemail;
    private static String filterboxvalue;
    private List<User> userlist;
    private static final String USR_LOGIN="oimcontext.currentUser.usr_key";
    private UIComponent emaillist;
    public UserFormRequestBean() {
    setFilterboxvalue("test custom bean");
    setEmaillistdropdown(getEmailList());
    public static List getEmailList() {
    // String userlastname =
    // FacesUtils.getAttributeBindingValue(LAST_NAME_ATTRIBUTE, String.class);
    emaillistdropdown = new ArrayList<SelectItem>();
    try {
    UserManager usrService = OIMClientFactory.getUserManager();
    Set retAttrs = new HashSet();
    String emailAttribute=null;
    SearchCriteria criteria = new SearchCriteria(UserManagerConstants.AttributeName.USER_LOGIN.getId(),"XELSYSADM", SearchCriteria.Operator.EQUAL);
    // SearchCriteria(UserManagerConstants.AttributeName.USER_LOGIN.getId(),userlogin, SearchCriteria.Operator.EQUAL);
    retAttrs.add("EMAIL_LIST");
    List<User> users = usrService.search(criteria, retAttrs, null);
    for (int i = 0; i < users.size(); i++) {
    emailAttribute =(String)users.get(i).getAttribute("EMAIL_LIST");
    System.out.println("Value for email :: " + emailAttribute);
    StringTokenizer st = new StringTokenizer(emailAttribute, ",");
    while (st.hasMoreElements()) {
    SelectItem emaItem = new SelectItem();
    String token = st.nextToken();
    emaItem.setLabel(token);
    emaItem.setValue(token);
    emaillistdropdown.add(emaItem);
    } catch (UserSearchException e) {
    e.printStackTrace();
    return emaillistdropdown;
    * Generic value change listener. Handles value change events of all customized components.
    * Source component is identified by component reference.
    public void submitActionValidator(ActionEvent actionEvent) {
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    // Get the sepecific list binding
    JUCtrlListBinding listBinding = (JUCtrlListBinding)bindings.get("Custom Dropdown");
    // Get the value which is currently selected
    Object emailSelected = listBinding.getSelectedValue();
    System.out.println("Inside SubmitAction Avlidator***********************************");
    // emailSelected =
    // (RichSelectOneChoice)actionEvent.getSource();
    System.out.println("emailSelected***********************************:"+emailSelected);
    if (emailSelected != null) {
    preffemail = emailSelected.toString();
    System.out.println("preffemail***********************************"+preffemail);
    FacesContext facesContext = FacesContext.getCurrentInstance();
    FacesUtils.setAttributeBindingValue(EMAIL_ATTRIBUTE,
    preffemail);
    // execute original submit button action listener
    MethodExpression originalActionListener =
    FacesUtils.getMethodExpressionFromEL("#{backingBeanScope.MyInformationUIBean.applyButton}",
    null,
    new Class[] { ActionEvent.class });
    originalActionListener.invoke(FacesUtils.getELContext(),new Object[] {actionEvent});
    public void setemaillist(UIComponent emaillist) {
    this.emaillist = emaillist;
    public UIComponent getemaillist() {
    return emaillist;
    public static void setFilterboxvalue(String filterboxvalue) {
    filterboxvalue = filterboxvalue;
    public String getFilterboxvalue() {
    return filterboxvalue;
    public void setEmaillistdropdown(List<SelectItem> emaillistdropdown) {
    this.emaillistdropdown = emaillistdropdown;
    public List<SelectItem> getEmaillistdropdown() {
    return emaillistdropdown;
    public void setEmailSelected(RichSelectOneChoice emailSelected) {
    this.emailSelected = emailSelected;
    public static RichSelectOneChoice getEmailSelected() {
    return emailSelected;
    public void setPreffemail(String preffemail) {
    this.preffemail = preffemail;
    public String getPreffemail() {
    return preffemail;
    }

    There isn't sufficient detail in your post. To confirm,
    1) Are you customizing an out-of-the-box WebCenter taskflow?
    2) How are you deploying the new managed bean class? Is it deployed as an ADF Library jar within a shared library?
    3) If ADF Library JAR, do you have the managed bean defined in the config files (adfc-config or faces-config) within the ADF Library JAR

  • Need some urgent help on printing HTML

    I am trying to print an HTML using JEditorPane. I used all the GURU's views in this forum and copied the code. It works fine, but the images or not getting printed correctly
    Here is my HTML:
    <html>
    <head>
    <title>test</title>
    </head>
    <body>
    <h1>HELLO</h1>
    <h2>Hello</h2>
    <h6><big><big><big>This is a Test Program for the print</big></big></big></h6>
    <br>
    <p>
    You can also use an image as a link:
    <img border="0" src="D:\Tips\Projects\edib\logo.gif" width="65" height="38">
    </p>
    <br>
    <IMG SRC="D:\Tips\Projects\edib\logo.gif" width="65" height="38">
    </body>
    </html>
    These two images are not getting printed. My java class, html and logo.gif are all in the same directory.
    Here's the java code which I got it from this forum
    import java.io.*;
    import java.awt.print.*;
    import javax.swing.*;
    public class PrintHTMLSwing extends JFrame
         public static void main(String args[]) throws Exception
         //Read the HTML file to a String.
         FileInputStream fio = new FileInputStream(args[0]);
         int size = fio.available();
         byte[] fl = new byte[size];
         fio.read(fl,0,size);
         System.out.println(new String(fl));
         PrintableEditorPane ep = new PrintableEditorPane();
         ep.setContentType("text/html");
         //System.out.println(ep.getContentType());
         ep.setText(new String(fl));
         PrintHTMLSwing p = new PrintHTMLSwing();
         p.getContentPane().add(ep);
         //p.setSize(100,100);
         p.pack();
         p.show();
         // Get a PrinterJob
         PrinterJob job = PrinterJob.getPrinterJob();
         // Create a landscape page format
         PageFormat landscape = job.defaultPage();
         landscape.setOrientation(PageFormat.LANDSCAPE);
         // Set up a book
         Book bk = new Book();
         bk.append(ep, job.defaultPage());
         // Pass the book to the PrinterJob
         job.setPageable(bk);
         // Put up the dialog box
         if (job.printDialog())
              // Print the job if the user didn't cancel printing
              try
                   job.print();
              catch (Exception e)
                   System.out.println("Error 1:"+ e.toString());
              System.exit(1);
    class PrintableEditorPane extends javax.swing.JEditorPane implements java.awt.print.Printable
         public int print(java.awt.Graphics g, java.awt.print.PageFormat pageFormat, int      pageIndex)
              int x = (int)pageFormat.getImageableX();
              int y = (int)pageFormat.getImageableY();
              g.translate(x, y);
              paint(g);
              return PAGE_EXISTS;
    WILL ANYONE PLS HELP ME WHATS WRONG WITH THE CODE OR WHAT ELSE SHOULD I DO TO GET THE IMAGES TO PRINT CORRECTLY
    Thanks
    Tips

    All u need to do is specify a protocol. In your case it will be "file://"" preceeding the path to the images. Not a very good idea to use absolute path to the images though. Consider relative ones instead.
    Hope this helps.

  • Need some urgent help with my (simple) Applet!

    Hello, I'm pretty new to Java and I am beginning to like it!
    I'm still verry much new to the language, but if you can help me you make me verry happy!
    Oke so I made an Applet where if you push on the button Omhoog, Omlaag, Links, Rechts, and Reset the ball (created with g.Oval in the methode paint) the ball should move above, down, left, right, and with reset it should go to the specified beginningpoint. The thing which I can't get to work is that when you push for instance on rechts(right) I want it to change in color for each specific movement (i.e left right...) and turn to black again when pushing on the reset button. I have been meshing around with if and else but I don't seem to know how to set this proparly. (I hope you can help me out!)
    this is my sourcecode:
    package oefening80;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class Applet1 extends Applet {
    int xPos = 130, yPos = 130;
    Button Omhoog, Omlaag, Links, Rechts, Reset;
    boolean geklikt, gekliktL;
    public void init() {
    setBackground( Color.yellow );
    setLayout( null );
    geklikt = false;
    Omhoog = new Button( "Omhoog" );
    Omhoog.addActionListener( new OmhoogHandler() );
    Omhoog.setBounds( 120, 20, 50, 20 );
    gekliktL = false;
    Omlaag = new Button( "Omlaag" );
    Omlaag.addActionListener( new OmlaagHandler() );
    Omlaag.setBounds( 120, 60, 50, 20 );
    Reset = new Button( "Reset" );
    Reset.addActionListener( new ResetHandler() );
    Reset.setBounds( 120, 40, 50, 20);
    Links = new Button( "Links" );
    Links.addActionListener( new LinksHandler() );
    Links.setBounds(70, 40, 50, 20 );
    Rechts = new Button( "Rechts" );
    Rechts.addActionListener( new RechtsHandler() );
    Rechts.setBounds( 170, 40, 50, 20 );
    add( Omhoog );
    add( Omlaag );
    add( Reset );
    add( Links );
    add( Rechts );
    public void paint( Graphics g ) {
    g.fillOval( xPos, yPos, 30, 30 );
    class OmhoogHandler implements ActionListener {
    public void actionPerformed( ActionEvent e ) {
    yPos -= 10;
    repaint();
    class OmlaagHandler implements ActionListener {
    public void actionPerformed( ActionEvent e ) {
    gekliktL = true;
    yPos += 10;
    repaint();
    class ResetHandler implements ActionListener {
    public void actionPerformed( ActionEvent e ) {
    xPos = 130;
    yPos = 130;
    repaint();
    class LinksHandler implements ActionListener {
    public void actionPerformed( ActionEvent e ) {
    xPos -= 10;
    repaint();
    class RechtsHandler implements ActionListener {
    public void actionPerformed( ActionEvent e ) {
    xPos += 10;
    repaint();
    thanks.

    Gotten tag.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class Applet1 extends Applet
         int     xPos = 130, yPos = 130;
         Button  Omhoog, Omlaag, Links, Rechts, Reset;
         boolean geklikt, gekliktL;
    public void init()
         setBackground( Color.yellow );
         setLayout( null );
         ActionListener actl = new OHandler();
         geklikt = false;
         Omhoog = new Button("Omhoog");
         Omhoog.addActionListener(actl);
         Omhoog.setBounds(115, 20, 60, 20 );
         gekliktL = false;
         Omlaag = new Button("Omlaag");
         Omlaag.addActionListener(actl);
         Omlaag.setBounds(115, 60, 60, 20 );
         Reset = new Button("Reset");
         Reset.addActionListener(actl);
         Reset.setBounds(120, 40, 50, 20);
         Links = new Button("Links");
         Links.addActionListener(actl);
         Links.setBounds(70, 40, 50, 20 );
         Rechts = new Button("Rechts");
         Rechts.addActionListener(actl);     
         Rechts.setBounds(170, 40, 50, 20 );
         add(Omhoog);
         add(Omlaag);
         add(Reset);
         add(Links);
         add(Rechts);
    public void paint(Graphics g)
         super.paint(g);
         g.fillOval(xPos, yPos, 30, 30 );
    class OHandler implements ActionListener
    public void actionPerformed(ActionEvent e)
         Object obj = e.getSource();
         if (obj.equals(Omhoog)) yPos -= 10;
         if (obj.equals(Omlaag)) yPos += 10;
         if (obj.equals(Rechts)) xPos += 10;
         if (obj.equals(Links))  xPos -= 10;
         if (obj.equals(Reset)) 
              xPos = 130;
              yPos = 130;
         repaint();
    [/code
    Noah                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • How do I keep track of data usage on the iPhone 5C?

    I just purchased an iPhone 5C (my first smartphone), and I'm confused as to what exactly the GB information in the "Usage" menu under Settings-->General-->Usage means. Are those gigs that are listed how much I have used and available for storage ONLY

  • Solaris 7 to 8 Upgrade with Oracle 8.1.5 (opinions and issues to note)

    Hi all, Think the subject says it all.. I have a Solaris 7 server running on Sparc E250 with Oracle8.1.5 on it. It shows that it s a 64bit system when booting up and it uses normal Solaris filesystem setup (no RAID on it) . If I were to upgrade it to

  • Using DBMS_AQ package in APEX

    Hello, I am trying to create a Queue table from application express. I read through a post on another forum that said some privs must be granted before a queue table can be created. They are: GRANT RESOURCE TO <UserName>; GRANT CONNECT TO <UserName>;

  • F-92: Retirement with revenue

    Could any one check and clarify on the following: a) Is it possible to post an acquisition using t.code f-92. b) If yes, how does the accounting entry look like? c) What will be the balances in that particular asset history. d) If we retire the asset

  • Byte Serving for pdf

    Hello, I make a servlet that sends pdf with byte serving. I have no problems with Windows Clients but with Macintosh clients (Explorer, Netscape 7 works) acrobat waits like expecting some data. Any idea if I must use some special header or do you hav