SRM - Add column to Response and awards table

Hello,
I have a requirement to add a column in the compare responses table (please see print attached), i've found the WDA program, that is the /SAPSRM/WDC_AODC_BEV_CMP, View: V_BID_COMP_ITEM, but the part of the table that is in the print attached is created dinnamicly so i have not found where do i go to add a column there.
Has any of you guys done that?
Thanks a lot!
Joe

Hello Madhu,
Thanks so far for the responses, but now my questions are in a more technical way. I've found where the column is created but now i have 2 other problems.
1 - The place that the columns are created is the method: /SAPSRM/IF_CLL_DOTM_BEV_C_I~VIEW_GENERATE. I've created a enhancement at the end of the code. There is a DO for every bid line to create the grouped columns. My question is, i'm able to place a column only on the last grouped columns, because is the last one instanciaded on the standad do end do code. Is it possible to re-instance a grouped columns to add a column there? Ex:
Add the column group to the table
lr_table->add_grouped_column(
the_grouped_column = lr_group_col ).
ENDDO.
My code is here after the enddo. The lr_group_col will be used to create a instance for every grouped column, and i my code when i use the lr_group_col only get reference to the last one created get it?
2 - In the code, it creates the columns, with the fields referencing a context, Ex: BID_COMP_ITEM.PRICE_1. It's created dinamycly, and i'm not able to read/change theses values because is not like reading context for regular context node on WDA. Do you know how can i do it? Like importing thoses values to change and bind it again...
Thanks for the responses so far, i'm almost here
Joe

