Adding a new field to field catalog

Hi,
I need to add the field bwart to the catalogue field, I have no idea how to do it. I have read it is done in t. code NACE, but when I get there I don't know what to do.
Thanks,
Alejandro

Ok I just realized what to do once I am in T. code NACE, however when I try to add the new field into the field catalogue I get a message that says it is not in KOMB, KOMKBME, KOMPBME

Similar Messages

  • FMDERIVE: adding a new MM source field

    Hi, I'd would to know how to add the field KNTTP (Account assignement category) in a derivation rule.
    So far, I've done this steps:
    1) Adding the field in the structure FMDERIVE inside de APPEND "AFMDERIVE"
    2) Activating the user exit EXIT_SAPLFMDT_002
    *--- Copy additional fields from the structure COBL.
    MOVE-CORRESPONDING i_cobl TO c_fmderive.
    *--- Copy additional fields from the structure COBL_AD
    MOVE-CORRESPONDING i_cobl_ad TO c_fmderive.
    3) Creating the new derivation rule in transaction FMDERIVE, like this:
    SOURCE FIELDS: KNTTP (Account assignment category) & PLANT (Plant)
    TARGET FIELDS: FUND_CENTER (Funds Center)
    CONDITIONS: FM_AREA = XXXX & COMPANY_CODE = 1000 & KNTTP = A
    Unchecked all in Attributes tab.
    RULE VALUES = For example: PLANT = 1000 & KNTTP = A ==> FUND_CENTER = A
                                                      PLANT = 1000 & KNTTP = K ==> FUND_CENTER = Z
    SAVE
    But when I'm creating a purchase requisition (ME51N) and I choose the plant 1000 and the account assignment category A, the derivation is not working.
    We have made a debugging and we've realised that the structure i_cobl doesn't have the field KNTTP, so the exit always move to a blank space in field KNTTP.
    Anybody can help me? Is there a way to add fields in the i_cobl structure?? Should I use another User exit because the field belongs to MM??
    If anybody have any other idea, I will be glad to read it!!
    Thanks in advance!
    Lorena

    Hi, there is a way of using KNTTP in derivation (this also applies to other fields not available in COBL/COBL_AD), not sure if it is a recommended approach because it requires reading the values from memory, it does work though.
    Read the value of KNTTP from memory and assign it to C_FMDERIVE in EXIT_SAPLFMDT_002, include ZXFMDTU02. then it is available in derivation as source field, provided that you have added it to the structure. See code below:
    DATA: lv_field(100) TYPE c.
    FIELD-SYMBOLS: <ekpo> TYPE ekpo.
    CONCATENATE '(SAPLMEPO)' 'EKPO' INTO lv_field.
    ASSIGN (lv_field) TO <ekpo>.
    IF sy-subrc = 0.
       c_fmderive-usertemp1 = <ekpo>-knttp.
    ENDIF.

  • Adding a New Check Box field in Business Partner

    Experts,
    I know there are hundreds of thread on this topic. But i'm not clear with that.
    I have to add a new Check box in the Business Partner Screen. We are on SRM 5.0.
    The check box should be placed in "Business Partner Status" Frame of "Company Data" Tab.
    How to go about this, Kindly please expalin the steps.
    More over the Check box will be used for further processing in other tabs.
    Pl throw some light on that aspect also.
    Rgds
    Immediate Rewards for Sure
    SV

    Hi
    Try this link, already copied by ..
    Re: vendor master extensions by customer
    It is not possible to display F4 help for customer fields in BBPMAININT Transaction.
    Supporting link ->
    F4 for customer table fields
    Other useful links ->
    Note 675800 - Business partner enhancement SRM on maintenance screen
    Re: How I can save customer fields in Vendor master?
    Re: Adding new fields in VEndor master data in EBP
    Hope this will help.
    Regards
    - Atul

  • Adding a new SAP standard field to complaints result BOL

    Hi Experts,
    There is a requirement to add SAP standard field 'Posting date' to Advance search result BOL of complaints.
    This field already exists in search BOL and visible on WEB UI advanced search.
    The field is added as attribute in result context node of BT120S_CPL/AdvSearchComplRL through wizard.
    But, unable to see the values getting populated. Could you please let us know if any code to be written for getting values populated.
    Regards,
    Santosh

    Hi Santosh ,
    My previous post was based on the fact that you have added a model attribute. Since you have added the field as a value attribute and you want to use it for querying , then you would have to do the following
    a) Extract the value from the value node.
    b) Add the selection param so that 'posting date' is passed to the GENIL. You can use add selection param method in the Advanced query. Use the name of the field in the BOL & the value as yours.
    c) Get the result & show it on the way you want.
    This is same as it would have been when you had a model field. In that case also you would have extracted the value from model node. I see no difference here except that fetching the field. Rest of the steps remain the same if the field is available in BOL for advanced query.
    Yes the difference lies in showing it in the WebUI as now you would have to fill this value node manually. If you had a model node , the framework would have done this for you.
    But don't base your choice of model/value node on the ease of coding but on the business case.
    Regards
    Kavindra

  • Adding New fields to field catalog

    Hi friends, i have comeup with a requirement. its related to output determination. the output have to be sent based on certain criteria. for this we decided to create a new condition table(Acess) and add it in the Access sequence. To create a condition table we need to select the fields from the "Field Catalog". so for this the field should be avilable in the field catalog. Since the field we are going to use is a new Zfield the field is not avilable in the "Output field Catalog".
               What to be done to make the field avilable in the 'Output field catalog'
    Can anyone give some input on this? Thanks in advance.

    Hi Srini,
    Following are the activities.
    1. Find out what are the output communication structures involved in that output condition table. To find that, go to field catalog, and enter a new field called "test". Then it will give you a message "The field test is not a part of the communication structures KOMB, KOMPBV* KOMKBV*where * equals 1, 2 or 3 based on whether the output is for order, delivery or billing documents. For delivery document it is KOMPBV2, KOMKBV2 and KOMB.
    2. Now having known the communication structures for the field catalog, go to all these structures in SE11 and append these structures with a new field say ZZ_SOLD TO PARTY with the relevant data element and domain.
    3. To populate the field while doing transactions, you have to represent this field by a foreign key which is a field from transaction say LIKP_KUNAG for a delivery output.This coding takes place in a user exit. The correct user exit has to be found. Once this is done, the new field is ready for input and it will be available in the list of allowed fields in the field catalogue.
    4.Now you can create a condition table using the new field and use it as one of the accesses in access seq.
    Please assign reward points if this info is helpful to you.

  • New field in field catalog in output

    How can I add new field in field catalog in Output determination. I heard it can be done through a user exit. Can somebofd help with the user exit name.

    if you want to use new field in output determination - you need to modify corresponding communication structure (KOMKBV1 - header structure for V1 application - like sales orders, contracts,...)
    Then in RVCOMFZZ in one of the userexits you can populate those fields.
    After your fields are added to KOMKBV1 - you can use them in output determination.

  • Adding 'Your Reference'(VBKD-IHREZ) field to Field catalog in Output determ

    The requirement is maintaining the condition table using Sales Org/Sales Doc Type/Your reference in output determination process. But the field 'Your reference(VBKD-IHREZ)' is not in the field catalog. Can someone tell me how to add the VBKD-IHREZ to field catalog?
    Thanks in Advance.

    Hey,
    You can find intructions for adding fields to field catalog from this link: http://www.sap-basis-abap.com/sd/how-to-add-new-fields-to-field-catalog.htm

  • How to add new field to Field Catalog in Pricing?

    I want to create new field in field catalog (i.e. Average Supply Quantity), and then populate it to Web UI (user must enter value in this field for calculate price in opporunity). What actions I need to do for this?

    Hi Pavel,
    Fields added to field catalog are to define condition table.
    Go to SPRO->CRM->BAsic Functions->Pricing->Define Settings for Pricing->Maintain Field Catalog.
    Create the attribute in field catalog with below parameters,
    Field Type = 'I' ( item field ) if its header field then it should be H and corresponding structure is CRMT_ACS_H_COM
    Implementation type = ' '
    Enter field name
    Virtual = 'C'
    Visibility = ' '
    Selection type = 'A'
    Enter the data element
    Now save the field catalog and click generate.
    The next step is to pass value to the field in order to do pricing. This should be done in CRM_COND_COM_BADI. If the field is a 
    header field then assign value to the field in method HEADER_COMMUNICATION_STRUCTURE else use method ITEM_COMMUNICATION STRUCTURE. You will find the attribute in importing structure of the both the methods. Assign value (i.e. Average Supply Quantity) to the field.
    Regards,
    Arun

  • Add a new field in field catalog of Material exclusion & inclusion.

    Hi All,
    I want to add a new field in field catlog  Material exclusion & inclusion.
    Filed to be added-
    Field:MVKE-PRAT6.
    Please help me ot add the same.
    Thank you
    RKMACC

    Hi,
    You need to go for enhancement,use the exit MV45AFZZ to include into the field catalog,take the help of ABAPer.
    Regards
    Ram

  • Error while adding a new field to the Segment in we31

    Hi ,
    I am getting error when i am trying to add the new field to the cust. segment.
    It is released for the adding the new fields i am cancelling the release , but i got a message like this
    Error while resetting release of segment 'segment name'.
    it is comming from the message class EA and message number 259.
    Thanks in advance.
    Reagrds,
    bharani

    Hi,
    Have you tried Cancelling the release before adding the version?
    Select the active version of the IDOC Segment and cancel its release first. Only then you will be able to add a version.
    Please let me know if it worked!
    Vijay

  • Adding a new field to selection screen -Effect on variant

    Hello,
      If we add a new (non obligatory) field to a slection screen, is there any impact on existing variants? Does SAP regenerate each variant when the screen change transport get applied? We had a DB lock jam situation in our PRD system for VARI table and the previous day some program changes with a added selection screen parameter ( a check box) had moved).
    Regards,
    Hari.

    Adding a field to the selection screen shouldn't affect existing variants (but the field will be blank for all variants). However, if there is a problem, you should be able to retrieve variants with program RSVARDOC_610.
    Rob

  • Adding a new field to Payroll Timecards header doesnt save

    Hi,
    I have added a new text field in the header section of Payroll Timecard layout. I have created a DFF context in OTL Information Types and have given the attribute in the COMP Qualifiers definition. But when i enter the data and try to continue it errors out and asks to contact System Administrator.Please help if some1 has faced similar problem.
    Regards,
    Sameer

    Enable the FND Diagnostic and test again. That will give you detailed error stack. Provide that.
    --Shiv                                                                                                                                                                                                                   

  • Adding a new field to search of Service Contracts

    Hi Experts,
    I have a requirement where in to add an existing field i.e your ref (sold_to) your_ref_sold field into the search criteria of Service Contrct .
    How to add the field to the Search .
    I have few questions here.
    1 need I use EEW to add the field to Search but its already existing?
    2 If not How to append the Structure crmst_query_src_btil and enhace it with field required?
    3 how to implement the BADI crm_rf_search_eew?
    Thanking You,
    Sree.

    The search help exit allows you to modify functionality of search help. If you add a new field to the
    parameter list that is not contained on the selection method you can manually populate it within the search
    help exit.
    This  would be performed within the u2018STEP DISPu2019 section. Once within this section all search help
    data has been retrieved and is stored in table RECORD_TAB (record_tab-string) as one long string value.
    Therefore you need to read table SHLP in-order to locate position of value within string.
    Example:
    To find position of personnel number (PERNR) within elemenory search
    help M_PREMN you would use the following code:
    Loop at record_tab.
         read table shlp-fielddescr into wa_shlp
                                       with key tabname   = 'M_PREMN'
                                                fieldname = 'PERNR'.
    You could then use this information in the following way, for
    example, to find a persons organisation unit:
          select  orgeh endda
            up to 1 rows
            from pa0001
            into (ld_orgeh,ld_endda)
           where pernr eq record_tab-string+wa_shlp-offset(8)
                                                      u201Cpernr length is 8
           order by endda descending.
          endselect.
          select single orgtx
            from t527x
            into ld_orgtxt
           where orgeh eq ld_orgeh and
                 sprsl eq sy-langu and
               ( endda ge sy-datum and
                 begda le sy-datum ).
    If you have added a new field to the end of the parameters list
    the next step is to populate it by adding this data to the end of
    the record_tab string:
      concatenate record_tab-string ld_orgtxt into record_tab-string.
      modify record_tab.
    endloop.

  • Adding a new field to a Z table

    We have a Z table on which we have created a datasource. We have created a virtual cube on this datasource and queries are built on this cube. This setup is present on Dev, Quality and Prod environment.
    Now we have added a new field to the Z table in Dev. We will be creating a new Infoobject for this new field and will be adding it in the Virtual Infoprovider and also in the queries.
    1. Do we need to replicate the datasource so that newly added field is visible to the datasource? If no, is there any way?
    2. When I have to transport this to Quality and Prod, do I have to capture all the components and objects (Table,Datasoure,Virtual Cube Queries)? If no, what should I capture in the transport request?

    Hi,
    First, you have to regenerate the datasource in order to add the field:
    1) Log on to source system (where Z table is stored) and go to transaction RSA6.
    2) Select the root node and click Expand (icon with '+' sign).
    3) Search for your datasource (you can use the binoculars icon).
    4) Click on Change.
    5) Verify that the field appears on the list.  Make sure that "Hide field" and "Field only known on client exit" options are not marked for this field.
    6) Click on Save.
    7) Select "Datasource" -> "Generate" (CTRL+S) menu option.
    8) Use RSA3 transaction in order to verify the new field appears on test extractions.
    Then, to replicate the datasource in BI:
    1) Log on to SAP BI and go to RSA1 transaction.
    2) Go to "Modeling" -> "DataSources" section.
    3) Search for your datasource and right click on it.  Select "Replicate metadata" from context menu.
    4) Add the new InfoObject to the VirtualProvider.
    5) Update the transformation which joins the DataSource to the VirtualProvider.
    As far as transport requests are concerned, even though it requires more work, it is a good practice to group objects in different transport requests according to their type:
    In the source System (R3 for instance):
    1) One transport request with the table.
    2) One transport request with the datasource and its structure.
    In BI:
    1) One transport order with the datasource replica.
    2) One transport order with the new InfoObject(s).
    3) One transport order with the modified VirtualProvider.
    4) One transport order with the modified transformations from the datasource towards the VirtualProvider.
    5) One transport order with the Queries and their elements.
    I hope this helps you.
    Regards,
    Maximiliano

  • Adding a new field to a standard webdynpro component's layout

    Hi all,
      I need to add a new field to a standard webdynpro component's( in my case the component is ''/SAPSRM/WDC_UI_SC_DOTC_BD')  layout.How do i go about adding a new field to the standard component's lay out?
    can anyone help me with the necessary details?
    Regards,
    Abhinay.

    Check if this is useful to you (Login required)
    https://websmp105.sap-ag.de/~sapidb/011000358700001969972008E.pdf
    Rgds/Kiran

  • Adding a new field to existing structure

    HI all
    I am adding a new field to the existing structure in BW ,shall I remove all the data in the cube to fill fill this field for the previous records and reload again or any other solution
    thanks in advance

    Hi,
    Yu need to delete the data to fill the new field again.
    Assign points if it helps
    Regards,
    Srinivas

Maybe you are looking for

  • Apple TV (1st gen) photos in an Event not in date order

    I have synced selected Events from iPhoto to my Apple TV 1st gen with iTunes 11.0.1 The events synced are "merged" events from 2 cameras on a month-by-month basis. In iPhoto, I have the event sorted by date, but on the Apple TV, the photos are NOT in

  • Need suggestion on concurrent manager tuning

    We have two node appl tier system. In front of that appl tier there is hard load balancer. Currently I have setup concurrent process size as 20. How can I further tune it. Can you provide some reference for that? Please note that we have not implemen

  • APP Store error 100

    This is quite annoying and seems like I am not alone. Am waiting on a Support call. I upgraded to Lion through App Store and iWork '09 and PhotoShop Elements stopped working. Then I used App store to purchased Pages. I was happy as a clam that all wa

  • Regarding Webservice

    Hi Everyone,      Can we convert simple file to file Scenario in XI to a webservice. Regards, Varun.

  • Emailing through oracle database

    I am using oracle database 8i ,application server 9i. What software/infrastructure I needed to send email to my consumers in database regarding their electricity Bill. Is it oracle email server?