In UI after selecting one of business roles like IC_AGENT, then its again

Hi All,
have u ever faced issue that after login to UI then after selecting one of business roles like IC_AGENT, then its again coming back to same page,
i.e. ....instead going to Workcenter page of IC_AGENT its in Business role selection page itself, any Idea?
recently in production they increased Application servers, so when it get dispatched from Dispatcher to one of server,
at Application server level its may get redirected to same page instead go ahead?
Best Regards,
Vijmek

Hi Vijmek,
This could be a case of multiple logon condition. Please check whether the following are satisfied (taken from one of the pages in SCN, lost the link):
1. login/accept_sso2_ticket must be set to 1 for Dflt/Profile/Current 
2. login/create_sso2_ticket must be set to 2  for Dflt/Profile/Current
3. Check user type in transaction SU01 -> Logon data tab, check User Type. Usually, it should be "DIALOG". If it is other types, like "SERVICE", it also will cause multiple logon requirement.
4. For warnings during login, check service crm_ui_start for CRM 7.0 and crm_ui_frame for CRM 6.0 (SICF). Open this node and click on tab Error Pages -> scroll down and click on the 'Configuration' button -> under Actions During Logon section, check Do Not Display Warnings.
Regards,
Shiromani

Similar Messages

  • Power View crash after selecting one bar

    After the December update, 15.0.4675.1002, my power
    view sheets crash (they disappear) after selecting one bar (or column) in a
    graphic. 32 bits version in Spanish language.<o:p></o:p>
    Any suggestion or workaround?
    Best Regards.<o:p></o:p>

    You may not be the only one Matt Allington at Excelerator reported about this in his
    blog post (which seems to have been removed?!). You may be able to view a cached copy of his post
    here. At the bottom of the post it says:
    "Some users have reported that the O365 Update has broken previously working Power View reports. Given O365 updates are automatic, I guess this will need to be fixed with some priority."
    Regards, Avi
    www.powerpivotpro.com
    Wiki:How to ask a Power Pivot Question to get a prompt, accurate and helpful response

  • Fetching more than one row from a table after selecting one value from the dropdown

    Hi Experts,
    How can we fetch more than one row from a table after selecting one value from the dropdown.
    The scenario is that I have some entries in the dropdown like below
      A               B               C        
    11256          VID          911256  
    11256          VID          811256
    11256          SONY      11256
    The 'B' values are there in the dropdown. I have removed the duplicate entries from the dropdown so now the dropdownlist has only two values.for eg- 'VID' and'SONY'. So now, after selecting 'VID' from the dropdown I should get all the 'C' values. After this the "C' values are to be passed to other methods to fetch some data from other tables.
    Request your help on this.
    Thanks,
    Preeetam Narkhede.

    Hi Preetam!
    I hope I understand your request proberly, since this is more about Java and less about WebDynpro, but if I'm wrong, just follow up on this.
    Supposed you have some collection of your original table data stored in variable "origin". Populate a Hashtable using the values from column "B" (let's assume it's Strings) as keys and an ArrayList of whatever "C" is (let's assume String instances, too) as value (there's a lot of ways to iterate over whatever your datasource is, and since we do not know what your datasource is, maybe you'll have to follow another approach to get b and c vaues,but the principle should remain the same):
    // Declare a private variable for your Data at the appropriate place in your code
    private Hashtable temp = new Hashtable<String, ArrayList<String>>();
    // Then, in the method you use to retrieve backend data and populate the dropdown,
    // populate the Hashtable, too
    Iterator<TableData> a = origin.iterator();
    while (a.hasNext()) {
         TableData current = a.next();
         String b = current.getB();
         String c = current.getC();
         ArrayList<String> values = this.temp.get(b);
         if (values == null) {
              values = new ArrayList<String>();
         values.add(c);
         this.temp.put(b, values);
    So after this, you'll have a Hashtable with the B values als keys and collections of C values of this particular B as value:
    VID --> (911256, 811256)
    SONY --> (11256)
    Use
    temp.keySet()
    to populate your dropdown.
    After the user selects an entry from the dropdown (let's say stored in variable selectedB), you will be able to retrieve the collection of c's from your Hashtable
    // In the metod you handle the selection event with, get the c value collection
    //and use it to select from your other table
    ArrayList<String> selectedCs = this.temp.get(selectedB);
    // now iterate over the selectedCs items and use each of these
    //to continue retrieving whatever data you need...
    for (String oneC : selectedCs) {
         // Select Data from backend using oneC in the where-Clause or whatever...
    Hope that helps
    Michael

  • Friends... i have been using an iphone 3(4.1/8B117), i jailbroke my iphone and then mistakenly deleted some of the cydia files after which my iphone started rebooting,and since then its restarting againg and again..please help..i'll be glad !!!!

    Friends... i have been using an iphone 3(4.1/8B117), i jailbroke my iphone and then mistakenly deleted some of the cydia system files after which my iphone started rebooting,and since then its restarting again and again..only the apple logo appears in the black screen and my fone restarts again... guys please help..i'll be glad !!!!

    Under the Terms of Use of this forum it is prohibited to discuss jail breaking. By jail breaking your iPhone you void any warranty you may have, forfeit any support from this forum, leave your iPhone vulnerable to malware and risk bricking your iPhone should you attempt future software updates or restoring your iPhone.

  • No arabic keyboard on al mawrid app even after selecting one. £30  app now useless!

    Use the Al Mawrid Dictionary app to help me study. For some reason I cannot select the arabic keyboard as there is now no globe symbol on the keyboard. all other apps still have this symbol. Have tried resetting and reloading the app but no joy.£30 app so very frustrated.
    Cheers

    daleman1980 wrote:
    Have tried resetting and reloading the app but no joy.£30 app so very frustrated.
    Have you tried contacting the people who make the app?  They are the ones who are most likely to be able to solve any problems it has (and probably the only people who can).
    If you select the Arabic keyboard for another app like Notes before starting this one, does the keyboard appear in Arabic as you need it to?

  • Selecting one cursor at a time and then reading its value

    I am a novice LabView user. I am trying to develop a program in which I have to select portions of a waveform and delete the outliers.  The problems I run into is selecting cursors at a time and then reading its value. I was using Active Cursor. Ideally what I need is to read read values of the first two cursors, cursor0 and cursor1 and remove outliers in the region and then move to region between cursor1 and cursor2 and so on. Is there a way to control which cursors are active, read its value and then move to the next set.

    Hi binc,
    I have attached a VI that should remove outliers. This may not be the best way to do it, but it is one possibility.
    Thanks,
    Paul B.
    Motion Control R&D
    Attachments:
    Remove_outliers.vi ‏20 KB

  • Missing a few songs off of every album on my iphone 5. The songs info still displays but is greyed out and will not play. after selecting it on my phone it will then sync in itunes.

    I could go through all the albums on my phone and tap each song then re-sync but that would take forever. is there an easy solution to this. It happened after i updated Itunes to 11.1.1. All the music info is there on my iphone 5 but the music is gone. after I try to play it it turns grey and a square with a circle surrounding it appears next to the song title. When I next sync my phone that song or songs I tried to play will finally sync with my phone. How do I fix this?

    Ok after reading a few posts I relalise you can not down grade os on iphones and never have been able to.
    But how come I can't factory reset my phone properly? sure factory reset will mean it will reset the phone and its os to the os that it built with with was ios5?

  • Firefox keeps wanting to start in Safe Mode and it says I can make some changes permanent such as "Disable all add-ons" and others. When I select one of the options I can then "Make Changes and Restart".

    When I make my selection it can then proceed to use Firefox. However the next time I open Firefox I get the same problem.
    I'm using Windows 7. I have used Firefox for many years with Windows XP and never had this problem. Is there a solution?

    See [[Firefox is stuck in Safe Mode]]
    "Reset all user preferences to Firefox defaults" on the [[Safe mode]] start window.
    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the "Find Updates" button (in Firefox 4: right-click the extension -> "Find Updates") to do a compatibility check.

  • I was trying to update my ipad mini from 7.0.4 to 7.1.1. after updating it went for restarting and from then its showing only the apple logo but nothing else. i can't restart my ipad. i tried to restore from my back up. its not working.......what should i

    help me out

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.

  • Is it possible to get into the IC using the SALESPRO business role?

    Is it possible to get into the Interaction centre when using the SALESPRO business role?.
    If so, how is this done.
    I know using specific IC* business roles, like IC_AGENT, you are thrown straight into the IC, but I can't see how you can get into it via the SALESPRO business role, which I assume you should be able to do.
    Jason

    Please check
    Using Kerberos Authentication on SAP NetWeaver AS Java - User Authentication and Single Sign-On - SAP Library (NW7.3)
    Using Kerberos Authentication for Single Sign-On - User Authentication and Single Sign-On - SAP Library (NW7.0)

  • Blank Screen after selecting a role within the new WebClient User Interface

    Hi,
    I have another Problem with the new UI.
    I did all steps as described within the Best Practice Guide for the new Web Client (C04). I used this guide to set up our CRM 2007 System.
    Unfortunately no matter what I do after selecting the appropriate role after logging on to the system I only get a blank screen and nothin else happens. Even changes to the navigation frame have no effect.
    If I do not assign a business role I get at least this error. But after doing this I allways got a blank screen no matter what I change in customizing.
    Does anyone have any clues where the error might lie?
    Best Regards
    Christian

    Hi Christian,
    Could you please share me your experience how you resolved this issue?
    We are at the clients place facing the same problem. After logging in it is asking to select business roles like salespro,marketpro....etc...but after selecting this role we are getting blank white screen in the browser with  URl- http://*******.**.com:8030/sap/bc/bsp/sap/crm_ui_frame/default.htm?sap-client=150&sap-sessioncmd=open
    We have followed the latest 2007 Best Practice where we have assigned the roles to user like : SAP_CRM_UIIU_FRAMEWORK
    SAP_CRM_OR_ADMIN
    SAP_CRM_OR_USER
    BP_POWERUSER
    In best practice 5.2 this role was assigned through Org Model where as in 2007 first it guides us to get the WebClient and then asking us to create Org Model.
    you had mentioned that you got rectified through  local server settings on OS level. Can you please help in explaining what exactly you did to rectify the DNS setting????
    Any other solution most welcome
    Regds...Arup

  • Copied SALESPRO business role in CRMC_UI_PROFILE, but odd results show.

    I have created an new role (Z_SALESPRO) using transaction CRMC_UI_PROFILE. The copied role had all objects copied and I can see that it has the Nav Bar profile of 'SLS-PRO', which is the same as the role 'SALESPRO', being the one that I copied from.
    When I log in using the WebUI I can choose the new Z role, but it does not display the 'Create' section in the Nav Bar. This is section that displays next to the 'Recent Items' section of the Nav Bar and has option like 'Appointment, Interaction log, task,E-mail. contact, Lead,Opportunity and Quotation' shown within the boxed area.
    If I use the SALESPRO role when logging into the WebUI I do get to see the 'Create' section, and yet the role and Nav Bar settings are IDENTICAL.
    Could this be some kind of authorisation issue, or is this problem down to something else?.
    Jason

    1. go to crm>ui framework>business role>efine business role
    2. select your Z business role
    3 in the left panel choose option "Adjust direct link groups"
    4. check if they are marked as visible (sometimes when coping business roles, this isnot copied)
    5. next select direct link group and click in left panel on sub node "Adjust direct links"
    6. check also for this level if they are marked as visible
    reagrds.

  • CRM 2007 UI: Blank screen after selecting the profile

    Dear all,
    we installed CRM 2007 UI with the newest components.
    After selecting one of the standard roles just a blank screen appears.
    We checked all the notes and questions here:
    - The profile parameter in RZ11 are set
    - The services according to the notes are active
    - We set browser security to low
    - All relevant ports are open
    - User role and profile is assigned to organizational unit
    Still nothing. I know that others had this problem?
    Have you come up with a solution?
    Thanks
    Andreas

    Hi, thanks for your replies,
    Our SP is uptodate,
    Note 1120400 is obsolete we have CRM 6 SP2 and our patch level is 15.
    Besides we have a delta between tables entries:
    USOBX     => 103.391
    USOBX_C     => 103.389
    and
    USOBT     => 43.785
    USOBT_C     => 43.769
    Do these tables have the same number of entries in your system? What could be the impact of this delta?
    Thanks,
    Aldo

  • CRM 7.0 How to create Business role & generate

    Hi Team,
    Can you please let me know some breif idea about CRM 7.0 security guide.
    How to created Business role is this part of functional activity?
    Whats the role of Technical colleagues BASIS guys in CRM 7.0 security .
    Please help me to get some document regarding business role creation , generation , assignment & authorization checks in CRM 7.0.
    Thanks & Regards,
    Vyash Mishra

    Hello Viyash
    I will add the most important information for generation of business roles and assignment of authorizations to users.
    You must first create the PFCG roles. PFCG role is built based on the Business Role.
    Please see documentation in : SPRO
    SAP Implementation Guide =>  Customer Relationship Management
    UI Framework  > Business roles > Define Authorization Role
    Then the PFCG role can be assigned to the business role in 
    SAP Implementation Guide =>  Customer Relationship Management
    UI Framework  > Business roles > Define Business role
    Finally you must assign business roles to Organizations or positions in organizations in
    SAP Implementation Guide =>  Customer Relationship Management
    UI Framework  > Business roles > Define Organizational Assignment
    The users that are assigned to such organizations / positions will be therefore linked to the business role.
    With the previous steps the users will have the authorizations that are assigned to the PFCG profile that is linked to their business role.
    Business roles are the main way to configure authorizations for users in CRM but you have more options that give you flexibility.Each business role has assigned one PFCG role, but the relationship between business role and PFCG role is not strict. You can even assign a dummy PFCG role to a certain business role in business role customizing and then go to transaction PFCG and assign other PFCG role(s) to the users that are assigned to that business role.
    I would say that the previous tasks must be performed by the basis team but in cooperation with the functional team
    Best Regards
    Luis Rivera

  • Business Role Assignment

    Hello All
    Where do we assign Business Roles to Org Unit / Position. Can somebody please provide the navigation.
    I am in training and actually I want to get the business role created by me displayed when I log to CRM Web Client. How to do ...
    Thx
    DM

    Hi DM,
    by using tnrx PPOMA_CRM, Click on the Position which you have created. And then click 'GOTO --> Details Objects' on the top of the GUI page.
    Select the tab Business Role and then create a new infotype.
    Choose your Business Role in the Field 'Business Role' and save.
    Now you have assigned your Role with your org.
    Let me know in case you need any more specific explanation.
    VS
    Edited by: VS on Aug 7, 2009 2:42 PM
    Edited by: VS on Aug 7, 2009 3:06 PM

Maybe you are looking for

  • Satellite L500-126: Win7 upgrade -can I re-activateit after new installation?

    I successfully upgraded Windows 7 from my OEM Vista yesterday. What if in the future, I need to reinstall the whole system? Can I re-activate Win 7 after the new installation? PS. My OEM Vista is 64 bit version and my win 7 is the ultimate 64 bit upg

  • Catalog Search doesn't work for Catalog type BI EE

    Hi, All! Just noticed an issue with catalog search functionality in BI Publisher application: If BI Publisher uses BI EE catalog type, then search never returns results, always says nothing was found. But when i change catalog type to Filesystem and

  • Smart watch not working

    hiya i got a u8 u watch (smarth watch) i cant use jailbreak beacuse it is upto date and i cant find a app in the store am i missing it or is their a app somewhere ? i need to sync them together, i have pared them with bluetooth and i can take calls a

  • Sound Balster live! - What driv

    Hey, my soundcard is a SB Li've! (WDM) but on the wevsite there is no drivers for a card with that name. So what driver should i download instead? Cheers

  • Error message Mountain Lion not compatible with computer? MacBook Pro 10.6.8

    When I got to purchase Mountain Lion in the App Store it says Mountain Lion is not compatible with this computer. I'm on a MacBook Pro with 10.6.8 installed on it. Help???