Displaying catalog content as category index by default

Hi there,
I'm looking for the possibility to display the content of a procurement catalog (CCM 2.0) as category index by default.
By default the content is displayed as a hierarchy.
Is this possible?
Thank you,
Axel Milde

Dear Poster
Your thread has had no response since it's creation over
1 year ago, therefore, I am closing the thread.
Should the issue still be outstanding please create a new thread in the relevent forum.
Thank you for your compliance in this regard.
Jason Boggans
SAP SRM SDN Moderator

Similar Messages

  • How to control order of Category Indexing in Baseline Update

    Hi,
    I want to run baseline update to index the category. By default the indexing is happening in alphabatical order. How do I control this order.
    I am using 2 apps to support english and french language and I want to maintain same order of catalog indexing. Due to OOB alphabatical indexing the order of categories in website is getting changed for different locales.
    I tried to discover usage of property-accessor="/atg/endeca/index/commerce/accessor/DisplayOrderPropertyAccessor" but could not get any solution.

    Hi Samaiya,
    Base on my test in MTM 2013, I found that we can’t change the order value of a test case in the Query based Suite.
    I suggest that you could submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio.  The Visual Studio product team is listening to user voice there. You can send your idea there so the others can vote it. If you submit this suggestion, you might post that
    link here which will benefit others who has the similar issue.
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Grails - default index - not defaulting to index.gsp

    Does anyone know how to make the default index also include index.gsp? I'm afraid this may require a config outside of the EM but I want to make sure before I bug a SA.
    For example:
    "mydevserver:7777/mygrailsapp/" should display the contents of index.gsp but instead you must navigate to "mydevserver:7777/mygrailsapp/index.gsp" directly.
    "mydevserver:7777/mygrailsapp/somecontroller/" works fine but the root is where the problem occurs.
    ******************Extra notes for other people deploying grails on Oracle AS****************
    1. If you are not using shared libraries you should select "search local classes first" in your deployment plan.
    2. Make sure you have patched AS to the most recent version. You will get 500 errors for WEB-INF served files (css, js, images, etc.) on older AS versions.
    Edited by: user6301541 on Jun 27, 2009 7:50 AM

    Hello,
    do you have really images with a case ending  *.html instead of *.jpg?  Please have a look here in your style.css:
    background: url(images/img02.html) and I found it here e.g. in your Admin-2.html e.g. (img01.jpg I could not find)
    <td><img src="gwynn.jpg" width="170" height="180" alt="Brian Gwyn" /></td><td><img src="rosen.html" width="150" height="180" alt="Eric Rosen" /></td>
    (Brian Gwyn is wrong too, or not?)
    There I found so too this:
    <td><img src="#" width="210" height="180" alt="" /></td> # should be "TBA"
    And my answer would have been too: You better don't use upper case.
    Hans-Günter

  • Product Category - Overriding the defaults

    I have implemented the BADI to map the Product Category during the external catalog shopping cart creation.
    I have the mapping Ztables.
    If the mapping is available, all is working good.
    However if the mapping is not available, I have to pass the error message about missing mapping.
    The error message is working as well but the product category is getting defaulted to the standard category of the User.
    I dont want to set it to the standard category.
    Any clue?
    SRM Functional says there is config to default and they dont want to change it.
    How can I override this config?
    Thanks in advance.

    I am using the David Barber's workaround as specified above.
    In the BAD, I am calling the FM: BBP_PD_SC_GETDETAIL and it gives me the SC details.
    After validations, I am updating the ET_MESSAGES.
    The error messages are displayed if the dummy product group is used but the SC is getting saved inspite of errors.
    Any idea?
      I_OBJECT_ID                      =
      I_ATTACH_WITH_DOC                = ' '
      I_WITH_ITEMDATA                  = 'X'
      I_ITEM_SORTED_BY_HIERARCHY       =
      I_WITHOUT_HEADER_TOTALS          =
      I_READ_FROM_ARCHIVE              = ' '
    IMPORTING
      E_HEADER                         =
      EV_IS_PD                         =
      ET_ATTACH                        =
      E_ACCOUNT                        =
      E_PARTNER                        =
      E_CONFIRM                        =
      E_LONGTEXT                       =
      E_LIMIT                          =
      E_ORGDATA                        =
      E_TAX                            =
      E_PRIDOC                         =
      E_HCF                            =
      E_ICF                            =
      E_ACTVAL                         =
      E_ACC_ACTVAL                     =
      E_HEADER_REL                     =
      E_ITMLIM_REL                     =
      E_STATUS                         =
       wa_msg-MESSAGE      = 'TESTING'.
       move-corresponding wa_msg to et_messages.
    CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
      EXPORTING
        I_GUID                           = IV_DOC_GUID
      TABLES
        E_ITEM                           = i_item
        E_MESSAGES                       = i_msg
    loop at i_item into wa_item.
    if wa_item-CATEGORY_ID = 'M0156'.
        wa_msg-MSGTY        = 'E'.
        wa_msg-MSGID        = 'BBPWS'.
        wa_msg-MSGNO        = '029'.
        append wa_msg to et_messages.
    endif.
    Any help would be appretiated.
    Edited by: Pranu Pranu on Dec 8, 2010 5:27 PM

  • Displaying the contents of an array of objects

    Hello All,
    My Java teacher gave us a challenge and I'm stumped. The teacher wants us to display the contents of the array in the main menthod. The original code is as follows:
    public class TestObjects
         public static void main ( String args[] )
              Thing[] thingArray = { new Thing(4), new Thing(7) };
    }I understand that the elements of the array are objects, and each one has a value assigned to it. The following code was my first attempt at a solution:
    public class TestObjects
         public static void main ( String args[] )
              Thing[] thingArray = { new Thing(4), new Thing(7) };
                                    for ( int i = 0; i < thingArray.length; i++)
                                       System.out.println( thingArray );                         
    }To which I'm given what amounts to garbage output. I learned from reading about that output that its basically displaying the memory location of the array, and the the contents of the array. There was mention of overriding or bypassing a method in System.out.println, but I don't believe that we're that far advanced yet. Any thoughts? I know I have to get at the data fields in the objects of the array, but i'm not having an easy time figuring it out. Thanks very much in advance!

    robrom78 wrote:
    public class TestObjects
         public static void main ( String args[] )
              Thing[] thingArray = { new Thing(4), new Thing(7) };
    for ( int i = 0; i < thingArray.length; i++)
    System.out.println( thingArray );                         
    Note that you're trying to print the entire array at every loop iteration. That's probably not what you meant to do.
    You probably meant to do something more like
                                 System.out.println( thingArray[i] );Also, note that the java.util.Arrays class has a toString method that might be useful.
    To which I'm given what amounts to garbage output. It's not garbage. It's the default output to toString() for arrays, which is in fact the toString() defined for java.lang.Object (and inherited by arrays).
    I learned from reading about that output that its basically displaying the memory location of the array, and the the contents of the array.It displays a default result that is vaguely related to the memory, but probably shouldn't be thought of us such. Think of it as identifying the type of object, and a value that differentiates it from other objects of the same type.
    By the way I assume you mean "+not+ the contents of the array" above. If so, that is correct.
    There was mention of overriding or bypassing a method in System.out.println, but I don't believe that we're that far advanced yet. Any thoughts? No, you don't override a method in println; actually methods don't contain other methods directly. You probably do need to override toString in Thing.
    I know I have to get at the data fields in the objects of the array, but i'm not having an easy time figuring it out. You can get to the individual objects in the array just by dereferencing it, as I showed you above.
    But I suspect that won't be sufficient. Most likely, Thing doesn't have a toString method defined. This means that you'll end up with very similar output, but it will say "Thing" instead of "[Thing" and the numbers to the right of the "@" will be different.
    You'll need to override the toString() method in Thing to get the output you want.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to display the content of a region on a different page

    Hello,
    Does anyone knows how to display the content of a region on an other page. I try to make page that displays content that resides somewhere else in my portal, so I can give a summarization of some hot topics. I really want to display the whole content of some regions (not a display with custom search).
    Thanks a lot,
    Hans

    Set that page as portlet, include it in a region in another page and in the edit defaults decide which regions you want to display.
    Mere.

  • Include the Content Released status flag in default WC data control

    Hi,
    We have integrated custom webcenter portal application with UCM for documents integration. The integration was done using default data control.When we change the document which is getting displayed in the portal from UCM and check it into the system, wokflow gets triggered properly and the content status shows review status. But when we access the document in the portal, at that point of time new document is visible even though the content is still not released from the system.
    Can anyone of you let me know how to include the released status of the content in the default data control so that we can avoid this situation
    Regards,
    Boopathy

    First of all, I think this is more a question to WebCenter Portal, because it is how WebCenter Portal components are written.
    Another thing is, that this is probably 'works as designed' and there might be good reasons for that. Since PS3, WebCenter (Portal) exposes some of UCM's functionality, among them ability to approve items in a workflow. This is the reason why it makes a good sense that items are available. Of course, they should be available only to approvers; also unapproved items should not appear if an item is displayed via Content Presenter (compare to a document published on a website via WCM). If you found such a behaviour, please, report it to MetaLink as it might be a bug.

  • Does not display all content after first loading of page

    Hello all,
    I am having quite strange problem which is hard for me to figure out.
    I have 8 buttons on my web site. Each button will display different content. My page is: www.itconnect.co.nz
    When you go to my page first time, by default "Design & Software" button will be active. Here when you look on first photo you can see that the bottom part is missing - logos.
    However when i click again on "Design & Software" button the missing content will appear.
    What could be the problem ?
    Thank you to everyone who would like to help.

    I am little confused as i don't use flash - only for the Captcha.
    The way i did is:
    <div class="sp">
        <div class="tabs">
                    <span class="repairs">Repairs</span><span class="design">Design & Software</span>
                   <span class="security">Security</span><span class="networking">Home Networking</span>
                    <span class="communication">Communications</span><span class="cloud">Cloud Solutions</span>
                    <span class="maintenance">Maintenance</span><span class="remote">Remote Support</span>
          </div>
          <div class="panel_container">
                    <div class="panels">
                                    <div class="panel repairs">
                                                    <div class="panel_content">                       
                                                                    HERE GOEST THE CONTENT
                                                     </div>
                                    </div>
    <div class="panel design">
                                    <div class="panel_content">
                                                                    HERE GOES THE CONTENT
                                                    </div>   
                                    </div>
                                    AND SO ON FOR THE OTHER PANELS
                        </div>
    </div>
    </div>
    For my CSS I have:
    .sp {
                    width: 960px;
                    position: absolute;
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 10px;
                    margin-left: 0px;
    .sp .tabs {
                    width: 41%;
                    float: left;
                    height: 450px;
                    display: table-column;
    .sp .panel_container {
                    width: 58%;
                    float: right;
                    overflow: hidden;
                    position: relative;
    And for the animation I use JavaScript.
    Thanks in advance

  • Problems displaying mailbox content in Lion Mail

    OK I give up, and need help.  I have 10.7.3 installed on a late 2011 Macbook Pro 13" with 8gb of ram, running Mail 5.2.
    I have tons of mail in various mailboxes, like 38 different mailboxes, with 39 sets of rules.  Some folders have 2000+ messages, but most have a couple of hundred in each with my inbox having about 200.  The issue is when I launch mail, and click on a mailbox, it can take up to a minute and a half to display the content.  Then I click on a different mailbox, it takes another minute or so.  Finally, I click on the previous displayed mailbox, and even though the data had populated a short time ago, it takes up to another minute and a half to display anything.  Originally I did an upgrade to Lion when it first came out from snow leopard, subsequently, I did a clean install on my 15" 2007 MBP with 3gb of ram, and it did not help.  I have been having this issue since the upgrade when Lion came out.  Then in February of 2012, my son went to basic training for the Army, and I took his 13" MBP to use.  I swapped hard drives, did an erase and reformatted with my drive (Hybrid 500gb SSD/regular SATA Drive) and did a clean install on my sons MBP, used the time machine to migrate all the data back over, and the problem continued.  I waited for the indexing to stop thinking that would fix the issue when done, but nope.  I have been a mac user since the early 80's and had an Apple IIe, so I feel a little defeated with this, but I have no idea what to do. Some of the things I have tried:
    1.  Repair permissions
    2.  Reinstall Lion again (not clean)
    3.  Deleted preferences, reindexed mbox files and data.
    4.  Clean Install of Lion and migrate.
    5.  I give up...
    Bill

    It does not solve the problem, but may help for a future upgrade. I have been playing around with this, and note that if I select one storage folder for sent messages on my MAC, then select "classic layout" in the Mail preferences, then delete the field "From" from visualisation while leaving "To", then revert back to new layout (i.e. un-select classic layout, the messages are displayed as I'd like them to, i.e. with the "To" field.
    BUT as soon as I click again on any other folder, say "Inbox" and then come back to the storage folder, the "From" field is there again and I only can see myself as the sender....

  • To display the content selected in multiselect control in a report..

    Hi,
    I have one requirement to display the content selected in multiselect.I explained my requirement below.
    I have 5 multiselect boxes.they are locality,designation,connection1,connection2,connection3.
    The corresponding designations will be displayed for the locality and the corresponding connection1 will be displayed for the designation and the corresponding connection2 will be displayed for the connection1 and the corresponding connection3 will be displayed for the connection2.everything is displayed correctly in the multiselect.
    My requirement here is till connection1 i'll select mandatorily. and if i select connection1 and click GO button without selecting connection2 and connection3 then the connection1 only should be displayed in the report not the connection2 and connection3.likewise if i stop till connection2 and click go then connection2 only has to be displayed in the report not the connection1 and connection3..How can i do this?
    i tried using dropdown and presentation variables but not all the values are displayed in dropdown and there is a limit in dropdown.so i'm going for multiselect..
    Can anyone help me..

    HI,
    Sai Kumar Potluri
    I tried in IDES it working.
    Here is the code.
    REPORT  ZPRA_TC_D.
    TABLES : SCARR.
    CONTROLS TC TYPE TABLEVIEW USING SCREEN 1.
    DATA : SELLINE TYPE I,
           SELINDEX TYPE I.
    DATA : ACT LIKE SCARR-CARRID,
           ANT LIKE SCARR-CARRNAME.
    DATA : ITAB LIKE SCARR OCCURS 0 WITH HEADER LINE.
    CALL SCREEN 1.
    *&      Module  STATUS_0001  OUTPUT
    *       text
    MODULE STATUS_0001 OUTPUT.
      SET PF-STATUS 'ME'.
    *  SET TITLEBAR 'xxx'.
    SELECT * FROM SCARR INTO TABLE ITAB.
    ENDMODULE.                 " STATUS_0001  OUTPUT
    *&      Module  MOV  OUTPUT
    *       text
    MODULE MOV OUTPUT.
      MOVE-CORRESPONDING ITAB TO SCARR.
    ENDMODULE.                 " MOV  OUTPUT
    *&      Module  USER_COMMAND_0001  INPUT
    *       text
    MODULE USER_COMMAND_0001 INPUT.
    CASE SY-UCOMM.
    WHEN 'BACK' OR 'UP' OR 'EXIT'.
      LEAVE PROGRAM.
    WHEN 'SEL'.
      GET CURSOR FIELD SCARR-CARRID LINE SELLINE.
      SELINDEX = TC-TOP_LINE + SELLINE - 1.
      READ TABLE ITAB INDEX SELINDEX.
      ACT = ITAB-CARRID.
      ANT = ITAB-CARRNAME.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0001  INPUT
    In Flow Logic.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0001.
    LOOP AT ITAB WITH CONTROL TC.
      MODULE MOV.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP AT ITAB.
    ENDLOOP.
    MODULE USER_COMMAND_0001.

  • Hide "A plugin is needed to display this content" box

    Since a few versions, the grayish "A plugin is needed to display this content" box is displayed independently of the z-index of the actual plugin. Since FF24 this rectangle now additionally has become opaque, so it completely covers the complete web site content.
    This is a huge problem for me as I have to look at web sites using plugins that are not available for FF and I cannot read the actual content anymore, even though the web page is written in a way that the plugin is only shown as some kind of background image.
    Is there any way to remove this gray box or at least put this box in the background where it should be according to the DOM?

    Do you have Adobe Shockwave/Flash Player installed on your computer?

  • Question on CCM catalog content approval

    Hi,
    Can somebody tell me what kind of update to catalog content needs approval? My understanding was that if there is a price change, definately it will need to be approved. But yesterday my catalog manager uploaded some change to his catalog item price, and when checking the items in my procurement catalog, we can see the price has changed, but the status is still 'approved'.
    Is my understanding wrong? How can I define what kind of update requires approval?
    Thanks and Regards,
    Elly

    Hi Elly,
    Firstly - can you check in customizing if the catalog is maintained with the status 'Approved'.
    i.e. SPRO -> Cross App Components -> SAP CCM -> SAP Catalog Authoring Tool -> Specify default value for catalog status.
    Here the catalog will either be set to Approved or To be approved initially.
    After this, you can define approvals on characteristic level, drill into a characteristic component and you can set a percentage or absolute deviation which will based on these rules set items with this characteristic either to be approved or approved.
    Alternatively you can make use of the CCM Approval Badi, You can use this BAdI to change the approval status of your catalog entries (items).
    Normally, the approval status of catalog entries is determined by approval rules, which are stored for a characteristic. You can use this BAdI to get the status information of the catalog entries after the rules have been processed, and to change this status information as appropriate.
    Regards,
    Jason

  • Managing Catalog Content

    What is Managing Catalog Content?
    Can anybody please explain about this in detail
    Regards
    NK

    Hi
    This is one of the process in Catalog contenet manageemnt like upload,manage and publish and preapre the  master data in ccm.
    http://help.sap.com/saphelp_ccm20/helpdata/en/index.htm
    BR
    Muthu

  • MIME-TYPE is stored incorrectly sometimes, browsers can't display html content

    Our company is switching from Netscape Communicator to Internet Explorer 5.5 . This resulted sometimes in html-documents which could not be opened in netscape anymore, but caused the save-as dialogue box to pop-up.
    Analysis of this problem, with the aid of Oracle Support, showed some html-documents were stored in WWV_DOCUMENT with mime-type application/octer-stream. This is a mime type which should trigger the save-as pop-up dialogue in browsers. Netscape acts accordingly, but IE does display the content normally.
    The following events cause this problem:
    1. create a html document using a microsoft office product (word/excel)
    2. DON'T close the document in the office application
    3. Use the portal wizard to upload the file to a content area
    4. Use table WWV_THINGS and WWV_DOCUMENT and see mime-type isn't text/html but application/octet-stream
    5. IE shows the file, NN wants to save it.
    The workaround to this problem is to close the file in MSOffice before uploading it.
    Oracle Development confirmed it's the browser which sends this incorrect mime-type, and portal just stores this type. It seems this mime-type is overruling the extension to mime-type mapping in the configuration of Apache, using AddType or the file mime.types.
    So the mime-types defined in apache are only used outside mod_plsql, that is, when files from the filesystem of the webserver itself are used.
    When uploading a zip-file, and unzipping it in the database, all files get the right mime-type. It seems in this situation the mime-type is determined by looking either at the file-extention or the magic bits.
    Oracle says it's a microsoft bug, so I'll have to ask Bill for a fix.
    They are probably right, and I think I could reproduce this using CGI-scripting without modplsql and portal.
    But:
    It seems not logically to me that it depends on the method of uploading files (single files, or zipped files) which method of mime-type determination is used.
    Furthermore, I find it strange that it depends on the storage location of the file (database or filesystem) which mime-type is presented at the user.
    I'd like to hear your opinions about this
    Regards,
    Ton Haver

    You want to be using <html:link forward="YOUR_FORWARD"> only when you want to forward to static elements and not elements that require actions. So in index.jsp, since you just want to forward to a static jsp page (allarticle.jsp), you can use
    <html:link forward="show">Show All forum</html:link>But since you want your "one forum" link to populate a session attribute BEFORE loading /jsp/loveforum.jsp, you need
    <html:link action="article">one forum</html:link>The reason it's not working now is because you're accessing a session attribute that isn't populated becuase you link to the page statically and it never gets the value of "list" actually stored in the session.
    The reason it works when you change your forward element is because it calls the action that saves "list" into your session.

  • Displaying the contents of internal table- in email Step of workflows

    Hello Folks,
    I wanted to display the contents of an internal table ( would contain a list of opportunites ), in an email sent throught the workflow:
    My idea was to LOOP AT <ITAB> into <WA> from an external program and then call the workflow for each content of the <WA>. This will be a problem as, if there are like 1000 records in the internal table, then workflows will be called 1000 times...sending 1000 emails..
    My requirement is that we need to send a single email to the single person, displaying the content of the internal table in the email body......
    My question
    1) Is this scenario possible through worflows ?
    2) If not, please provide an alternative ..
    Thanks
    Anand

    Do you mean to say that just by inserting the multiline element
    within the body of the 'Send email' step type, the contents
    of the multiline element is displayed automatically without
    we having to loop at it somehow ?
    Follow the below apporach,
    1. First create a multiline container element in the workflow conatiner.
    2. Populate the internla table , by using the bor methods and pass back the populated ITAB to the WF by using the binding concept.
    3. Now create a mail step in the workflow, you have the option of inserting the workflow container elements into the mail conten, so insert the multiline container element , then it prompts to select the option like a) Do you liek to display only first line b) Display the ITAB line by line c) Display ITAB lines continuously with out line break.
    4. based upon the requirement select any one of the options.
    Note: Make sure the line length of the ITAB won't excced 132 charecters, because the send mail step will consider only 132 characters.

Maybe you are looking for

  • Deliery block sales orders report for TAS items

    Hi, User requirement is need a report which gives list of sales orders which have the delivery block in  sales order schedule lines.( of third party items TAS) I found V.14 and VA14L to find out the sales orders which give the list of sales orders wh

  • Drawing a colored cursor on a text area given coordinates

    Hi all, Does anybody know how to draw a telepointer ( ie. a small coloured arrow like the cursor) given point coordinates on a text area? Please help.

  • How to set a default folder in Advance Search

    We have enabled the Search Scope Selection option for the default search iView in the Tool Area.  Therefore, when a user clicks the Advance Search link in the Tool Area, they can choose the index they wish to search or they can select a folder by bro

  • Produciton workflow couldnt able to process emails

    Hi All, Please help me on this, Produciton workflow couldnt able to process emails, Following is the error am getting in logfile [Jan 14, 2011 10:55:57 AM GMT+00:00]:1295002557936:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:usstlz-pinfsi0

  • Simply Opening a Photo - How?

    I just downloaded the trial version of Photoshop CS4 Extended to my Windows Vista Inspiron E1705. When I go to File, Open and locate my photo, it only opens the picture to a small thumbnail in the layers box. How do I get the photo to open to the mai