User ID is blank in the SAPLOGONTICKET

Hello All,
I'm dealing with a very strange issue of SSO between Portal (SP11) and R/3 system. Everything was working fine and we had to restart the Portal system for some reason. After the Portal restart, SSO stopped working. Now i have configured everything again but still with no luck. I'm getting an error message "Name OR password not found" I went to SM50 and took a trace and found out that User ID is blank there.
Any ideas what could be wrong here.
Regards
Vaib

Dear Vaibhav,
Could please check the profile parameters in RZ10 Transaction in ur R/3 System. And Systems fields in portal as well.
Rgds
PRadeep

Similar Messages

  • Managed User cannot see blank CD

    Hi all,
    I have recently reinstalled the College Mac suite where I work as an IT Tech (and Mac noob).
    Over the last term the desktops on the macs were used as a dumping ground for student work and as such proved difficult to back up the work at the end of term.
    A sollution seemed to me to be to create a desktop alias to Documents and set that as the only area on the desktop that the Student (managed) user had read/write access and set the rest of the desktop to Read-only.
    Other than problems opening attachments from Hotmail (one for another day..), this has worked out quite well. Until yesterday...
    When the user inserts a blank CD the system promts to choose an app, when Finder is selected the screen refreshes but the blank CD does not appear on the screen.
    This does not happen for USB keys or CDs with data on.
    I have played aroud with setting the desktop to Read/Write and the blank disk appeared.
    At the moment it seems my only two options are to change the desktop to R/W or to create a new user with sufficient access to write a CD/DVD and Student Docs but lock down everything else. I'd rather not do either.
    I hope this makes sence as I know I tend to ramble, and would really appreciate any assistance!
    Cheers.

    Hi Fluke?, and a warm welcome to the forums!
    To start off I'm not quite certain what/why saving/dumping stuff on their Desktop would make it any harder to backup stuff, but perhaps the CD/DVD Pref Pane could be set to the Run a Script in it's settings, rather use Finder for Blanks, then a Sceipt to do what you want, or set it to opend a CD writing App instead of Finder, like Toast or Dragon Burn.
    You might also consider a Folder Action to watch the Desktop for new files...

  • Error in sql server with a trigger (I want to display a customize message, when the user left a blank field or null) How can I do?

    How I display a customize message(with a trigger)when a user left a blank field? I want to the stop the insert statament if the user left  the status field in blank. I create a trigger but now I can't enter a row, i used an instead trigger
    too but doesn't work. I want to display a customize message when the user left the
    status field in blank or null. 
     I have the following code:
    CREATE TRIGGER [dbo].[BLANKFIELD] 
    ON [dbo].[Status] 
    FOR INSERT 
    AS 
    BEGIN 
    IF (SELECT COUNT(*) FROM inserted WHERE Status IS NULL) =1
     PRINT 'Please Fill the Status  field is required'
    Rollback;
    END 

    I agree with other comments that you should do this with specifying that the column is NOT NULL to prevent it from being NULL and a constraint if you don't want it to be blank (spaces or the empty string - note that the empty string is not the same thing
    as NULL).
    But for completeness, the reason your trigger does not ever allow you to enter a row is the code
    IF (SELECT COUNT(*) FROM inserted WHERE Status IS NULL) =1
    PRINT 'Please Fill the Status field is required'
    Rollback;
    Since you don't have a begin/end block after IF, the only conditionally executed statement is the one immediately following the IF (that is the PRINT).  So the Rollback is always executed whether or not the IF is true and so all updates are rejected.
    So if you were to do this in a trigger you could do something like the following
    CREATE TRIGGER [dbo].[BLANKFIELD]
    ON [dbo].[Status]
    FOR INSERT
    AS
    BEGIN
    IF EXISTS(SELECT * FROM inserted WHERE Status IS NULL)
    BEGIN
    PRINT 'Please Fill the Status field is required';
    Rollback;
    END
    END
    (As José noted, there can be more than one row in the inserted pseudo table, so you don't want to test whether the COUNT = 1, instead just whether one or more rows exist where the Status  is null.  If you want to prevent Status is NULL, or all
    spaces, or the empty string, then your IF statement would be
    IF EXISTS(SELECT * FROM inserted WHERE ISNULL(Status, '') = '')
    Tom

  • How to keep a calculation field blank until the user enters a number?

    I am building a sales sheet for a school that sells scrip as a fund-raiser. I have the document set so that when the user enters the number of scrip certificates he wants (say, two $25 gift certificates at Lowe's), the program will automatically calculate that this user owes $50 for that scrip category. However, there are more than 100 companies that one can choose from, and if the user doesn't enter a number, the calculated field shows $0. Is there a way that each field can stay blank until the user enters a number bigger than zero? By the way, I'm using this calculation to determine the value (borrowed from a user on this forum): event.value = 50 * this.getField("Lowes").value
    Thanks!

    There are two approaches. You can either add the following Validate script:
    // Custom Validate script for calculated field
    if (+event.value !== 0) event.value = "";
    Or you can change your custom Calculate script and set the Format type of the field to "None":
    // Custom Calculate script
    (function () {
        var v = +getField("Lowes").value;
        event.value = (v !== 0) ? util.printf("$%.2f", v) : "";

  • I cannot change the value in about:newtab from "newtab" to "blank." The dialog is displayed but when I click Ok, the value is not changed.

    I cannot change the value in about:newtab from "newtab" to "blank." The dialog is displayed but when I click Ok, the value is not changed.
    ===Answer===
    Comment on usual method and solution, by a forum Moderator.
    As long as there are no confounding factors, such as certain extensions, or a user.jsfile the procedure is as follows
    # Open a new tab and type "about:config" in the address bar.
    # In the Search bar type: "newtab"
    # Locate and double click "browser.newtab.url"
    # In the "Enter String Value" box change "'''about:newtab'''" to "'''about:blank'''" and click OK.
    # Verify that the value has changed and now all new tabs will be blank.
    See post under by ''pirate048'' [/questions/976589?page=2#answer-509482] ~J99

    Have to say that I rather agree with Mark..all we want is a simple, unadorned clean page that doe not track and show usage!! WHY NOT!! Is it too simple for developers..we aren't all (nor do we want to be!) software experts! Come on Mozilla..tidy up and clean up..it might be a quicker programme too!!

  • Workflow to populate "Assigned to User" with AD group of the "Assigned to User" is empty or Null to user is empty.

    I am updating roles and would like to use the [me] and [my group] tokens for views.  I am planning on updating all the templates to specify an ad group in the "Assigned to User" field that corresponds to the appropriately selected support
    group.  I would like to avoid having the "Assigned to User" blank (this could happen either via using a generic template, or when re-assigning workitems) so I think I need a workflow to remediate any workitems that have no Assigned to Users.
     There does not seem to be an easy way to do this just with a workflow configuration.  Do I need to create a workflow with the authoring tool?  Can I create a workflow that will compare a support group (enumeration?) and assign an appropriate
    AD group?

    probably the easiest way to do this would be to create a console workflow that runs on create (or update, if you want this to be reoccurring) and checks for the looks for the Display Name of the Assigned to user. This would only be populated if there was
    a legitimate user, and would be null otherwise.
    you could create console workflows for each support group (i.e. If Supportgroup = NumberA and AssignedtoUser.Displayname is blank) that applies a template that contains the correct user or group for that support group enum.
    other options are available, so let us know what you're ideal conditions are.

  • User Parameter ID 'blank'

    Hi experts
    I wish to know if there is a value to set a parameter ID "blank" (or to delete the values for the fields who SAP ECC memorize after a registration).
    My problem is: I have to register movements with the VLMOVE transaction and ECC memorize and propose the plant and the storage location than I have used for other transaction (or toghether with the VLMOVE); but for some movement type those fields are not changeable (grey fields with the value pre-selected).
    So, I was thinking than a way to obviate it is to set a parameter ID as "blank", so the user have to enter every time the values, and if a field is "grey" the content is wide.
    If you have other suggestion...
    Thanks in advance
    Kind Regards,
    Alessandro

    Hi ILpesca ,
    Check below options.
    Navigate to System -> User Profile -> Own Data -> 'Parameters' tab
    In field Parameter ID enter WRK and leave Parameter value as blank.
    In next line, in field Parameter ID enter LAG and leave Parameter value as blank.
    Save.
    Execute your transaction, and see Plant & Storage Location will be blank always.
    Note: This setting is user dependent. Will work only for current user.
    If you want to clear entire history follow below steps,
    Navigate -> SAP Easy Access (Initial screen) -> Press Alt + F12 -> Options -> Local Data -> Click Clear History -> Click OK
    Entire history will be cleared.
    Thanks.

  • User accounts have disappeared from the Sys prefs and log-in screen!

    When upgrading to 10.4 from 10.3, I used Carbon Copy Cloner to create a bootable copy of my hard disk to an external (La Cie) drive. After performing an erase and install, the Migration Assistant would not recognize the installation on the external drive. After numerous attempts, I finally re-entered all my settings and transferred most of my files by hand into the new OS. Everything seemed to be fine until I attempted to update the user settings on one of the standard accounts. When I went to the Limitations window for this account in System Preferences the computer froze completely, necessitating a forced shutdown. When I rebooted, the account I was modifying had disappeared from the log-in screen. When I attempted to restore it in Sys Prefs, the Accounts window was blank, and clicking on the resulting items in a Spotlight search gets a preferences error message. I repaired the disk and the permissions with Disk Utility to no avail, and DiskWarrior says the directory is too damaged to rebuild. I re-installed Tiger using archive and install, also with no success. I can log in as Root and access all data, including all user accounts, but still no user accounts in the log-in window or sys prepfs. Does anyone have any thoughts on this before I (aauuugghhh) erase and install again? Any idea why the Migration Asst. can't see the clone? Did I move something into the new OS I shouldn't have?
      Mac OS X (10.4.3)   700mHz G4 iMac (Flat panel)

    When upgrading to 10.4 from 10.3, I used Carbon Copy Cloner to create a bootable copy of my hard disk to an external (La Cie) drive.
    Did you boot into the clone to ensure that it was working just like the original? If so, can you still do that? If so, I'd boot into the clone, use Disk Utility to erase and reformat the internal HD. Then, clone the clone to the original and install Tiger on top of it using the upgrade earlier version option. Then, you won't have to change or migrate anything. IMHO, it's the best way to do it.

  • Assignment Field is blank in the Accounting Document of MIRO

    Hi Gurus
    I am working on ECC 6 version. I have observed in my system that for some of the vendor invoices posted using the MIRO transaction, assignment field is blank in the respective Accounting Document for the Vendor Line Item. But for GRIR Line Item Assignment field is filled with Purchase Order Number.
    My requirement is to display the Purchase Order Number in the Assignment Field (ZUONR) of the Vendor line item also and for that purpose I have assigned the Sort Key of Purchase Order in the Recon GL Account master under Control Data Tab, Sort Key Field as 010(Purchase Order No.). Also, the Vendor Master has the Sort Key as 010 (Purchase Order).
    I have applied the Note 676338 and checked and checked the structure RFPOSXEXT. It has the Assignment fields both ZUONR as well as U_ZUONR.
    Still after above changes, when I post the MIRO, the assignment field in the vendor line item of its accounting document is blank. Any clues how to fill the vendor line item's assignment filed with the purchase order number ?
    Thanks for your help.
    Regards
    Gemini

    Hi Gemini,
    Sort key does no magic, it populates value from the original field from the same line item only.
    Taking this as an example...First check that PO field is populated in the Vendor Line item then only sort key will be able to populate the field else it will be blank.
    I don't think system populated PO field in the vendor line item.
    If you want to meet your requirement and contact your ABAPer and write a Substitution User-exit to populate PO Number into assignment field.
    Regards,
    Chintan Joshi

  • How delete a user with a blank username?

    Hi,
    I am trying to perform an user audit in my EBP system, but it failes because I have an user with a blank username.
    I can´t find it in SU01 - but it exist in table USR02. Unfortunately it is a basis table, so I can´t make any changes to that table.
    Please advise.
    Kind regards
    Susanne

    Susanne Lejon wrote:
    >
    > I can´t find it in SU01 - but it exist in table USR02. Unfortunately it is a basis table, so I can´t make any changes to that table.
    >
    > Susanne
    Why not?  If you know the entry is in there erroneously, just delete it via DB back-end.

  • Throwing User Message on blank report

    Hi,
    We have to build a XML Publisher report for pulling the invoices which has past due dated. For this the user will be provided with few input parameters to run this report. If the input paramters criteria provided doesn't pull up any records, the user should be throw message "The input paramter doesn't pull up any invoices. Please refine your search criteria". How to achieve this in terms of XML Publisher (The blank pdf should not get generated, but instead message should appear on the screen). Any thoughts?
    Cheers,
    Mohammadi

    You can use Collections to preserve session state values. You can find a number of examples on that in this forum and outside.

  • Users see a blank window after opening a Captivate 8 video

    I have created a project using captivate 8.   Some users (IE most often) select the video (within the Moddle LMS) , the video opens in a new window and it is completely blank.

    Hello,
    Welcome to Adobe Forums.
    Are you working on Windows or MAC ?
    What is the exact version of Adobe Captivate you are using (8.0.0 or 8.0.1) ?
    Are you using Event Video or Multi-Slide ?
    What type of video you have used (.flv or .mp4 or .f4v) ?
    Which version of IE you have used to view that content ?
    Have a tried a different LMS ?
    Thanks,
    Vikram Gaur
    Adobe Support

  • I have a numbers spreadsheet for tracking company data.  I want to copy the format of the spreadsheet (rows, columns,and formulas) but have all of the data fields be blank for the new year.  How do I do that?

    I have a numbers spreadsheet for tracking company data.  I want to copy the format of the spreadsheet (rows, columns,and formulas) but have all of the data fields be blank for the new year.  How do I do that?

    click and hold on one cell, then drag to select the range, then release, then type the delete key.  Only inlude cells in the range you do not want to keey the contents of the cell.  You can remove one-off cells by holding the command key and clicking cells to add or remove as needed.
    You can download the Numbers users guide here:
    http://support.apple.com/manuals/#productivitysoftware

  • Since upgrading to Yosemite I am getting frequently "safari can't open the page (blank) because the server unexpectedly dropped the connection this sometimes occurs when the server is busy. wait and then try again"

    Since upgrading to Yosemite on my iMac I am frequently getting "safari can't open the page (blank) because the server unexpectedly dropped the connection this sometimes occurs when the server is busy. wait and then try again". This is with both a WiFi and Ethernet connection. The server is working fine from other devices using WiFi onto it such as iPhones, iPads, MacBook (which is also on Yosemite) so don't believe its an issue with the server.
    I am also noticing page load very slowly when this problem is not occurring.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • My Iphone rings but screen is blank held the power button for more than 10 sec but in vain

    My Iphone rings but screen is blank held the power button for more than 10 sec but in vain

    Hello waseem.abdul_hadi,
    It may be that your Screen Curtain has been activated. This can be deactivated by triple-tapping the screen with three fingers.
    Turn the screen curtain on or off. Triple-tap with three fingers. When the screen curtain is on, the screen contents are active even though the display is turned off.
    iPhone User Guide - Use iPhone with VoiceOver
    http://help.apple.com/iphone/7/
    Cheers,
    Allen

Maybe you are looking for

  • Dashboard does not open in Mavericks

    I updated my MacPro from Mountain Lion to Mavericks using the download from the app store. Since this update, the Dashboard will not open.

  • JVM_recv in socket input stream read (code=10004)

    Whilst trying to get a file listing from an FTP server (by sending FTP commands directly to the server according to RFC959) I got.. JVM_recv in socket input stream read (code=10004) What does this mean? Any idea why it is caused, the socket should be

  • SSL error when friends of friends also submit PDF form

    We've sent a PDF form out into the wild. It sends back data correctly on the first time that the form is submitted. But when second-generation respondents try to submit, my contacts are reporting SSL errors. Is there a way that the PDF can be safely

  • Connect to dynamic link taking ages

    Win 7 64bit GTX 550TI i have created a new Encore project and gone to File/Dynamic link/import Premiere Pro. In the dialog box, I selected the appropriate PP file and now I'm seeing a "connecting to dynamic link server" with a barbers shop pole graph

  • Mail crashing when adding addresses to BCC field from address panel

    Problem #2 since upgrading to Snow Leopard: if i select more than a few names in adds panel and hit the BCC button to add them to the email i am about to send the App just quites. Is this what Apple refers to as a refined, finely tuned upgrade? I jus