Add field to condtion table

Hi Guys:
Can any one tell me how to add the field to condition table, I am doing pricing determination setup.
As I can see in Extend Field Catalog for Condition Tables there are lot of feild exist, but when I at "change condition table" in right column any few field exist in fieldCat, how can I add others.

Hi,
See Note 21040.
Excerpt from Note :
"The allowed fields for conditions and access sequences are defined in the tables KOMG,
KOMK and KOMP. The fields in tables KOMK and KOMP can be used for the definition of access
sequences, and the fields of table KOMG as key fields for condition tables.  A field which is taken
up into the field catalog from tables KOMK or KOMP is ONLY valid as the definition of access
sequences and NOT as a key field for condition tables, therefore it does not appear in the selection
list of condition key field."
You can however add the new field to the KOMG table by following the instructions on how to add a field to the condition
technique for pricing in the IMG. You can find the documentation in the IMG at:
MM -> Purchasing ->Conditions -> Define Price determination process.
Here, go to 'System Enhancements'. There is also a detailed example to explain the procedure.
Note 566002 describes the same thing for field PSTYV. Maybe Note 12905 will also help.
Regards,
Purnima
Edited by: Purnima Prem Priyan on Feb 13, 2012 3:33 PM

Similar Messages

  • Want to add field in standard table control - me21n , me22n , me23n

    Dear All ,
    I have come across a situation where I want to add a field in a standard table control .
    But how to proceed for tht I am not getting .
    In the standad transation me22n in the ITEM  OVERVIEW table control I want to add Curreny field in the table control structure
    i.e MEPO1211 I have append the field in MEPO1211_DATA it is even visible in run time in the structure but not visible in table control and in table control settings also.
    How can I add one more column or some standard procedure to do that. Please suggest .
    Thanks & Regards
    Aryan

    hi,
    If you don't want to access key...then only option is ,you have to search USER Exit or BADi (Try using BADI ME_GUI_PO_CUST) for me22n transaction......to adding the field.
    Regards
    Gaurav

  • Table Maintenance - Add field not in table for display

    I have a Z table which has five fields of which one of them is the GL account field. I need to display the description of the account from SKAT-TXT20 also in SM30 so that In SM30 when the user looks at the table, they should be able to see six fields. I can code the PBO / PAI to pull data from the table, but am not sure how to enhance the table control that SAP generates automatically when you generate table maintenance from SE11's Table Maintenance generator so that the sixth field can be displayed.
    Thanks

    Hi,
    I hope below solution will work for your problem:
    to update field based on other fields of the same table follow below path and create a routine.
    go to se11 open the Z-table in change mode > utilities> table maintenece generator- and then
    environment> modification> events....
    then creat routine based on your requirement.
    regards,
    munvar.

  • Add fields to reporting table/structure CCSS

    My customer has defined some new fields (Z......) for WBS reporting in table PRPS. They would like to use these fields in report painter reports, but we have not managed to make them available in the library used (6P3). In order to make that happen they must show in the reporting table/structure used (CCSS) I guess? According to SAP there's no "easy way" of doing this, but obviously it should be possible.
    Can somebody give ma an idea how this can be done?

    Eventually we manage to get the customer defined field to show up as a characteristic in the relevant library. The reason we struggled with this was the defined length of the field. SAP does not accept a characteristic with a defined field length of more than 24 characters (we had 30). We ended up redefining the length of the field directly in include CI_CC1Z.
    Edited by: Roar Sørli on Feb 5, 2009 2:52 PM

  • Add Fields dynamically to table control

    Hello Folks ,
    i'm trying to add some filed to standard table control and this require from me to take action of repair (modification ) .
    insted of make repair i consider the option of make an enhancement and dynamically (by code ) add the required fileds to table control .
    is there anyone that know if it's possible or not and how to do this .
    Regards,
    Herzel .

    Hi,
        You can use ALV for input purpose as well. Check out OO ALV programs. SE38 -> BCAlVEDIT* , tons of programs available.
    a) Input from user - In ALV, this is possible
    b) F4 help - Possible with ALV
    Not sure why would you need material number and description in the same column and that too one below another. It is possible with lot of tweaking but still requirement is strange and you need to have at least two rows for the same MATNR, one with the number and other with description.
    Refer the links:
    Re: Adding dynamic columns in Table Control
    Re: Adding dynamic columns in Table Control
    Could anyone tell me how can I add columns in a internal table dynamically?
    Re: Dynamic Table Control
    <b>Reward points</b>
    Regards

  • Need query to compare quantites,add fields of 1 table until it = the other

    I am trying to query the Curr_sched and Ship_dd250 tables
    to get the date a shipment was completed
    fulfilling the quantity shipped for the original order.
    The Curr_Sched table gives the original ship date (SCHED_DT)along with the requested quantity (SCHED_QTY).
    C.PIIN C.CLIN C.SCHED_DT C.SCHED_QTY
    D2003 001 19-SEP-2003 20
    D2003 001 30-SEP-2003 10
    D2003 001 28-Oct-2003 205
    D2003 001 29-OCT-2003 6
    D2003 001 31-OCT-2003 6
    D2003 001 31-OCT-2003 6
    D2003 001 28-NOV-2003 300
    D2003 001 29-DEC-2003 48
    (RECORDS CONTINUE FOR NEXT CLIN)
    D2--3 --2 30--------- 3-
    This number is compared to the quantity (QTY_SHIP) of the actual shipment and date the shipment went out (DT_SHP_COMP) in the Ship_dd250
    C.PIIN C.CLIN S.DT_SHP_COMP QTY_SHIP
    D2003 001 17-SEP-2003 20
    D2003 001 10-OCT-2003 10
    D2003 001 28-OCT-2003 6
    D2003 001 28-OCT-2003 6
    D2003 001 28-OCT-2003 6
    D2003 001 28-OCT-2003 155
    D2003 001 14-NOV-2003 100
    D2003 001 21-NOV-2003 100
    D2003 001 25-NOV-2003 100
    D2003 001 15-DEC-2003 98
    (RECORDS CONTINUE FOR NEXT CLIN)
    D2--3 --2 30--------- 3-
    If the C.QTY_SHIP is the same as the S.SCHED_QTY then
    the information is printed to a report as
    *on 19-SEP-2003  an order was placed for 20 items and on 17-SEP-2003 the 20 items were sent
    *same as for 30-SEP-2003 order placed for 10 and on  10-OCT-2003 the 10 items were sent
    C.SCHED_DT DT_SHP_COMP
    19-SEP-2003 17-SEP-2003 --20
    30-SEP-2003 10-OCT-2003 --10
    BUT for an order placed on 28-OCT-2003 for 205 items the first shipment on 28-OCT-2003 only contained 6 items
    so this must be added to a variable and the next record read to see if that amount added to the 6 meets
    the total amount of 205 if not then go on to the next record in the Ship_dd250 until the total is reached.
    *28-OCT-2003 = 6 + 28-OCT-2003 = 6 + 28-OCT-2003 = 6 + 28-OCT-2003 = 155 + 14-NOV-2003 = 100
    *So the total of 205 was reached on 14-NOV-2003 when the quantity shipped total = 273
    *The difference must be retained for comparison to the next quantity request in the Curr_sched for 6 items on 29-OCT-2003
    * So 273 - 205 = 68 minus the 6 = 62 and that number is kept to compare to the next quantity in the Curr_sched
    C.SCHED_DT DT_SHP_COMP
    28-OCT-2003 14-NOV-2003 --205
    30-SEP-2003 14-NOV-2003 --6
    any help, suggestions greatly appreciated Thanks

    I think you didn't tested it, because it's working for this scenario also.
    SQL> select * from tableA;
    PIN   CLIN  SCHDT            QTY
    DAE2  002A  19-SEP-03         20
    DAE2  002A  30-SEP-03         10
    DAE2  002A  28-OCT-03        205
    DAE2  002B  29-OCT-03          6
    DAE2  002B  31-OCT-03          2
    DAE2  002B  21-NOV-03         10
    DAE2  002C  31-OCT-03          6
    DAE2  002C  28-NOV-03         94
    DAE2  002C  29-DEC-03          8
    9 rows selected.
    SQL> select * from tableB;
    PIN   CLIN  SHIPDT           QTY
    DAE2  002A  17-SEP-03         20
    DAE2  002A  10-OCT-03         10
    DAE2  002A  28-OCT-03          5
    DAE2  002A  28-OCT-03        100
    DAE2  002A  28-OCT-03        100
    DAE2  002B  28-OCT-03          7
    DAE2  002B  14-NOV-03          1
    DAE2  002C  25-NOV-03        100
    DAE2  002C  15-DEC-03          8
    9 rows selected.
    SQL> select a.pin,a.clin,schdt,shipdt,qty from
      2  (
      3  select pin,clin,schdt,qty,sum(qty) over
      4  (partition by pin,clin order by schdt rows between unbounded preceding and current row) tqty
      5  from tableA
      6  ) a,
      7  (
      8  select pin,clin,shipdt, lag(tqty) over (partition by clin,pin order by shipdt) pre_qty ,tqty
      9  from
    10  (
    11  select pin,clin,shipdt,sum(qty) over
    12  (partition by pin,clin order by shipdt rows between unbounded preceding and current row) tqty
    13  from tableB
    14  )
    15  ) b
    16  where
    17  a.tqty > nvl(b.pre_qty,0) and a.tqty <= b.tqty and
    18  a.pin = b.pin and
    19  a.clin = b.clin;
    PIN   CLIN  SCHDT     SHIPDT           QTY
    DAE2  002A  19-SEP-03 17-SEP-03         20
    DAE2  002A  30-SEP-03 10-OCT-03         10
    DAE2  002A  28-OCT-03 28-OCT-03        205
    DAE2  002B  29-OCT-03 28-OCT-03          6
    DAE2  002B  31-OCT-03 14-NOV-03          2
    DAE2  002C  31-OCT-03 25-NOV-03          6
    DAE2  002C  28-NOV-03 25-NOV-03         94
    DAE2  002C  29-DEC-03 15-DEC-03          8
    8 rows selected.
    SQL>

  • Urgent: Add field in generic data source

    Hi,
    Could anyone please help me out in resolving the issue to add field from different table in generic datasource.
    How can I add it in R/3 data source when a function module was created in ABAP to generate fields from PLPO table?
    Whatz the changes has to be done at BW side to map the added field?
    <u>Requirement</u>
    1) Need one more field in the extractor. Field name is PLAS-LOEKZ. Initially client wanted me to add PLPO-LOEKZ which I added, now he needs the same fields from both the table (PLAS and PLPO).
    2)The name of the extractor/structure is ZBW_ROUTINGS_OPERATION
    3)Now, we need to add this field (LOEKZ from PLAS) in the function module as well. FM name is: Z_BW_ROUTE_OPERATION_EXTRACTOR. This will be in a SELECT query. We need to add this field in the SELECT statement.
    Testing will be done in following steps
    1)     Go to Transaction RSA3.
    2)     Enter the data source “Z_BW_OPERATION_ATTR”(not sure about the name though, but it should end with OPERATION_ATTR)
    3)     Enter the following details:
    EXTTY – I
    PLNNR – 50000032
    PLNTY – N
    4)     Now execute (F8) the transaction.
    5)     Click on “Display List”
    6)     In the output, we should be able to see these 2 columns(PLAS-LOEKZ) and (PLPO-LOEKZ)
    Please send your valuable suggestions to resolve the issue ASAP as its damn urgent.

    Hi,
    Here is an overview of the solution -
    Use T.Code SE11> ZBW_ROUTINGS_OPERATION. Add your new field (PLAS-LOEKZ) to this table, check, save, activate. Edit your function module, SE37> Z_BW_ROUTE_OPERATION_EXTRACTOR and add your code to look up the correct value of this field LOEKZ from the table PLAS, check, save, activate. (Note that SAP provides a sample function module you can use as a template and customize for your requirements. This sample function module is RSAX_BIW_GET_DATA_SIMPLE.)
    Your Generic DataSource Z_BW_OPERATION_ATTR  is already created, you don’t have to change any settings here. Just regenerate it in RSO2. Now test the extraction for the DataSource in RSA3.
    Hope this helps
    Sandeep

  • How to add fields in a z table

    hi experts !
    i have to add a new fields to an already existing Z table. how can i add field? do i have to delete all other entries and create new ones so that the entry in the new field also gets created.?
    akanksha

    Hi,
    You have two options to enter data type while creating new field in table.
    1. User standard data types i.e. mandt, kunnr etc..to use it u need to press  "Predefined type" button present on top of table fields.
    2. User custom data elements...this data elements you creates when you want to have data field specified to your required length.
    Hope this will help.
    Sumit

  • Add a new field to existing Table

    Hi , We want to add a new field to existing table from ECC  and populate historical data .
    We have already extracted data from ECC to VBAK Table . We have to add a new field - Incoterms in HANA . This field exists in ECC .
    Please guide.

    Hi Vicky,
        I dont think you can add new fields to the condition table once you have activated the condition table.
    SAP says you can only make limited changes to the condition table, like changing the description, fast entry screen, header and footer fields, but not able to add new fields to the table, and I think that is the correct approch or else for the same table you will have two sets of condition records.
    Please refer to the below link:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/de/7a8534c960a134e10000009b38f83b/frameset.htm
    What you can do is create a new condition table with additional field and assign this table before the currently used table in the access sequence.
    Hope this helps.
    Regards
    Raj

  • How to add new fields  to a table control in a standard transaction JHA3X

    Hi All,
            We have a requirement where we have to add two new fields  to  a table control
            in a standard transaction JHA3X .
           We don't want any changes into our standard code and also we don't have any USER EXIT for that
           screen.
           Please provide with some solutions for the same .
           Thanks in advance .

    You will need add this to the /var/clientlibs/libs/cq/security/widgets.js and add the field under the 'CQ.security.UserProperties'.  For example, if you wanted to add a field to show the 'Middle Name' under the 'First Name' field, you can try adding the following:
                "items":[{
                        "xtype":"textfield",
                        "fieldLabel":CQ.I18n.getMessage("Login"),
                        "anchor":"100%",
                        "disabled":true,
                        "allowBlank":false,
                        "name":"rep:userId"
                        "xtype":"textfield",
                        "fieldLabel":CQ.I18n.getMessage("First Name"),
                        "anchor":"100%",
                        "name":"givenName"
                        "xtype":"textfield",
                        "fieldLabel":CQ.I18n.getMessage("Middle Name"),
                        "anchor":"100%",
                        "name":"middleName",
                        "xtype":"textfield",
                        "fieldLabel":CQ.I18n.getMessage("Last Name"),
                        "anchor":"100%",
                        "name":"familyName",
                        "allowBlank":false
    Hope this helps.
    -Ron

  • Add Fields from table ADRC (Fields Name 1 to 4) for Open Item Processing

    Hi SAP Expert:
    Our client requires vendor/customer name to be displayed in the open item processing line layout for transaction code f-58, so they can double check if the vendor name is complete as intended. 
    We intend to add fields from table ADRC instead of REGUH since the characters in maintaining vendor/customer name is 40 characters and REGUH - ZNME1s are only 35 characters. 
    We have managed to add fields from ADRC and change the SAPDF05X program and were able to display the names in open item layout, except that the program seems to "automatically" create a generic table which only carries 30 characters of the vendor/customer name.  The source table should be RFOPS_DK but the program automatically looks up from table RFOPS_GEN for the particular fields - Name 1 to 4.  Is there a way to "instruct" the program to use RFOPS_DK instead of RFOPS_GEN?
    Hope this will merit somebody's attention... Thanks !!!

    Thanks,  i have assigned the layout via o7v3,  it is the program that i have a problem with,  actually another program that we change is the program MF05BFPO where it generates data to be displayed in the FBZ4 screen,  though we add a field with 40 characters (ADRC Name 1 to 4)  what the program dispalys is a 30 character Name1 to 4 from structure RFOPS_GEN. 
    My question is can i extend/change the structure RFOP_GEN to 40 characters,  is there any SAP standard program that will aftected if i do so?  thank very much...
    Lorena

  • How Can I do to add new dateu00B4s field in VBEP table ?

    How can I do to show these fields on the screen of the schedule lines ?
    What exactly do I need to do ?

    Hi,
    you can add a field in a table through Append Structure,that it shoud not populated in screen Find Any user exit is avilable
    Regards,
    Phani

  • I need to add a single field from with_item table . need to write select query with reference to company code , account doc no , fiscal year

    I need to add a single field from with_item table . need to write select query with reference to company code , account doc no , fiscal year

    Hi Arun ,
    Can you explain little bit more ??
    what is account doc no? 
    what are the transactions should be displayed in your output??
    -Rajesh N

  • ADF Query Panel with Tree Table -- Add Fields

    I created ADF Query Panel with Tree Table using JDeveloper 11G. Under Advance Search, Add Fields pull down only list the fields in the master table. My questions are,
    1) Can I search fields in detail table? If yes, how can I do it?
    2) How can I customized this pull down list? Currently it just show the entire view of master table with unnecessary id type data.
    Thanks in advance.
    Edited by: kxc on Nov 9, 2009 9:21 AM

    1) Can I search fields in detail table? If yes, how can I do it?
    Are there anyway to search the second level node?You can. But you need to evaluate if the arrangement works for you.
    I assume you have a view link from the master to detail VO.
    To do so, in your master view criteria (the one which you use in the query panel), shuttle the attributes of your detail VO (in master attributes list, you'l see the detail view link accessor - on selecting this, the detail atteributes are available to you)
    In the Add Fields, it shows as student_id AND student_name. I was unable to delete the student_id field in the view since it is PKYou can set its 'display' UI hint to 'hide' in your VO.

  • Report Painter: How to add new(customer specific) field to CCSS table

    Dear Experts,
    We have requirement to display the orders based on Profit center or Profit center groups in report painter. So in report library(6O1), we want to add fieild PRCTR or any customer specific field(ZPRCTR) to CCSS table. Could you please let us know how to add field ?
    or is possible to add customer specific field(ZPRCTR) in CCSS and link that field to Profit Cetner(PRCTR) and profit center group.
    Please help us..
    Thanks in advance

    You can check the below OSS notes:-
    <https://service.sap.com/sap/support/notes/929889>
    <https://service.sap.com/sap/support/notes/522581>
    <https://service.sap.com/sap/support/notes/43493>
    Regards,
    Gaurav

Maybe you are looking for