Similar Messages

  • Tech response and awards

    Hi All,
    we are setting up  2 envelope bidding here. vendor has submitted bid and we have opened technical bid. when we want to accept that technical bid, we found that accept and reject buttons are disabled.
    our system details : SRM 7.01  SP 5 and ecc ehp5.
    also we observed that 2 envelope bidding in SRM 7 when we want to accept that technical we see a extra button called tech response and awards and now in srm 7.01 we see that tech rfx response and awards button is not there instead we can see this under response and awards screen.
    Thanks and Regards,
    Abdul Raheem

    In SRM 7 EHP1 , this screen is shown under response and awards.
    Abdul Raheem

  • HRESS Pay Statement - Add new Column in Overview and Selection table

    Hello,
    I want to add a column in the "Overview and selection" table for a pay statement service. I want to add field called "off-cycle reason" (OCCAT field from pay result).
    Is there any work around to do the same?
    I feel we may need to implement a BADi to do so.
    Thanks,
    Bhushan

    Hi Bhsuan,
    Please refer to the below link.
    http://scn.sap.com/thread/1486215
    The badi XSS_REM_INTERFACE needs to be implemented.
    Regards,
    Ananth

  • Add column with row number to table

    Hi,
    to a table view I'd like to add a new column that contains the row number for each row.
    I have many data sources (twelve) and with the union operator I create one output dataset. The output data is sorted by the arrangement of the input ports of the union operator.
    Is there a way to add a column with its corresponding entry number?
    Regards, FT

    I have a similar question to the original post. It seems your answer will fill the new field in all rows with the same value. But, what if we want an actual row number?
    I am simply looking to add a row number to a table. I only have one data source. The business scenario is that the output of the data service is sorted in descending order on value. I want to be able to select the first 10 (i.e. the top 10 items based on that value).
    Even if I can solve my business scenario without using a row number field after the sort, it seems like a technique that would come in handy. 
    Any ideas? I'm pretty new to using Visual Composer so I may be missing something obvious.

  • Add columns in DataGridView And display it in the report Viewer at RunTime

    Hello Everyone , this is my first participation here, I am civil Engineer and I have a Question 
    I created dataGridViewer connected to a database , when I change the records and reopen the application the changed are saved However , I let the user to add/delete columns during the runtime (by using sql command) ,even though those columns are saved and
    appear at datagridviewer 
    The reported Viewer (which i designed using wizard) is not showing these columns
    what should i do , I have been trying to solve this for a week ! could it be a year ? !  
    I am using c# visual studio 2012 

    Hi Azzam,
    According to your description, you want to display changed columns in ReportViewer control. Right?
    In Reporting Services, when we retrieve the data, the query or stored procedure will only execute one time. So during runtime, the data in a report will not change. So we can't display the changed columns in report during runtime. However, we can set the
    Auto-refresh properties for report so that the report can refresh every X seconds. This is the most effective workaround. Please refer to links below:
    SSRS report auto refresh
    Automatically refreshing your SQL Reporting Services reports with the AutoRefresh element
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • How to read mutiple excel columns from clipboard and populate table control

    Hi All,
    I have a requirement to populate two columns in table control from excel using clipboard. (Copy two columns from excel and then, click on a button on the screen and table control's two columns should be filled).
    I am using FM CLPB_IMPORT to get clipboard values.
    eg: I am getting clipboard values as        val1#val2
                                                                     val3#val4   
    where each row is a row in excel and # indicates the columns.
    The problem here is that I am not able to split val1 and val2 using the SPLIT statement using # character.
    Any ideas will be appreciated.
    Regards,
    Arun Mohan

    Hi,
    Try suing the below code instead of "#" in the SPLIT statement.
    CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    Regards,
    Naveen
    Edited by: Naveen Kumar on May 13, 2010 1:48 AM

  • Add column in the dynamic internal table

    Hi Experts,
    I have a dynamic internal table. I need add new column in the internal table and I don´t Know.
    My code:
    DATA:  it_generic TYPE REF TO Data,
    wa_generic TYPE REF TO data.
    FIELD-SYMBOLS: <table> TYPE ANY TABLE,
    <wa>    TYPE ANY,
    <field> TYPE ANY.
    CREATE DATA it_generic  TYPE STANDARD TABLE OF (wa_datoscarga-ZTBLCAR).
    CREATE DATA wa_generic  TYPE (wa_datoscarga-ZTBLCAR).
    ASSIGN it_generic->* TO <table>.
    CHECK <table> IS ASSIGNED.
    ASSIGN wa_generic->* TO <wa>.
    CHECK <wa> IS ASSIGNED.
    SELECT *
    INTO  CORRESPONDING FIELDS OF TABLE <table>
    FROM (wa_datoscarga-ZTBLCAR)
    WHERE  bukrs   EQ p_bukrs      AND
    z_petic EQ z_peticion   AND
    ZIDFASE eq 'E'.
    After this I need add one column selection at the first position of the columns.
    Thanks

    Hi,
    Please refer to the below link for the code snippet on how to create a dynamic internal table -
    [Create a dynamic internal table.|http://www.divulgesap.com/blog.php?p=MjE=]
    Cheers,
    Ravi

  • Add columns in the existing Customer table in a Subject Area

    Hi All,
    Well I need to add two columns from Sales table(new table i created which has customer Id) and join it to the Customer Table which has the Customer Id and several columns. The Customer table was already in the RPD which has all the customer information. Now that i have this new requirement to add few columns from the Sales table to the Customer table in one Subject Area.
    What i have done so far is that I imported the sales table into the rpd, made a join in PHYSICAL LAYER on the customer ID of the Sales table to the Customer id of the Customer table and simply dragged the sales table to the Customer LTS in the BMM layer(NO MORE JOINS IN BMM)and dragged and dropped the same into the Presentation layer. The customer table is linked to one fact table in that subject area. So i thought that dragging the sales table columns in the customer table LTS will work because customer is linked to one fact in that subject area.
    Now, In the Answers when I dragged columns from customer & sales table I see only one record that is the first customer_id record from my Sales table but i know there are many common customer_ids between those two tables but its only picking the first customer id from the sales table.
    Any help will be appreciated..
    Normally if we need to add some columns to the existing tables in one subject area what is the best approach??

    Hi Balajee,
    SAPMM06E 0111 CUSTSCR1 SAPLXM06 0111 Subscreen: PO item
    for more information check with these links
    ADDING NEW FIELDS IN me21n
    ADDING NEW FIELDS IN me21n - (Screen exit / enhancment)
    hope this will useful to you.
    Regards!

  • Add columns

    Hi all ,
    oracle 11g.2 under OL 5.6
    i need to add column in my tables as the below :
    desc x ;
    id
    name
    sal
    i want to add column comm
    desc x;
    id
    comm
    name
    salactually we have tables that hold the CDRs but today i found the CDRs not uploaded to database due to the IN team was increase the table columns
    we have 40 column but now it become 41 and the column that added vie IN team in 32 position ,
    so i need to know how to add column in middle of my table without recreate the table again (contain data).
    thanks

    thanks for quick reply
    SQL> alter table test add comm varchar2(10) constraint;
    alter table test add comm varchar2(10) constraint
    ERROR at line 1:
    ORA-02250: missing or invalid constraint name
    SQL> desc test;
    Name                                      Null?    Type
    ID                                                 NUMBER
    NAME                                               VARCHAR2(10)
    TIME                                               DATE
    SQL>i want to add column in the middle of my table so the tables become as the below
    SQL> desc test;
    Name                                      Null?    Type
    ID                                                 NUMBER
    COMM                                               VARCHAR2(10)
    NAME                                               VARCHAR2(10)
    TIME                                               DATEthanks

  • Add Columns to Sharepoint 2013 blog post comment form

    Hello, I'm trying to customize my blog site and to add two more fields Name and Country when users are posting a new comments. Is there a way to do this in Sharepoint 2013 foundation?
    Thank you.

    Wendy, Please go through this video from
    channel 9 (http://channel9.msdn.com/Blogs/NickDallett/InfoPath-2010-Customize-a-SharePoint-List-Form)  which will uilding froom explain similar form building from scratch.
    As per Peter's replay yes you can update form even after add columns in list and you can add extar control like button to your infopath form.
    Workflows are usually started when creating or updating an item inside a SharePoint document library. 
    Open the workflow in SharePoint Designer and under "Start Options' on the workflow's home page, remove the check from "Start workflow manually...". Be sure the check either "Start on create..." or "Start on change...". In
    your case I think you would use "Start on create...".
    Hope these inputs will help
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Add Audit Columns to the Dimension and Fact tables (Created & modified date Time)

    Hi All,
    I am new to SSIS , I have to Add Audit Columns to the Dimension and Fact tables (Created & modified date Time) of the package.
    Please let me know the best and easy way through which I can implement the same.
    If possible suggest some real time example or link where I can find the same
    Regards,
    Vipin jha
    Thankx & regards, Vipin jha MCP

    You can simply use ALTER TABLE ADD.. syntax to add the columns if the tables already exist.
    You can generate a single script for all tables using INFORMATION_SCHEMA.TABLES view
    You can make then of NOT NULL type and set the default value to GETDATE()
    In addition you can also have a Audit Trail trigger for UPDATE to make sure Modified date gets updated correctly on each update if not passed explicitly.
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Nsert/Update and Add Column at the same Table and at the "same" Time

    Hello,
    I want Insert/Update and Add Column at the same Table and at the "same" Time but in different sessions.
    Example:
    At first the "insert/update" statement:
    Insert into TestTable (Testid,Value) values (1,5105);
    After that the "add" statement:
    Alter table TestTable add TestColumn number;
    - sadly now I get the message: ORA-00054: resource busy and acquire with NOWAIT specified
    "insert/update" statement:
    Insert into TestTable (Testid,Value) values (2,1135);
    After that the execute commit.
    I don't know when the first session set the commit statement so I want that the DB the "Alter Table..." statement execute if it's possible.
    If it's possible I want to save a repeat loop with the "Alter Table..." statemtent.
    Thanks for ideas

    Well I want to walk in the rain without and umbrella and still stay dry, but it ain't gonna happen.
    You can't run a DDL statement against a table with transactions pending. Session 2 has to wait until session commits or rollbacks (or until the session is killed). That's just the way it is.
    This makes sense if you think about it. The data dictionary has to be consistent across all sessions. If session 2 was allowed to change the table structure whilst session 1 has a pending transaction then the database is in an inconsistent state. This is easier to see if you consider the reverse situation - the ALTER TABLE statement run by session 2 does a DROP COLUMN TESTID rather than adding a column: now what should happen to session 1's INSERT statement? You have retrospectively invalidated a statement that was perfectly legal when it was executed.
    If it's possible I want to save a repeat loop with the "Alter Table..." statemtent.Fnord.
    Cheers, APC

  • Update column data to Upper Case in parent and child table

    Hi ,
    I am facing issue while updating column value to upper case in parent table and child table. How can i do that ?
    when updating parent row:
    ORA-02292: integrity constraint (XXXXXXXXXXXXXX_FK) violated - child record found
    When updatng corresponding child row:
    ORA-02291: integrity constraint (XXXXXXXXXXXXXXXX_FK) violated - parent key not found
    how can i update on both the places ?
    Regards,
    AA

    I am facing issue while updating column value to upper case in parent table and child table. How can i do that ?
    Why do you need to do that?
    That is just ONE of several questions you should answer before you start modifying your data.
    1. What is your 4 digit Oracle version? (result of SELECT * FROM V$VERSION)
    2. If both values are the same case what difference does it make what that case is?hen you don't need to alter your original data.
    3. What is the source of the column values you are using now? If you change your data to upper case it will no longer be identical to the source data.
    4. What is your plan for enforcing future values to be stored in UPPER case? Are you going to use a trigger? Have you written and tested such a trigger to see if it will even work the way you expect?
    5. Why aren't you using a surrogate key instead of a 'business' data item? You have just demonstrated one reason why surrogate keys can be useful: their actual value is NOT important.
    You should reexamine your problem and architecture and consider other alternatives.
    One alternative is to add a new 'surrogate key' column to use as the primary key. Just create a new sequence and use a trigger to populate the new column. Your current plans will require a trigger to perform the case conversion so instead of the just use the trigger to provide the value.
    If the change is being done to facilitate searching you could just add a VIRTUAL column UPPER_MY_COLUMN and index that instead. Then you could search on that new virtual column and the data values would still be identical to the original data source.

  • Dynamic Table using drag and drop table columns

    Hi,
    I want to create an ADF table which allows me to insert new columns from the list of columns.
    List of columns will be shown in the tree. I would like to drag a tree node to the table, table should highlight where i can drop the node.
    Once, i drop it, table should get refreshed with new column at inserted location.
    Is it possible? How?
    Regards,
    Suresh

    Hi,
    I don't think that a drop indicator is possible to create because the drag and drop is no from within the table but from external. You could add the drop target to the table and then determine the column that this is dropped onto. Based on this you can e.g. device to drop it to the right or left
    Frank

  • How to add particluar column dynamically to an internal table

    Hi
    How can I add particluar column(s) to an internal table dynamically and then display in an alv.
    for eg:
    There are 5 columns and the 4th column is the <b>period (1 to 12)</b> that has been declared as select-options in the selection screen.
    col1 = bukrs
    col2 = lifnr
    col3 = akont
    <b>col4 = period</b>
    col5 = waers
    so my question is
    if period is in the range from 1 to 3 then the internal table should be
    bukrs  lifnr  akont   <b>period1   period2  period 3</b>  waers. 
    likewise if the period is in the range from 1 to n then internal table should be
    Bukrs  lifnr   akont   <b> period1   period2   period3   period4 .....  periodn  </b> waers.
    Thanks

    Hi,
    First create a global field catalog with all 12 periods ie period1, period2, ....period12.
    Once you have fieldcatalog with all 12 periods
    Then use this code arrive the dynamic field in the fieldcatalog
    data : begin of i_period occurs 0.
    data : period type i.
    data : end of i_period.
    data : v_no type i value 1.
    do.
      i_period-period = v_no.
      v_no = v_no +1.
      if v_no eq 12.
         exit.
      endif.
    enddo.
    " Here arrive the periods that are not belong to selection option period
    delete i_period where period in s_period.
    data : v_fldname like dd03l-fieldname.
    loop at i_period.
      concatenate 'PERIOD' i_period-period into v_fldname.
      condense v_fldname no-gaps.
      read table i_fieldcat with key fieldname = v_fldname.
      if sy-subrc eq 0.
         delete i_fieldcat index sy-tabix.
      endif.
    endloop.
    After this loop your field catalog contains only valid period that equal to selection option period
    aRs

Maybe you are looking for

  • What do I have to do to bring iPhoto up so that I can use the program?

    This morning we received a software update for iPhoto (36MB) immediately after this download and installation we received a second software update for iPhoto (57.7MB). Shortly after finishing the second update I tried to open iPhoto to work on a slid

  • SMARTFORMS field in STRING format

    Hi! <b>Is there limitations when using data type STRING in connection with SMARTFORMS?</b> I'm trying to send a text field (581 digit long) into an XML file. It is declarated: AVVTEXT     <i>(text field, can be 0-2004 digit)</i> data type <b>STRING</

  • Issues loading the login site of my ISP

    When I first power on my modem, I must log into the ISPs page before I can surf the net. This has worked fine for me up until about 2 months ago. Since then, when I get redirected to the login page, it either fails to load, or takes an age to do so (

  • Cannot save query as local object

    Dear community, One of our users is not able to save a query change as a local object (not to be transported).  While another user is able to do this. Since we don't want the query changes to be transported, I must find a way to allow the save as loc

  • The mouse moves on its own and the screen freezes and zooms in and out.

    About 2 months ago I bought a new macbook pro and over the last couple of days it has produced all these problems! The screen jolts and freezes and only has gradual movement and zooms in and out on a page and the mouse also freezes and moves on its o