Export failure due to column length in DRM 11.1.2.1

Hi All,
We have migrated recently from 11.1.1.43 to 11.1.2.1 and the issue is with one of the exports
In the earlier version you have the option of manipulating the column length inspite of the actual length set in the table column. This can be edited in the column options when the table is selected at the last option of export.
Now the issue is i could see the length of the column in the 11.1.2.1 export option but i was unable to edit that length and reduce it to the required
Viz., i have the column length of 80 set in the table and in the export it is restricted to 50 in the old version. Now i'm unable to edit this in 11.1.2.1
Could anyone help me on this? I believe i may be missing some basics here
Thanks

In the earlier versions by default every property length is treated as 50 Characters while we export the data from DRM,
Now in the new version we need to alter the table before we export based on the property length,
Thanks,
Murali

Similar Messages

  • Increase the column lengths of excel sheet through abap

    I developed a abap program and it was displayed the output.
      So i need to display this out put in excel sheet.
      for that I read the out put and placed in the excel,
    the only problem is the column lengths are small
    after download  i am dragging the each column,
    But i need to increase the each column by the program
       How can I ?
    I am using the following code
          lastline = new_line_c + 13.
          DO .
            READ LINE sy-index LINE VALUE INTO it_read-excel.
            APPEND it_read.
            IF sy-index > lastline.
              EXIT.
            ENDIF.
          ENDDO.
          lastline = new_line_c - 38.
          colm = ( length - 37 ) / 18.
          colm = colm + 4.
          FOR THE EXCEL CONVERTION
          INCLUDE ole2incl.
          DATA: w_cell1 TYPE ole2_object,
          w_cell2 TYPE ole2_object.
    *--- Ole data Declarations
          DATA: h_excel TYPE ole2_object, " Excel object
          h_mapl TYPE ole2_object, " list of workbooks
          h_map TYPE ole2_object, " workbook
          h_zl TYPE ole2_object, " cell
          h_f TYPE ole2_object, " font
          gs_interior TYPE ole2_object, " Pattern
          worksheet TYPE ole2_object,
          h_cell TYPE ole2_object,
          h_merge TYPE ole2_object,
          h_cell1 TYPE ole2_object,
          range TYPE ole2_object,
          h_sheet2 TYPE ole2_object,
          h_sheet3 TYPE ole2_object,
          gs_font TYPE ole2_object,
          flg_stop(1) TYPE c.
    *DATA: t_excel_bckord LIKE t_excel OCCURS 0 WITH HEADER LINE,
    *t_excel_bcklog LIKE t_excel OCCURS 0 WITH HEADER LINE,
    *t_excel_blkord LIKE t_excel OCCURS 0 WITH HEADER LINE.
          TYPES: data1(1500) TYPE c,
          ty TYPE TABLE OF data1.
          DATA: it TYPE ty WITH HEADER LINE,
          it_2 TYPE ty WITH HEADER LINE,
          it_3 TYPE ty WITH HEADER LINE,
          rec TYPE sy-tfill,
          deli(1) TYPE c,
          l_amt(18) TYPE c.
          DATA: BEGIN OF hex,
          tab TYPE x,
          END OF hex.
          FIELD-SYMBOLS: <fs> .
          CONSTANTS cns_09(2) TYPE n VALUE 09.
          ASSIGN deli TO <fs> TYPE 'X'.
          hex-tab = cns_09.
          <fs> = hex-tab.
          DATA gv_sheet_name(20) TYPE c .
    M A C R O Declaration
          DEFINE ole_check_error.
            if &1 ne 0.
              message e001(zz) with &1.
              exit.
            endif.
          END-OF-DEFINITION.
          DATA: xy TYPE i,
                xz TYPE i,
                yz TYPE i,
                ab TYPE i,
                pterm TYPE i.
          IF h_excel-header = space OR h_excel-handle = -1.
    start Excel
            CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
          ENDIF.
    PERFORM err_hdl.
    *--- get list of workbooks, initially empty
          CALL METHOD OF h_excel 'Workbooks' = h_mapl.
    PERFORM err_hdl.
          SET PROPERTY OF h_excel 'Visible' = 1.
    add a new workbook
          CALL METHOD OF h_mapl 'Add' = h_map.
    PERFORM err_hdl.
    *GV_SHEET_NAME = '1st SHEET'.
          gv_sheet_name = 'Price Comparison List'.
          GET PROPERTY OF h_excel 'ACTIVESHEET' = worksheet.
          SET PROPERTY OF worksheet 'Name' = gv_sheet_name .
          index1 = 3.
          LOOP AT it_read.
           heading
            IF sy-tabix < 4.
              it_item = it_read.
              IF  it_item CS '-----'.
                CLEAR it_item.
                APPEND it_item.
              ELSE.
                IF sy-tabix = 1.
                  it_item+0(1) = deli.
                ENDIF.
                APPEND it_item.
              ENDIF.
            ENDIF.
           headear data and item
            IF sy-tabix > 4 AND sy-tabix < descline1.
              it_item = it_read.
              IF it_item CS '----'.
              ELSE.
                REPLACE ALL OCCURRENCES OF sy-vline IN it_item WITH deli.
                APPEND it_item.
              ENDIF.
            ENDIF.
            xy = 2.
            xz = 38.
           discount etc
            IF sy-tabix >= descline1 AND sy-tabix < descline.
              it_item = it_read.
              it_item+12(1) = deli.
              it_item+22(1) = deli.
              it_item+43(1) = deli.
              WHILE xy < colm.
                xz = xz + 18.
                it_item+xz(1) = deli.
                xy = xy + 1.
              ENDWHILE.
              APPEND it_item.
            ENDIF.
          payment terms
            xy = 2.
            xz = 37.
            pterm = descline + 6.
            IF sy-tabix > descline AND sy-tabix < pterm.
              it_item = it_read.
              IF it_item CS '-----'.
                CLEAR it_item.
                APPEND it_item.
              ELSE.
                it_item+12(1) = deli.
                it_item+15(1) = deli.
                it_item+36(1) = deli.
                WHILE xy < colm.
                  xz = xz + 17.
                  it_item+xz(1) = deli.
                  xy = xy + 1.
                ENDWHILE.
                APPEND it_item.
              ENDIF.
            ENDIF.
         prepared by
            lastline = pterm + 3.
            IF sy-tabix >= pterm AND sy-tabix <= lastline.
              it_item = it_read.
              IF it_item CS '-----'.
              ELSE.
                it_item+0(1) = deli.
                it_item+54(1) = ' '.
                it_item+16(1) = deli.
                APPEND it_item.
              ENDIF.
            ENDIF.
           remaarks
            yz = lastline + 10.
            IF sy-tabix > lastline AND sy-tabix <= yz.
              it_item = it_read.
              it_item+0(1) = deli.
              it_item+54(1) = ' '.
              APPEND it_item.
            ENDIF.
      approved by
            ab = yz + 5.
            IF sy-tabix > yz AND sy-tabix < ab.
              it_item = it_read.
              IF it_item CS '-----'.
              ELSE.
                it_item+0(1) = deli.
                it_item+54(1) = ' '.
                it_item+14(1) = deli.
                APPEND it_item.
              ENDIF.
            ENDIF.
          ENDLOOP.
    *--Formatting the area of additional data 1 and doing the BOLD
          CALL METHOD OF h_excel 'Cells' = w_cell1
            EXPORTING
            #1 = 1
            #2 = 1.
          CALL METHOD OF h_excel 'Cells' = w_cell2
            EXPORTING
            #1 = 1
            #2 = colm.
          CALL METHOD OF h_excel 'Range' = h_cell
            EXPORTING
            #1 = w_cell1
            #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
          GET PROPERTY OF h_cell 'Font' = gs_font .
          SET PROPERTY OF gs_font 'Bold' = 1 .
    *Bold for the second row
          CALL METHOD OF h_excel 'Cells' = w_cell1
            EXPORTING
            #1 = 2
            #2 = 1.
          CALL METHOD OF h_excel 'Cells' = w_cell2
            EXPORTING
            #1 = 1
            #2 = colm.
          CALL METHOD OF h_excel 'Range' = h_cell
            EXPORTING
            #1 = w_cell1
            #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
          GET PROPERTY OF h_cell 'Font' = gs_font .
          SET PROPERTY OF gs_font 'Bold' = 1 .
    *Bold for the fourth row
          CALL METHOD OF h_excel 'Cells' = w_cell1
            EXPORTING
            #1 = 4
            #2 = 1.
          CALL METHOD OF h_excel 'Cells' = w_cell2
            EXPORTING
            #1 = 1
            #2 = colm.
          CALL METHOD OF h_excel 'Range' = h_cell
            EXPORTING
            #1 = w_cell1
            #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
          GET PROPERTY OF h_cell 'Font' = gs_font .
          SET PROPERTY OF gs_font 'Bold' = 1 .
    *Bold for the fifth row
          CALL METHOD OF h_excel 'Cells' = w_cell1
            EXPORTING
            #1 = 5
            #2 = 1.
          CALL METHOD OF h_excel 'Cells' = w_cell2
            EXPORTING
            #1 = 1
            #2 = colm.
          CALL METHOD OF h_excel 'Range' = h_cell
            EXPORTING
            #1 = w_cell1
            #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
          GET PROPERTY OF h_cell 'Font' = gs_font .
          SET PROPERTY OF gs_font 'Bold' = 1 .
    *Bold for the sixth row
          CALL METHOD OF h_excel 'Cells' = w_cell1
            EXPORTING
            #1 = 6
            #2 = 1.
          CALL METHOD OF h_excel 'Cells' = w_cell2
            EXPORTING
            #1 = 1
            #2 = colm.
          CALL METHOD OF h_excel 'Range' = h_cell
            EXPORTING
            #1 = w_cell1
            #2 = w_cell2.
    *CALL METHOD OF gs_cells 'Select' .
          GET PROPERTY OF h_cell 'Font' = gs_font .
          SET PROPERTY OF gs_font 'Bold' = 1 .
          DATA l_rc TYPE i.
          CALL METHOD cl_gui_frontend_services=>clipboard_export
            IMPORTING
              data                 = it_item[]
            CHANGING
              rc                   = l_rc
            EXCEPTIONS
              cntl_error           = 1
              error_no_gui         = 2
              not_supported_by_gui = 3
              OTHERS               = 4.
          CALL METHOD OF h_excel 'Cells' = w_cell1
            EXPORTING
            #1 = 1
            #2 = 1.
          CALL METHOD OF h_excel 'Cells' = w_cell2
            EXPORTING
            #1 = 1
            #2 = 1.
    PERFORM err_hdl.
          CALL METHOD OF h_excel 'Range' = range
            EXPORTING
            #1 = w_cell1
            #2 = w_cell2.
          CALL METHOD OF range 'Select'.
    PERFORM err_hdl.
          CALL METHOD OF worksheet 'Paste'.
    PERFORM err_hdl.
    CALL METHOD OF h_excel 'QUIT'.
          FREE OBJECT h_zl.
          FREE OBJECT h_mapl.
          FREE OBJECT h_map.
          FREE OBJECT h_excel.

    Hello Ravi,
    Thank you very much for your suggestions.. but still have some more doubts:
    What i want to do is :
    -->call report in background job with a selection criteria.
    -->the output of the report should be trasnsfered to excel sheet
    -->then the excel sheet should be sent to XI..
    My doubts are:
    -> is it possible with every report or we need some extra code to achieve this
    -> If yes, then how exactly it should be done. can you please explain in more detail.
    Thank you very much for your help.
    Best Regards,
    Jasmeet

  • Logon failure due to an internal error

    Hi,
    We have installed XI 3.1 SP3 (plus fixpacks) on a server and I am trying to access Web Intelligence on the client machine. I get the error "Logon failure due to an internal error." Any ideas what the problem may be?
    I can login into Web Intelligence when on the server directly using remote desktop. I am on SP3 on the client machine but may not be on the same level for fixpacks - will check. Could that be the problem?
    I can access the CMC from the client machine.
    Thanks

    Hi All,
      I'll start by describing the basic logon connections made by all the client tools when connecting to a Business Objects CMS.  From this hopefully it will help resolve the kind of issues described here.
    ------------------Background------------------
      The CMS has a port number (6400).  This port number is actually the port number of the name server.  This name server stores the name, type of server, hostname and port for all the BusinessObjects servers that exist in the cluster.  Whenever a program (such as a client tool) needs to know how to connect to a particular server, the name server will reply with the hostname (or IP) and port number to connect to.  When each Business Objects server process starts it will register with the name server and tell it what its connection info (hostname and port) are.
      In the case of a client logon it will first connect to the name server and then request the information to connect to the CMS service - (note that the name server and the CMS service are two logicial and seperate functions that the CMS process performs).  The CMS service actually runs on the request port of the CMS.
    ------------------Cause of Logon Failures------------------
      If you have no explicitly configured it, the hostname returned for connection could be the fully qualified name OR the short hostname of the machine and the port number will be random (and change each time the process is started).  The client ALSO needs to be able to connect to the hostname and port returned by the name server to continue processing.  If it can't then you will receive a logon error - in designer/desktop intelligence this will appear as a 'Transport Communication Error' in the deatils of the error message.
    ------------------Example------------------
      You initially connect to boeserver.mycomp.com:6400.  boeserver.mycomp.com is a DNS name that the client computer can resolve and the port 6400 is open through the firewall.  The client connects to the name server (within the CMS process) and requests the connection information for the CMS services but these have not been explicitly set in the CMC->Server->CMS->Properties page.
      The response from the nameserver might be to connect to the short name of the host: boeserver on port 54393 (or some other random port number).  You will get a logon error if EITHER the hostname boeserver cannot be resolved (which can be quite common when the boeserver machine is in a different subnet) OR there is a firewall blocking the connection port (54393 in this case).
    ------------------Resolution------------------
    Go to the CMC->Server->CMS->Properties page.  Here there is a section where you can specify the hostname with with each business objects server will give as the hostname (or IP address) and port (request port) that it can be contacted on. In the example below I have said that it should be contacted on the fullyqualified name and on port 6401.  Again 6401 would need to be open through the firewall.
    No two servers can have the same request port.  As you can see in the screenshot I have specified to connect to the CMS service on 6401 using the fullyqualified hostname boeserver.mycomp.com and finally that the name server port is the default 6400.
    As mentioned previously there may be also other BOE servers that similar settings are required for, depending on the actions you are performing - e.g. IDT and designer need access to the input file repository server to input/export universes, WebiRich Client also should have access to the Output File Repository Server.  Client tools should also have access to the Adaptive Processing Server that is running the Client Auditing Proxy Service so that any actions are audited.
    One extra thing that can cause a block on the port number, other than a regular corporate firewall is the security on the server machine itself (e.g. the Windows firewall on the server can block incoming requests if there is not an expection created.
    Regards,
    Graham

  • How to adjust column length in function REUSE_ALV_GRID_DISPLAY

    Hi,
    I am using this function REUSE_ALV_GRID_DISPLAY to display .Please tell how to adjust the column length in  this function, so that it is set to default field name size.
    thanks

    Hi anu,
    The column width can be adjusted by using the following method:
    -> define layout of the type.
                data: it_layout type slis_layout_alv.
    -> call the reuse alv... by using the is_layout field name with the above defined variable.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
        I_CALLBACK_PROGRAM                =  <program that calls reuse>
        I_CALLBACK_PF_STATUS_SET          = < form to set pf-status>
        I_CALLBACK_USER_COMMAND           = <form to catch user command>
        I_STRUCTURE_NAME                  = < structure to be passed>
        I_GRID_TITLE            = < any title to appear on top of the grid display>
        IS_LAYOUT                         = it_layout
        IT_FIELDCAT                       = IT_FIELDCAT[]
        IT_EVENTS                         =
        IT_EVENT_EXIT                     = I_EVENT_EXIT  < to capture exit event>
      I_SCREEN_START_COLUMN             = 0 <screen settings>
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
       TABLES
        T_OUTTAB                          = IT_INACT_OBJ
       EXCEPTIONS
        PROGRAM_ERROR                     = 1
        OTHERS                            = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                 
    -> write a form to set the layout of the grid...
    *&      Form  build_layout
          text
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    Set layout field for row attributes(i.e. color)
      gd_layout-info_fieldname =      'LINE_COLOR'.
    gd_layout-totals_only        = 'X'.
    gd_layout-f2code            = 'DISP'.  "Sets fcode for double click or "click(press f2)
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text       = 'helllllo'.
    endform.                    " build_layout
    endform.   
    This will optimize the output of the grid display.
    Hope this helps!!!
    Revert if any queries!!!
    regards,
    Naveenan.

  • Re: [iPlanet-JATO] Finding the database column length

    This is the technique I would recommend. If you'd like to wrap this
    mechanism up in the model class itself, create a subclass of QueryModelBase
    that provides such a method and use that as the base class for all your
    QueryModels.
    Todd
    ----- Original Message -----
    From: "Craig V. Conover" <craig.conover@S...>
    Sent: Friday, October 19, 2001 12:15 PM
    Subject: Re: [iPlanet-JATO] Finding the database column length
    Chidu,
    The result set that you get back is a JDBC ResultSet, not a "JATO" resultset. In ND, everything was wrapped in a "spider" data
    structure, and therefore, difficult to get to the underlying datastructure, in many cases. In some case ND made it easier to do
    certain things, and in other ways, made it more difficult or impossible(like seeing the SQL for an insert, update, delete).
    >
    Anyway, looking at the java.sql package, you can do this.
    java.sql.ResultSet rs = <jata-model>.getResultSet();
    java.sql.ResultSetMetaData rsMeta = rs.getMetaData();
    // not sure if this is what you need, but it was the closest thing I couldfind
    int colSize = rsMeta.getColumnDisplaySize(int column);
    There are numerous other methods in the ResultSetMetaData interface thatmay be of use as well.
    >
    c
    chidusv@y... wrote:
    Hi,
    How do I find out the length of a database column in a data model? In
    NetDynamics, we can do dataobject.getDataField(<field
    name>).getColumnLength(). Is it possible to achieve this in JATO
    without using a resultset?
    Thanks,
    Chidu.
    For more information about JATO, please visit
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    >>
    >>
    >>
    >>
    >
    >
    >
    For more information about JATO, please visit
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    >
    >
    >
    >
    >
    >
    >

    This is the technique I would recommend. If you'd like to wrap this
    mechanism up in the model class itself, create a subclass of QueryModelBase
    that provides such a method and use that as the base class for all your
    QueryModels.
    Todd
    ----- Original Message -----
    From: "Craig V. Conover" <craig.conover@S...>
    Sent: Friday, October 19, 2001 12:15 PM
    Subject: Re: [iPlanet-JATO] Finding the database column length
    Chidu,
    The result set that you get back is a JDBC ResultSet, not a "JATO" resultset. In ND, everything was wrapped in a "spider" data
    structure, and therefore, difficult to get to the underlying datastructure, in many cases. In some case ND made it easier to do
    certain things, and in other ways, made it more difficult or impossible(like seeing the SQL for an insert, update, delete).
    >
    Anyway, looking at the java.sql package, you can do this.
    java.sql.ResultSet rs = <jata-model>.getResultSet();
    java.sql.ResultSetMetaData rsMeta = rs.getMetaData();
    // not sure if this is what you need, but it was the closest thing I couldfind
    int colSize = rsMeta.getColumnDisplaySize(int column);
    There are numerous other methods in the ResultSetMetaData interface thatmay be of use as well.
    >
    c
    chidusv@y... wrote:
    Hi,
    How do I find out the length of a database column in a data model? In
    NetDynamics, we can do dataobject.getDataField(<field
    name>).getColumnLength(). Is it possible to achieve this in JATO
    without using a resultset?
    Thanks,
    Chidu.
    For more information about JATO, please visit
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    >>
    >>
    >>
    >>
    >
    >
    >
    For more information about JATO, please visit
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    >
    >
    >
    >
    >
    >
    >

  • Infinite loop creating new page due to column header overflow.

    i am getting an error and some pages "Infinite loop creating new page due to column header overflow. " --
    using report builder 9, i have a fairly simple report - that contains 4 subreports.
    for some pages i get the error - it seems if there is more data than would fit on 1 page.
    smaller pages work fine.
    the subreports are all simple queries and dumps....
    containing page header, column header, detail sections.
    page header has just a text bar of the name of the section.
    column header has the field names
    detail section has the data - 1 row for each row in the recordset.
    nothing i do seems to change getting "Infinite loop creating new page due to column header overflow. " on a page with more than 15-20 records returned.
    any ideas would be appreciated.

    Try these links if you are still having the issue:
    http://community.jaspersoft.com/questions/543302/receive-infinite-loop-creating-new-page-d ue-column-header-overflow-exception
    http://community.jaspersoft.com/questions/500177/infinite-loop-due-page-header-overflow

  • Install failure due to "faulty DVD" problem: only with Family Pack?

    After going through a few threads on the subject of installation failure due to tbe pseudo-faulty DVD, I have the impression that many users mention that they were using a Family Pack install DVD or in one case a "drop in". The former is my case. Please post if you have had this problem with Leopard install, and whether you were using a single licence, family pack or drop in. It's just a hunch, but perhaps this problem only affects a specific set of disks.

    I believe that they are holding back on sending a new DVD until they know why there were defective ones. I read somewhere that they require a new SKU so that they will actually be a separate batch.
    Can you borrow a DVD from anyone to install Leopard? You certainly would be allowed to legally do that. I am surmising that Apple is overloaded with requests for a replacement DVD and really want to make sure it works. You know that old thing about "fool me once..."
    Stuff happens - but with Leopard, a lot of stuff sure happened at once. They sold 2 million DVDs. If only 5% have problems, that's a lot of problems to deal with, one at a time.
    In time it will sort itself out, but in the meantime the rooms are full of smoke

  • ETL Failure Due to Failure of a Task

    Hi All,
    I am getting ETL failure due to failure of a task, sporadically. Also, when i re-run the ETL, the ETL completed successfully.
    I have copied the informatica session log file.
    DIRECTOR> VAR_27027 Use default value [0] for user-defined workflow/worklet variable:[$$passInStatus].
    DIRECTOR> VAR_27028 Use override value [DataWarehouse] for session parameter:[$DBConnection_OLAP].
    DIRECTOR> VAR_27028 Use override value [SEBL_80] for session parameter:[$DBConnection_OLTP].
    DIRECTOR> VAR_27028 Use override value [1] for mapping parameter:[$$DATASOURCE_NUM_ID].
    DIRECTOR> VAR_27028 Use override value [] for mapping parameter:[$$Hint1].
    DIRECTOR> VAR_27028 Use override value [] for mapping parameter:[$$Hint2].
    DIRECTOR> TM_6014 Initializing session [VisibilityActivityParty_Full] at [Wed Aug 17 00:31:31 2011]
    DIRECTOR> TM_6683 Repository Name: [Oracle_BI_DW_Base]
    DIRECTOR> TM_6684 Server Name: [Oracle_BI_DW_Base_Integration_Service]
    DIRECTOR> TM_6686 Folder: [SDE_SBL_80_Adaptor]
    DIRECTOR> TM_6685 Workflow: [VisibilityActivityParty_Full]
    DIRECTOR> TM_6101 Mapping name: VisibilityActivityParty [version 1]
    DIRECTOR> TM_6827 [D:\Informatica\PowerCenter8.1.1\server\infa_shared\Storage] will be used as storage directory for session [VisibilityActivityParty_Full].
    DIRECTOR> CMN_1802 Session recovery cache initialization is complete.
    DIRECTOR> TM_6703 Session [VisibilityActivityParty_Full] is run by 32-bit Integration Service [node01_sb8anaprd], version [8.1.1 SP5], build [0822].
    MANAGER> PETL_24058 Running Partition Group [1].
    MANAGER> PETL_24000 Parallel Pipeline Engine initializing.
    MANAGER> PETL_24001 Parallel Pipeline Engine running.
    MANAGER> PETL_24003 Initializing session run.
    MAPPING> CMN_1569 Server Mode: [ASCII]
    MAPPING> CMN_1570 Server Code page: [MS Windows Latin 1 (ANSI), superset of Latin1]
    MAPPING> TM_6151 Session Sort Order: [Binary]
    MAPPING> TM_6156 Using LOW precision decimal arithmetic
    MAPPING> TM_6180 Deadlock retry logic will not be implemented.
    MAPPING> TM_6307 DTM Error Log Disabled.
    MAPPING> TE_7022 TShmWriter: Initialized
    MAPPING> DBG_21075 Connecting to database [obieeprd], user [OLAP]
    MAPPING> DBG_21474 Warning: Update Strategy transform [UPDTRANS] is disabled. Set session type to [Data Driven] to enable it.
    MAPPING> TM_6007 DTM initialized successfully for session [VisibilityActivityParty_Full]
    DIRECTOR> PETL_24033 All DTM Connection Info: [<NONE>].
    MANAGER> PETL_24004 Starting pre-session tasks. : (Wed Aug 17 00:31:31 2011)
    MANAGER> PETL_24027 Pre-session task completed successfully. : (Wed Aug 17 00:31:31 2011)
    DIRECTOR> PETL_24006 Starting data movement.
    MAPPING> TM_6660 Total Buffer Pool size is 36000000 bytes and Block size is 65536 bytes.
    READER_1_1_1> DBG_21438 Reader: Source is [SB8PRD], user [SIEBEL]
    READER_1_1_1> BLKR_16003 Initialization completed successfully.
    WRITER_1_*_1> WRT_8146 Writer: Target is database [obieeprd], user [OLAP], bulk mode [ON]
    WRITER_1_*_1> WRT_8106 Warning! Bulk Mode session - recovery is not guaranteed.
    WRITER_1_*_1> WRT_8397 Appending output data to file [D:\Informatica\PowerCenter8.1.1\server\infa_shared\BadFiles\w_act_party.bad] (initial size [717]).
    WRITER_1_*_1> WRT_8124 Target Table W_ACT_PARTY :SQL INSERT statement:
    INSERT INTO W_ACT_PARTY(INTEGRATION_ID,DATASOURCE_NUM_ID,ETL_PROC_WID,TABLE_WID,ACTIVITY_ID,PARTY_ID) VALUES ( ?, ?, ?, ?, ?, ?)
    WRITER_1_*_1> WRT_8124 Target Table W_ACT_PARTY :SQL UPDATE statement:
    UPDATE W_ACT_PARTY SET ETL_PROC_WID = ?, ACTIVITY_ID = ?, PARTY_ID = ? WHERE INTEGRATION_ID = ? AND DATASOURCE_NUM_ID = ? AND TABLE_WID = ?
    WRITER_1_*_1> WRT_8124 Target Table W_ACT_PARTY :SQL DELETE statement:
    DELETE FROM W_ACT_PARTY WHERE INTEGRATION_ID = ? AND DATASOURCE_NUM_ID = ? AND TABLE_WID = ?
    WRITER_1_*_1> WRT_8270 Target connection group #1 consists of target(s) [W_ACT_PARTY]
    WRITER_1_*_1> WRT_8003 Writer initialization complete.
    READER_1_1_1> BLKR_16007 Reader run started.
    READER_1_1_1> RR_4029 SQ Instance [SQ_S_ACT_EMP] User specified SQL Query [SELECT
         AEMP.ROW_ID,
         AEMP.ACTIVITY_ID,
         U.PAR_ROW_ID
    FROM
         V_ACT_EMP AEMP,
         S_USER U
    WHERE
         AEMP.EMP_ID = U.ROW_ID]
    READER_1_1_1> RR_4049 SQL Query issued to database : (Wed Aug 17 00:31:32 2011)
    WRITER_1_*_1> WRT_8005 Writer run started.
    WRITER_1_*_1> WRT_8158
    *****START LOAD SESSION*****
    Load Start Time: Wed Aug 17 00:31:32 2011
    Target tables:
    W_ACT_PARTY
    READER_1_1_1> RR_4050 First row returned from database to reader : (Wed Aug 17 00:31:32 2011)
    LKPDP_1> DBG_21097 Lookup Transformation [LKP_W_ACT_PARTY]: Default sql to create lookup cache: SELECT ETL_PROC_WID,INTEGRATION_ID,TABLE_WID,DATASOURCE_NUM_ID FROM W_ACT_PARTY ORDER BY INTEGRATION_ID,TABLE_WID,DATASOURCE_NUM_ID,ETL_PROC_WID
    LKPDP_1> TE_7212 Increasing [Index Cache] size for transformation [LKP_W_ACT_PARTY] from [1048576] to [1050000].
    LKPDP_1> TM_6660 Total Buffer Pool size is 609824 bytes and Block size is 65536 bytes.
    LKPDP_1:READER_1_1> DBG_21438 Reader: Source is [obieeprd], user [OLAP]
    LKPDP_1:READER_1_1> BLKR_16003 Initialization completed successfully.
    LKPDP_1:READER_1_1> BLKR_16007 Reader run started.
    LKPDP_1:READER_1_1> RR_4049 SQL Query issued to database : (Wed Aug 17 00:31:32 2011)
    LKPDP_1:READER_1_1> BLKR_16019 Read [0] rows, read [0] error rows for source table [LKP_W_ACT_PARTY{{DSQ}}] instance name [LKP_W_ACT_PARTY{{SRC}}]
    LKPDP_1:READER_1_1> BLKR_16008 Reader run completed.
    LKPDP_1:TRANSF_1_1> DBG_21682 Lookup table row count : 0
    LKPDP_1:TRANSF_1_1> DBG_21297 Lookup cache row count : 0
    LKPDP_1:TRANSF_1_1> DBG_21294 Lookup cache creation completed : (Wed Aug 17 00:31:32 2011)
    LKPDP_1:TRANSF_1_1> CMN_1671 Created new cache files PMLKUP12190_9W32.[dat/idx] in directory D:\Informatica\PowerCenter8.1.1\server\infa_shared\Cache for Lookup [LKP_W_ACT_PARTY].
    LKPDP_1:TRANSF_1_1> DBG_21641 LKP_W_ACT_PARTY: Index cache size = [1050000], Data cache size = [2097152]
    LKPDP_1:TRANSF_1_1> DBG_21216 Finished transformations for Source Qualifier [LKP_W_ACT_PARTY{{DSQ}}]. Total errors [0]
    TRANSF_1_1_1> CMN_1079 WARNING: Lookup table contains no data.
    TRANSF_1_1_1> DBG_21524 Transform : LKP_W_ACT_PARTY
    TRANSF_1_1_1> DBG_21313 Lookup table : W_ACT_PARTY
    TRANSF_1_1_1> DBG_21562 WARNING : Output rows from LKP_W_ACT_PARTY will be the default port value
    LKPDP_2> DBG_21097 Lookup Transformation [LKP_ETL_PROC_WID]: Default sql to create lookup cache: SELECT ETL_PROC_WID,ROW_WID FROM W_PARAM_G ORDER BY ROW_WID,ETL_PROC_WID
    LKPDP_2> TE_7212 Increasing [Index Cache] size for transformation [LKP_ETL_PROC_WID] from [1048576] to [1050000].
    LKPDP_2> TM_6660 Total Buffer Pool size is 609824 bytes and Block size is 65536 bytes.
    LKPDP_2:READER_1_1> DBG_21438 Reader: Source is [obieeprd], user [OLAP]
    LKPDP_2:READER_1_1> BLKR_16003 Initialization completed successfully.
    LKPDP_2:READER_1_1> BLKR_16007 Reader run started.
    LKPDP_2:READER_1_1> RR_4049 SQL Query issued to database : (Wed Aug 17 00:31:32 2011)
    LKPDP_2:READER_1_1> BLKR_16019 Read [0] rows, read [0] error rows for source table [LKP_ETL_PROC_WID{{DSQ}}] instance name [LKP_ETL_PROC_WID{{SRC}}]
    LKPDP_2:READER_1_1> BLKR_16008 Reader run completed.
    LKPDP_2:TRANSF_1_1> DBG_21682 Lookup table row count : 0
    LKPDP_2:TRANSF_1_1> DBG_21297 Lookup cache row count : 0
    LKPDP_2:TRANSF_1_1> DBG_21294 Lookup cache creation completed : (Wed Aug 17 00:31:32 2011)
    LKPDP_2:TRANSF_1_1> CMN_1671 Created new cache files PMLKUP12190_10W32.[dat/idx] in directory D:\Informatica\PowerCenter8.1.1\server\infa_shared\Cache for Lookup [LKP_ETL_PROC_WID].
    LKPDP_2:TRANSF_1_1> DBG_21641 LKP_ETL_PROC_WID: Index cache size = [1050000], Data cache size = [2097152]
    LKPDP_2:TRANSF_1_1> DBG_21216 Finished transformations for Source Qualifier [LKP_ETL_PROC_WID{{DSQ}}]. Total errors [0]
    TRANSF_1_1_1> CMN_1079 WARNING: Lookup table contains no data.
    TRANSF_1_1_1> DBG_21524 Transform : LKP_ETL_PROC_WID1
    TRANSF_1_1_1> DBG_21313 Lookup table : W_PARAM_G
    TRANSF_1_1_1> DBG_21562 WARNING : Output rows from LKP_ETL_PROC_WID1 will be the default port value
    WRITER_1_*_1> WRT_8167 Start loading table [W_ACT_PARTY] at: Wed Aug 17 00:31:32 2011
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    WRITER_1_*_1> WRT_8229 Database errors occurred:
    ORA-01400: cannot insert NULL into (ETL_PROC_WID)
    Database driver error...
    Function Name : Execute Multiple
    SQL Stmt : INSERT INTO W_ACT_PARTY(INTEGRATION_ID,DATASOURCE_NUM_ID,ETL_PROC_WID,TABLE_WID,ACTIVITY_ID,PARTY_ID) VALUES ( ?, ?, ?, ?, ?, ?)
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    WRITER_1_*_1> WRT_8425 ERROR: Writer execution failed.
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    WRITER_1_*_1> WRT_8114
    Row # [1] in bad file
    WRITER_1_*_1> CMN_1053 : Rowdata: ( RowType=0(insert) Src Rowid=1 Targ Rowid=1
    INTEGRATION_ID (INTEGRATION_ID:Char.30:): "1-B8THY"
    DATASOURCE_NUM_ID (DATASOURCE_NUM_ID:Double:): "1.000000000000000"
    ETL_PROC_WID (ETL_PROC_WID:Double:): "(NULL)"
    TABLE_WID (TABLE_WID:Double:): "68.00000000000000"
    ACTIVITY_ID (ACTIVITY_ID:Char.15:): "1-N8FBX"
    PARTY_ID (PARTY_ID:Char.15:): "0-1"
    WRITER_1_*_1> WRT_8164 Error loading into target [W_ACT_PARTY] : Bad rows exceeded Session Threshold [1]
    WRITER_1_*_1> WRT_8333 Rolling back all the targets due to fatal session error.
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    WRITER_1_*_1> CMN_1022 Database driver error...
    CMN_1022 [
    ORA-24795: Illegal ROLLBACK attempt made
    Database driver error...
    Function Name : Commit
    Database driver error...
    Function Name : Rollback]
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    WRITER_1_*_1> WRT_8183 Rollback failed for the target [W_ACT_PARTY]
    WRITER_1_*_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    WRITER_1_*_1> WRT_8080 Writer run terminated. [Error loading data and error threshold reached]
    WRITER_1_*_1> WRT_8168 End loading table [W_ACT_PARTY] at: Wed Aug 17 00:31:32 2011
    WRITER_1_*_1> WRT_8035 Load complete time: Wed Aug 17 00:31:32 2011
    LOAD SUMMARY
    ============
    WRT_8036 Target: W_ACT_PARTY (Instance Name: [W_ACT_PARTY])
    WRT_8038 Inserted rows - Requested: 488 Applied: 0 Rejected: 1 Affected: 0
    WRITER_1__1> WRT_8043 ****END LOAD SESSION*****
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [W_ACT_PARTY] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [UPDTRANS] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [UPDTRANS] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [FILTRANS] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [FILTRANS] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [LKP_ETL_PROC_WID] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [LKP_ETL_PROC_WID] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [EXPTRANS] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [EXPTRANS] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [SQ_S_ACT_EMP] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [SQ_S_ACT_EMP] encountered fatal error. Terminating session.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Wed Aug 17 00:31:32 2011]
    TRANSF_1_1_1> TM_6085 The transformation [SQ_S_ACT_EMP] encountered fatal error. Terminating session.
    TRANSF_1_1_1> DBG_21511 TE: Fatal Transformation Error.
    MANAGER> PETL_24031
    ***** RUN INFO FOR TGT LOAD ORDER GROUP [1], CONCURRENT SET [1] *****
    Thread [READER_1_1_1] created for [the read stage] of partition point [SQ_S_ACT_EMP] has completed: Total Run Time = [0.656254] secs, Total Idle Time = [0.390627] secs, Busy Percentage = [40.476246].
    Thread [TRANSF_1_1_1] created for [the transformation stage] of partition point [SQ_S_ACT_EMP] has completed: Total Run Time = [0.562504] secs, Total Idle Time = [0.406252] secs, Busy Percentage = [27.777928].
    Thread [WRITER_1_*_1] created for [the write stage] of partition point [W_ACT_PARTY] has completed. The total run time was insufficient for any meaningful statistics.
    MANAGER> PETL_24005 Starting post-session tasks. : (Wed Aug 17 00:31:33 2011)
    MANAGER> PETL_24029 Post-session task completed successfully. : (Wed Aug 17 00:31:33 2011)
    MAPPING> TE_7216 Deleting cache files [PMLKUP12190_9W32] for transformation [LKP_W_ACT_PARTY].
    MAPPING> TE_7216 Deleting cache files [PMLKUP12190_10W32] for transformation [LKP_ETL_PROC_WID].
    MAPPING> TM_6018 Session [VisibilityActivityParty_Full] run completed with [0] row transformation errors.
    MANAGER> PETL_24002 Parallel Pipeline Engine finished.
    DIRECTOR> PETL_24013 Session run completed with failure.
    DIRECTOR> TM_6022
    SESSION LOAD SUMMARY
    ================================================
    DIRECTOR> TM_6252 Source Load Summary.
    DIRECTOR> CMN_1740 Table: [SQ_S_ACT_EMP] (Instance Name: [SQ_S_ACT_EMP])
         Output Rows [50592], Affected Rows [50592], Applied Rows [50592], Rejected Rows [0]
    DIRECTOR> TM_6253 Target Load Summary.
    DIRECTOR> CMN_1740 Table: [W_ACT_PARTY] (Instance Name: [W_ACT_PARTY])
         Output Rows [0], Affected Rows [0], Applied Rows [0], Rejected Rows [1]
    DIRECTOR> TM_6023
    ===================================================
    DIRECTOR> TM_6020 Session [VisibilityActivityParty_Full] completed at [Wed Aug 17 00:31:33 2011]
    Can some one help me to debug the issue please ?
    Thanks

    Hi Nat,
    Thanks a lot for your response.
    I am running this ETL task from DAC. This task is a part of Daily Full load ETL. As i mentioned earlier, this task fails sporadically and failing till now. After restarting the ETL, it gets completed.
    Please let me know if you have any question.
    Thanks,
    Neeraj

  • Need help in modifying the column length

    Hi Experts,
    I need to modify the length of a column from char(10) to char(5), but it's showing the error of:
    ALTER TABLE appr_group_table MODIFY (APPR_TBLNO CHAR(5)) It's showing the below error:
    ERROR at line 1:
    ORA-01441: cannot decrease column length because some value is too bigI've checked in the dbase but there is no any value of this column having more than 5 characters:
    SQL> SELECT APPR_TBLNO FROM appr_group_table;
    APPR_TBLNO
    ANTAB
    ANTAB
    ANTST
    SCCTR
    SOTAB
    SOTAB
    SOTAB
    SOTAB
    SOTAB
    SOTAB
    SOTAB
    11 rows selected.Thnx in advance for helping me out.....

    char means fixed length variable. when you say char(10) oracle will reserve 10 places for your data. that means in your output what you are seeing as blank spaces are also considered as data. that is the reason, it is not allowing you to reduce the size.
    better solution is to create new column with varchar2 or char(5) datatype and transfer this column data into new column and then drop original column.

  • Set the column length in an sql query

    Hi,
    Is there a way to set the column length in a query without using sqlplus commands like row size and format column.
    I'd like to do it just from the sql query itself.
    select 'this is a test' from dual; Can I define the width of this column in the select statement
    Cheers.

    Use RPAD,
    SQL> WITH T
      2       AS (SELECT 'this is test' str FROM DUAL
      3           UNION ALL
      4           SELECT 'this is a long test' FROM DUAL
      5           UNION ALL
      6           SELECT 'this is a long long long long test' FROM DUAL)
      7  SELECT RPAD ( str, 20) str,LENGTH( RPAD ( str, 20)) len
      8    FROM T;
    STR                         LEN
    this is test                 20
    this is a long test          20
    this is a long long          20
    SQL> G.

  • OMF export failed due to internal error

    I get this error message whatever I do when I try to export as OMF:
    "OMF export failed due to internal error"
    I tried OMF 1 and 2.
    I tried to uncheck "include audio".
    I tried an extremely small project (one region, one track).
    Always the same error. Problem is there's absolutely no information on what kind of internal error this is.
    All other export options (AFF, Open TL and Final Cut) works.
    Any ideas?

    I suppose that beside CCM 4.1(2) you are using AC 1.4 (1), if yes, then you need to upgrade to AC 1.4 (1) ES11 or upgrade at least to CCM 4.1(3)ES42 or CCM 4.1(3) sr3c
    HTH
    //Jorge

  • How to decrease the column length in working time (CATS) table

    Hi all,
    Can you please tell me how we can decrease the column length in CATS table in the portal. Is it something we can do in webdynpro or in the back end.
    Thanks in advance.
    RK Reddy

    I was looking for something similar and ran across OSS Note 989453. I would recommend checking out this note to see if it helps. Apparently, there is a JAVA program error that makes the columns wider than they need to be.
    We have not yet tried this so if you happen to use it, let me know how it works for you.
    Mark Musser
    County of Sacramento

  • All the data getting exported in the first column of csv while exporting

    Hi All,
    In 11.5.10.2, I have a page with advanced table region. Am using OA Framework's export button to export the results.
    But, problem is, All the results are getting exported in the first column of the output .csv file. Why such a behavior?
    Profile Option of 'Export MIME Type' value is text/text-separted-values.
    Any ideas would be of timely help. Thanks.
    Regards, Soorya

    From OAF standpoint, it just exports the data. Data interpretation is completely dependent on client machine and excel setups.
    Please check the Data-->Text to Columns wizard where we can specify the delimiter(s) on excel.
    Not sure if this can be set up in Apps, so that we need not change on every end-user machine.
    Hope this helps.
    -- Thanks

  • Logon failure due to an internal error-webi client tool

    Hi experts,
    I've installed WebI client tool 4.0, when I trying to logon this message appear: Logon failure due to an internal error,
    this problem has been addressed before, but could not be resolved [http://forums.sdn.sap.com/thread.jspa?messageID=10751144#10751144|http://forums.sdn.sap.com/thread.jspa?messageID=10751144#10751144]
    there is a way to solve this problem?
    regards,
    Jonathan.

    In a Unix environment the version is in the file “AddorRemoveProduct.sh” located in the installation folder of BI4.x
    For the updated reference table of the versions / builds and corresponding patch levels,  please see KB article # 1602088
    BI 4.0 RTM
    14.0.0.760
    Patch 04
    14.0.0.904
    Patch 05
    14.0.0.918
    Patch 06
    14.0.0.940
    Patch 07
    14.0.0.954
    Patch 08
    14.0.0.970
    Patch 09
    14.0.0.986
    Patch 10
    14.0.0.996
    Support Pack 1
    14.0.1.287
    Patch 1.1
    14.0.1.313
    Patch 1.2
    14.0.1.330
    Patch 1.3
    14.0.1.342
    Patch 1.4
    14.0.1.360
    Patch 1.5
    14.0.1.375
    Patch 1.6
    14.0.1.397
    Support Pack 2
    14.0.2.364
    Patch 2.1
    14.0.2.388
    Patch 2.2
    14.0.2.397
    Patch 2.3
    14.0.2.416
    Patch 2.4
    14.0.2.439
    Patch 2.5
    14.0.2.455
    Patch 2.6
    14.0.2.481
    Patch 2.7
    14.0.2.508
    Patch 2.8
    14.0.2.532
    Patch 2.9
    14.0.2.556
    Patch 2.10
    14.0.2.565
    Patch 2.11
    14.0.2.594
    Patch 2.12
    14.0.2.619
    Patch 2.13
    14.0.2.641
    Patch 2.14
    14.0.2.657
    Patch 2.15
    14.0.2.682
    Patch 2.16
    14.0.2.703
    Feature Pack 3
    14.0.3.613
    Patch 3.1
    14.0.3.630
    Patch 3.2
    14.0.3.657
    Patch 3.3
    14.0.3.678
    Patch 3.4
    14.0.3.691
    Please note that at today FP03 is in RampUp

  • Column length of a LONG RAW column

    How to find out the column length of a LONG RAW column, to compute the average row size in Oracle 7.3.4
    Thanks.

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the Database - General forum. General Database Discussions
    OTN

Maybe you are looking for

  • Problem configuring SSO: "Oracle SSO Warning - Unable to process request"

    I'm having difficulty getting a sample application to work with SSO, and I was hoping someone could point me in to the right direction. We've got 2 separate systems, call them ASserver and SSOserver. ASserver is running Oracle 9i AS, SSOserver is the

  • Error sending an amendment

    Hi There ! I'm trying to send an amendment to an order in progress, but at that time gives the following error from OSM: Failed to create and start the order due to java.lang.RuntimeException: com.mslv.oms.handler.InternalErrorException: Failed to st

  • Facing Issue in ACE 4710 ..Secondary ACE showing as FSM_FT_STATE_STANDBY_COLD ...

    Hi All ,  I am facing problem with my ACE 4710 in active-standby environment . When I check Show ft group detail on my Active ACE , it shows peer state as FSM_FT_STATE_STANDBY_COLD for Admin context . Below is the output : Primary_ACE/Admin#sh ft gro

  • BAPI or FM to change the PO release group

    Hi, I would like to change the PO release group (EKKO-FRGGR). I could not find the way to change this field through BAPI BAPI_PO_CHANGE. Please suggest me any BAPI or FM! Thanks, Khanh

  • Trouble Installing SAP NetWeaver 7.0 ABAP Trial Version

    Hello everyone, while trying to install the SAP NetWeaver 7.0 ABAP Trial Version some problems occured. I have downloaded both *.RAR files. And extracted them. Starting the Setup Wizard I can select the directory and set the master password. After it