SAP CRM Authorizations - restrictions on viewing BP from specific country

Hi
We have a requirement that says that it should only be possible to view customers that belongs to the same country as the employee and it should ony be possible for the employee to create activities for these customers.
We have set filters on organizational level(Sales group, Sales office) on the role in PFCG.
However, this does only apply for sales orders, and it is now possible to only search for orders from their own country.
Does someone know what restrictions we should set on the role in PFCG to fullfill this requirement?
Should not the organizational filters cover this?
BR
Johan

This can not be achived with pfcg role. You have to options:
- implement badi BADI_CRM_BP_UIU_AUTHORITY
- implement ACE

Similar Messages

  • SAP-CRM - Auto Confirmation of Contract Account from IVRS to SAP-CRM IC Web

    Hello Experts,
    In Our Projects we are Using SAP-CRM Web Client for Call Center Processes. AVAYA is a Third Part agency which have developed the IVR system for handling the Consumer Calls. We have Developed BAPIs which will fetched data from SAP based on Contract Account entered by Consumer on IVRS. AVAYA have developed the CTI Pop-Up also which have several Consumer Details along with CA. Now Client wants that CA , entered by Consumer on IVRS, will be autoconfirm to CRM - Web Client. If anyone have any document for doing all these setting please share with us & Provide us guidelines...
    Regards,
    Abhishek Chopra

    Hello Abhishek.
    You can refer to [Note 707104 - Account identification from attached data|https://service.sap.com/sap/support/notes/707104]. It describes how to set autoconfirmation based on CAD.

  • MS Word integration with SAP CRM: can a PDF be created from the MS Word doc

    21/11
    Gurus,
    I know have a better understanding of the topic but still have 2 open questions.
    I now know that StreamServe cannot read .DOC files but can read and work with .PDF files.
    Since we are in a SAP forum and not a StreamServe forum,
    1/ I am wondering if SAP CRM 2007 can convert the MS Word generated and populated documents into .PDF. Possibly immediatly.
    2/ Can the MS Word generated and populated documents be saved by SAP CRM 2007 as .XML files?
    Thanks again.
    Dear All,
    On my project, there is a requirement to generate ad-hoc and amendable letters in CRM (2007).
    We might have +150 letters so I am thinking about using MS Word integration with SAP CRM to deliver this.
    With SAP CRM 2007, I understand that it is indeed possible to generate WebServices that will then be consumed by Word templates through the mail merge functionality. So agents will not have to enter BP name, address and so on. All this can be done by configuration which is great.
    My point of concern is how to integrate this design to StreamServe for printing purpose (we do not want to go into local printing)
    Can StreamServe collects the Word generated document?
    Should this Word document be converted as PDF before or can StreamServe do it?
    Should StreamServe exploits the XML contents within the Word generated document?
    Thanks for your help and insights about this.
    Brice.
    Edited by: Brice Vialle on Nov 21, 2008 9:26 PM
    Edited by: Brice Vialle on Nov 21, 2008 9:34 PM

    Hi Chris,
        Your advice helps me a lot, thank you.
        I upload an XML-Format template Word Doc to server as a MIME Object.
        When OfficeControl is started in Web Dynpro, OfficeControl automatically open the XML-Format template.
       For the first time, I get the XString-type Context attribute bind to the content of the Word Doc,
       then translate it to string, I got the XML-format content, it's great!
       However, after the first time, when I input any new contents in MS Word in Web Dynpro,
       no matter I execute "Ctrl + S" or click the "savedocument" button,
       when I translate the XString Context attribute to String, I got messy code. (but the first time, it is good plain text)
       I use the function module: ECATT_CONV_XSTRING_TO_STRING (good for first time, dump after first time),
       SCMS_XSTRING_TO_BINARY, SCMS_BINARY_TO_STRING (good for first time, messy code after first time).
       My Demo source code is in: (system) SMV --> (local object) zhaode --> (Dynpro Component) ztest_office_control
       core source code is as:
       clear itab.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER = lv_datas
        IMPORTING
          OUTPUT_LENGTH = lv_length
        TABLES
          binary_tab = itab.
      CALL FUNCTION 'SCMS_BINARY_TO_STRING'
        EXPORTING
          input_length = lv_length
          mimetype = 'text/plain; charset=utf-8'
        IMPORTING
          text_buffer = lv_datas_string
          output_length = lv_data_len
        TABLES
          binary_tab = itab.
        Can you give me some advice?
    Best Regards,
    Derek

  • SAP CRM Structure for SearchHelpResult View of PRD01QR (Products)

    Hi All,
    I am unable to trace the underlying SAP structure name for SearchResult Node in GENIL_MODEL_BROWSER.
    I need the name of the structure, as i need to modify my Result View by adding another field to it for output display.
    Any input on this would be highly appreciated.
    Thanks
    Dedeepya

    Thanks Shobit
    Solved!
    Though a BIT more of navigation is involved sometimes esp. incase of dynamic queries..
    Phew stil a long way to go in learnin...
    Thanks
    Dedeepya

  • Authorization - Restrict to view non-leading ledger only

    Dear Gurus,
    Is it possible to allow users to have access to view non-leading ledger only and not main ledger?
    However, at posting, we will want users to still have access to post to main ledger.
    Appreciate your expertise on this!
    B Regards,
    Wong

    Hi Atif,
    Thanks for the response.
    I tried that but it is now telling me that I need to provide the leading ledger authorization too.
    Any idea why?
    We will like to only provide non-leading ledger authorization for displaying reports.
    Regards,
    Wong

  • Restricting Web Service Access from specific machines (IP)

    Is there any way by which we can restrict access of our web service to some specific machines i.e., restricting to some specific IPs.

    maybe a Filter helps you since you can know the remoteIP from the httprequest
    http://java.sun.com/products/servlet/Filters.html
    public class TestFilter implements Filter {
    FilterConfig config = null;
    public void init(FilterConfig filterConfig) throws ServletException {
    this.config = filterConfig;
    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
    HttpServletRequest request = (HttpServletRequest) servletRequest;
    HttpServletResponse response = (HttpServletResponse) servletResponse;
    String ssoToken=null;
    System.out.println("+++++++ENTRANDO AL FILTER DE WS++++++++");
    System.out.println("+++++++IPLOCAL++++++++"+request.getLocalAddr());
    System.out.println("+++++++HOSTLOCAL++++++++"+request.getLocalName());
    System.out.println("+++++++IPREMOTE++++++++"+request.getRemoteAddr());
    System.out.println("+++++++HOSTREMOTE++++++++"+request.getRemoteHost());
    System.out.println("+++++++REMOTE USER++++++++"+request.getRemoteUser());
    System.out.println("+++++++Filter chein++++++++");
    filterChain.doFilter(servletRequest,servletResponse);
    System.out.println("***despues de doFilter****");
    public void destroy() {
    config = null;
    }

  • Steps to enhance a datasource from SAP CRM

    Dear Forum,
    Could you please provide me with some document to enhance a datasource from SAP CRM. Is it any different from enhancement of datasource from ECC datasources,
    Thanks and regards,

    Hi,
    please look this:
    Business Intelligence How-to Guides for SAP NetWeaver 2004 [original link is broken]
    or here: How-to Guides for SAP NetWeaver Business Warehouse  7.0 [original link is broken]
    Creating a datasource for generic extraction
    regards
    CSM Reddy

  • Some question about SAP CRM consultant

    Dear all,
          I'm a center-based consultant in china.Our company is among the first batch to run SAP CRM in china in 2006.Our version is CRM 5.0.From my two years' working experience,the status of using CRM in our company is not very good.Complex UI,sychrorize problem makes our partner not willing to use this system.
         I used to do some ABAP developing then i began to transfer to MM&SD.CRM work is the recent thing.During some months' work in CRM,i found i am more interesting in CRM.
        I want to find a new job in outside consulting company in future.I want to focus on CRM.One aspect is that i'm interested in CRM.The other is that CRM is a new product and there is not so many people doing this.However,i seems getting some worries.First,SAP CRM seems not quite mature just from my understanding in 5.0 version.We  need to develope a lot not just using User-exit.I don't know whether 7.0 has changed a lot.I've seen the UI of 7.0.It seems much better.But is it means more company will choose SAP CRM 7.0 other than Siebel?In china,there seems not many CRM projects now and i don't know the status in other countries.Second,CRM may have much differences from ERP implementation because there are many process which can't be solidified.
       In one word,i'm worried about CRM consultant's future.And i hope gurus to give me the answers.THx.

    Hi Feng
    It would be very intersting to clients as well as consultants to work on SAP CRM. Career wise you have ample opportunities in the same. With the advent of various features in CRM 7.0 version, SAP is now more user friendly and is easy to implement with lot many processes covered as a part of vanila offer.
    I wish you all the best and hope this helps.
    Regds,
    Raghu

  • Integrating with SAP CRM / SAP ECC apps with SMP 3.0

    Hi All,
    I have some questions for integrating SAP ERP / SAP CRM applications with SMP 3.0, what my questions is
    1) I want integrate SAP ERP / SAP CRM apps with SMP 3.0 from scratch. (which are available in the SAP Portal)
    2) For that what are all the per-requisites, after integration is done if application want required any changes then how to update that app.
    3) Provided SAP ERP / SAP CRM applications are all available executable only, is there any source are available for all theat apps.
    Some of SAP ERP applications SAP ERP Customer Order Entry, SAP ERP Order Status, SAP ERP Quality Issue, SAP Employee Lookup and etc.. and
    Some of SAP CRM applications SAP CRM SALES, SAP CRM SERVICE MANAGER, SAP Customer and Contacts, SAP Customer Briefing, SAP Customer Financial Fact Sheet, SAP Customer Loyalty, SAP Direct Store Delivery and etc...   which are all available in the SAP Portal.
    Please help me on the same.
    Thank & Regards,
    Ranjith Lingala
    +91-9985241328

    Hi All,
    I have some questions for integrating SAP ERP / SAP CRM applications with SMP 3.0, what my questions is
    1) I want integrate SAP ERP / SAP CRM apps with SMP 3.0 from scratch. (which are available in the SAP Portal)
    2) For that what are all the per-requisites, after integration is done if application want required any changes then how to update that app.
    3) Provided SAP ERP / SAP CRM applications are all available executable only, is there any source are available for all theat apps.
    Some of SAP ERP applications SAP ERP Customer Order Entry, SAP ERP Order Status, SAP ERP Quality Issue, SAP Employee Lookup and etc.. and
    Some of SAP CRM applications SAP CRM SALES, SAP CRM SERVICE MANAGER, SAP Customer and Contacts, SAP Customer Briefing, SAP Customer Financial Fact Sheet, SAP Customer Loyalty, SAP Direct Store Delivery and etc...   which are all available in the SAP Portal.
    Please help me on the same.
    Thank & Regards,
    Ranjith Lingala
    +91-9985241328

  • Difference Between SAP R/3 and SAP CRM

    hi firends,
    Iam new to the SAP world.What is the difference between
    SAP R/3 and SAP CRM.
    What are the additional services provided by the SAP CRM?
    How it does differs from R/3?
    Can any one guide me.
    Thanks in Advance
    Ganga Prasad

    Hello,
    I think the best start is to look at the:
    - <a href="http://www.sap.com/solutions/business-suite/crm/featuresfunctions/index.epx">mySAP Customer Relationship Management: Features & Functions</a>
    - <a href="http://www.sap.com/solutions/business-suite/erp/featuresfunctions/index.epx">mySAP ERP: Features & Functions</a>
    also the help at http://help.sap.com/ could be very valuable:
    - <a href="http://help.sap.com/saphelp_crm40sr1/helpdata/en/1a/023d63b8387c4a8dfea6592f3a23a7/frameset.htm">mySAP Customer Relationship Management</a>
    - <a href="http://help.sap.com/saphelp_erp2004/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm">SAP ERP Central Component, Release 5.0, SR1</a>
    Regards
    Gregor

  • Breaking in SAP CRM area

    Hi ,
    I am into SAP BI, and looking to break into SAP CRM.  Wanted to be away from ABAP programming stuff and break into functional areas.  What is the scope of CRM functional against the CRM technical ?
    Is Domain experience necessary to break into CRM.

    Hi,
    Since you are BI you can choose to work on CRM Analytics side, you can also work on CRM technical side, it requires lot of development skills to be UI developer.
    regards,
    Murali.chatna

  • I can send but not recieve BB Message from Other country!!

    Hello,
    Last week I was in spain and I bought a Sim Card With a data plan to use my Blackberry. everything works find I come back to my country and I put my original SIM into the BB.
    Now, I´m able to use all the funtionalities but when people from Spain try to send me a BB Message the message never arrive but if I write to them everything works fine and they get the message...
    It is something like the routing system is bad... Maybe my device continue register in spain and when the people there try to write the message goes to a wrong place... beacuse I can wirte them normally.
    I already register again my device and replace the services Book...
    What do you suggest to do?  Thanks!!

    There is no restriction for BlackBerry Messenger from one country to another. It would be very very odd, as is in your case, that ONLY users from one country were restricted to messaging you, or vice versa.
    I suggest that you ask for the issue to be ESCALATED to RIM level, BlackBerry support, they should give you an escalation number and transfer the issue to trained BlackBerry support technicians. That is what you should do.
    If you don't want to do that, or won't do it based on thinking they won't be able to handle, the only two suggestions I have left is to completely delete BlackBerry Messenger (Options > Advanced > Applications) from your device, and reinstall it from www.blackberry.com/messenger
    The second suggestion would be to delete ALL of your service book entries on the device (Options > Advanced > Service Books), delete each, and then resend them to to your device by following the instructions below:
    1) Register HRT:     (OS5) Homescreen > Options > Advanced Options > Host Routing Table > Scoll to any line entry and > press the Menu key  > and then click Register Now. If you have an OS 6 device, Look at Options > Device > Advanced... etc.
    2) Resend Service Books:   KB02830 Send the service books for the BlackBerry Internet Service
    Hopefully that will get things going again for you!
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • SAP CRM  2007 - How to Access a Table from one view to another via ABAP BSP

    Hi experts, I need your help.
    I am working in SAP CRM 2007 developing code modifiying views using transaction "BSP_WD_CMPWB" and my problem is the following:
    After the "Account Identification" process I go to "Create Case" and click in "Complaints" option in the navigation bar.
    Here there are several views involved, like "General data" and "Parties involved"
    "General data" belongs to the component "BT126H_CALL" and the name of the view is "SCDetails.htm"
    "Parties involved" belongs to the component "BTPARTNER" and the name of the view is "Partner.htm"
    The "Partner.htm" view has a table that is displayed using a "<chtmlb:configTable . . . table = "//BTPartner/Table" instruction.
    I need to acces the table "//BTPartner/Table" that belongs to "Partner.htm" in the view "SCDetails.htm" and add data into it.
    How can I do that ?
    Add the data in the view "Partner.htm" itself is very simple, I am using the "EH_ONINSERT" method but I have not idea how to do that from "SCDetails.htm".
    Thanks in advance for your help.
    Best Regards.
    Exequiel.

    Hi,
    as I understand from your question you would like to add a partner to the complaint document.
    The complaint document is a 1Order document and has the root genil node named BTOrder. Using the genil relationships you have to get the BTPartnerSet and then the right Partner Relationship.
    You will find a lot of information in the newsgroup on how to do this by doing a search.
    But a quick help would be to use the sapgui transaction genil_model_browser, component set ONEORDER and using the tree structure navigate from the BTOrder root node to the Partner set.
    Best regards,
    Erika

  • Upload/Read Documents from SAP-CRM to/from SharePoint

    Hello ,
    We have a requirement to upload documents from SAP CRM to share point(select the document from the desktop and pass the data to sharepoint server) , the user should also be able to view the documents located in Sharepoint.
    There are web methods in SharePoint already developed which will allow the uploading of the documents and passing the location of the stored documents as URL back to CRM.
    Could any one please help me in the follwoing
    1. Configurations to do on SAP side for Calling the methods developed in Sharepoint.
    2. Configuration to pass the document from SAP CRM(Uploaded from desktop) to sharepoint.
    Thanks in advance

    Hi Ravi,
    We also have a similar requirement in which we need to read the document stored in an external server from SAP CRM. Can you please let me know know how you achieved this. I will know the exact path (URL) of the document. Using this is it possible to retrieve the content of the document.
    Regards,
    Sudha.

  • 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

