UI Fields control in CRM E-commerce application

HI All,
Our  application is CRM ISA 7.0 E-commerce application.
We want to control the UI Fields in the standered pages like order page, Confirm page etc. We have done that through sap/modification/uicontrol-config.xml but we dont want to do it through the standered SAP files. We want it througn the customer(custom) file. We have customer/modification/uicontrol-config.xml in the appbase project. In that file we have extended the default config and as below.
<config isa:extends="../config[@id=default]">
      <UIElement name = "order.reqDeliveryDate"
                              allowed = "false"
                                hidden = "true" >
                               <backend structureName = "ORDER_HEADER"
                                       fieldName = "REQ_DLV_DATE" />
        </UIElement>
</config>
and We are not able to hide the requested delivery date.
Is any thing missing in the above code?
Do we have any other approach to control the UI fields.
Thanks and Regards,
Sudha

Hi Roman
Below link will be useful :-
http://help.sap.com/saphelp_nw04/helpdata/en/bd/6ca740aa053a13e10000000a155106/content.htm
Regards

Similar Messages

  • Error while executing SAP E-Commerce Application with UME system

    When attempting to login to the B2B application (http://hostname:port/b2b/init.do), we receive the following error:
    Error while executing SAP E-Commerce Application with UME system; try again to log on. If the problem persists, call our hotline.
    I checked the defaultTrace log and every time the login page is called the following messages are displayed:
    #System.err#sap.com/crm~b2b#System.err#Guest#0##n/a##70cf2ba0756b11df86050003ba827311#SAPEngine_Application_Thread[impl:3]_0##0#0#Error##Plain###com.sap.engine.services.servlets_jsp.server.exceptions.WebIllegalStateException: The output is committed.
    #System.err#sap.com/crm~b2b#System.err#Guest#0##n/a##70cf2ba0756b11df86050003ba827311#SAPEngine_Application_Thread[impl:3]_0##0#0#Error##Plain###  at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:354)#
    another 40 lines of similar text
    When a login is attempted, the following messages are appended to the trace file:
    #tracing.isa.runtime#sap.com/crm~b2b#tracing.isa.runtime#Guest#0##n/a##f6384ec0756b11df81380003ba827311#SAPEngine_Application_Thread[impl:3]_0##0#0#Debug##Plain###[actionxecution]='begin' [actionclass]='com.sap.isa.user.action.PrepareLoginBaseAction' [path]='/preparelogin'#
    tracing.isa.runtime#sap.com/crm~b2b#tracing.isa.runtime#USER1#7439##n/a##f6384ec0756b11df81380003ba827311#SAPEngine_Application_Thread[impl:3]_0##0#0#Debug##Plain###[actionxecution]='end' [actionclass]='com.sap.isa.user.action.PrepareLoginBaseAction' [path]='/preparelogin' [forward]='/login.do' [exectime]='42'#
    #tracing.isa.runtime#sap.com/crm~b2b#tracing.isa.runtime#USER1#7439##n/a##f6384ec0756b11df81380003ba827311#SAPEngine_Application_Thread[impl:3]_0##0#0#Debug##Plain###[jcofuncionexecution]='begin' [funcname]='CRM_ISA_SSO_LOGIN_CHECKS' [ashost]='<hostname>' [sysid]='CRM'#
    #tracing.isa.runtime#sap.com/crm~b2b#tracing.isa.runtime#USER1#7439##<hostname>_CJM_678801250#USER1#f6384ec0756b11df81380003ba827311#SAPEngine_Application_Thread[impl:3]_0##0#0#Debug##Plain###[jcofunctionexecution]='end' [funcname]='CRM_ISA_SSO_LOGIN_CHECKS' [ashost]='<hostname>' [sysid]='CRM' [exectime]='12'#
    I have modified the userid and hostname in the above trace output.
    Does anyone know how we can debug this issue further?
    Thanks,
    Setu

    Hi,
    Are you using UME login type for your B2B Scenario?
    In your B2B XCM setting have you selected UME related login type?
    eCommerce Developer

  • Posting date field is coming in Travel Request Application

    Hi
    WD component - FITV_FPM_START
    Application - FITE_REQUEST
    "Posting Date" is coming in QA system but not Dev system and this field is not required at all but surprisingly coming in QA .
    Please let me know how this field is coming in the one system and not in the other and how we can hide this ?
    Please see screenshot -
    T&R
    Vishwas

    Hi Vishwas,
    Go to this spro path : Travel Management->Employee Self-Services->Interface Configuration for Web Dynpro Interface in Travel Management->Schema and Single Field Control for Web Dynpro.
    Select the schema, Domestic or international. and expand it.
    You will find the posting date under general data. Double click on posting date. By default the radio button will be standard display,  Select the check box alternate display and uncheck the checkbox field is dispalyed.
    Now save and move the TR.
    Posting date will be removed.
    Thanks,
    Namsheed.

  • 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

  • How to Display the configurable product in E-Commerce application

    Hi Gurus
    Need the Help
    How to dispay the configurable products in E-commerce application.How can u differenciate the Normal products and Variant configured products,If any one having any idea please respond fast.
    Currently we are using 2007 version of CRM.
    Regards
    Satish

    Hi
    We need to create a configurable material in R/3 the same has to replicated to CRM using middleware.
    In short we require to do the following.
    The SAP tasks for setting up a new KMAT are outlined:
    Routings
    Smart Table
    MVC changes
    MVX changes
    ISA
    Create KMAT
    Create Class
    Create Characteristics
    Create Configuration Profile & add procedures
    Create Super BOM
    Create Pricing rules
    Regards,
    Sumit

  • CRM / E-Commerce version confusion

    Hello -
    I currently have an ERP E-Commerce web site up and running (called ISA 5.0, before all the SAP name changes, I believe). This ERP layer runs onto of Netwever 7.00.
    Here is where my confusion begins...
    I am using CRM 5.00 components like SHRWEBAPPS and so on as the building blocks of the site. However, when I look to apply new support packs to my local and dev landscape, I notice that there are other choices availalble.
    For instance:
    SAP CRM 5.0
    SAP CRM 7.0
    SAP CRM 7.0 / NW7.01
    My local J2EE currently has installed NW 7.0 SP16, but the DEV server, which was on NW 7.0 SP16, was just upgraded to NW 7.01 SP3.
    So, I need to upgrade my local J2EE to NW 7.01 SP3 ( I think), but should upgrade my B2B application by now clicking and grabbing the CRM software components that are listed under "SAP CRM 7.0 / NW7.01"??
    Keeping in mind that we do NOT use or have CRM installed. Our web channel has an ERP backend.
    Or, should I just keep getting the newest SPs offer from the "SAP CRM 5.0" link?
    And, if I need to move to "CRM 7.0", how different is that than "CRM 5.0" as far as the B2B is concerned? Our B2B is heavily modified.
    Thanks,
    Bryan

    In general, the Java Application Platform namely the NW J2EE engine and the Java applications for example E-Commerce 5.0 for ERP can be at different versions. J2EE NW 7.01 can still run B2B E-Commerce 5.0.
    Only requirement you have to comply with is, with in the application - E-Commerce 5.0 or 2007 or 7.0, all the components should be at the same version and SP level.
    Keeping the J2EE compatible across landscape (local vs DEV) is advisable. If you have upgrade the NWDI which is a NW component then you have to do the same across landscape.
    CRM 5.0 E-Commerce for ERP and CRM 7.0 E-Commerce for ERP are certainly different in many aspects and you have to evaluate closely before undertaking such an upgrade. Also, the backend system, in your case the ERP system should be of certain version (or plug-in compatible with older ERP systems) to run newer versions of E-Commerce application.

  • XCM Settings for IPC 6.0 to work with B2B ERP 6.0 E-commerce application

    Hi All,
    We are currently implementing B2B ERP (ECC 6.0) E-commerce using IPC 6.0 for the sales pricing and configuration needs.
    To make IPC work with B2B E-commerce application I need to do the necessary XCM settings for IPC. I launched the following URL to do the XCM settings for IPC.  http://<hostname>:<portnumber>/ipc/admin/xcm/init.do    I created a JCO connection with ECC system using the menupath Components->Customer->JCO and adding values to required fields such as Base Configuration (value: server_connect) , Server, Client, Message Server, Userid and Password.  I saved the configuration to create the necessary JCO connection with the ECC system. I executed the "Run Test" option and found the test to be successful.
    To complete the Application Specific settings in XCM, I followed the menupath  'Application Configurations->SAP->erp' to create a new customer configuration. In the field JCODATA of the new configuration I added the JCO component name that was created in the previous step. I made this as the default configuration and saved it. The new configuration shows up under the sub-node Application Configurations->Customer-> 'New Configuration Name'.
    Please let me know do I need to do any other XCM settings for IPC? Is there anything missing or need to be rectified? How I can test and make sure that IPC is connected to ECC and ERP E-commerce application and the connection is working fine. Please answer in detail.
    Thanks in advance.
    --R D

    Hi,
    Go to B2B XCM application : http://host:port/zb2b/admin/index.jsp
    select "Extended Configuration Management (XCM) Administration"
    then select your application configuration from the "Customer" node.
    Click on the "Display" button.
    then maintain "ipcdata" parameter as what you have maintained in the IPC application.
    Thanks,
    Dinesh.

  • What are points to focus on SAP CRM E-Commerce

    I need to work on CRM E-Commerce  java components for support. To get the KT from the development, what are the places i need to concentrate for getting the valid information. Like, What are the area's, I need to  concentrate and make sure that all the information is captured for supporting the application.
    Thanks.

    Unlike ESS/MSS where you can literally hack through any class (correct me if I am wrong), Web Channel application has been designed to be "modified and enhanced" without the need to change the standard class files (theoretically).
    when i spoke the development team, he is saying that, they modified only SHRWEB and CUSTPRJ rest of the components (CRMWEB, CRMAPP, SHRAPP,) not modified also recommended not to modify by SAP. I am unable understand why.
    The components that need to be modified depend solely on the application you are working on. In your case, I guess it is the b2b
    The E-Selling (b2b) application related components that can be modified (the key word here is "that can be modified") which happen to be the JSPs in the WebContent folder in the SHRWEB are the only components you need to modify "directly". The standard class files (Java) need not be touched according to the enhancement framework. Any custom classes you develop either as new or as extension of a standard class will all go to crm/home/shr/ext which is also in SHRWEB.
    I am unable understand why. Sice DEV & EXT guide saying . Any customer related changes can go to - crm/home/crm/ext in CRMWEB - crm/home/shr/ext in SHRWEB - Can you clarify , is this correct. ?
    From what was explained above in this thread, where the customer changes need to be depends on where the application exists. For example, for E-Service related apps,  icss it is not SHRWEB.
    Also i am trying to understand, There are lot of dc's availabl in sharweb. how to identify which dc is related to web order and which is related complaints and returns.? or some other process.
    I won't say the extension guide is written for general audience. I must agree with you on that. The guide is written by the experienced developers for "experienced" developers. Not for me or you. Like all other SAP documents, they are written for those who know the subject thoroughly. As you gain experience, you start appreciating the document. But, if you read slowly and properly, you will see what I have explained above very clearly. Try to understand the scenarios explained in the document.
    Is there any where documented in SAP docs. I have red the DEV & EXT guide, there details are not available. That is explaining only the how to extend the application.
    Read the Tutorial too. See the different scenarios and see what techniques are used and try to analyze why.
    Same way the dc's which are in SHRWEB and CRMWEB related which modules or process. Is there any relation ship between these two .SCA files.?
    Generally based on group of applications. But that doesn't create any restriction, for you can always create dependency for any DC in your custom project.

  • Dispaying the variant configurable produts in E-Commerce application

    Hi Gurus
    Need the Help
    How to dispay the configurable products in E-commerce application.How can u differenciate the Normal products and Variant configured products,If any one having any idea please respond fast.
    Currently we are using 2007 version of CRM.
    Regards
    Satish
    Awaiting for ur response.
    Regards
    Satish

    Dear Satish & Shalini Chauhan 
    I am also facing same problem.
    We have Varaint configuration products in ECC. For this we created Knowledge base object and runtimer version in ECC.
    This KB are downlaoded sucessfully in CRM using the 'SCE' object. Again we download the 'Material' object.
    Product are replicated sucessfully (COMMPR01) but there is no entries in tab Configuration and Varints.
    Please guide me any further settings are required to view the product variants entires in tab Configuration.
    Regards
    Mallik Kosuru

  • CRM E-Commerce Module

    What does CRM E-Commerce module includes? IS CRM -web and CRM-internet sales are part of CRM E-commerce or are they separate?
    Can any send me documents on CRM E-Commerce ASAP.
    Thanks guys,
    Anjali Saxena
    [email protected]

    Hi Anjali,
    E-Commerce :This key capability enables you to turn the Internet into a profitable sales and interaction channel for both business partners and consumers. You can provide your customers with a personalized Web experience and convenient self-services. With the fully integrated E-Commerce platform you can strengthen your sales, service, and marketing operations and, in turn, reduce transaction costs and customer service calls. The E-Commerce applications cover Web-based sales and service transactions, targeted marketing, and analytics for system and customer behavior.
    For details:please see link
    http://help.sap.com/saphelp_crm50/helpdata/en/16/cfa34273f60b31e10000000a1550b0/frameset.htm
    regards,nishant
    please reward points if this helps

  • JBCL Field Control problem, is this a bug??

    Hi,
    When I use a JBCL Field control I get errors.I have already
    developed an application using JDeveloper 1.02.Now I am using
    2.0.184 beta.When ever I use a field control I get this error
    even though i dont assign it to a dataset and column name.If i
    remove the field control the program compiles and runs perfectly
    this is the error mesg
    at com.sun.java.swing.JComponent.paint(Compiled Code)
    at com.sun.java.swing.JComponent.paintChildren(Compiled
    Code)
    at com.sun.java.swing.JComponent.paint(Compiled Code)
    at java.awt.Container.paint(Compiled Code)
    at sun.awt.windows.WComponentPeer.handleEvent(Compiled
    Code)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    at java.awt.Container.dispatchEventImpl(Compiled Code)
    at java.awt.Window.dispatchEventImpl(Compiled Code)
    at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread.run(Compiled Code)
    Exception occurred during event dispatching:
    java.lang.ClassCastException: borland.jbcl.control.FieldControl
    at
    com.sun.java.swing.plaf.metal.MetalTextFieldUI$TextFieldBorder.pa
    intB
    order(Compiled Code)
    at com.sun.java.swing.border.CompoundBorder.paintBorder
    (Compiled Code)
    at com.sun.java.swing.plaf.BorderUIResource.paintBorder
    (Compiled Code)
    at com.sun.java.swing.JComponent.paintBorder(Compiled
    Code)
    at com.sun.java.swing.JComponent.paint(Compiled Code)
    at java.awt.Container.paint(Compiled Code)
    at sun.awt.windows.WComponentPeer.handleEvent(Compiled
    Code)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    at java.awt.Container.dispatchEventImpl(Compiled Code)
    at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread.run(Compiled Code)
    I am not able to run the appln that I had developed earlier due
    to this.Is this a bug????
    I would be thankful if I get a reply for this at the earliest
    Ram
    null

    Ram,
    You are raising an important issue. I will answer this question
    in a new thread so that more people will read it. The subject
    will be: "Problems with upgrading version 1.x applications (using
    JBCL)"
    Thanks.
    Ram (guest) wrote:
    : Hi,
    : When I use a JBCL Field control I get errors.I have already
    : developed an application using JDeveloper 1.02.Now I am using
    : 2.0.184 beta.When ever I use a field control I get this error
    : even though i dont assign it to a dataset and column name.If i
    : remove the field control the program compiles and runs
    perfectly
    : this is the error mesg
    : at com.sun.java.swing.JComponent.paint(Compiled Code)
    : at com.sun.java.swing.JComponent.paintChildren(Compiled
    : Code)
    : at com.sun.java.swing.JComponent.paint(Compiled Code)
    : at java.awt.Container.paint(Compiled Code)
    : at sun.awt.windows.WComponentPeer.handleEvent(Compiled
    : Code)
    : at java.awt.Component.dispatchEventImpl(Compiled Code)
    : at java.awt.Container.dispatchEventImpl(Compiled Code)
    : at java.awt.Window.dispatchEventImpl(Compiled Code)
    : at java.awt.Component.dispatchEvent(Compiled Code)
    : at java.awt.EventDispatchThread.run(Compiled Code)
    : Exception occurred during event dispatching:
    : java.lang.ClassCastException: borland.jbcl.control.FieldControl
    : at
    com.sun.java.swing.plaf.metal.MetalTextFieldUI$TextFieldBorder.pa
    : intB
    : order(Compiled Code)
    : at com.sun.java.swing.border.CompoundBorder.paintBorder
    : (Compiled Code)
    : at com.sun.java.swing.plaf.BorderUIResource.paintBorder
    : (Compiled Code)
    : at com.sun.java.swing.JComponent.paintBorder(Compiled
    : Code)
    : at com.sun.java.swing.JComponent.paint(Compiled Code)
    : at java.awt.Container.paint(Compiled Code)
    : at sun.awt.windows.WComponentPeer.handleEvent(Compiled
    : Code)
    : at java.awt.Component.dispatchEventImpl(Compiled Code)
    : at java.awt.Container.dispatchEventImpl(Compiled Code)
    : at java.awt.Component.dispatchEvent(Compiled Code)
    : at java.awt.EventDispatchThread.run(Compiled Code)
    : I am not able to run the appln that I had developed earlier due
    : to this.Is this a bug????
    : I would be thankful if I get a reply for this at the earliest
    : Ram
    null

  • SRM Field Control for Master Data fields e.g. hide Street prefix

    Hi Experts,
    we are using SRM 7 Ehp1.
    For the RFx process we need to create bidders.
    To simplify the creation of the bidder for the users we would like to hide
    all unnecessary fields e.g. Street prefix / Street suffix.
    I tried to use the customizing img "SAP Supplier Relationship Management -->  SRM Server --> Cross-Application Basic Settings --> Extensions and Field Control (Personalization) --> Configure Field Control"
    I've tried the function "Configure Control for Fields on Header Level".
    There is a business object type BBP001 for bidders but only 4 fields are available for field control.
    It seems this customizing entry is only for transaction data, e.g. SC, PO but not for master data.
    Is it possible to hide fields for bidders within SRM?
    Thanks in advance for your help!
    Kind Regards
    Stefan

    I've enhanced the relevant web dynpro component view.
    Created an post exit to the method WDDOMODIFYVIEW.
    Regards
    Stefan

  • Field Control settings in SRM 7.0

    Hi Experts ,
    We are configuring SRM7.0 with ECC6 ( Ehp4) having Classic Scenario .
    We want to make
    1. Some fields mandatory for example Refernce Document in Confirmation document..etc --->> I done setting in the sRM Config at   SPRO......-> Configure Control for Fields on Header Level->Metadata for Fields on Document Headers for this field and now it is howing red star in that document, but stuill w/o entering in that field, system allowing me to post this confirmation document....we had not used DOC_CHECK badi for same.. Is using of this or other Badi is necessary to give me error message if this field is not entered ?
    2.1 want to hide some fields like Prefered Supplier in Shopping cart item level.....I checked in UI, its field id is PROP_SUPPLIER....but unable to find the field for same in the SPRO-.......Configure Control for Fields on Item Level->Metadata for Fields on Item Level.....  Where can get exact /corrcet field name for fileds in UI ..so that I can hide them?
    2.2 Also How can I hide tab Page like "Approval"  in any documnet like Shopping Cart or any documnet ?
    3. I want to change the Name of the Button in SRM web browser for example SAVE button  in all documnet  I want to make it as  PARK....  and want to change the name of field ( for example Refernce Document to Delivery Note  in Confirmation document..in synh with ECC..to avoid confustion of user)   is it possible ? if yes , how ?
    Will appricaite quick suggestion with details
    Thank you in advance.
    NAP

    Hello Narendar,
    1.  In Doc check badi check whether header field
         IF  header-refernce field is Initial.
         ls_message-msgty      = 'E'.
          ls_message-msgid      = Zmsgid
          ls_message-msgno      =' 001'.
          APPEND ls_message TO et_messages.
         ENDIF.
    2. Check in SPRO->Cofigure field control->Configure Control for Fields of Substructures
    Add a new entry with
    Set type : SY
    Field name: PROP_SUPPLIER/PARTNER_PROD
    Object type BUS221
    set level : item
    field disable
    3.Please check this 
       http://wiki.sdn.sap.com/wiki/display/SRM/HidingtabofShoppingcartinSAPSRM7.0
    4.  Please check this
         Rename the "save" button on SC screens to "Hold Cart "
         Rename the "save" button on SC screens to "Hold Cart "
    Regards,
    Neelima
    Edited by: S Neelima on Jun 20, 2011 12:54 PM

  • Search criteria is not working in Responsible Group field in sap crm could you please help me this how to achieve.

    search criteria is not working in Responsible Group field in sap crm could you please help me this how to achieve.I have writen code on EH_ONSEARCH .as per below...what changess i need to do..and through partner function and adding the selection params please send the sample .
    code. partner funtction - ZRG DATA :
    DATA : lv_partner_fct type .
    types: begin of ty_resp,
           partner    type but000-partner,
           name_last  type but000-name_last,
           name_first type but000-name_first,
           mc_name1   type but000-mc_name1,
           mc_name2   type but000-mc_name2,
           end of ty_resp.
    DATA: lv_resp_bp type STANDARD TABLE OF ty_resp INITIAL SIZE 0,
           lw_resp_bp type ty_resp.
    IF lv_attr_name = 'Rgroup'.
    lr_entity->get_property_as_value( EXPORTING iv_attr_name = if_crm_srqm_uiu_const=>gc_attr_low
                                       IMPORTING ev_result = lv_low ).
    IF lv_low IS INITIAL.
    SELECT partner
           name_last
           name_first
           mc_name1
          mc_name2
    FROM but000 INTO table lv_resp_bp
    WHERE mc_name2 = lv_low and bu_group = '0010'.
    loop at lv_resp_bp into lw_resp_bp.
        lv_low = lw_resp_bp-mc_name2.
      lr_query_service2->add_selection_param( iv_attr_name = 'Rgroup'
                                                iv_sign = lv_sign
                                                iv_option = lv_option
                                                iv_low = lv_low
                                                iv_high = lv_high ).
      ENDLOOP.
    if lv_partner_fct = 'ZRG'.
      lr_entity = lr_iterator->get_next( ).
    CONTINUE.
    ENDIF.
    lv_attr_name = 'BU_PARTNER'.
    ENDIF.

    <b>You can acheive   this .... first by creating the search help exit    ... by  creating the maintaince  view   then   using it in the   Creation of the search help </b> ...
    see the link for attaching the view   to the serach help .
    <a href="http://">http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_elementary.htm</a>
    reward  points if it is usefull...
    Girish

  • F4 help for a field in UI(CRM 5.1)

    Hi All
    Can anybody tell me how to do F4 help for a field in UI( CRM 5.1). scenario is given below.
    I have 2 customer fields added to UI using EEW and have custom table for maintaining field values. need to add F4 help for field1 ( field1 and field2 values needs to be displayed in F4 help list) and field2 should get value when we hit the particular entry from field1 F4 help list.
    thanks in advance.

    Hi,
       You can implement the Get_V* method for the field1 attribute and use the following code to populate both field1 and field2 as output paramters for your F4 help.
      DATA:
        ls_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
        lt_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
        lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
      ls_map-context_attr = '<STRUCT.field1>'.
      ls_map-f4_attr      = 'field1'.
      APPEND ls_map TO lt_outmap.
      ls_map-context_attr = '<STRUCT.field2>'.
      ls_map-f4_attr      = 'field2'.
      APPEND ls_map TO lt_outmap.
    <fill the lt_inmap (input parameters) as per your requirement>
        CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
          EXPORTING
            iv_help_id        = '<your search help id>'
            iv_help_id_kind   = if_bsp_wd_valuehelp_f4descr=>help_id_kind_name
            iv_input_mapping  = lt_inmap
            iv_output_mapping = lt_outmap.
    Note: In your DDIC search help, define field1 and field2 as output parameters in SE11.
    Reward if it works!
    Thanks,
    Sudipta.

