"Queries on IC WebUI SAP CRM 2009"

Team,
1) How to configure interactive scripting for business role IC_Agent ?
2) How to configure broadcasting message for the business role IC_Manager?
Thanks and Regards
Prashant
Edited by: bpm@2022 on Sep 9, 2010 4:25 PM

Hi Dario,
The standard classes and their corresponding methods that would be called are:
CL_BSP_WD_WINDOW
     IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION ()
     IF_BSP_WD_HISTORY_STATE_DESCR~IS_RESTORABLE ()
     WD_DESTROY ()
     IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION ()
CL_BSP_WD_CONTEXT
     IF_BSP_WD_HISTORY_STATE~STATE_STORE ()
     IF_BSP_WD_HISTORY_STATE~STATE_RESTORE ()
These methods could have been redefined in the BSP components.If its redefined, it will call the superclass
method first in the redefinition. You can place breakpoints in the above class methods and find the callstack.
Regards
Leon

Similar Messages

  • Business Activity in SAP CRM 7.0 WebUI

    Hello SAP Experts,
    In SAP CRM 7.0, under maintain activities, I have assigned categories to class interaction log, appointments and tasks.
    The same categories have been assigned to some business activities. For example Category Sales Call (001) is assigned to Interaction Log. The sales call is in turn assigned to Transaction Type- Business Activity.
    When I log on to web ui, I am able to see this business activity under Interaction Log and create the transaction.
    In the same way, when I assign category u2013CX4 (Telephone Call) to class Phone Call to a Transaction Type-Sales Call (0001-business activity), I am not able to see the same in web ui.
    The same holds good when categories are assigned to Class Miscellaneous, Letter, Meeting, E-mail etc, are in turn assigned to transaction types are visible in web ui.
    Kindly clarify, whether all the business activities fall under APPOINTMENT, INTERACTION LOG, TASK, E-MAIL AND VISIT PLAN in WEB UI.
    The other category class, apart from the above mentioned, where can they be used?
    If yes, how do I do the customizing which would enable me to see all in WEB UI?
    Thanks in advance
    Regards,
    Srinivasan.R

    Hi Raghavendran,
    I am facing the same problem. Other than Appointments,Tasks,Email and Interaction record I cannot create any other Activities.
    I defined a new Transaction type assigned the category Misc but cannot create the Activity on WEBUI. As Raja suggested I have also assigned the Channel as WEBUI and ICWEBCLIENT but still does not work. Is there any Role specific customization that needs to be performed?
    Please let me know if your issue is resolved and how you resolved it.
    Any help will be greatly appreciated.
    Thanks,
    Pooja

  • SAP CRM 7.0 WebUI: change history is not working

    Hi specialists
    Our change history is working - but only in SAPGUI.
    I found no way to activate / customize it for the WebUI. The corresponding Assignment Block is simply blank.
    On the other hand - in the SAPGUI its working like it is mentioned to do.
    But it is getting better:
    On our test system its working even in the  WebUI.
    On our prod. system not.
    Does somebody of you have any advices/hints for me?
    With best regards
    Thomas
    System:   SAP CRM 7.0
    2-Tier (test and productive system)
    Problem occurs only on productive system in WebUI

    Hi,
    We are facing same problem for change history on webIC except that all changes to
    business partner are visible only changes to contract account are not coming in change history.
    for e.g if we changed incoming payment method using tcode CAA2 on ISU change is replicating
    on CRM but change history is not showing changes made to incoming payment method.
    i have already posted question but got no reply's
    [change history is not updating on CRM webIC 7.0]
    Following are the components & views which are being called for change history functionality on WebIC.
    Component :
    BP_HEAD
    BP_DATA
    View :
    BP_HEAD/BPHEADOverview
    BP_DATA/AccountChangeHistoryOV
    Above view's are as per SAP standard and not modified or enhanced by us.
    Thank You,
    Sidh

  • I can attach an image to SAP CRM WebUI but was not able to view it

    Dear Experts,
    I was trying to attach an image document to SAP CRM WebUI through cl_crm_documents (Method :- create_with_table) by passing the binary value.
    I receive a string value for the image from IOS team and I convert the same to Xstring and binary in the code. And pass the binary value to the method "create_with_table".
    And I could see the document gets attached. When I try to open the same. The image looks like a small cross bar(i.e :- As if we try to open an unsupported file format.) Though I tried passing both jpeg and png files.
    On the other hand, when I try to attach the same image manually in WebUI. I could view the attached image perfectly. Please find the below code snippet I have used.
    Help me out in getting it resolved.
    CONCATENATE it_flup_gen2-or_img_faci_desc '.pdf' INTO ls_file_access_info-file_name.
    * Convert string to Xstring value for FACI Image
       CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
         EXPORTING
           text     = it_flup_gen2-or_img_faci
           mimetype = 'application/pdf'
         IMPORTING
           buffer   = lv_faci_xstr
         EXCEPTIONS
           failed   = 1
           OTHERS   = 2.
       IF sy-subrc = 0.
         CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
           EXPORTING
             buffer        = lv_faci_xstr
           IMPORTING
             output_length = lv_len
           TABLES
             binary_tab    = lv_file_content_binary.
    * Assign file properties
         ls_file_access_info-file_size  = lv_len.
         ls_file_access_info-binary_flg = 'X'.
         ls_file_access_info-file_name = ls_file_access_info-file_name.
         ls_file_access_info-mimetype   = 'application/pdf'.
         APPEND ls_file_access_info TO lt_file_access_info.
    * Assign business object
         ls_business_object-instid  = lv_guid.
         ls_business_object-typeid  = 'BUS2000125'.
         ls_business_object-catid   = 'BO'.
    ** Fill property values
    ** Get the unique name for the Attachment
         ls_properties-name  = skwfc_prop_relative_url.
         ls_properties-value = it_flup_gen2-or_img_faci_desc.
         APPEND ls_properties TO lt_properties.
    ** Get the decription and title
         ls_properties-name  = skwfc_prop_description.
         ls_properties-value = it_flup_gen2-or_img_faci_desc.
         APPEND ls_properties TO lt_properties.
    ** Get the document mime type
         ls_properties-name  = skwfc_prop_mime_type.
         ls_properties-value = 'application/pdf'.
         APPEND ls_properties TO lt_properties.
         ls_properties-name         = 'LANGUAGE'.
         ls_properties-value        = sy-langu.
         APPEND ls_properties TO lt_properties.
       ENDIF.
    * Creating a document with provided data
         CALL METHOD cl_crm_documents=>create_with_table
           EXPORTING
             business_object     = ls_business_object
             properties          = lt_properties
             file_access_info    = lt_file_access_info
             file_content_binary = lv_file_content_binary
             raw_mode            = 'X'
           IMPORTING
             loio                = ls_loio
             phio                = ls_phio
             error               = ls_error.
         IF ls_error IS  INITIAL.
           CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
             EXPORTING
               wait = 'X'.
         ENDIF.
    regards,
    Sabarinathan

    Hi Deepika,
    Thanks for the response. If you go through my code snippet I have given, I have already mentioned the mimetype as "application/pdf" for pdf document and used the same in my coding. It still doesnt help out.
    regards,
    Sabarinathan C

  • Is it possible to use variant configuration (with a Non-SAP solution) when creating ERP sales orders in SAP CRM WebUI

    Hello,
    our customer plans to use a Non-SAP solution for variant configuration (Camos) in SAP ERP (ECC 6.0) and in SAP CRM 7.0 EHP1 as well.
    ERP sales orders (and ERP quotations) should be created in SAP CRM (CRM WebUI).
    Is it possible to use variant configuration (with an external variant configuration tool) when creating ERP sales orders and quotations in the SAP CRM WebUI or do we have to implement SAP IPC for this?
    Thanks in advance.
    Regards,
    AEV

    Dear AEV,
    I think LORD (lean orders) should work with variant configuration as well. In the note 1236015 there is not restriction listed. However you need lord2 activated in ECC, and ECC system should be on EHP4.
    Best regards
    Rene

  • International Address Versions in SAP CRM 2007 WebUI

    Hi gurus,
    I have activated International Addres Versions in SPRO.
    In the SAP GUI, now there's a button 'intern. versions' available in transaction BP. When users create a new business partner, they can enter an address version in the international character set ( i.e. Cyrillic, Chinese, ... )
    I was wondering how I can do the same functionality in the CRM WebUI ? Is it possible to something similar ? I didn't manage to insert or display  these international address versions ...
    Thank you,
    Abjuh

    Hi,
    Thanks for your reply.
    I have entered into my user id through su01.
    There I could find only one role: SAP_CRM_UIU_FRAMEWORK.
    I have removed that role and came out of the SAP CRM system and login to SAP CRM and webui, still by default interaction center page is displaying.
    I have checked my role in Org model and no where it is assigned.
    Though there is no roles and no assignment in org model, I have a doubt why it is showing the Interaction center screen.
    Please let me know, If you have any more suggestions.
    Regards
    Madhu

  • Getting Interaction center as the default page on the SAP CRM 7.0 webui

    Hi,
    I have installed SAP CRM 7.0 and done all the basic things. I have assigned Sales Professional and Marketing Professional PFCG roles to my user in SU01. Now when I logon to webui, I am getting interaction center(with all the accept, reject, etc.. buttons) screen as the default screen and I could not locate my sales or marketing professional business roles.
    Can anyone please let me know where it went wrong.
    Thanks
    SP

    Hi Andrei,
    No I couldn't see the option to choose the business Roles. I have assigned 4 pfcg roles in SU01 for my user. Also tried with parameter value for CRMC_UIPROFILE=*. But still I could not see the Business roles on the webui page. It is taking me directly to interaction center which is with all the buttons to accept and reject calls.
    I have newly installed the system. I believe I have done all the basic things to get into WEBUI. But still couldn't see those assigned business roles on my webui oage.
    I have tried this way either. Gone to SE80> BSP Application>CRM_IC-->Execute.......but still it is taking me to interaction center page and not to the assigned business roles.
    Please guys let me know where it went wrong.
    Thanks
    SP

  • SAP IDM 7.2: How to setup SSO functionality for WebUI of CRM and GRC?

    Hello IDM-experts,
    where can my customer find information about
    SAP IDM 7.2: How to setup SSO functionality for WebUI of CRM and GRC?
    Customer situation description:
    The situation is that we are using SAP IDM 7.2. We are using a functionality to allow our users to access a webpage from where they can gain
    SSO access to the Abap systems via the SAPGui. See screenshot as an example.
    Now what we want is to access the CRM and GRC WebUI also with the same SSO possibility. We cannot find any guide/best practice on how to do
    this or if it is possible via SAP IDM 7.2.
    You can see a weblink in the first screenshot but it does not work. It will ask you for a username and password, see second screenshot.
    Kind regards,
    Daniela

    Do you know how the SAP GUI SSO is setup ? Is it using SNC/Kerberos ?
    If it is (I suspect it is), then you will need to use similar method of authentication for the ICF Services. These cannot use SNC since they are accessed via browser, but what you want is possible.
    Thanks
    Tim

  • SAP CRM GUI vs WEBUI - Should this question be allowed in here?

    Dear Experts,
    Can some one explain the major difference between GUI vs WEBUI and CRM 6 vs 7? 
    Thanks,
    Sri
    Edited by: Stephen Johannes on Jan 21, 2011 8:32 AM

    Okay folks, I'm going to leave this thread here, but let's have an honest discussion on whether this question should have been answered or not?
    1)  The information requested is found in the release notes for each release.  All available on service marketplace.
    2)  The masterguide for each release of SAP CRM states what's supported and what's required or not and also has note references.
    In addition if you read the the thread at the top of this forum that says CRM Webclient UI FAQ - Read this before answering or posting questions then probably this question should not have been asked in the first place.
    If you are planning a CRM implementation or need to learn more about a particular release then it's probably a good idea to read the release notes and the master guide for that release.  Now that being said this question has been asked a couple of times here, so a search probably would have turned up some results.
    I'm making this a sticky so other folks can join in the discussion.  We will keep this in this forum for now so we can discuss the behavior expected.
    Thank you,
    Stephen
    CRM Forum Moderator
    Edited by: Stephen Johannes on Jan 21, 2011 8:33 AM

  • Object id for opportunity is created  through se38 but that object id doesnt exist in sap crm webui

    Hello All,,
      i am creating  an opportunity from report program (se38) using fm bapi_opportunity_createmulti.
    object id is  created successfully without any error .
    but that object id does not exist when i am giving that object id to sap crm .
    please help me out what i am missing or what happen.
    Ahmad....

    Thanks Arden now its  creating i left logical keys and handle in my  FM modules.
    but i am getting eroor which i have attch please tell me how can i do this .

  • Course WUS581 - Technical Details of SAP CRM Web UI

    I had the opportunity to attend 'WUS581 - Technical Details of SAP CRM Web UI' last month in Atlanta.  I understand it to have been the first time the course was offered in the US. 
    The course was great - here's a link to the official [description|https://training.sap.com/ca/en/course/wus581-wus581-tech-details-of-sap-crm-web-ui-classroom-095-us-en/] . I believe this was an adaptation of the material from the Deep Dive Series. I have to say, that it was pretty fast paced as well - you really need to keep up as much of the material built upon what was already taught. 
    The materials from the class are invaluable.  The labs were well done, and offered detailed solutions.  The labs were numerous, appropriate, and clean.  Most of the twenty exercises were cumulative.  I have since gone back to review some of the concepts, and the material stands well even outside of the classroom.
    This course has given me a much better understanding of the bigger picture.  While I have not come from a CRM or BSP background, I have been working with webUI on a CRM 7.0 based SAP Custom Development Solution, [Fund Raising Management|http://www.sap.com/services/portfolio/customdev/brochures/index.epx] for about half a year.  So, I had at least been exposed to the workbench and some concepts over the previous six months.  This course really helped me tie some things together.
    I just wanted to share my experience with the group...
    ...Mike

    Mike,
    I'm curious to find out how did you find out that the course you took was scheduled. The reason why I'm asking is that I didn't even know that SAP even offered the course in the US, so I would have tried to attend myself if I found out about in advance.
    Glad to see you recommended the course.  There isn't going to be much CRM related technical content at SAP Teched in Las Vegas this year,  however there may be at least one session attending (wink-wink), that's not listed yet.  I would still recommend that CRM development folks still attend teched, because there is plenty of great technical content that we can use regardless.
    Take care,
    Stephen

  • S_DEVELOP authorization needed for CRM Web Client in SAP CRM 7.0?

    We implemented an own WebUI component in SAP CRM 2007 and use it in others components (with USAGE).
    After we transport the component in SAP CRM 7.0 we always got an error CX_BSP_DLC_CONFIG_GENERAL_ERR at loading the component. But if we set the permission to SAP_ALL all thing work fine.
    In SAP Note Nr. 1367944 we read:
    "It is not possible to run the CRM Web Client without the S_DEVELOP, activity=03
    authorization because it is needed by the Web Client Framework.
    The S_DEVELOP authorizatin is part of the SAP_CRM_UIU_FRAMEWORK PFCG role, which must
    be assigned to every user."
    "This dependency has been removed in CRM 7.0."
    Do we need to install some other SAP Notes at SAP CRM 7.0?
    Many thanks for advices!
    Handri Gunawan

    Hi Handri,
    I asked my collegue here, who created the note.
    The note is correct, in CRM 7.0 you do not need S_DEVELOP anymomre.
    The error that you have might occur because of another reason.
    Could you track the call stack of this exception?
    And send me back the call stack?
    Regards,
    Steve

  • Question regarding Authorizations in SAP CRM 7.0

    Hello,
    The problem is this:
    We have a client who will use two ways of accessing SAP CRM 7.0 data -
    1. CRM Web UI
    2. Mobile devices via standard SAP CRM BAPIs
    Now the situation is that the client wishes to control display authorizations based on the Business Role. Certain Business Roles can allow its User to see Accounts where the User is also Employee Responsible and certain other Business Roles can allow its User to see all those Accounts that are associated with that Role. In summary Business Roles control what an User can see.
    This has already been implemented for the CRM Web UI using the Access Control Engine (ACE).
    Now the questions are:
    1. How do we implement this for BAPI Access?
    2. Should we recreate what has been achieved by ACE, via PFCG Authorization Profiles?
    3. Can we not reuse what has been done by ACE?
    4. What are the runtime APIs that allow somebody to use the authorization checks of ACE?
    5. Does the standard Function Module CRM_ORDER_CHECK_AUTHORITY_ACE help in this regard?
    Any help here will be greatly appreciated. Please let me know if you need any clarifications.
    Thanks in advance.
    Best regards,
    Sudhi

    Hello,
    Normally, some notes are recommended in addition to the current support package implementation because they were developed to solve any known issues. These known issues occurred as side effect of any note which belongs to the implemented support package.
    If you take a look at older release notes, you will see the same.
    This is a part of implementation stack.
    1345085  SAP SRM 7.0 SP Stack 04 (09/2009):Release & Information Note 
    1365574  SAP SRM 7.0 SP Stack 05 (12/2009):Release & Information Note   
    1436687  SAP SRM 7.0 SP Stack 06 (03/2010):Release & Information Note 
    Kind regards,
    Ricardo

  • SAP CRM 7.0 - Interactive reporting tool enhancing reports with new fields

    Hi Everyone,
    I am a BW Professional, currently working on evaluating the true benefits of implementing Interactive Reporting tool for our company. As I understand the Interactive reporting tool restricts us to report on individual reporting areas like Activities, Leads, Opportunties etc.
    But according to our business it is very important for us to be able to report on cross reporting areas real time i.e. activities & leads together or activties, leads & opportunties together etc.
    I learned about the enhancement work bench in interactive reporting tool where we can add SAP fields to individual reporting areas, so I thought of adding leads & opportunties to activities. This is where the fun part starts.
    Here I learned that all activty ID, Lead ID and Oppo ID are all fed from one single field from SAP CRM i.e. OBJECT_ID, which means the system is dividing this data into individual reporting areas based on type of data i.e. leads or oppor's etc. and may be based on some key like account etc. So here is a technical question, for me to add a new field to a reporting area I have to give a field name but we already have OBJECT_ID from where I am pulling activties data, so if I want to include leads also in activties then I will have to add some logic manually to get that and can't use enhancement workbench because it is for missing fields from SAP CRM whereas in my case I already have OBJECT_ID from where I am getting Activity data.
    Sorry if I am driving you guys crazy but I am just trying to think loud to make myself clear with concepts.
    Also I have seen that a reporting area in Interactive reporting tool is based on a BW query, but I am not sure why not all the fields in BW query are available for reporting in Interactive reporting tool?
    Any help or commets will be greatly appreciated.
    Thanks & Regards,
    SRV

    Hello,
    checking with the config wizard is always a good idea since it's the only supported way to configure this scenario
    The secret is that you apparently did not activate the report areas. It is a bit missleading that the queries are checked before the report areas are checked, therefore you see the errors concerning the queries first. Below those errors you should find some lines like
        Report areas: delivered 15, active <?>
        CRM interactive reports: delivered 20, active <?>
        Activation of report areas checked
    The last line offers some documentation and the actual link to activate the report areas.
    Best regards

  • SAP CRM Multiple Backend Scenario with Solution Manager

    Dear Experts,
    We are implementing CRM Middleware - Multiple Backend Scenario (MEP / MBE Concept) in our client landscape for SAP CRM on HANA (Ehp3)
    set-up.
    And If any one of you have already implemented MEP Scenario in the SAP CRM Landscape, Could you please help us to provide with the Configuration Steps / Documents, so that we can proceed further.
    Below are the following Queries:
    For Customizing Adapter Object:
    1) Does MEP Concept support the Customizing Adapter object to download from more than one ECC System to single CRM System.
        If Yes, Could you please provide the Configuration steps or Procedure to download the customizing data.
    For Master Adapter Object:
    2) The Adapter objects for Master Data like Customer and Materials are technically supported under MEP for the data exchange.
         However, is it possible to download the Equipments Master Data from more than one ECC System to single CRM System?
         If Yes, Could you please provide the steps or Procedure to download the Equipments Master Data.
    And please provide if you have done the Solution Manager Configuration mapping for MEP Scenario, which is required for the maintenance and transfer of customizing mappings to CRM and Mapbox.
    Thanks,
    Mohanram.

    Hi Alagammai,
        We are also implementing CRM Middleware - Multiple Backend Scenario (MEP / MBE Concept) in our client landscape for SAP CRM on HANA (Ehp3) set-up.
    Required some Information on the below Query.
    For Customizing Adapter Object:
    1) Does MEP Concept support the Customizing Adapter object to download from more than one ECC System to single CRM System.
        If Yes, Could you please provide the Configuration steps or Procedure to download the customizing data.
    For Master Adapter Object:
    2) The Adapter objects for Master Data like Customer and Materials are technically supported under MEP for the data exchange.
         However, is it possible to download the Equipments Master Data from more than one ECC System to single CRM System?
         If Yes, Could you please provide the steps or Procedure to download the Equipments Master Data.
    And please provide if you have done the Solution Manager Configuration mapping for MEP Scenario, which is required for the maintenance and transfer of customizing mappings to CRM and Mapbox.
    Thanks,
    Mohanram.
    7829055537

