Pre defined personlize setting of result list OC3 and/or OC4 (Products)

Hallo Gurus
I could set up the result list of level C1 but I have problems to personalize the 3rd and 4th level in the Opportunity, Product level.
technical info:
CRM 4.0 - CHM, EP6.0
Try to personalize field structure: OPP_CHM_ITEMS_LIST = but I could not find where I can set up the personalization of the result list like I have done for level 1- result list. Do you have an idea if this is also possible and how?!
Regards, Anja

Find the solution by myself!

Similar Messages

  • Search Results List - Copy and Paste

    We use the list information to compile calendar event reports. Question is: Why does Date and title information position get swapped when you paste? Does anyone know of a script that will extract search list info?
    Thanks

    Please make sure that you pressed Allow in below window when you pressed Control+V.
    Check below link, can be helpful for you:
    Copy and Paste from Excel to a SharePoint List
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • Limit the number of records in result list cartridge

    Hi experts
    I want to use result list cartridge for displaying some products but also want to limit the returned results to some max records.
    Is there any way i can limit the number of results in result list cartridge?
    Thanks

    Results list has a 'recordsPerPage' property that will limit the number of records on the page.
    Are you looking to limit it at some other place?
    HTH,
    Pankaj.

  • SORTING Partner Result List with value Attributes

    Hi Gurus,
    I have added two value attribues in partner result list component and trying to sort the same in WEB UI, but is not working alothough I have logic in get_p and on_sort even.
    Please help if anyone knows how to sort by value attributes.
    Regards.

    Hi Ginger,
    the problem is because you have no real BOL attribute for your firstname and lastname that the values are not stored.
    what you need to do is sort via an internal table.
    here is how we did it:
      TYPES: BEGIN OF ltyp_cp_sort,
               sort_key1           TYPE string,
               sort_key2           TYPE string,
               sort_key3           TYPE string,
               bp_partner_guid     TYPE bu_partner_guid,
               entity              TYPE REF TO cl_crm_bol_entity,
             END OF ltyp_cp_sort,
             ttyp_cp_sort     TYPE TABLE OF ltyp_cp_sort.
      DATA: lt_cp_sort            TYPE ttyp_cp_sort,
            lt_cp_as_sort         TYPE ttyp_cp_sort,
            ls_cp_sort            TYPE ltyp_cp_sort,
            lr_entity             TYPE REF TO cl_crm_bol_entity,
            lv_wrapper            TYPE REF TO cl_bsp_wd_collection_wrapper,
            lv_value              TYPE string,
            lv_firstname          TYPE bu_namep_f,
            lv_lastname           TYPE bu_namep_l.
      DATA: lv_bp_partner_guid    TYPE bu_partner_guid,
            lv_partner            TYPE bu_partner.
      DATA: lv_archived            TYPE bu_xdele.
      FIELD-SYMBOLS:
            <cp_sort>             TYPE ltyp_cp_sort.
      FIELD-SYMBOLS:
            <lv_guid>             TYPE crmt_object_guid.
      DATA: ls_data_person        TYPE bapibus1006_central_person,
            lo_iterator           TYPE REF TO if_bol_bo_col_iterator.
      DATA: lv_number_cp          TYPE i.
    Fill up a table with the value of the sort attribute, the entity and its treenode attributes
      lv_wrapper = typed_context->result->get_collection_wrapper( ).
      lo_iterator = lv_wrapper->get_iterator( ).
      lr_entity ?= lv_wrapper->get_first( ).
      WHILE lr_entity IS BOUND.
        CLEAR ls_cp_sort.
        CLEAR: lv_value,
               lv_firstname,
               lv_lastname.
        CALL METHOD lr_entity->if_bol_bo_property_access~get_property_as_value
          EXPORTING
            iv_attr_name = 'CONP_GUID'
          IMPORTING
            ev_result    = lv_bp_partner_guid.
    here read the firstname and lastname of the BP again in variables
        CALL METHOD lr_entity->if_bol_bo_property_access~get_property_as_value
          EXPORTING
            iv_attr_name = 'ZFIRSTNAME'
          IMPORTING
            ev_result    = ls_cp_sort-sort_key1.
        CALL METHOD lr_entity->if_bol_bo_property_access~get_property_as_value
          EXPORTING
            iv_attr_name = 'ZLASTNAME'
          IMPORTING
            ev_result    = ls_cp_sort-sort_key2.
        TRANSLATE ls_cp_sort-sort_key1 TO UPPER CASE.
        TRANSLATE ls_cp_sort-sort_key2 TO UPPER CASE.
        ls_cp_sort-bp_partner_guid = lv_bp_partner_guid.
        ls_cp_sort-entity          ?= lr_entity.
        INSERT ls_cp_sort INTO TABLE lt_cp_sort.
        lr_entity ?= lv_wrapper->get_next( ).
      ENDWHILE.
      lv_wrapper->clear( ).
    Now you are sorting the way the user wants to sort is, so change this code according to your needs and the users input..
      SORT lt_cp_sort BY sort_key1 sort_key2.
      UNASSIGN <cp_sort>.
    After having sorted the list, add it back to the collection wrapper...
      LOOP AT lt_cp_sort ASSIGNING <cp_sort>.
        lv_wrapper->add( <cp_sort>-entity ).
      ENDLOOP.
    Hope this helps a bit...
    KR,
    Micha

  • Pre defined set types are not determined in CAtegory

    Hi all,
    when i try to create a category for a service product for SLA, the pre defined set types are not getting populated for me.
    I have created a new hierarchy, assigned to product and product type.....
    but still when i create a category the list of predefined some of the predefined set types are not getting displayed.
    Can anyone help this issue.
    kindly advice in this regard.
    Thanks,
    Subhashini.

    Hi,
    Thanks for the reply.
    I have assigned the product type service in the category.
    This is the only custom category available. only one std category has this set types. other than that nothing is there in the system.
    is there any services that has to be activated or any authorization that is missing for me...
    nut i have sap_all...could not able to trace out the problem.
    kindly guide.
    thanks,
    Subhashini.

  • How to set pre-defined constants via FXML

    Does anymode know how to set a pre-defined constant like javafx.scene.control.Control.USE_PREF_SIZE via FXML when you create a node?
    Instead of using a fixed value like this
       <Label text="Last Name:" minWidth="100" />I would like to use one of the predefined sentinel values like this.
       <Label text="Last Name:" minWidth="USE_PREF_SIZE" />The above example does not seem to work and I have the feeling that this is currently not possible at all.

    How did you get that working? When I use the following file I only get a warning that "javafx" is not defined.
    Defining var A seems to work but it fails on var B. It seems to be impossible to access anything outside the
    java... hierarchy. Is there anything else you have to define?
    <?xml version="1.0" encoding="UTF-8" ?>
    <?language javascript?>
    <?import javafx.scene.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.control.*?>
    <StackPane xmlns:fx="http://javafx.com/fxml" >
         <fx:script>
              var A = java.awt.Component.BOTTOM_ALIGNMENT;
              var B = javafx.scene.control.Control.USE_PREF_SIZE;
         </fx:script>
    </StackPane >   

  • List of Pre-defined exceptions ???

    Where can I find (on line)a list and description of pre-defined
    and undefined exceptions ?
    Thanks
    Jordi

    "http://otn.oracle.com/doc/server.804/a58236/06_errs.htm"

  • Re: Virsa Compliance Calibrator & Pre-defined SOD Rule Set

    Hi All,
    We have installed the Virsa Compliance calibrator 5.1 in our sandbox environment. When we goto the "Rule Architect" tab under Compliance calibrator using tcode /virsa/zvrat it brings up the page with Rules information.
    Per the Virsa documents that i read they have mentioned that there are pre-defined SOD Rules (Transaction codes and Tcode objects) that we can use in the Rule Architect.
    My question is how do i enable and use those pre-set SOD Rules that Virsa provides by default. I do not see them under the Rule architect tab though. Can someone give some pointers to use these pre-set SOD rules.
    Thanks & Regards
    -Murali

    Hi Laziz,
    Thanks for your patience in replying to my CC 5.1 queries. I did follow your steps for the Generate Rule & Background Job-> Schedule Analysis and scheduled the job immediate.
    However, when i looked up the status of the scheduled analysis Background Job-> Search pulls up the job i scheduled at the top it reads "Job scheduler Status: unknown error" . I clicked on "View Log" button and it shows some messages as shown below (Note: I am just posting some parts of the error msgs below. but it still goes for 1 page...)
    May 16, 2007 1:09:07 PM com.virsa.cc.xsys.bg.BgJobDaemon init
    INFO: *** BgJobDaemon loaded
    May 16, 2007 1:11:09 PM com.virsa.cc.common.util.ConfigUtil setDefaultJ2EEParam
    WARNING: Cannot get Application URL: null. PLEASE SET 'Background Daemon URL' IN CONFIGURATION TAB
    java.lang.NullPointerException
         at com.virsa.cc.common.util.ConfigUtil.setDefaultJ2EEParam(ConfigUtil.java:203)
         at com.virsa.cc.common.util.ConfigUtil.getBgJobStartURL(ConfigUtil.java:192)
         at com.virsa.cc.xsys.bg.AnalysisDaemonThread.run(AnalysisDaemonThread.java:45)
         at java.lang.Thread.run(Thread.java:534)
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: class name: com.virsa.cc.extreport.ReportPack50SP1_01.ReportPack50SP1_01 class: com/virsa/cc/extreport/ReportPack50SP1_01/ReportPack50SP1_01.class
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: Jar Entry length=1568 compressed size=1568 actual read=1568
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: class name: com.virsa.cc.extreport.ReportPack50SP1_01.CrtActbyRsk_Act_RskLvl class: com/virsa/cc/extreport/ReportPack50SP1_01/CrtActbyRsk_Act_RskLvl.class
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: Jar Entry length=13210 compressed size=13210 actual read=13210
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: class name: com.virsa.cc.extreport.ReportPack50SP1_01.CrtRolbyRsk class: com/virsa/cc/extreport/ReportPack50SP1_01/CrtRolbyRsk.class
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: Jar Entry length=19287 compressed size=19287 actual read=19287
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: class name: com.virsa.cc.extreport.ReportPack50SP1_01.CrtProfbyRsk class: com/virsa/cc/extreport/ReportPack50SP1_01/CrtProfbyRsk.class
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: Jar Entry length=12807 compressed size=12807 actual read=12807
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: class name: com.virsa.cc.extreport.ReportPack50SP1_01.UsersbyOrgLevels class: com/virsa/cc/extreport/ReportPack50SP1_01/UsersbyOrgLevels.class
    May 16, 2007 1:24:37 PM com.virsa.cc.extreport.JarClassLoader loadClassData
    FINEST: Jar Entry length=18557 compressed size=18557 actual read=18557
    May 16, 2007 1:24:59 PM com.virsa.cc.common.util.ConfigUtil setDefaultJ2EEParam
    WARNING: Cannot get Application URL: null. PLEASE SET 'Background Daemon URL' IN CONFIGURATION TAB
    java.lang.NullPointerException
    I am not sure whats causing this and it's been 2hrs since i scheduled the user analysis but i don't see any data still appearing in the fron-end..Any pointers again???
    Thanks
    -Murali

  • Is there anyway to obtain a list of pre-define adf facet ?

    Hi,
    is there anyway that I can obtain a list of pre-defined adf facets except those mentioned in the documentation for panelPage tag?

    you can find the facets defined across each of the component in components documentation.
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/tagdoc/core/index.html

  • IOS passcode management. Possible to set a pre-defined centrally managed, rotating passcode for iPAD?

    I would like to use a MDM platform to centrally manage a pre-defined, rotating passcode across my fleet of iPADs. For example, for this month I'd like each iPad across all of my stores to have the passcode of 1234. Next month I would like my MDM platform to update all devices to passcode 4321.
    I haven't seen anything like this to be possible with the iPCU... Anyone have any tips here?
    Thanks!

    The other issue with the new passcode keypad is that it is twice as tall as the previous keypad. This makes one handed entering of the passcode more difficult which is not good. Look at this comparison (from http://www.jailbreakmodo.com/ios-6-vs-ios-7-comparison-side-by-side-view-differe nces.html).
    Thumb travel is greatly increased and reduces the ease of entering the passcode. People with small hands would not be able to reach the top numbers with one hand.
    Not a good or smart move Apple! Please fix this!

  • How can I pre-define the default selection in a SelectOneChoice?

    How can I pre-define the default selection in a SelectOneChoice?
    (1) Here's my JSF-code:
    <af:selectOneChoice label="#{res['usercreate.input.sex']}"
    value="#{bindings.Sex.inputValue}"
    binding="#{SelectListBean.sexlist}"
    readOnly="false" autoSubmit="false">
    <af:selectItem label="#{res['data.sex.women']}" value="1"/>
    <af:selectItem label="#{res['data.sex.man']}" value="2"/>
    </af:selectOneChoice>
    (2): manged bean: to set the default value to be the first in the list, my managed bean as follows:
    import oracle.adf.view.faces.component.core.input.CoreSelectOneChoice;
    public class MBSListBean {
    private CoreSelectOneChoice sexlist;
    public MBSListBean() {
    public void setSexlist(CoreSelectOneChoice sexlist) {
    this.sexlist = sexlist;
    this.sexlist.setValue(1);
    public CoreSelectOneChoice getSexlist() {
    return sexlist;
    (3) when i launch the page, it often gives me such warnings:
    WARNUNG: Could not find selected item matching value "1" in CoreSelectOneChoice[UIXEditableFacesBeanImpl, id=_id7]
    how to solve the problem ?
    Thanks,
    wzzdx

    You could also set the default on your entity or viewobject, in the properties of your attribute.

  • Display Sales Order Result List for a customer from ECC

    Hello Experts.
    I have a requirement to display list of sales order posted for a particular date or sold-to-party or ship-to-party.
    System landscape is as below:
    My ECC system  holds all the data. Orders and subsequent documents are created here.
    My CRM system does not have any Sales related data stored on CRM system.
    Client requires to search for sales orders created for a customer.. based on few search parameters. and display the result list.
    From the Result list,Navigate to see the Over View page, Also, with partner information and material information as assignment blocks.
    How could i achieve this?
    Another Point is we do't not want to create or Edit or even Display ERP Sales Order on UI.
    We want to have UI look.
    Kindly, if someone has implemented this scenario or used standard CRM objects to achieve this functionality please share.
    Thanks

    Hi Nageshwara,
    You need Lean Order(LORD) Interface set up for such kind of requirement.
    There should be a trusted RFC Destinations needs to be set up in the CRM system and an ERP Profile to be set up in the IMG Path CRM --> Transactions --> Settings for ERP Transactions Maintained via CRM ---> Define Profiles for ERP Sales transactions. If these things are properly setup you can use the component ERP_S for searching for Sales Order in ECC using the criteria that you mentioned in your question.
    Regards,
    Mahesh

  • Attachment Indicator in Inbox Result list

    Hi Forum,
    do you know if it is possible to add an indicator(Flag) in the Inbox Result list that indicates that the E-Mail or Service Request has an attachment ?
    Thanks a lot !!!!

    Hi,
    You can create an attribute of type boolean. Set the property of the attribute as ICON in the get_p method. Afterwards, in the do_prepare_output of the field set its value to 'X' when there is an attachment and SPACE when there is no attachment.
    Follow the steps.
    1.) Create the attributes in respective context node of the view in the component.
    2.) Generate the GETTER & SETTER, GET_P methods for these attributes.
    3.) In the GET_P method of the attribute, define the field type as image.
    CASE iv_property.
    WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
    rv_value = cl_bsp_dlc_view_descriptor=>field_type_image.
    ENDCASE.
    4.)In the GETTER method assign the image url to the 'value' attribute based on the conditions,
    IF 'X'.
    value = cl_thtmlb_util=>get_icon_url( 'image1.gif').
    ELSE.
    value = cl_thtmlb_util=>get_icon_url( 'image2.gif').
    ENDIF.
    Regards
    Prasenjit

  • Embedded Search: Additional columns in search result list of cv04n

    Dear all
    We needed to extended a standard append object to add an additional attribute column "description" in the search result list of cv04n.
    Otherwise no user is able to find out best-fit search result really without any indicator about content.
    Now my question is if it is possible to add more columns class-independently?
    So description is defined for every class type, but what about individual ones for each class?
    Best regards
    André

    Hi,
    First check, how the dropdown has been added on toolbar. check if any view set is there in sales order search component.Try by put break point in do_handle_event method of the view and viewset if any.
    There might be different configuration in result view to select based on the value selected from dropdown.
    Regards,
    Dharmakasi.

  • Adding Customer Phone in Inbox result list

    Hello All,
    We would like to add customer phone number in Inbox result list so that agent can call customer directly from Inbox. The customer column is available in UI configuration. I was doing enhancement using enhancement set method and created an enhcement in SM34 for view cluster BSPWDVC_CMP_EXT also in Component workbench I used this enahcement set for compoenent ICCMP_INBOX and enhance the view InboxItems.
    Should I create a Contet Node for new field Phone, and use design layer to add that field in this view? When I was creating a new Context Node for context CL_ICCMP_IN_INBOXITEMS_CTXT it is adding the attribute not with other attributes such as CREATEDON, CUSTOMER etc.
    Can someone send the steps to add a column in the Result list in a table in ICWC.
    Thank you in advance.

    Hi,
    Create ZCL_ICCMP_IN_INBOXITEMS_CN01 that inherits from CL_ICCMP_IN_INBOXITEMS_CN01
    Redefine ZL_ICCMP_IN_INBOXITEMS_CTXT- CREATE_ITEMS to create the model based on the above class
    Create ZCL_ICCMP_IN_INBOXITEMS_CN02 that inherits from CL_ICCMP_IN_INBOXITEMS_CN02
    Re-define ZCL_ICCMP_IN_INBOXITEMS_CN01- REFRESH to use the above Z Class
    Create method ZCL_ICCMP_IN_INBOXITEMS_CN02-GET_<your field>
    Create ZCL_ICCMP_IN_INBOXITEMS_CN03 that inherits from CL_ICCMP_IN_INBOXITEMS_CN03 in order to show your field for the children as well.
    Implement the method ZCL_ICCMP_IN_INBOXITEMS_CN03-GET_<your field> lile for the class ZCL_ICCMP_IN_INBOXITEMS_CN02
    Redefine ZCL_ICCMP_IN_INBOXITEMS_CN02- IF_BSP_WD_TREE_NODE~GET_CHILDREN to use the above class
    Add your field in ZCL_ICCMP_IN_INBOXITEMS_CN01-GET_TABLE_LINE_SAMPLE
    METHOD get_table_line_sample .
      TYPES: BEGIN OF line,
    INCLUDE TYPE crmst_inbox_resultlist.
    u2026u2026u2026u2026u2026u2026
                <your field> TYPE string,
              END OF line.
      CREATE DATA rv_sample TYPE line.
    ENDMETHOD.
    This way the field will be available in the configuration tool
    It worked for me, I hope I did not miss any step.
    Regards

Maybe you are looking for

  • How to create fill-able document and enable signature in it ?

    I have Adobe Acrobat X Pro version 10.0 I want to create a fill-able form with signature feature that I want to put on windows tablet. So that anyone with the table can got o customer and ask the customer to fill out the form and sign in and then I s

  • Make VI or LLB Writable

    Hello, I have an LLB with VI's from an equipment vendor. I just upgraded to LV2012 and when I open the LLB or the VI's inside they are recompiled for the new LV version. When I exit labview it asks if I would like to save changes, i.e. the recompile,

  • Installation error:Failed to link liborasdkbase.so.10.2

    I am installing Ora10gR2 on Linux, and I got the following error message. There is No requirement failure or warning. Can anyone tell me what's wrong here? INFO: End output from spawned process. INFO: INFO: - Linking liborasdkbase INFO: /u01/app/orac

  • Upgrade OWB 3i repository to OWB 9i

    I tried to use to Repository Assistant client version 9.0.2.56 to upgrade/create new repository. However I keep getting the error message as "INS0003: OWB Repository Installation cannot continue without DBA privileges. Connect as DBA and use option C

  • Need help writing a query for following scenario

    Hi all, I need some help writing a query for the following case: One Table : My_Table Row Count: App 5000 Columns of Interest: AA and BB Scenario: AA contains some names of which BB contains the corresponding ID. Some names are appearing more than on