Maybe you are looking for

  • IPod in Recovery Mode? New iTunes has made my iPods useless.

    I did a search and found others with the same problem, but no solutions. With iTunes (downloaded yesterday) neither of my iPods will work. I have a 30gb Video iPod and a third generation 20gb iPod. Both worked fine before I upgraded, now neither will

  • QuickTime required. Free download on Apple Web Site

    I have Snow Leopard, Quick Time X and Quick Time 7.6.3 installed on my system. I can not see the video on Apple Web Site and get the message: "QuickTime required. Free download" and a link to download QuckTime Why? What?

  • System Utilities Check failed while rapid installation

    Hi All, Following error is encountered while installing Oracle Applications 11.5.10 System Utilities Check command : cmd.exe /c C:\Stage\Stage11i\startCD\Disk1\rapidwiz\bin\adchkutl.cmd C:\Program Files\MKS Toolkit C:\VC C:\Stage\Stage11i\startCD\Dis

  • Mac OSX Lion download

    I have bought and downloaded OSX Lion on my macbook air, and I love iit, but I want to download it onto my iMac. Is it possible to download Lion to just one account and have Snow Leopard on another on the same computer? Thanks!

  • Transfering IPhoto Libraries

    Hi how do i transfer an iphoto library from an old mac with iphoto 08 to a new mac with iphoto 11.  I tried networking the two macs and dragging the iphoto library but it always says that there isn't enough space.  I checked though and there is more