Maybe you are looking for

  • Open browser behavior does not work properly

    I have quite a few websites in subfolders to my root website.  I have tried using the open browser behavior to open a smaller resized html page in two of these subfolders.  When I apply this behavior it causes about 20 windows to open up of this page

  • Linux-3.10.10 fails silently when booting with UEFI

    This problem has occured for me on several occasions in the past (with 3.10.2 and 3.10.8) but that has been with kernels in [testing]. With 3.10.10 dropping to [core], this is the first time this has happened for me with an official release. Though t

  • Legend color on Home page misleading

    In P-track Application while creating project the colors for Hot is RED, Watch is Yellow, No issues is Green,Complete is Black and Unknown is no color. But when same legend is applied on Home page No issues and 'Unknown' are displayed is green due to

  • Sales order/stock trasport order quantity  vs to be produed quantity

    Dear Expert, Gud morning!!!! Have a nice day ahead.. i have one requirement say we are having pending SO/STO quantity based on that we are producing to be produced quantity (TBP) but this is being done manually due to this our fg inventory is not mai

  • Foreign currency, VAT amount,Variables, PLD

    Hi guys, We have SBO2007 version 46. The system currency is GBP, and we have some purchase orders in EUR, where I am trying to show VAT amount in the right currency in the printouts. There are two layouts on the system 1) Purchase Order (System)  --