System Logon : "Via popup" displayed

Hi,
I am using system logon for my BSP application. The prodiuction landscape has a central instance and some sub instances. The problem is, when the application is launched, the login field and password field are displayed correctly. When the user ID and Password is typed and Logon is Hit ..the fields change to "Via popup".
Is this a problem with SSO2 not configured correctly on Production Box. But why it loads correctly first time the application is called ?
It works fine with Dev and QA Boxes.
Thanks

Hello SAP User,
we have the same problem as you described, but only on our production instance. We compared the server profiles of each instance, but we couldn´t fix the problem. What was reason why sso didn´t work on your production instance?
I would be very pleased If you let me know, how you fixed the problem.
Regards
Sebastian

Similar Messages

  • Custom BSP Logon Page, Via PopUp

    Hello everybody,
    i want to use a logon-page for a BSP application (NW2004-System). Following the various threads/blogs around, i have edited the settings for my BSP application via transaction SICF. Now when i call the URL in my browser i do get the logon-page displayed, but the fields user and password are disabled/readonly and are showing the text "Via Popup". When i click on the button "Log in" i am getting the browser login-popup again.
    Any idea how to get rid of that?
    regards,
    Markus

    I hope you wanted to have logon page instead of pop-up as shown in your url. Revert back all your changes.
    Do the below settings..
    1. Goto SICF & your application node
    2. In Error Page Tab & In Logon Errors Tab, select the Re-direct URL & place the below URL.
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>&BspHandlerClass=CL_BSP_LOGIN_HANDLER_HTMLB
    3. save & test your BSP.
    Also seems like SSO (Single sign on ) is not active in your system,you can activate as follows:
    Enabling sso via the following profile parameters should help:
    login/accept_sso2_ticket = 1
    login/create_sso2_ticket = 2
    Check your SSO cookies..
    To test SSO, execute the BSP Application SYSTEM & Page sso2test.htm. Follow the steps which is mentioned in output..
    Let me know if you have any issues.
    <i>*Reward each useful answer</i>
    Raja T

  • SAP System Logon selection shows up blank in Crystal Reports

    Hi there,
    I've done the following so many times, in the following order, without running into any issues:
    1. Install SAP Front End
    2. Install Business Objects Enterprise 3.1
    3. Install Business Objects Explorer 3.1 SP1 (Polestar 3.1)
    4. Install Crystal Reports 2008 SP1
    5. Crystal Reports Viewer 2008
    6. Install Xcelsius Enterprise 2008 SP2
    7. Install Live Office 3.1
    8. Install SAP Integration Kit 3.1 (Custom-->Complete installation)
    However, this time around  I've run into an issue which I'm trying to resolve, but it has been a nightmare. When I try to access "SAP Table, Cluster, or Function" from File menu>New>Standard Report>Create New Connection>SAP Table, Cluster, or Function, I see the "Available SAP Systems" section blank on the "SAP System Logon" dialog box.
    However, this dialog box shows all the connections strings when I access it via the SAP menu or toolbar in Crystal Reports.
    To fix this issue I've uninstalled SAP IK, CR Viewer and Crystal Report and reinstalled it, but the problem persists. I am wondering if you have ever come across this before and if you could please give me some tips to resolve this.
    Thanks a lot,
    Gaurav

    Hi
    please do the following:
    1. Define an environment variable (user or system) with the name SAPLOGON_INI_FILE . This variable should contain the path to your saplogon.ini file including the file name eg. if the saplogon.ini resides in the folder  c:\windows the variable should contain the following value c:\windows\saplogon.ini
    2. Open your saplogon.ini file using Notepad and go to File->Save as. Choose All Files in the field Save as type and DO NOT change the name of the file. In the field Encoding make sure that UTF-8 is selected.
    Regards,
    Stratos

  • System Tray Icon Not Displaying - Depending on Launch Style

    Good Morning-
    I'm using the java.awt.SystemTray and TrayIcon classes from 1.6 to create a system tray that acts essentially as a temperature monitor. It's very little code. When I test it from Eclipse, it works great. When I double-click the .jar on my workstation, it works great. When I launch it with java -jar temp.jar, it works great. When I launch it with javaw -jar temp.jar, I get no tray icon, but javaw sits in memory doing something.
    When my users launch it with a .vbs that calls java -jar temp.jar and hides the resulting terminal window, they get no tray icon. When they call java -jar temp.jar, they get the tray icon... and the console window. When they call javaw -jar temp.jar, they get no tray icon. Any of these practices yields a java process sitting in memory.
    When my users double-click the .jar file, they're asked to chose what to open it with. If they chose Java's executable, it says it doesn't know what to do (it isn't called with -jar). Windows doesn't see their jar files as executables like on mine.
    So I have two issues. The result is the system tray icon won't display on users' computers without a window to accompany it. Any idea why? Is it potentially a bug?
    Some code:
    public class SysTrayController {
         // The actual icon that will be updated
         private TrayIcon          icon;
         // The last-set temperature
         private int                    temp;
         // The box that may or may not appear
         private AlertBox          box;
         // No Data received (yet?)
         public final static int NO_DATA = 0;
         // High temperature threshold.  TODO:  Make this user-configurable.
         private final static int     HIGH_TEMP = 80;
         // ... you guess
         private final static String DEFAULT_ICON =  "icons/default.png";
          * Initiate everything.  Grab the system tray, plop the icon in it, and
          * get the icon all set up and ready to go with the default image.
         public SysTrayController() {
              box = new AlertBox();
              SystemTray tray = SystemTray.getSystemTray();
              Image image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(DEFAULT_ICON));
              PopupMenu popup = new PopupMenu();
              MenuItem exit = new MenuItem("Exit");
              exit.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.exit(0);
              popup.add(exit);
              icon = new TrayIcon(image, "Temperature Monitor", popup);
              // On double-click, display the alert box
              icon.addMouseListener(new MouseAdapter() {
                   public void mouseClicked(MouseEvent e) {
                        if (e.getClickCount() >= 2) {
                             box.setVisible(true);
              try {
                   tray.add(icon);
              } catch (AWTException e) {
                   System.out.println(e);
          * Set the temperature.
          * Call setIcon() to set the icon to the right number, update the alert
          * box, and if it's time to, display the alert box.
         public void setTemp(int temp) {
              if (this.temp != temp) {
                   this.temp = temp;
                   setIcon(temp);
                   icon.setToolTip(temp + " degrees");
                   box.setAlertMessage("Temperature in the Server Room is at " + temp + " degrees!");
                   box.setIcon(icon.getImage());
                   if (temp > HIGH_TEMP) {
                        box.setVisible(true);
                        icon.displayMessage("Alert", "Temperature in the server room is at " + temp + " degrees!", TrayIcon.MessageType.WARNING);
                   } else if (temp != NO_DATA){
                        box.setVisible(false);
          * Figure out which icon to set the tray icon to, scale it down, and
          * set it.
         public void setIcon(int number) {
              Image image = null;
              if (number == NO_DATA) {
                   image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(DEFAULT_ICON));
              } else if (number >= 60 && number < 100 ) {
                   String iconString = "icons/temp";
                   iconString += number;
                   iconString += ".png";
                   try {
                        image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(iconString));
                   } catch (NullPointerException e) {
                        image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(DEFAULT_ICON));
              image = image.getScaledInstance(16, 16, Image.SCALE_SMOOTH);
              icon.setImage(image);
          * Give back the current temperature.
         public int getTemp() {
              return temp;
    }The main() that calls it looks like this:
         public static void main(String[] args) {
              SysTrayController controller = new SysTrayController();
              Thermometer temp = new Thermometer(HOSTNAME);
              while (true) {
                   controller.setTemp(temp.getTemp());
                   try {
                        if (controller.getTemp() == SysTrayController.NO_DATA) {
                             Thread.sleep(1000);
                        } else {
                             Thread.sleep(SLEEPTIME);
                   } catch (Exception e) {
                        System.out.println(e);
         }

    From the code above, this line actually worked for me:
    image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(iconString));Just place the image inside the source folder and change the iconString thing...
    For example mine looked like this
    image = Toolkit.getDefaultToolkit().getImage(getClass().getResource("/icon.gif"));

  • Does anyone get the mouse lag with an external display connected via the display port?

    does anyone get the mouse lag with an external display connected via the display port?

    You don't describe the problem in great detail.  Is this the issue you are describing?
    https://discussions.apple.com/thread/4398076?start=0&tstart=0
    If so, then, "Yes."  I have the same problem.  Note that this isn't a tracking speed problem for me, it's a lag between my hand moving and the pointer moving on the external display.
    Andrew

  • How to set a system property via the config tool?

    Hello,
    how can I set a system property via the config tool? Before I chose WAS from SAP I used java with option -D<name>=<value> to set the system properties.
    Very much thanks in advance.
    Regards
    Carsten

    Hi Carsten,
    WAS config tool is located under
    e.g. usr\sap\J2E\JC00\j2ee\configtool
    start configtool.bat
    there will be opened a configuration tool GUI
    Click on the instance_ID.... leaf of the tree in the left pane and then on the server_ID.... leaf.
    Java settings will appear in the right pane after this steps.
    Best Regards,
    Violeta

  • Popup Display in Real Time Warning

    Hi,
    I am using SAP ME 5.2.4.7.
    I am configuring Real Time Warning. I configured the following settings.
    1) In the event maintenance, I used the event type as RTW_CONSEC_NC and event activity as CONSEC_NC_HOLD_REL. (I used all the default settings of CONSEC_NC_HOLD_REL).
    2) In the Pod Maintenance, for * POD, I set the Real Time Event Display as Popup.
    3) In Real Time Warning Maintenance, I added top level material, operation and resource where I want real time warning and in the Consecutive Identical NC panel, I added NC Count level as NC Code, Non Conformance as Failure code (F01), Event Type as RTW_CONSEC_NC and Count as 1.
    If I do Non Conformance for more than two times for an SFC, there is neither popup message nor the resource setup is changed into Hold Consec NC. But when I set the Real Time Event Display as Window, I am getting a display saying the operation is not available for use in the POD itself.
    Kindly let me know whether I need to do any other configurations to get a Popup display?
    Thanks,
    Joe

    Do you have indicators on your front panel that display a value from a software counter?
    How are you updating or refreshing the displays? If you have indicators in a while loop then the indicators will be updated with each iteration of the loop.
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect

  • Can I control the system output via Logic Pro?

    I know how to record system output in Logic Pro (CH 13&14), but in order to do that, the tracks in Logic Pro must be muted to avoid feedback.
    What I'm wondering is if I can control overall system output via a track/tracks in Logic Pro. I've got a Plextor PVR set up so that I can watch tv on my Mac, but when I connect my digital cable box to it the volume is down at around a faint -24 dB. I'd like to be able to boost the gain with Logic.
    Thanks in advance for any help!

    Never mind. I found a cool app called Audio Hijack Pro that works perfectly for this.

  • Logon via pop up needs to be disabled

    Hi,
    We are using SRM 5.0 and EP 7.0 sp10, and we currently have the logon via pop pop up enabled on SRM, but we dont want it and want to turn it to the normal logon, so we can enable single sign on it, so please advice.
    All help is appreciated and rewarded.
    Thanks,
    Swetha

    Hi,
    If your requirement is to pop-up only once then you need to do mod. in FV45KFKD_VBKD_PRICING which is a standard program.
    Thanks,
    Krish.

  • Dbus[359]: [system] Activation via systemd failed for unit 'dbus-org.b

    from  journalctl -b, I get some warning messages like this.
    Oct 26 12:52:48 myhost dbus-daemon[359]: dbus[359]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Oct 26 12:52:48 myhost dbus[359]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Oct 26 12:52:48 myhost dbus-daemon[359]: dbus[359]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.
    Oct 26 12:52:48 myhost dbus[359]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service fail
    Oct 26 12:52:48 myhost pulseaudio[1234]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.ListAdapters() failed: org.freedesktop.systemd1.Lo
    Oct 26 12:52:49 myhost rtkit-daemon[1235]: Successfully made thread 1260 of process 1260 (/usr/bin/pulseaudio) owned by '1000' high priority
    Oct 26 12:52:49 myhost rtkit-daemon[1235]: Supervising 2 threads of 2 processes of 1 users.
    Oct 26 12:52:49 myhost pulseaudio[1260]: [pulseaudio] pid.c: Daemon already running.
    I want to disalbe bluez.service,but failed,
    #systemctl disable dbus-org.bluez.service
    Failed to issue method call: No such file or directory
    I have no bluetooth device in my laptop, how to resolve this porblem?
    Thanks in advance.
    Last edited by eastpeace (2012-10-26 06:12:53)

    AND additional information
    # systemctl status dbus-org.bluez.service
    dbus-org.bluez.service
          Loaded: error (Reason: No such file or directory)
          Active: inactive (dead)

  • How to open 'share picture via' popup menu on android?

    Hi there.
    I made a little photo painting app on android where you can open (via the native file opener with filerefence.browse() it works beautifully) and save (directly to CameraRoll with addBitmapData also works perfectly) an image. Now i would like to share the saved image.
    I would like to use the native android 'share picture via' popup. I found on a forum the native code for it ( http://stackoverflow.com/questions/3553017/android-share-via-dialog ).
    Since we cannot execute native code for mobiles as i can read from the flash doc, is there a way to get this working at all?
    Thanks a lot for the help!

    I too would like to know if this is possible. I use it all the time with native apps to send files to my dropbox. If it was up to me, this would be a MUST HAVE feature.
    Mike

  • Error at reading RSQONCOND system table via RFC_READ_TABLE

    Hello dear experts,
    I try to read RSQONCOND system table from our external java application via JCO and RFC_READ_TABLE function but receive the following error:
    Could not execute function '[MBI_SAPBW_F0012] Could not execute function 'RFC_READ_TABLE'. Error with ASSIGN ... CASTING in program SAPLSDTX .'. Table: RSQONCOND; columns: INFOSET, ONCOND; where clause: (INFOSET EQ '0SRVE_IS1') AND OBJVERS EQ 'A'
    We used our code successfully with other system tables but in case of RSQONCOND  we got this error, so our code must be fine (if this particular request doesn't require some specific attributes or settings).
    One more thing... I noticed that WCOND attribute in RSQONCOND is of String data type, can it be the cause of the error? But at the same time error takes place even when I try to retrieve the only one record without WCOND attribute (e.g. just INFOSET).
    I also have the same error if to use SE37 transaction with RFC_READ_TABLE  and the RSQONCOND table name in parameters.
    Is it possible to get data from the mentioned system table via RFC_READ_TABLE at all? What the cause of the error? Does any alternatives to RFC_READ_TABLE exist to get the data I need?
    << Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    Thanks in advance,
    Vova
    Edited by: Rob Burbank on May 20, 2011 4:22 PM

    Thank you very much, Sandra for your reply.
    Unfortunately I'm limited by the scope of our application and cannot make any changes on the SAP server, so adding our own custom functionality on the SAP servers is not an option.
    I've also found RFC_GET_TABLE_ENTRIES which doesn't throw an exception but returns somehow encoded values of the STRING datatype (for example from the RSFOBUEV000 or RSQONCOND tables). So, one of the way out is to decode values but I cannot find how.
    Does somebody know how to cope with the issue of retrieving values of the String datatype from third party applications without modifying SAP server?
    We use java and jco library to get access to SAP server.

  • Jabber SSO for PKI / Kerberos LogOn via Card&fingerPrint

    Is there any solution (existing or planned) for Jabber SSO when users are not using UserName/Password identification when they are logging in to their PC ?
    Instead they are using a PKI / Kerberos LogOn via Card&fingerPrint ? and for this LogOn method once opening Jabber Client how can they be LoggedOn without any need for further identification?

    Hi Andrzej Kazmierczak,
    Thanks a lot for the reply,
    If we configure certificate based authentication in IIS (certificate mapping) it doesn't use kerberos provider (at least that's what I have seen through network monitor captures).
    guess probably the presentation of intent in my question was wrong.. my bad..sorry
    My requirement is to configured the SSO environment based on "kerberos Authentication" (where the pre-authentication happens not via user name and password but through USER IDENTITY certificates.)
    http://msdn.microsoft.com/en-in/library/cc238455.aspx
    When smart cards are implemented with kerberos, pre-authentication (for kerberos) happens through KDC validating the smart card PKI certificate (x.509), I want to achieve the same thing in my lab without smart card (i.e.. only with user identity certificate
    installed over a device).
    There are few related information  available over the web but for Linux based (MIT kerberos) environment. However according the document available in the link(http://msdn.microsoft.com/en-in/library/cc238455.aspx), it should be possible even in Microsoft
    environment.That's exactly is my requirement.
    I am very new to  kerberos topic, please correct me if my implementation understanding is wrong somewhere.
    Thanks,
    GK

  • How we can disable access to BOM via the Display Master Recipe (C203)?

    Hi Gurus,
    How we can disable access to BOM via the Display Master Recipe (C203)?
    Thanks!

    Hi Mae Baraquio  
    Have you tried screen variant to make it as display mode.
    please refer below document for your reference.
    Learning SHD0 with Example
    if you find any query kindly revert back.
    Thanks & Regards
    Sandeep Kumar Praharaj

  • Debug - System Logon

    Hello,
    I do not know if it is possible to make debug in the service of logon “System logon”.(SRM 5.0).
    I created class “Z_ST_CL_ICF_BASIC_LOGIN” with copy of standard “CL_ICF_BASIC_LOGIN”.
    I have already tries:
    External Breakpoint;
    Do. Initial If not v_1 is. Exit. enddo. - > I could see he in the SM50, but profit not to enter.
    I believe that it is because my user still I do not enter the system.
    For the other services the External breakpoint works perfectly.
    Somebody already profit to make debug this class?
    Thanks,
    Alexandre

    Hello,
    it is not possibble to debug the logon application in the standard way. They can not be debugged in a customer system.
    Best regards,
    Dezso Pap

Maybe you are looking for