Product category not visible in search help

Hello,
We have performed changes to product categories in Dev system and moved it to Q. I can see all the cateogories correctly in COMM_HIERARCHY, but when I try to add them in the org structure to users, I can't find them.
Any idea, why this could happen?
Thanks for your help.
(We do not replicate categories from R/3 but create in SRM)
Regards,
Snehal

Hi Snehal
How are you trying to map your product categories in organisational structure?
via extended attribute? for eg. product category?
how did you move from dev to Quality ?
i believe you can create(load)  hierarchy in quality  which you might have done in development?
define product category in your SPRO settings
srmlogical system backendlogicalsystem
br
muthu

Similar Messages

  • Product category not available error in SAP CRM 7.0

    hi Gurus,
    while i try creating opportunity transaction, there under product tab when i enter product category(as we maintian product category and not product) and pass on other data and finally press enter ..i get error "product category "3lAA" not available" same for other category. even when i try F4 help only very few categories it shows, not all.
    but then i went back and checked for category and hierarchy in CRM system ..it is showing all there and it is downloaded form R/3 system.
    Can you please tell me what all places i can check..? or what is missing ?
    Thanks,
    gaurav

    Hi,
          I believe all the categories which you are viewing currently in the pop up are from a single hierarchy ( Most probably R3PRODHIER). And the categories which you are looking for is probably from a different hierarchy ( R3MATCLAS, R3PRODSTYP etc.).
    By standard, for sales applications only R3PRODHIER is supported. Please have a look at the IMG path Cross-Application Component->SAP Product-> Product Category->Assign Category Hierarchy to Applications, where you can verify this. If you are so particular about using categories from a different hierarchy you might need to change this setting - I am not sure about other implications that can cause if you change that like downloading from R/3 etc.
    Regards,
    Sreejith

  • 0SD_C03 - Product Category Not Loading

    I have an issue where the field 0PROD_CATEG is not being populated in cube 0SD_C03. Looking at the data from 2LIS_11_VAHDR I see that its trying to map 0PROD_HEIR -> 0PROD_CATEG.
    Here is the code for the mapping:
    The problem is that product category is all ways blank. The COMM_STRUCTURE-prod-heir is allways '999999999999999'.
    I see that product category is an master data info object but we don't use product category. I was wondering if I could swap out 0PROD_CATEG for 0PROD_HEIR but since 0PROD_CATEG is a part of the Key im not sure if its that easy (Or maybe it is).
    At the end of the day I want to be able to report on HEIR or Category and say for the month of Jan we sold x number of widget A, B, C. The product category or Heirarchy can help with this if I can get it loaded.
    Any ideas whats going on with the code and can I just remove product category and map product heirarchy instead?
    Thanks,
    larry

    Hi Larry,
    are there 16 Key figures defined in the target? If so is this the reason that 0PROD_CATEG is concactenated in the target? i.e. 16 KF's is the limit when mapped directly in a standard DSO, you can check the limitations in the following note....
    1837308 - FAQ: Technical limitations of InfoProviders and Characteristics in BW
    You could consider mapping some of the KF's as standard data fields if so,
    Thanks,
    Colm

  • New item category not visible in CRM WebUI

    Hi,
    I am working on CRM 7.0, Leasing Contracts component BT114H_LAM.
    I created a new item category for the contract however this is not visible in the WebUI screen. the moment i enter the item it dissappears from the screen. It is available in the item details.
    Same item is visible in the Backeng SAP GUI.
    Can anyone suggest some solution for the same.
    I have done all the customizing required for the new item category in SPRO-Financial Services->Basic Functions->User Interfaces->CRM Web client UI
    Waiting for some quick reply
    Regards,
    PP

    Thanks fo ryour input.
    There was somethng else that was missing from customizing.
    regards,
    PP

  • Content OF  Panel Is Not Visible. Need Help

    Hi Guys,
    Can someone tell me why the contents of the "VisPanel" (JPanel) class is not showing up in the main window. I just don't understand why it is not visible after i add it to the main window.
    Here is the code. You can test it. Only the button shows up. The contents of "VisPanel" class is not visible.
    Replace the images in the "VisPanel" class with any image of your choice. I made them 130 X 130. I would have like to add the images in the post but i don't think it is possible to add images to post in this forum.
    public class TilesImage extends JFrame{
         private static final long serialVersionUID = 1L;
         public TilesImage(){
                this.setLayout(new GridLayout(2,1));
                this.setSize(600,600);
                this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                VisPanel vis = new VisPanel();
                JPanel pana = new JPanel();
                pana.add(vis);
                BufferedImage sub = vis.getImg().getSubimage(261, 260, 129, 129);
               JButton but = new JButton(new ImageIcon(sub));
               pana.add(but);
               this.add(pana);
               this.setContentPane(pana);
               this.setVisible(true);
               repaint();
           public static void main( String[] args ) {
                 new TilesImage();
                 //new VisPanel();
    class VisPanel extends JPanel{
          private static final int IMAGE_TYPE = BufferedImage.TYPE_INT_ARGB;
           private BufferedImage img;
          public VisPanel() {
                 // here you should create a compatible BufferedImage
                 //img = new BufferedImage( 450, 350, IMAGE_TYPE ); 
                 img = new BufferedImage( 525, 500, IMAGE_TYPE );
                     this.setSize(img.getWidth(), img.getHeight());    
                 final int NB_TILES = 4;
                 BufferedImage[] tiles = new BufferedImage[NB_TILES];
                 tiles[0] = createHorizontalRail( new Color( 255, 255, 255 ) );
                 tiles[1] = createVerticalRail( new Color( 255, 255, 255 ) );
                 tiles[2] = createCrossing( new Color( 255,   0, 255 ) );
                 final int[][] map = new int[][] {
                             {4, 4, 1},    
                               {4, 4, 1},
                               {0, 0, 2},
                               {4, 4, 4}, 
                 for (int i = 0; i < map[0].length; i++) {
                       BufferedImage tile = null;
                     for (int j = 0; j < map.length; j++) {
                          if(map[j] == 0){
                   tile = tiles[0];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
                   //img.setRGB( x + i * 45, y + j * 32, tile.getRGB(x,y) );
              } if(map[j][i] == 1){
                   tile = tiles[1];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
              if(map[j][i] == 2){
                   tile = tiles[2];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
         this.setVisible( true );
         private BufferedImage createHorizontalRail( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/crossingsHorizontal.JPG"));
         } catch (IOException e) {
         return img;
         private BufferedImage createVerticalRail( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/crossingsVertical2.JPG"));
         } catch (IOException e) {
         return img;
         private BufferedImage createCrossing( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/railCrossing2.JPG"));
         } catch (IOException e) {
         return img;
         public void paintComponent(Graphics g) {
         g.drawImage(img, 0, 0, null);
              public BufferedImage getImg() {
                   return img;
              public void setImg(BufferedImage img) {
                   this.img = img;
    Thanks for your help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    kap wrote:
    The "pana" panel must contain both the contents of the "VisPanel" panel and the button i created. So it is correct to set the contenPane to the "pana" panel. I tried to set the content pane to the "VisPanel" panel. It is visible but the button i added to the "pana" panel cannot be visible.
    I hope you understand what i mean here.He understands exactly what you mean and has pointed out your mistake and offered a decent solution. I suggest you take his advice and set the layout of pana not the JFrame.

  • Reset button not visible in settings, help?

    Reset button and security button not visible in general settings on my iphone 4 . How do I restore them?

    if you use the off-line version, Formscentral AIR Application, help menu will bring you to the help page. For example: DE http://help.adobe.com/de_DE/formscentral/using/index.html

  • Products are not visible in webshop

    Hi all,
    i have created a product catalog,variants,views and assigned the products activated at all levels.To the view of the product catalog i have assigned Target group.
    and also i have initial replicated the same to Index server.Then i went to webshop admin in which i have created new webshop and assigned respective product catalog, Variant and views and saved.
    When i go to the respective shop i am not able to view the  products.
    Any clues on this why i am not able to see the products in the webshop?
    Any help will be greately appreciated.
    Regards,
    DV.

    Hi Gunawan,
    Thanks for the response,Can you plz tell me solution for the following if you know
    I want to show product proposals to all the customers who logged on to webshop irrespective of which target group he/she belongs to.
    To achieve this I have done the following settings.
    1) Created target group by taking segment type as product proposal
    2) Assigned target group to product catalog view
    3) Created TOP N LIST product proposal
    4) Assigned Webshop ID, Target group to the TOP N LIST.
    5)Assigned Product catalog, view and variants to Webshop admin
    6) Activated Display Global product recommendations field
    7) Assigned target group to the Global product recommendations
    But still i am not getting Product proposals in webshop while creating the sales transaction.
    is there anything else which needs to be configured?
    anything to do with XCM settings as well?
    any inputs will be greatly appreciated.
    awaiting for ur valuable inputs at the earliest.
    Thanks in advance.
    Regards,
    DV.

  • Product category not replicating

    Hi,
    I have a product categoty in Table T023 in backend system.I am trying to replicate it to SRM.
    I run R3AS choosing the source system and it run successfully.But when I checked in Comm_Hierarchy I can't find the Product category.
    what is the problem?
    Thanks
    Raajendra

    Hello Raajendra,
    Use the Middleware SAP menu below:
    SAP menu > Tools > Middleware: Basis > Monitoring
    Check transactions inside folders Data Exchange, Message flow and Queues.
    Look by yourself threads dealing with product categories replication.
    Regards.
    Laurent.

  • Components of a product are not visible in service order

    Hi all,
    I have created a product and assigned various other products as components to it. For e.g i have created a refrigirator and assigned components such as compressor etc. But after i assign the product while creating service order , i am not able to see the components. For e.g i can only see refrigirator and not compressor.
    I want even the components to be visible in the transaction Can anyone help me in doing that?
    Regards,
    Madhu.

    Hi Madhu,
    My Understanding:
    1. When you enter the main/header product in the item details, the item catefory for the header product gets determined.
    2. Your components can also be seen below as sub-items automatically, but the item category is not determined.
    Tell me if my understanding is correct.
    If Yes, u need to maintain the item category determination for the sub-items or components as well.
    Transaction Type: Put the service order transaction type
    Item Category Group: Check the item category group of your component product in COMMPR01 (Material tab/ Sales and Distribution Tab)
    Item Category Usage: Leave it Blank
    Main Item Category: Put the header product item category
    Item category: Put the desired item category here.
    Also ensure that in the customizing of the header item category, u have maintained the Structure Scope as A- Single Level Explosion of Structured Products.
    Regards,
    Shalini Chauhan

  • Product Category not transferred from CCM 1.0 to Shopping Cart

    Hello all,
    I have a problem where user choose item from integrated SAP catalog CCM 1.0 and add it to the shopping cart (EBP is 5.0).
    When SC is displayed Category is different than in catalog.
    I have only one backend (R/3 4.7) working in classic scenario.
    During testing I copied material groups several times from the same backend with TCode R3AS but using FM BBP_CATEGORY_GET_GUID I checked that I have only one GUID per product grup in EBP.
    User does not have default category.
    In OrgStructure > Extended Attributes there is no limit on Product Categories ("*" for backend system). In this case EBP is always using alphabetically the first listed category.
    If I list categories in Extended Atributes, system always use the first listed and not the proper one from the catalog.

    Hello Vadim,
    I should be now red due to the mistake that I made in catalog files.
    In file for Supplier Catalog I did not include /ccm/product_group. After I did it everything went OK. I was thinking that CategoryID is enough. :blush:
    Your answer pointed me to right direction.
    Gordan
    P.S. Instead of inserting breakpoints you can use procedure explained in note 847229 "OCI data passed from CCM/SRM"
    Message was edited by: Gordan Flego

  • Emails in inbox not visible unless searched for after mailbox migration

    Hi,
    After migrating a mailbox from exchange 2010 to 2013 everything looked ok upon first logon. The user then deleted 4 emails which prompted all the emails to disappear that were listed in inbox. They are visible if you do a search within inbox. All new mails
    do show as normal.
    Thanks
    Chris

    Hi Chris,
    Agree with Amit's suggestion. Please check if you can see these emails via OWA. If yes, please use Online mode to verify if Outlook works well. If yes, I recommend you create a new profile to solve this issue.
    If the issue persists, please use Outlook safe mode to determine whether the problem is caused by add-ins.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Product description not visible

    Hi,
    When I create SC and click on Internal Godds and Service the Prodcut description is not available in the list.Pls let me know how to get it displayed.
    Thanks,
    Manu

    Dear Manu,
    kindly implement note 1287795 and recheck the system behavior afterwards. This should solve the issue.
    Best regards,
    Georg

  • Search Help with in a serach help required in SRM 4.0

    Hi,                                                     
    Requirement: Search help required for Product Category field in the Search help for Product(BBPH_PRODUCT) in SRM portal.
    This search help is used in Create shopping Cart transaction. The hyper link on Internal Goods/Services leads to the search help BBPH_PRODUCT. 
    My analysis:           
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER) attached to its data element. When I single test the search help BBPH_PRODUCT in SAP GUI,I can see the search help for field product category in the selection dialogue box. However the same does not appear on the corresponding screen in HTML.
    Please let me know whether I need to do some thing to make the search help appear on the HTML screen?
    With Regards,         
    Prakash Kamath

    Hi Prakash,
    I have the same problem but with another field. Unloading point. Could you please tell me how did you solve this problem with displaying F4 help on html/ SRM portal?
    Thank you very much.
    Best regards,
    Danijela ZIvanovic

  • Monitor Shopping Cart, Product category search Issue

    Hi,
    In Monitor Shopping Cart, I am clicking on search product category to search the availble product cateogry
    It is showing all the product cateogry, some of which not required
    for Example :It is showing R3MATCLASS and R3PRODSTYP product cateogry
    My question is
    1) How I can restrict R3PRODSTYP  product category
    2) Can I restrict R3MATCLASS product category also individually in search
    Thanks,
    jai

    after debugginng, I found that the hirarchy data is calling from
    table ;comm_category and comm_prcat
    and
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER)
    I am working on this,
    Pls let me know your input on this.
    Thanks,
    Jai

  • Not able to maintain a component description in product category in CRM SER

    Hi I am Vijay
    Working on best practices and got some problem in maintaining  a component description in services specilization . The t code is IB52 where i have to maintain the field description for products with Field Name and Field Value but these tab are only not visible . Kindly help me in this regard.
    Regards,
    Vijay

    Hi
    You may copy and paste the phrase in Japanese into the description field. We at few occasions maintained even Material Master Description in two Language i.e. English + Chinese within same field.
    Regards,
    Roopesh

Maybe you are looking for

  • MRP question

    I have created a batch job to run MRP, I have noticed that the MRP run is not planning some materials! I have a material with a contstant demand, this is called off via schedule lines, if I run the Batch Job MRP I get no planning, if I run Single ite

  • ACS upgrade from 4.2.1.15 to ACS5.6

    HI  We have bought new ACS5.6 SNS3415 Boxes , earlier we have ACS4.2.1.15   , now we want to migrate the data from old ACS to new ACS. We have downloaded the ACS and trying to install 4.2.1.15 but getting the error " ACS4.2.115 can only be installed

  • HT2589 How do you create apple ID without the payment method?

    How do you create an apple ID without payment method?

  • Adding bar codes to printer device for smartforms pdf conversion?

    Hello friends, I would like to send a smartform as a pdf to an email recipient. The smartform shows some bar codes. The send process workes fine. But the bar codes doesn't appear on the pdf correctly. Therefore I would like to add bar codes to the pr

  • Cs6 upgrade install

    How do i get my Cs6 upgrade installed properly?