New field (Customer group 5) to be added to the Catalog for Pricing.

Hello friends,
For the creation of a new Condition table, I require the field, KNVV-KVGR5 i.e Customer group 5 field present in Sales area data ->Extras -> Additional data in Customer master to be added to the Catalog of allowed fields since this field does not exist anywhere.
I have already gone thru the threads available on adding New field for Pricing which has an example/detailed explanation with the Item category (PSTYVV) field.
But the field I want i.e KNVV-KVGR5, is a part of Master data, so please guide me with the steps to follow to add this field in the field catalog and hence use it for creation of a new condition table.
1) Should i add this field in KOMP (i.e item) or KOMK ( i.e Header) or KOMG?
2) Should i include it in KOMKAZ or KOMPAZ?
3) Should i create this field as data element or structure and what should be the domain used?
4) For the value flow, should i use the Item -level user-exits or Header level mentioned in other threads?
Please guide for the same urgently.

Dear Friends,
I was finally able to create a new field for Cust.grp.5 i.e ZZKVGR5 and added to Catalog to be used for Pricing.
Then i faced a peculiar issue as below:
For the business requirement, we defined a new tax condition table for determination of tax rates. For this, we are using both standard and custom fields to derive the correct tax rates in sales/billing documents like below
A859: Country/Distr. Chl/Cust.grp.5/Material (Here Customer.grp 5 was added following the SAP Note: 531835)
The field was inserted in the communication structure KOMKAZ which is included in both KOMK and KOMP.
During the document processing, the pricing analysis view shows no value in the customer grp 5 field, though it is maintained for the customer used in the sales order. The code has been written in MV45 and RV60 both as guided in SAP Note: 531835. But the values are not flowing.
Solved the above problem as below:
M posting the answer to help the community for similar issue.
Also, the new field tat i had added was Customer Grp 5 field of Customer master ->Extras->Additional field and I wanted the value to flow in the ZZKVGR5 field before the Pricing for the sales order was called.
After trying all, we have finally fetched the value from KNVV-KVGR5 and got it moved to ZZKVGR5 field through ABAP coding.
After this when i select/click on Pricing for a particular item, it gets picked up correctly and properly.
Thanks to everyone for their valuable guidance and help.
Regards to all.

