RPD Merging 'Decision' column help

Hi,
I’m new to RPD merging; I’m merging very big RPD from the two different repositories.
While merging, we are changing some attributes as ‘Modified or Current ‘in the ‘Decision’. I’ve changed few things in the modified RPD as a part of requirement. Rest of the things as ‘Current’. Here I’m in the position of change 1000 of attributes as ‘Current’ in ‘Decision’ columns :'( . It’s bugging me. Are there any short cuts to do this very simple? Any guide will be much appreciated
Thanks in advance.
Viruu

Unfortunately, this is a manual process. When you are merging and there are conflicts you have to go through them one by one.

Similar Messages

  • Reports - merging data columns in matrix

    Hi, 
    I need help with merging columns in matrix. I use MS SQL 2012. I need merge data columns, here is example:
    matrix:
    +-----------+----------+
    |               |  [time]  |
    +-----------+----------+
    |               |  [step]  |
    | [project] +----------+
    |               | [action] |
    +-----------+----------+
    current output:
    +-----------+----------+----------+----------+----------+
    |               |   00:00 |   00:05  |   00:10  |  00:15  |
    +-----------+----------+----------+----------+----------+
    |               |  step 1  |  step 1  |          |  step 2  |
    | project 1 +----------+----------+----------+----------+
    |               |  start     | running  |          |  start   |
    +-----------+----------+----------+----------+----------+
    |               |              |  step 1  |  step 1  |  step 1  |
    | project 2 +----------+----------+----------+----------+
    |                |             | start    | running  |  running |
    +-----------+----------+----------+----------+----------+
    demanded output:
    +-----------+----------+----------+----------+----------+
    |               |   00:00  |   00:05  |   00:10  |   00:15  |
    +-----------+----------+----------+----------+----------+
    |               |        step 1          |              |  step 2  |
    | project 1 +----------+----------+----------+----------+
    |                |  start    | running  |            |  start    |
    +-----------+----------+----------+----------+----------+
    |                |             |            step 1                     |
    | project 2 +----------+----------+----------+----------+
    |                |              | start    |       running       |
    +-----------+----------+----------+----------+----------+
    Thanks in advance :-)
    Regards

    Hi  Katamarucz,
    According to your description and the sample matrix, you want to merge the columns in the same steps into one column, right? In this case, on some rows the columns that have the same steps should be merged, however, the column should not be merge on other
    row that the columns have different steps. 
    In Reporting Services, if we merger the columns when designing the report, then the columns will be merged on all the rows. So you requirement cannot be achieved. And I am afraid there is no other approach to work around this issue.
    Thank you for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • RPD merge wierd behaviour 11g

    Hi,
    I'm trying to merge two 11g RPDs, using RPD merge(patch option)-
    and in following scenario-
    A->DEV Baseline RPD,
    B->DEV updated RPD,
    C->Prod RPD.
    I added a few columns in B.
    Created patch comparing B with A.(The patch generated reflected all the added columns)
    Applied patch on C, considering A as original RPD and used the patch generated.
    Now here the utility is giving strange results, sometime it adds all normally.
    Sometime it ignores all the changes, and sometime Phy layer is added and BMM changes are ignored.
    Has someone faced similar issue? Any work around?
    Regards,
    Prateek

    Hi,
    I'm trying to merge two 11g RPDs, using RPD merge(patch option)-
    and in following scenario-
    A->DEV Baseline RPD,
    B->DEV updated RPD,
    C->Prod RPD.
    I added a few columns in B.
    Created patch comparing B with A.(The patch generated reflected all the added columns)
    Applied patch on C, considering A as original RPD and used the patch generated.
    Now here the utility is giving strange results, sometime it adds all normally.
    Sometime it ignores all the changes, and sometime Phy layer is added and BMM changes are ignored.
    Has someone faced similar issue? Any work around?
    Regards,
    Prateek

  • Merge two column value in single column

    Team,
    I have a requirement where in I need to merge 2 column values in a single column.
    ex. I have Percent_complete column in my table. and my table has only one record.
    I need to query such that I need to store the values of percent_complete and (100- percent_complete) values in a single column.
    ex
    Percent complete has 30 value.
    I need to select 30 and 70(100-30) both in a single column.
    Thanks,

    SQL> select  *
      2    from  tbl
      3  /
    PERCENT_COMPLETE
                  30
    SQL> select  abs(grouping(1) * 100 - max(percent_complete)) percent_complete
      2    from  tbl
      3    group by rollup(1)
      4  /
    PERCENT_COMPLETE
                  30
                  70
    SQL> select  nvl(percent_complete,100 - max(percent_complete)) percent_complete
      2    from  tbl
      3    group by rollup(percent_complete)
      4  /
    PERCENT_COMPLETE
                  30
                  70
    SQL>
    SY.

  • [JS CS3] Merging table columns

    Hi all,
    What's the fastest way to merge columns in a table?
    I'm using the following loop to merge the 4th and 5th columns in my table:
    for( var f = myTable.rows.length-1; f >= 0; f-- ){
    myTable.columns[3].cells[f].merge (myTable.columns[4].cells[f])
    It works, but I'm working on a large table (120 pages worth) and have many instance where I need to merge columns. Using the loop above, the script takes hours to run. Is there a faster way to merge columns while keeping the rows intact?
    Thanks,
    Michael

    I've just done some time testing with CS4 and found the following:
    table = app.documents[0].stories[0].tables[0];
    start = new Date();
    for (var n = 0; 100 > n; n++) {
      cells = table.cells;
      for (var j = 0; cells.length > j; j++) {
        cells[j].contents = "James";
    end = new Date();
    alert(end - start);
    takes just about the same time to run as:
    table = app.documents[0].stories[0].tables[0];
    start = new Date();
    rowCount = table.rows.length;
    columnCount = table.columns.length;
    for (var n = 0; 100 > n; n++) {
      for (var c = 0; columnCount > c; c++) {
        for (var r = 0; rowCount > r; r++) {
          table.cells.item(c + ":" + r).contents = "Harry";
    end = new Date();
    alert(end - start);
    While this version takes about half as long again:
    table = app.documents[0].stories[0].tables[0];
    start = new Date();
    rowCount = table.rows.length;
    columnCount = table.columns.length;
    for (var n = 0; 100 > n; n++) {
      for (var c = 0; columnCount > c; c++) {
        for (var r = 0; rowCount > r; r++) {
          table.rows[r].cells[c].contents = "Harry";
    end = new Date();
    alert(end - start);
    None of which is particularly surprising. But when I compared the following two scripts, I was astonished by the result:
    table = app.documents[0].stories[0].tables[0];
    start = new Date();
    rowCount = table.rows.length;
    columnCount = table.columns.length;
    for (var n = 0; 100 > n; n++) {
      table.cells.everyItem().contents = "Harry";
    end = new Date();
    alert(end - start);
    table = app.documents[0].stories[0].tables[0];
    start = new Date();
    rowCount = table.rows.length;
    columnCount = table.columns.length;
    for (var n = 0; 100 > n; n++) {
      table.cells.itemByRange(0, -1).contents = "George";
    end = new Date();
    alert(end - start);
    The latter, using itemByRange was about a third faster than using everyItem(). 1800 milliseconds to 2700 on a 4 x 10 table.
    Dave

  • Display TextBox Merging two columns

    hi
    In a Form i want to display textbox merging two columns
    when i increading the width of textbox , elements(textbox,selectlist) in the column 2 move right side

    Edit your item and go to
    Displayed > ColSpan
    and increase it to two or three...
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Merging two columns with muliple rows in Numbers '09

    I am trying to merge two columns each with 100 rows and related data. Column one is the street address and column two have office numbers. The final result would be one column with 100 rows with address and office numbers.
    Ed Carreon

    sanpanza wrote:
    I am trying to merge two columns each with 100 rows and related data. Column one is the street address and column two have office numbers. The final result would be one column with 100 rows with address and office numbers.
    Ed Carreon
    Hi Ed,
    Use the CONCATENATE() function.
    Street address in column D, Office number in Column E
    100 Smith ST            212
    Formula: =CONCATENATE(E," ",D)
    Result:
    212 100 Smith ST
    Note the formula has three arguments, the reference to column E, a text literal (" ") containing a single space, and a reference to column D.
    Regards,
    Barry

  • How to merge two columns in WAD(column chart)

    Dear Experts,
    Please provide your valuable suggestion to get a merge two columns in one column WAD column chart.
    Example: we are having 3 fields (Budgeted value, Actual budgeted value & non budgeted value).
    In the chart to be shown, budgeted value in one column, remaining two to be merged in one column
    In below sample image Actual(Volume) column is having twe fields (Budgeted SKU value & Non budgeted SKU),
    please provide solution to get same in SAP BI/BW WAD.
    Thanks & Regards,
    Sudarsan Reddy.

    Hi..,
      With in the internal table structure you can declare one more field like NAME(30).
    And concate nate first name and last name into that NAME field of internal table and modify the internal table
    Now display this field..
    Thanks,
    Naveen.I

  • How to merge two columns in csv file using vbscript?

    How i can merge two column in csv file using vbscript or powershell?
    1  , 2  , 3  , 4  , 5
    1  , 23 ,  4 ,  5
    thanks

    Here are two examples
    http://msdn.microsoft.com/en-us/library/ms191250.aspx
    calulated
    http://msdn.microsoft.com/en-us/library/ms191250.aspx
    Gary Newman MCSE, MCT, CCNA, MCSD, MCPD, MCDBA, MCAD, MCSA, MCTS Developer and Administrator On SharePoint 2013 SharePoint Practice Manager for AmeriTeach Denver, CO.

  • Need help in ALV Header to merge the columns.

    HI All,
    I have to create an ALV report with below Header in which i have to merge the data.
    Col1
    col2
    Col3
    col.3.1
    col 3.2
    col3.3
    Please let me know how to create fieldcatalog for the above layout.
    Thanks
    Piyush

    REPORT zhier_alv.
    TYPE-POOLS : slis.
    TABLES : mseg.
    DATA : BEGIN OF itab_head OCCURS 0,
            matnr LIKE mseg-matnr,
            werks LIKE mseg-werks,
             mblnr LIKE mseg-mblnr,
            menge LIKE mseg-menge,
           END OF itab_head.
    DATA : BEGIN OF itab_item OCCURS 0,
            matnr LIKE mseg-matnr,
            werks LIKE mseg-werks,
            mblnr LIKE mseg-mblnr,
            menge LIKE mseg-menge,
           END OF itab_item.
    DATA : t_fcat TYPE slis_t_fieldcat_alv,
           key_info TYPE slis_keyinfo_alv,
           t_eve TYPE slis_t_event,
           gt_subtot TYPE slis_t_sortinfo_alv,
           subtot LIKE LINE OF gt_subtot,
           t_listhead TYPE slis_t_listheader,
           st_line TYPE slis_listheader.
    DATA : t_mtdoc LIKE mseg-mblnr.
    SELECT-OPTIONS : mat FOR mseg-matnr.
    INITIALIZATION.
      PERFORM build_cat USING t_fcat.
      PERFORM build_eve.
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM dis_data.
    *&      Form  build_cat
          text
         -->TEMP_FCAT  text
    FORM build_cat USING temp_fcat TYPE slis_t_fieldcat_alv.
      DATA : wa_fcat TYPE slis_fieldcat_alv.
      wa_fcat-tabname = 'ITAB_HEAD'.
      wa_fcat-fieldname = 'MATNR'.
      wa_fcat-seltext_m = 'Material'.
      APPEND wa_fcat TO temp_fcat.
      CLEAR wa_fcat.
      wa_fcat-tabname = 'ITAB_HEAD'.
      wa_fcat-fieldname = 'WERKS'.
      wa_fcat-seltext_m = 'Plant'.
      APPEND wa_fcat TO temp_fcat.
      CLEAR wa_fcat.
      wa_fcat-tabname = 'ITAB_ITEM'.
      wa_fcat-fieldname = 'MBLNR'.
      wa_fcat-seltext_m = 'Material Doc.'.
      APPEND wa_fcat TO temp_fcat.
      CLEAR wa_fcat.
      wa_fcat-tabname = 'ITAB_ITEM'.
      wa_fcat-fieldname = 'MENGE'.
      wa_fcat-seltext_m = 'Quantity'.
      wa_fcat-do_sum = 'Y'.
      APPEND wa_fcat TO temp_fcat.
      CLEAR wa_fcat.
      subtot-spos = 1.
      subtot-fieldname = 'MATNR'.
      subtot-tabname = 'ITAB_HEAD'.
      subtot-up = 'X'.
      subtot-group = 'X'.
      subtot-subtot = 'X'.
      subtot-expa = 'X'.
      APPEND subtot TO gt_subtot.
    ENDFORM.                    "build_cat
    *&      Form  build_eve
          text
    FORM build_eve.
      DATA : wa_eve TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         i_list_type           = 0
       IMPORTING
         et_events             = t_eve
      EXCEPTIONS
        LIST_TYPE_WRONG       = 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.
    READ TABLE t_eve INTO wa_eve WITH KEY name = 'TOP_OF_PAGE'.
    IF sy-subrc = 0.
       wa_eve-form = 'TOP_OF_PAGE'.
       MODIFY t_eve FROM wa_eve INDEX sy-tabix.
    ENDIF.
    ENDFORM.                    "build_eve
    *&      Form  get_data
          text
    FORM get_data.
      SELECT matnr werks mblnr menge FROM mseg INTO CORRESPONDING FIELDS OF
    TABLE itab_item
      WHERE matnr IN mat.
    ENDFORM.                    "get_data
    *&      Form  dis_data
          text
    FORM dis_data.
      key_info-header01 = 'MATNR'.
      key_info-item01 = 'MATNR'.
      key_info-header02 = 'WERKS'.
      key_info-item02 = 'WERKS'.
      key_info-header03 = 'MBLNR'.
      key_info-item03 = 'MBLNR'.
      key_info-header04 = 'MENGE'.
      key_info-item04 = 'MENGE'.
      REFRESH itab_head.
      LOOP AT itab_item.
        ON CHANGE OF itab_item-matnr OR itab_item-werks.
          MOVE-CORRESPONDING itab_item TO itab_head.
          APPEND itab_head.
        ENDON.
      ENDLOOP.
      CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
        EXPORTING
          i_callback_program             = 'ZHIER_ALV'
          i_callback_user_command        = 'USER_COMMAND'
          it_fieldcat                    = t_fcat
          it_sort                        = gt_subtot
          it_events                      = t_eve[]
          i_tabname_header               = 'ITAB_HEAD'
          i_tabname_item                 = 'ITAB_ITEM'
          is_keyinfo                     = key_info
        TABLES
          t_outtab_header                = itab_head
          t_outtab_item                  = itab_item
    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.                    "dis_data
    *&      Form  user_Command
          text
         -->U_COMM     text
         -->SELFIELD   text
    FORM user_command USING u_comm TYPE sy-ucomm selfield TYPE slis_selfield
      CASE u_comm.
        WHEN '&IC1'.
          READ TABLE itab_item INDEX selfield-tabindex.
          t_mtdoc = itab_item-mblnr.
          SET PARAMETER ID 'MBN' FIELD t_mtdoc.
          CALL TRANSACTION 'MIGO' AND SKIP FIRST SCREEN.
      ENDCASE.
    ENDFORM.                    "user_Command
    *&      Form  top_of_page
          text
    FORM top_of_page.
      CLEAR st_line.
      st_line-typ = 'H'.
      st_line-info = 'Krupa'.
      APPEND st_line TO t_listhead.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary       = t_listhead
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
      I_ALV_FORM               =
    ENDFORM.                    "top_of_page
    if it is use then give point

  • Merge two columns of url/text and locator numbers

    Want to merge a url - http://www.vimeo.com to a numbered vimeo film locator for the 'screeners sheet' for a film contest.
    The current set up is: Column A - film title; Column B will be the Category; Column C - the url of vimeo with a / at the end to accept...Column D - the vimeo film locator number; Columns E-I will be the rating topics (originality, technical accuracy etc); Column J will contain the sum of the screeners ratings from Columns E-I.
    There is no need to have totals at the bottom of columns just at the end of the rows. We have about 1000 films being rated for the Contest to win over $30k in Awards (sweet!).  Ultimately this list will be divided into Categories then 'shared' with the individual screening teams to view remotely through this spread sheet and rate the film work.
    Oh the coup de gras is the merge needs to keep it as an active link to Vimeo (which doesn't happen in the =Concatenate(C,D) formula. The lyper link stays active when we manually input each letter/number - but for 1,000 films - that's a yikes amount of work. Gotta be an easier way!
    Thanks for your help!
    Possible Futures Film Contest
    Programming Team
    May 29

    Might need the mystics as well!
    I'm having difficulty getting Numbers to recognize URLs to begin with, not just when they've been put together with the concatenation function (or the concatenation operator). I do have the feature turned on, but the recognition has been sporadic, to say the least.
    Assuming you have that sorted out, this might be a profitable line of enquiry:
    After joining the items using concatenation, select the cells now containing the full URL and Copy, then go to the Edit menu and choose Paste Values.
    Can't test it myself, for the reasons given above, but the labor cost of the home test isn't unendurable.
    Regards,
    Barry

  • MERGE TWO COLUMNS ?

    hi i queried on my database as follow,
    <pre>
    SELECT
    C.LKP_ID ID,D.LKP_ID AS ID,C.ROOT_CAUSE_CODE AS CODE,D.PART_DISPOSTN_DESC AS CODE
    FROM
    SELECT DISTINCT
    A.LKP_ID AS LKP_ID
    ,D.PART_CNDTN_CD as ROOT_CAUSE_CODE
    ,C.LKP_NM as ROOT_CAUSE_DESC
    ,A.CREATED_DT AS OD_CREATED_DATE
    ,A.UPDATED_DT AS OD_LAST_UPDATED_DATE
    ,CURRENT_TIMESTAMP AS CREATED_DATE
    ,CURRENT_TIMESTAMP AS LAST_UPDATED_DATE
    FROM FWOWNER.CLM_LKP_VALUE A, FWOWNER.CLM_LKP_USAGE B , FWOWNER.CLM_LKP_VALUE_LANG C,
    IWOWNER.WC_CLM_SRVC_PART D
    WHERE B.LKP_USED_AS IN ('RR_CAUSAL_PART_CNDTN_CODE')
    AND A.LKP_REF BETWEEN B.LKP_REF
    AND B.LKP_REF + '.99999' and A.LKP_ID = C.LKP_ID
    AND C.LANG_CD = 'ENG_USA'
    AND A.LKP_LVL = 3
    and D.PART_CNDTN_CD = A.LKP_VALUE
    )C
    CROSS JOIN
    SELECT DISTINCT
    A.LKP_ID AS LKP_ID
    ,D.PART_DISPOSTN_CD as PART_DISPOSTN_CODE
    ,C.LKP_NM as PART_DISPOSTN_DESC
    ,A.CREATED_DT AS OD_CREATED_DATE
    ,A.UPDATED_DT AS OD_LAST_UPDATED_DATE
    ,CURRENT_TIMESTAMP AS CREATED_DATE
    ,CURRENT_TIMESTAMP AS LAST_UPDATED_DATE
    FROM FWOWNER.CLM_LKP_VALUE A, FWOWNER.CLM_LKP_USAGE B , FWOWNER.CLM_LKP_VALUE_LANG C,
    IWOWNER.WC_CLM_SRVC_PART D
    WHERE B.LKP_USED_AS IN ('rr_parts_disposition')
    AND A.LKP_REF BETWEEN B.LKP_REF
    AND B.LKP_REF + '.99999' and A.LKP_ID = C.LKP_ID
    AND C.LANG_CD = 'ENG_USA'
    AND A.LKP_LVL = 3
    and D.PART_DISPOSTN_CD = A.LKP_VALUE
    )D
    </pre>
    which resulted with :
    <pre>
    ID ID CODE CODE
    25768 28225 CP01 OVERHAULED
    25771 28225 CP04 OVERHAULED
    25774 28225 CP07 OVERHAULED
    25777 28225 CP10 OVERHAULED
    25778 28225 CP11 OVERHAULED
    25779 28225 CP12 OVERHAULED
    25780 28225 CP13 OVERHAULED
    25781 28225 CP14 OVERHAULED
    25783 28225 CP16 OVERHAULED
    25785 28225 CP18 OVERHAULED
    25786 28225 CP19 OVERHAULED
    25788 28225 CP21 OVERHAULED
    25789 28225 CP22 OVERHAULED
    25790 28225 CP23 OVERHAULED
    25793 28225 CP26 OVERHAULED
    25795 28225 CP28 OVERHAULED
    25796 28225 CP29 OVERHAULED
    25797 28225 CP30 OVERHAULED
    25798 28225 CP31 OVERHAULED
    25799 28225 CP32 OVERHAULED
    20 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
    </pre>
    i need to Merge both ID's and Code which may yield 21 records, how to do this, please help me
    Regards
    Naren.

    Hi, Naren,
    Whenever you have a problem, it helps if you pst a little sample data (CREATE TABLE and INSERT statements, elevenat columns only) and the results you want from that data.
    I suspect you want to do something like this:
    SELECT  A.LKP_ID          AS ID
    ,     D.PART_CNDTN_CD          as CODE
    FROM     FWOWNER.CLM_LKP_VALUE          A
    ,     FWOWNER.CLM_LKP_USAGE          B
    ,     FWOWNER.CLM_LKP_VALUE_LANG      C
    ,     IWOWNER.WC_CLM_SRVC_PART     D
    WHERE     B.LKP_USED_AS          IN ( 'RR_CAUSAL_PART_CNDTN_CODE'
                           , 'rr_parts_disposition'
    AND     A.LKP_REF          BETWEEN     B.LKP_REF
                        AND     B.LKP_REF + .99999     -- No quotes
    and     A.LKP_ID          = C.LKP_ID
    AND     C.LANG_CD          = 'ENG_USA'
    AND     A.LKP_LVL          = 3
    and      A.LKP_VALUE          = CASE
                             WHEN  B.LKP_USED_AS     IN ( 'RR_CAUSAL_PART_CNDTN_CODE')
                             THEN  D.PART_CNDTN_CD
                             WHEN  B.LKP_USED_AS     IN ('rr_parts_disposition')
                             THEN  D.PART_DISPOSTN_CD
                          END
    ;or maybe a UNION instead of a join.
    Edited by: Frank Kulash on Feb 9, 2010 9:08 AM
    Revised last condition.

  • Significance of checking "Equalize" during RPD merge

    Hi,
    Can anybody tell the significance of checking "Equalize" when we merge two repositories.
    Thanks,
    Anilesh

    Hi,
    3 way merge.
    Re: Logic Behind 3 way merge of RPD -- refer this thread.
    Example:-
    Dev --> Uat--Prod --- best example.
    We have a repository in our test environment(*Original*) which has a presentation folder A. The same RPD(*Current*) was moved to production. Now the developers moved a new RPD(*Modified*) to test which has some minor changes to presentation folder A and has a new presentation folder B. We want only the new presentation folder B to move to Current A in current.
    Hope this help's
    Thanks,
    Satya

  • Merge sais column doesn't exist

    Help ! - keep getting ORA-00904 : invalid column name for the "on (d.abc_search = s.abc_search)" - doesn't like d.abc_search and yet abc_search is a column in abc_hit table ???
    merge /*+ all_rows */ into abc_hit d
    using (select abc_search from abc_load) s
    on (d.abc_search = s.abc_search)
    when matched then update set d.abc_search = s.abc_search
    when not matched then insert (d.abc_search) values (s.abc_search);
    Oracle version :
    Oracle9i Enterprise Edition Release 9.0.1.0.0 - Production
    PL/SQL Release 9.0.1.0.0 - Production
    CORE     9.0.1.0.0     Production
    TNS for Linux: Version 9.0.1.0.0 - Production
    NLSRTL Version 9.0.1.0.0 - Production

    My colleague has resolved this !
    - problem was I was trying to update a column that was being used to match on
    Oracle was giving an unrelated error which threw me !

  • Merging Two Columns in ALV

    Hi Experts,
    I have a requirement, and I need to merge the the two columns in ALV. How can I do this?
    Points will be rewarded for helpful answers.
    Thanks in advance...

    Hi Salem
    Check this sample code
    LOOP AT itab.
    CONCATENATE itab-amount itab-currency INTO itab-combined.
    MODIFY itab.
    ENDLOOP.
    You will probably need to embellish just that concat command as all fields will be treated as TYPE C.
    Then inhibit the display of the original fields ‘amount’ and ‘currency’ by setting NO_OUT=’X in the fieldcat loop (or other method).
    There may be a FM to merge/format amounts and currency but I couldn’t find one on quick search.
    The option 'USING EDIT MASK' from WRITE command is also available in ALV structure IT_FIELDCAT.
    I have only used it in write and for simple stuff, but it may have some options for you.
    Check '==conv' for output conversion routine...
    Reward all helpfull answers
    Regards
    Pavan

Maybe you are looking for

  • Adobe Illustrator CC 2014 crashes on start Windows 8

    Hello, I can't start Adobe Illustrator CC 2014. When it shows "initialising" there is the program-window building up (only white screen) but then it crashes down (showing that the programm does not work anymore :/ )... I allready tried all advises in

  • Tree traversal Java Program

    Hi, I need the below implementation in JAVA : Scenario : Need to traverse once through all nodes of a tree Input : (i) Starting node of traversal (ii) List of nodes in the Tree (iii) Parent of all nodes, say, mapping like (each_node, list_of_its_pare

  • Why, when you have auto update on, isn't the same language installed as before, but English instead.

    When auto update the new version installed is English and different from the original language installed. Probably the same thing happens with thunderbird. When I have a language installed I want an update in the same language without having to reins

  • Business content activation problem ?

    Hello , I am trying to activate material movement multiprovider with data flow before and after option . Logically with this option , all infoobject should also get activated which is related to this multiprovider , but in my case it is not happening

  • Drafts folder

    Sometimes when composing a E-mail i have to switch to another program and I use the minus button to put mail in the background. when I click on the mail icon, mail opens but the former e-mail I was composing disappears to somewhere. There is no draft