Maybe you are looking for

  • MS Outlook 2011 for Mac will no longer automatically send and receive email since upgrade to OS 10.9 Mavericks.  Does anyone know of a solution?

    I have been having trouble with Outlook 2011 for Mac since updating to OS 10.9 Marvericks.  I have tried updating the database and identity.  I can get email if a go to each account and try to download it.  But email will not come automatically and c

  • Cannot use the automatic login on tumblr

    yeah - works on other sites just fine - but not on tumblr - any idea? Whenever i go to my tumblr login safari will not ask me if it should fill out my username and password - works fine on other sites... Greetings

  • How to raise the exception

    how to rise exception when the cursor returns no data,suppose begin for rec in (select * from scott.emp e where exists ( select 1 from scott.emp where e.deptno=30 )) loop dbms_output.put_line(rec.ename); end loop; exception when no_data_found then db

  • PowerBook G3

    Bonjour, je posède un PowerBook G3, qui me pose bien des soucis !!!! lorsque je l'allume il ne s'allume qu'après le 8 ou 10 ième reboot , la il fonctionne corectement ( que ce soit sur le secteur ou avec ça batterie). quelqu'un a t 'il une idéé d'ava

  • Problem with PLSQL dbms job in apex

    Hi, I am completely new to apex, and am facing a issue which i feel is strange. There is a button on the apex page and a process is associated with that button. Some tables are being updated in the code written in that process and a db procedure is c