Similar Messages

  • Adding a new field extension on CRM Order Item tab in the web shop order

    Hi CRM E-Commerce Gurus,
    I want to add a extension field on any web site product such as "zz...." in order to use this data in order's item tab. What shoul I do on J2EE Stack-.jsp method and ABAP Stack at the BADI implementations.
    Could you please help me in order to add a new field extension on CRM Order Item tab in the web shop order ?
    Thanks,
    Kind Regards,
    Fahrettin

    Hi Arshi,
    We have could not find any java action class such as Maintainb2csaveorderaction in config.xml folder and also there is no available threads and clue on SDN, google etc. Therefore we are got stucked on this issue. In SAP_ISA_60 Development and Extension Guide of SAP E-Commerce there is no sample java action class code such as Maintainb2csaveorderaction but some ABAP codes are available for the extension structure.
    Do you suggest any java action class such as Maintainb2csaveorderaction codes like in your B2B scenarios etc.?
    ls_header is a local structure with header data
      ls_extension-ref_guid = ls_header-guid.   
      ls_extension-alt_handle = ls_header-handle.
    extension are name value pairs
      ls_extension-name = u2018Z_CUSTOMER1u2019          u2018 name
      ls_extension-value = ls_header-zcustomer1. u2018 value
      APPEND ls_extension to extension_header_out
    now adding extensions to the items
      LOOP AT lt_items INTO ls_item.
        ls_extension-ref_guid = ls_item-guid.
        ls_extension-alt_handle = ls_item-handle.
        ls_extension-name = u2018Z_CUSTOMER2u2019          u2018name
        ls_extension-value = ls_item-zcustomer2.   u2018value
        APPEND ls_extension to extension_item_out 
      ENDLOOP.
    ls_header is a local structure with header data
      LOOP AT extension_header_in INTO ls_extension.
    check the name to find the according field
          IF ls_extension-name = u2018Z_CUSTOMER1u2019.
            ls_header-zcustomer1 = ls_extension-value.
          ENDIF.
      ENDLOOP.
    sort the extension table by ref_guid and handle to obtain a better access
    with binary search.
      SORT extension_item_in BY ref_guid, alt_handle.
      LOOP AT lt_items INTO ls_item.
    find the starting point for a loop over extensions
    use guid and handle as one logical key to access the extension
        READ TABLE extension_item_in
          WITH KEY ref_guid = ls_item-guid
                   alt_handle = ls_item-handle
                   BINARY SEARCH.
        IF SY-SUBRC = 0.
          LOOP AT extension_item_in INTO ls_extension
            FROM SY-TABIX.
    check, if the entry is relevant
            IF NOT    ls_extension-ref_guid = ls_item-guid
               OR NOT ls_extension-alt_handle = ls_item-handle.
               BREAK.
            ENDIF.  
            IF ls_extension-key = u2018Z_CUSTOMER2u2019.
              ls_item-zcustomer2 = ls_extension-value.
            ENDIF.
          ENDLOOP.
        ENDIF.     
      ENDLOOP.
    Thanks
    Kind Regards,
    Fahrettin

  • [svn] 1053: Basic and custom security-constraint samples were added to the team app mainly for the doc team to have a reference .

    Revision: 1053
    Author: [email protected]
    Date: 2008-04-01 11:35:28 -0700 (Tue, 01 Apr 2008)
    Log Message:
    Basic and custom security-constraint samples were added to the team app mainly for the doc team to have a reference. The custom authentication sample uses the new ChannelSet.login and ChannelSet.logout methods.
    Modified Paths:
    blazeds/branches/3.0.x/apps/team/WEB-INF/flex/remoting-config.xml
    blazeds/branches/3.0.x/apps/team/WEB-INF/flex/services-config.xml
    Added Paths:
    blazeds/branches/3.0.x/apps/team/features/security-constraints/
    blazeds/branches/3.0.x/apps/team/features/security-constraints/README.txt
    blazeds/branches/3.0.x/apps/team/features/security-constraints/securityConstraint_Basic.m xml
    blazeds/branches/3.0.x/apps/team/features/security-constraints/securityConstraint_Custom. mxml
    Removed Paths:
    blazeds/branches/3.0.x/apps/team/features/remoting/remoting_AMF_SecurityConstraint_Basic. mxml

    Congrats to Carmelo!
     Windows Phone and Windows Store Apps Technical Guru - February 2015  
    Carmelo La Monica
    Windows Phone 8: control Nokia Maps (Part 3)
    JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
    Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
    article!"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • HT4623 how long will take to install the new update on my iphone, it has been at the same % for a hour.

    How long does it take to install the new iphone update, my iphone is been stuck at the same % for over a hour.

    The update should not take more than 5 minutes to download and update.
    I would recommended pressing on the sleep/wake button for a few seconds untill you see the 'slide to shut down' bar. Shut the device down and try again.

  • Can i change my email address on icloud account on phone? to email i used on new mac ?? do they need to be the same for optimal use?

    can i change my email address on icloud account on phone? to email i used on new mac ?? do they need to be the same for optimal use?

    Yes the Apple ID is the thing that ties your devices to you and shares your information and content between them.
    If you mean that Find My Phone is asking for a password to a different Apple ID to your current Apple ID.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.

  • Urgent :crm_ic web client adding new field - customer external number-BPEXT

    HI
    I want to add the field <b>customer external number(data element- bpext)</b> is available as a standard  field in  <b>bp transaction</b> , under indentification tab I am trying to bring the same field into the <b>identify account-CRM-IC BSP Application</b>
    when I am trying to do this , I nee to know the below information
    <b>Attribute name
    property name
    context class</b>
    can you help me in Identifying this values which I feel is must for adding the field to the bsp application CRM_IC.
    thanks in advance
    Message was edited by: madhu satya rajasekhar bobbadi

    Hi,
    Following are the steps to add new fields to the existing view.
    - Create a new controller class (ZCL..) with original view class as super class
    - Create new BSP application with View and Controller
    - Attach the above Z class to the view and controller created and activate the BSP appln.
    - Go to transaction BSP_WD_WORKBENCH and type your BSP appln.
    - Expand your controller and at the Context class use Wizard to create new context node and bind this to Custom Controller class available.
    This whole process requires complte understanding of View, Controller, Custom controller and basic custom modifications to IC Web Frame work.
    Kunda Krishna Kishore

  • Pricing field - customer group

    Hi, I can find the 5 customer condition groups in the 'allowed field' for pricing table.  But when I create a table to include these fields, I cannot see them.
    Please help on how to add these fields to a new table.. or is there an exisitng one?

    Hi Deriada,
    I have also seen that all 5 customer group is in "Allowed feild".
    I simple go to create condition table > Press page down (Just once)> customer group was there.
    Hope it helps, Please cross check and revert back.
    Regards,
    MT

  • Field catalog for pricing condition not present

    Hi experts,
    i want to create a princing condition so for this i have to add one field to structure KOMPAZ. So, i have included required field (manufacturer) in this customer structure KOMPAZ but even with this modification I can't see manufacturer field in field catalog (t-code V/03)
    Why??
    Please someone help me.
    Any help would be apppreciated.

    Hi
    SPRO--> u2018Sales and Distribution -> Basic Functions -> Pricing -> Pricing Controlu2019 and execute u2018Define Condition Tablesu2019. Choose u2018Conditions: Allowed fieldsu2019 and include Conditions: Allowed fieldsu2019 and include (Customized "Manufacturer" ) Field as a new entry.
    Now you can use field (Customized "Manufacturer" ) as a key field when you create a condition table
    Further Info refer the URL Below
    [  Add New Fields To Field Catalog |http://sapsdforum.com/2007/10/23/pricing-in-sd-in-great-detail/]

  • Custom headers are not exported correctly in the bindings for the WCF-WebHttp adapter

    I have an annoying issue with the bindings for the WCF-WebHttp adapter.
    As you know, the "Messages" tab of the WCF-WebHttp transport properties enables a developer to configure a number of static outbound HTTP headers. When I've entered two or more headers in the textbox, the CRLF between individual headers will be
    stripped after a bindings import. This means I cannot call RESTful services that require more than one custom HTTP header in a messaging-only scenario, because BizTalk goofs up the configuration.
    For example, when I enter the following headers in the textbox:
    Then export the bindings, and immediately import the bindings again (untouched), the textbox now shows:
    I did some brief analysis, and within the binding file's XML, the HttpHeaders property (contained in the TransportTypeData element) is not encoded/escaped in any way, so therefore the significant whitespace (in this case CRLF) that needs to be preserved
    is lost in the import process.
    Can anyone reproduce this and can anyone think of a workaround (without resorting to an orchestration)?

    I did some brief analysis, and within the binding file's XML, the HttpHeaders property (contained in the TransportTypeData element) is not encoded/escaped in any way, so therefore the significant whitespace (in this case CRLF) that needs to be preserved
    is lost in the import process.
    +1

  • Adding New field in Grouping creterion : Report RV56TRSP

    Hi,
    I want to add currency (VTRLK-WAERK) as grouping criterion. Field VTRLK-WAERK is available in structure VTRLK but in F4 help this field is not available.
    Can you please let me know if it is possible to add this field in F4 list?
    I would really appreciate your help on this.
    Regards,
    Sanjeev Jain

    hi,
    you must extend field catalog via CMOD exit: V56MVT04
    see MF: EXIT_SAPLV56M_001 "Collective Processing for Shipment: Enhancement of Field Cat"
    regards,darek

  • In FF5.0 this Tab Groups feature doesn't work: "Once you've created your first group, the Tab Group button will be added to the right end of the tab strip to give you a one-click way to get back to your groups."

    The sentence in quotes in my question is from the instructions under "What are Tab Groups?" (Redirected from "What is Panorama?")

    Thank you cor-el. I had tried that but the icon wouldn't go on the tab bar. Now it will.
    All this may be me, but I still suspect FF5. For WHY did it not happen automatically, as the help page indicates?
    Sorry, only just got back to click Solved, as the icon is now where it's supposed to be. The icon I got from the Customization window before was useless on my cluttered toolbar, and I thought the only way to get it to appear on the tab bar as advertised was to remove it completely and see if it appeared in the right place after a reboot or something. I think we're probably still at the stage where we have to settle for ad-hoc fixes of the mercurial behaviour of new versions.

  • Problem with "Group By" in Views - Not Displaying the Same for All Users

    We have an Announcements List with its only View being set up to group by a metadata category field. We've done this many times on other kinds of lists and never had a problem. But with this list, about half the users can see only the ungrouped
    set of announcements, whereas others actually see the items within their groups.
    Those with "View" rights only can't see the grouped items - but that appears to be a coincidence as I promoted them to the same rights as others who can see them correctly, and that did NOT solve the problem. Everyone is using the exact same browser.
    Note: the users who do NOT see the groupings see only a single category entry that displays only the name of the category list (but not the names of the actual categories within the category list). All the announcements are grouped under that one
    entry for those users. This display looks exactly like it would if the categories had been left blank when the original announcements were created. But the categories are NOT blank, and the rest of the users can see them just fine, and the announcements display
    within their appropriate groups.
    I can't find anything in the View, the List Settings, or the User Permissions to explain this. What could be causing it, and how can I fix it?

    Browser settings are controlled by central IT and are all identical. 
    The only difference I can detect is the second set of users (that don't see the category options) have only Read rights, whereas those with Contribute (or above) rights can see the categories. It doesn't make
    sense that permissions would affect this, but I can't come up with any other differences.
    Microsoft will not allow me to upload images. it says I can't upload images until they have verified my account, but there is no clue as to how, if or when that might happen. If you can tell me how to fix that, I can provide samples.

  • When edit in photoshop, the edited image is added to the catalog in a duplicate of the same volume..

    Ok, this is realy strange...
    I edit in photoshop a cr2 file from a canon 20d
    Once done with the edit, i clic save in photoshop
    The file is saved as a tif but, in the folder view in the library, i now have 2 instances of the same volume...
    In the first instance of that volume, the one that should be there, i do not see the new edited tif file (& the file count did not went up by 1)but in the second instance of the same volume, i now have only the new tif file under that directory...
    here is what i see...
    Local Disk (E:)
    Wedding 8718
    Peter & Josée 499
    Local Disk (E:)
    Peter & Josée 1 (this one is the tif after the edit in PS)
    If i detete the tif, then right-clic Remove the directory Peter & Josée under the second instance of Local Disk (E:), the second instant of the volume will be gone as well.
    It does that every time i edit in photoshop.

    I noticed something...
    Looking at the metadata of both files, i found a little difference in the folder field information in metadata...
    My original cr2 file in the real volume has this in the folder field... E:\Wedding\Peter and Josée... notice it start with a capitale E
    The file in the "ghost folder" under the duplicate of the same volume has: e:\Wedding\Peter and Josée... lowercase for the drive letter
    When i reinstall the previous version of Camera Raw, i have the message in LR saying i need 4.5 for full compatibility... i clic render using LR, and it works... But this time both files start with a capitale E in the folder field in metadata...

  • How do you put new apple ID in instead of old one in the window for signing in or making purchases?

    When I sign in or make a purchase, a window pops up with old Apple ID instead new one that I recently changed.

    You cannot transfer items to a different iTunes account.
    Stick with your original account.
    Go here -> https://iforgot.apple.com
    Answer the security questions instead of email.
    If you can't get it sorted this way,  contact -> iTunes support. (iTunes > iTunes Store > Account management).
    If after this, you still cannot get it sorted, use any other email you may have and change the new account to that email address and remove any CC info there.. (you could create an account at gmail and just quit using it after you are done).
    Then you can use the current email address for your old iTunes account.

  • Icloud does not recognize my new ID & i can not use icloud to delete the account for a new one

    i cloud does not recognize my new Apple ID on my mini ipad i had no problem with mac book &amp; iphone  only with the ipad

    Did you change the assigned email address of your account before you tried to change it on the iPad? If yes then you would have to change the ID back to the old email address, then sign out, then change it back to the new address and then sign in again.

Maybe you are looking for