Assign biz role through CRM -SU01 and display page at portal

HI, SDN Fellows.
I am creating some custom portal roles at portal and mapped it to the custom business roles for some PCUI screens at crmc_blueprint_c --> "Assign Portal Role to Single Role" ("Assignment of CRM Role to Portal Role").
Currently, our portal UME data source is mapped to CRM system.
Right now, I have to assign both the CRM Role through SU01(to have access the CRM Object Method at CRM-PCUI application) and Portal Role through User Admin of WAS/portal (to access/display the PCUI iView in the portal).
My goal is to just assign role through CRM-SU01 and achieve the same output as I described above. Meaning can I just do the role assignment for the CRM role (through SU01) and able to access to the CRM-PCUI application through portal (able to see the pcui screen)?
Thanks,
Kent

What I want is when I assign a role (Sales Manager) said user A in CRM system, userA should able to see the related workset/page/iviews in the portal (without the need to assign the same: Sales Manager role in portal).
Now, what I have to do is assign the related objects into a single/composite roles in CRM (for backend data access), then I have to assign a portal role (through User Admin of Portal, so that they can see the portal content),
is that a way we can do it in one step?
Thanks,
Kent

Similar Messages

  • Assigning the role to user - not getting the page and tabs showing.

    I have a role with a page that contains 2 demo iviews.  They preview ok. but when I assign the role to user, it does not come up.  Could some one send me a help document for SP2?

    I got it.  Need to set Entry Point - Yes.

  • SAP HANA Cloud Portal : Make Widget For Java Application and Display in HANA Portal

    Hi Experts,
    I have created one Java Application using eclipse luno.
    I have successfully deploy on my hanatrial version and able to see the Started Application under the Java Application.
    Can anyone have idea how to use this application in HANA portal and display/ run  this Java Application in SAP HANA Cloud Portal Website.
    I want to know is it possible or not ? and yes then how its possible ?
    What are the steps require to make Widget for this java apps and publish on portal.
    Many Thanks,
    Mithun 

    Hi Mithun,
    yes it's possible and relatively easy - follow Chapter 7 of the guide -
    ESPM WebShop Extension
    Regards
      Kenny

  • Getting portal hostname and displaying on the portal masthead.

    Dear SCN
    I have some requirement, where in my portal masthead I need to display some string based on the portal hosname.
    eg, if my hostname is portaldev.abc.com then in my masthead I need to display a string portal development system.
    I  am new to the portal development, can somebody pls suggest me in getting the portal hostname and pls give me some code snippet on this. appreciate your help , many thanks.
    Thanks
    RAD

    The following portal component could be used to replace your masthead iView . Basically it makes a small table which has the normal masthead plus a bit of code that works out which host you're on and puts out a message,
    Make an iView from it and add it to your framework page in place of the regular masthead and you'll then get the appropriate information.
    public class WhoAmI extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
              IPortalComponentProfile profile = request.getComponentContext().getProfile();
              StringTokenizer st = new StringTokenizer(System.getProperty("SAPMYNAME"),"_");
              String message1 = "You are on the ";
              String host = "development";
              for (int i=0;st.hasMoreElements();i++) {
                   String s = st.nextElement().toString();
                   if (i==0) {
                        if (s.equals("abcdef")) host = "production";
              String message2 = " server";
              response.write("<div id=\"WhoAmIArea\"><table width=\"100%\"><tr>");
              response.write("<td align=\"left\" width=\"90%\"><iframe width=\"100%\" height=\"38\" src=\"/irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.masthead.default\"></iframe></td>");
              response.write("<td  align=\"right\" width=\"10%\">");
              response.write("<span class=\"urTxtStd\">"+message1+host+message2+"</span>");
              response.write("</td></tr></table></div>");

  • URL is not displayed in Work flow task of CRM UI and displayed in SOST/SWIA Tcode

    Hi All,
    I am trying to display the dynamic URL with short link in work flow task, the same got properly displayed in SOST/swia Tcode but not displayed in CRM UI under work list of user, may I know how to solve it?
    code in work flow task under description is below :
    /*   <A HREF= www.google.com>Portal UWL</A>
    Thanks,
    VijHyd

    Hi
    You need to check with your CRM UI Consultant if HTML Tags are read and rendered.
    Screens in SOST are rendered using HTML and hence you can see the links. You may face the same issue if you send to outlook and if outlook settings do not support HTML.... whereas it may work on Yahoo or Gmail as the web page will render using HTML.
    So, check with your UI colleagues as to how HTML tags can be displayed correctly.
    Regards
    Modak

  • URL is not displayed in Work flow task of CRM UI and displayed in SOST Tcode

    Hi All,
    I am trying to display the dynamic URL with short link in work flow task, the same got properly displayed in SOST Tcode and mail but not displayed in CRM UI, may I know the reason behind it?
    code in work flow task under description is below :
    /*   <A HREF= "&URL&">Portal UWL</A>
    Thanks,
    VijHyd

    Hi Vij,
    You can use the below sample code to make a hyperlink for text,
    lv_url type string.
    lv_url = 'you can give url here'
    <thtmlb:link
                      id        = "test"
                     reference = " <%= lv_url %> "
                     tooltip   = "Download template file"
                     text      = "Please click on this link to download the Excel XML template" />

  • Passing parameters from webdynpro to rfc and displaying pdf in portal

    Hi,
    I am creating a webdynpro application where in I am using the following code for catching the current user who has logged into the portal.
    try{
    IWDClientUser user = WDClientUser.getCurrentUser();
    if(user.isAnonymousUser()){
    //User is anonymous .. do something...
    }else{
    //user is authenticated..do something
    }catch(WDUMException e){
    //do something...
    I am calling a rfc, how do I pass the username to the rfc?
    This rfc will retrieve some data from R/3 and covert the data into pdf format.
    How do I display this pdf document in the portal?
    Thanks in advance,
    Jayesh

    Hi Jayesh,
    The rfc you are using should have a imput parameter that takes the user id as a parameter. When you import the rfc in webdynpro you will get an input class for the rfc. The parameter will either be in the input class itself or in a seperate structure which should also have a class separetely.
    For example the rfc name is GET_USER_DETAILS
    The input class will something like
    INPUT_GET_USER_DETAILS
    There will also be an ouput class like
    OUTPUT_GET_USER_DETAILS
    If there is a structure there will be class for that structure like
    STUSER
    If the parameter is in the INPUT CLASS then
    after you initialize the class you can assign it to the input object
    For Example
    INPUT_GET_USER_DETAILS inp = new INPUT_GET_USER_DETAILS
    inp.setUserID(userid)
    If it is in the structure then
    STUSER st = new STUSER
    st.setUserID(userid)
    Then assign the structure object to the input object
    inp.setStUser(st)
    About the PDF document.
    When you create a PDF form you will create a label or an text field in the form.
    The label or the text field will be mapped to the context of the view.
    You can assign the username to the context variable which will be reflected in the pdf document.
    Hope this helps
    Regards
    Prakash

  • How to go about building a app that searches for and displays pages from Google.

    I was wondering how i would go about building an app that takes a users input such as a sentence (not a URL) and then searches  for their input on Google. This app would then have to display a selected page automatically on the UIWebView.
    My existing code in my viewcontroller.m is as follows:
    - (void)viewDidLoad
    [super viewDidLoad]; [webView loadRequest: [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
    I now want my app to use a users input (a word or a sentence) and search Google with that input but do it in the background then display the first search result in the UIWebView, what code would i need?
    Thanks

    Sorry, I cant view the App Store Review Guidelines
    https://developer.apple.com/appstore/resources/approval/guidelines.htmllink, maybe its because i dont have a developers account yet i will be getting one when i am ready to launch my app on the app store.

  • Measuring and displaying page load time

    Is there a way to display the time that a page took to generate at the bottom of each page? I realise it will be missing a milisecond or so that it takes to render the footer, but it would still be a good indicator.
    Maybe there is a global variable storing the exact time of the request, and I could subtract that from the time of rendering the footer. I'll poke around to see what I can find, any other ideas?

    I'd like it to display for the end user below the footer of every page. We already have a standard page 0 footer procedure used across all our applications. As such it would make my life very easy if I could access some magic variable that knows when Apex started processing the page.
    Failing that I've just gone and added an application item and corresponding before header computation to store a value for comparing in the footer. Trouble is that this needs to be added to each and every application in order to support the feature.

  • Book on Weblogic Portal and beehive page flow portal integration

    I request oracle press to write a book on Weblogic Portal as well as Creating pageflow based portlets with weblogic portal and workshop.
    The old edocs.bea.com documentation sucks and does not meet the oracle press standard.
    Thanks
    Biren

    The Beta 9.2 Team,
    9.2 features sounds good and interesting. We are using BEA's Content management system(8.1) extensively.
    Our requirement is to create a portlet for Content Owner/Users to create HTML documents with images and upload it into BEA Repository. Upon uploading, Content Admin needs to be notified through email and they will either approve or reject the document. The content status again needs to be notified to the content owner/user via email.
    1. As known to everyone 8.1 doesn't have WYSIWYG editor and is included in 9.2. Can i reuse the 9.2 WYSIWYG functionality into 8.1 as a portlet??
    2. The following thread(http://forums.bea.com/bea/message.jspa?messageID=400001479&tstart=0) says
    - workflow ==> We have limited workflow support. We plan to enhance this in our next major release.
    Does this limited workflow support include email notification?
    Any inputs would be greatly appreciated!!
    Thanks,
    -Nach.

  • Assigning Role to a Task and Resource to a Task

    Hello Friends,
    In cProjects, I go to the below tab Projects > Resources > Tasks.
    Here I do an assignment of Role to a Task and assignment of Resource to a Task.
    Could you please tell me as to where does this information gets stored.(ie which tables).
    And could you pleae tell me as to how do we differentiate between the Task, Roles and Resources in the internal table created.
    Because the internal table consists of Task Guid, Participant Guid and Entity Guid.
    Thanks,
    Salil

    I can tell you the table where the the role assignments get stored . It is
    DPR_ENTITY_LINK.

  • Assign Application Roles

    Hi All,
    I am new to SOA and I want to know how to assign application roles (Not global roles) through EM Console. As, I am unable to assign the roles through  BPM workspace. I can go to the administrator tab and assign the roles to me. But in the task list I am unable to get the task.
    Thanks and Regards,
    Ram

    Hi Ram,
    Refer this doc:
    http://docs.oracle.com/cd/E24628_01/doc.121/e36415/sec_features.htm#CJADDBGA
    HTH
    Mani

  • Role concept - CRM - EP

    Hi All,
       I imported the business package for CRM in enterprise portal.rightnow i am dealing with security aspects. I have some conceptual doubts related to role concepts with this Business package.
    I have a role for sales manager in business package, com.sap.pct.crm.SalesManager,which have some iviews and external services. from the documentation, i came to know that this role corresponds to "SAP_PCC_SALES_MANAGER" in BW system and  "SAP_PCC_SALES_MANAGER" in CRM system.
    I just want to know, which strategy, I should use for Role, user to role assignments in my scenario i.e.  either "EP as leading system" or "ABAP system as leading system"
      I was thinking of having ABAP system as lead. i.e. getting the role menu and user to role assignments from CRM system and BW system and adding this to the delta link of portal role that came with business package, so that i could get the user assignements from both the CRM and BW systems. but later i came to know that this role, SAP_PCC_SALES_MANAGER is portal specific role in BW and CRM, so i was worried of how to get the user assignments of the original sales manager role in crm system and  bw system to the portal.
    right now, i am totally confused and have no ideas. I thought that some one could help me in this regard with thier experience.
    Thank you

    HI
    please ensure that user is present with same userid as that in portal with both BW and CRM system and then use com.sap.appintegrator.portal component  for creating transactions of any type ussing template iview as well get user autorization for user for both the roles in BW.
    hope this helps
    With Regards
    Subrato kundu

  • Assigning the role to the group using MAXL

    Hi,
    We are using Essbase 11.1.1.3 and Hyperion Financial Reports 11.1.13.
    I have created a role called "Standard_user_HFR" in shared Services and assgined Explorer and viewer to the role and i need to assign the role to the groups and i have around 1600 groups to which i have assign the role. Is there any Maxl Script to assign the role to the groups. As of now i am manually adding the role to the group.
    Regards,
    VJ

    Also look into Aggregated Roles to possibly reduce the number of Groups.
    Oracle states:
    Aggregated roles, also known as custom roles, aggregate multiple predefined application roles. An aggregated role can contain other aggregated roles. For example, a Shared Services Administrator or Provisioning Manager can create an aggregated role that combines the Planner and View User roles of a Oracle Hyperion Planning, Fusion Edition, application. Aggregating roles can simplify the administration of applications that have several granular roles. Global Shared Services roles can be included in aggregated roles. You cannot create an aggregated role that spans applications or products.
    Thank you,
    Todd Rebner

  • DATA SYN BETWEEN SU01 AND BP

    Dear Experts,
    Is there any report in SRM to update the email address which was changed in SU01 to BP of the user, as it is no more possible to update due to assignment of authorization group in SU01 and also it is involved in mass update of several users.
    Thanks anRegards,
    Sathya Kumar.
    Edited by: KOPPISETTI VENKATA SATHYA KUMAR on Nov 18, 2008 9:54 PM

    Hi
    HRALXSYNC - sysnchronise organisation unit and user.
    if it not you can test this function module BBP_MP_CHANGE_CONTACT_PERSON
    regards
    Muthu

Maybe you are looking for

  • Oracle view in OBIEE

    Hi Experts , We have Oracle View . There is no primary key is defined in this view. I need to join this view with some table in OBIEE physical layer. 1. I have created one opaque view with query SELECT 'YES' PRESERVE FROM DUAL (Dummy table) and make

  • IPod says to use iTunes to restore but keeps going into disk mode.

    So whenever I reset my iPod, a screen pops up that says to use iTunes to restore it but when I plug the iPod into the computer, it goes into disk mode and iTunes doesn't read it.

  • Email Script

    Hi, I'd like to use the components in the Director Library to make an e-mail form (your name, your e-mail address, your friends e-mail address and the message). Does anyone know a Script that can be attached to the Submit button that will actually se

  • N97 Charging Battery Problem

    Had my N97 two days, first time i gave my battery a full charge with the mains charger it worked fine but now when ever i connect the mains charger my N97 wont charge it just keeps flashing with the message: unplug charger from power supply to save e

  • Embedding 3D text in Photoshop CS6?

    I was wanting to create an image of text embedded in a metal block. Is there any way to use the 3D tools in Photoshop CS6 to create this kind of effect ? I've only been able to extrude text 'up' ( if you know what I mean ! ) rather than down into a n