Login fails first time

When I first login, using the ADDT login behavior, the login failed and says I need proper credentials, I try again and the login works.
But when I go to another restricted page and return to the first page the session kt-login_id is lost and I have to login again.
I have tried rebuilding the login page, and rebuilding the login permissions but to no avail.
HELP!!
NIck

Sounds like something you should be asking MS. Start at http://www.officeformac.com/productforums/ and search for Active Directory.

Similar Messages

  • EP 7 login fails first time!

    Hi,
    One of the user during loggin to the portal (EP7) fails for the first time saying "User authentication fails", when he re-enters password second time portal accepts it and logs him successfully.  Anyone have resolution for this issue or where to look for information to resolve it?
    Thanks
    Praveen
    PS: This only happens for one particular user some of other users do not have this issue.

    Praveen,
    1. Check where your UME is being pointed to.
    2. Check for the same user in a different machine.
    3. Check other users in the machine, which have had this issue.
    4. If its only for one user, you can probably try creating a new user by copying it from the any of the users who dont face this issue.
    Good Luck!
    Sandeep Tudumu

  • Essbase 9.3.1 fails login the first time for both LDAP and Native users

    Hi,
    Whenever I try to login into Essbase server using AAS or Maxl, it fails for the first time but when I try the second time it works.
    Essbase Logs at the time of the error shows:
    Local ESSBASE0 Info (1051001) Received client request: Get Log File (from user hadmin )
    Local ESSBASE0 Info (1051001) Received client request: Get Server Locale Description (from user hadmin )
    Local ESSBASE0 Info (1051164) Received login request from xxx.xxx.xxx.x
    Local ESSBASE0 Error (1051293) Login fails due to invalid login credentials
    Local ESSBASE0 Warning (1051003) Error 1051293 ~processing request Login - disconnecting
    SharedServices9\SystemErr.log
    SystemErr R com.hyperion.interop.AuthenticationException: Could not authenticate user 'CSSToken'. Please ensure the username and password is correct.
    SystemErr R at com.hyperion.interop.webservices.Security.slideAuthenticate(Unknown Source)
    SystemErr R Caused by: java.lang.Exception: Interop Security: Unauthorized
    SystemErr R at com.hyperion.interop.webservices.Security.authenticate(Unknown Source)
    SystemErr R 1282785593 [WebContainer : 0] WARN security.SecurityFacade - Error Executing cssAuthenticate()
    Error Code: -1
    com.hyperion.css.CSSTokenNotAcceptedException: Token is invalid. Error Code: 11
    And we are using SSL? Help please... Thanks.

    I know this wont help but we had the same issue in 9.3.1 and decide to reinstall without SSL as we could not get to the bottom of it.
    I suspect there s something wrong with the SSL config but not sure what it is...
    Seb

  • FTP Adapter fails first time when bpel process is invoked from concurrent

    Hi,
    We noticed that the invoke of the FTP adapter fails the first time when the bpel process is invoked from a concurrent program. The second time the concurrent is ran, it completes fine. However, when invoked from the console, it compeltes fine the first time itlsef.
    Any idea what could be worng. We are on SOA Suite 10.1.3.4
    Thanks
    -Prapoorna

    What you are doing with FTP adapter? Are you writing a file ? Any error details in logs when it is failing on first invocation ?

  • Wlconfig with custom role mapper always fails FIRST time only

    WLS 8.1 sp2.
    I have a very strange problem, where I'm "coldstarting" a server and
    configuring it, much like the ant build script for medrec. Only I have a
    custom role mapper (medrec has a custom authentication provider). Anyway,
    the first time I execute this task (after a clean), it consistently fails
    like so:
    [wlconfig] OK
    [wlconfig] OK
    BUILD FAILED
    file:P:/dgs/build.xml:186: Unable to create mbean:
    weblogic.management.MBeanCreationException: - with nested exception:
    [java.lang.ClassNotFoundException:
    weblogic.management.configuration.com.combinenet.security.CNRoleMapperProvid
    erMBean]
    (that class looks bogus to me, BTW, as my provider class is
    com.combinenet.security.CNRoleMapperProvider)
    Now, the SECOND time I execute "coldstart", which runs wlconfig, the server
    starts up fine, and my custom role mapper is loaded successfully. So,
    obviously I figured something was left around the first time which somehow
    helped matters, but the strange thing is that I delete the entire domain
    directory before "coldstarting" the server, and I also re-copy the role
    mapper provider jar into the mbeantypes directory, so I'm very puzzled. I'm
    copying the coldstart task below (and the clean).
    Can anyone tell me what's wrong with this task that would make it fail the
    first time through after a clean? Is this a bug? And why would it succeed on
    all subsequent attempts (without a clean)? I just don't see anything wrong
    with what I'm doing.
    TIA,
    Miles
    <target name="coldstart"
    description="Start a new DGS Server with an empty config"
    depends="configServerEnv,startPointBase,configPointBase,dist" >
    <delete dir="${dgs.root}" quiet="true"/>
    <mkdir dir="${dgs.root}"/>
    <wlserver
    beahome="${bea.home}"
    dir="${dgs.root}"
    domainname="${dgs.domain}"
    host="${dgs.host}"
    port="${dgs.port}"
    servername="${dgs.serverName}"
    username="${wl.username}"
    password="${wl.password}"
    productionmodeenabled="false"
    generateconfig="true"
    action="start">
    </wlserver>
    <wlconfig url="t3://${dgs.host}:${dgs.port}"
    username="${wl.username}"
    password="${wl.password}">
    <query domain="${dgs.domain}" type="Server"
    name="${dgs.serverName}"
    property="dgs.server"/>
    <create type="JDBCConnectionPool"
    name="DgsPool"
    property="dgs.pool">
    <set attribute="CapacityIncrement" value="1"/>
    <set attribute="DriverName"
    value="com.pointbase.jdbc.jdbcUniversalDriver"/>
    <set attribute="InitialCapacity" value="1"/>
    <set attribute="MaxCapacity" value="10"/>
    <set attribute="Password" value="${pointbase.password}"/>
    <set attribute="Properties" value="user=${pointbase.username}"/>
    <set attribute="RefreshMinutes" value="0"/>
    <set attribute="ShrinkPeriodMinutes" value="15"/>
    <set attribute="ShrinkingEnabled" value="true"/>
    <set attribute="TestConnectionsOnRelease" value="false"/>
    <set attribute="TestConnectionsOnReserve" value="false"/>
    <set attribute="URL" value="jdbc:pointbase:server://localhost/demo"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="JDBCTxDataSource" name="DGS Tx DataSource">
    <set attribute="JNDIName" value="DgsTxDataSource"/>
    <set attribute="PoolName" value="DgsPool"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="JMSConnectionFactory" name="Queue">
    <set attribute="JNDIName" value="jms/QueueConnectionFactory"/>
    <set attribute="XAServerEnabled" value="true"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="JMSJDBCStore" name="DgsJDBCStore"
    property="dgs.jdbcstore">
    <set attribute="ConnectionPool" value="${dgs.pool}"/>
    <set attribute="PrefixName" value="Dgs"/>
    </create>
    <create type="JMSServer" name="DgsJMSServer">
    <set attribute="Store" value="${dgs.jdbcstore}"/>
    <set attribute="Targets" value="${dgs.server}"/>
    <create type="JMSQueue" name="Registration Queue">
    <set attribute="JNDIName" value="jms/REGISTRATION_MDB_QUEUE"/>
    </create>
    </create>
    <create type="MailSession" name="Dgs Mail Session">
    <set attribute="JNDIName" value="mail/DgsMailSession"/>
    <set attribute="Properties"
    value="mail.user=joe;mail.host=mail.mycompany.com"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="StartupClass" name="StartBrowser">
    <set attribute="Arguments" value="port=${dgs.port}"/>
    <set attribute="ClassName" value="com.combinenet.test.StartBrowser"/>
    <set attribute="FailureIsFatal" value="false"/>
    <set attribute="Notes" value="Automatically starts a browser on
    server boot."/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <set mbean="Security:Name=myrealmDefaultAuthenticator"
    attribute="ControlFlag" value="SUFFICIENT"/>
    <set mbean="Security:Name=myrealmDefaultAuthenticator"
    attribute="MinimumPasswordLength" value="10"/>
    <set mbean="Security:Name=myrealm"
    attribute="DeployPolicyIgnored" value="false"/>
    <set mbean="Security:Name=myrealm" attribute="DeployRoleIgnored"
    value="false"/>
    <set mbean="Security:Name=myrealm"
    attribute="FullyDelegateAuthorization" value="true"/>
    <set mbean="Security:Name=myrealm"
    attribute="AuthenticationProviders"
    value="Security:Name=myrealmDefaultAuthenticator|Security:Name=myrealmDefaul
    tIdentityAsserter"/>
    <set mbean="Security:Name=myrealm" attribute="RoleMappers"
    value="Security:Name=myrealmDefaultRoleMapper|Security:Name=myrealmCNRoleMap
    perProvider"/>
    <create type="com.combinenet.security.CNRoleMapperProvider"
    domain="Security" name="myrealmCNRoleMapperProvider"/>
    <set mbean="Security:Name=myrealmCNRoleMapperProvider"
    attribute="Realm" value="Security:Name=myrealm"/>
    <query domain="${dgs.domain}" type="Server" name="DgsServer">
    <set attribute="StdoutEnabled" value="true"/>
    <set attribute="StdoutSeverityLevel" value="64"/>
    <set attribute="ListenAddress" value=""/>
    <set attribute="ListenPort" value="${dgs.port}"/>
    </query>
    <query domain="${dgs.domain}" type="WebServer" name="DgsServer">
    <set attribute="LogFileName" value="logs/access.log"/>
    </query>
    </wlconfig>
    <copy file="${dist}/lib/dgs.ear" todir="${dgs.root}"/>
    <wldeploy action="deploy"
    source="${dgs.root}/dgs.ear"
    name="dgsapp"
    user="${wl.username}"
    password="${wl.password}"
    verbose="true"
    adminurl="t3://localhost:7001"
    debug="true"
    targets="${dgs.serverName}"/>
    <!-- unfortunately BEA's wlserver task exits when ant's jvm
    exits -->
    <sleep hours="10"/>
    </target>
    <target name="clean"
    description="Clean the build tree(s)"
    depends="init">
    <delete dir="${build}" verbose="true"/>
    <delete dir="${dist}" verbose="true"/> (dist is where the ear file is
    created)
    </target>

    g_wolfman wrote:
    Are you using Parallels?
    Wolfman, thats a good hint!
    Additional info at --> http://reviews.cnet.com/8301-13727_7-20106682-263/macbook-airs-double-booting-wi th-parallels-and-filevault-enabled/
    Thanks for the input.
    Lupunus

  • Lion - startup fails first time, second time fine

    So here's a weird issue… it started a week ago, every time I shut my Mac down and start, the first time it tries to start fails. I have FileVault enabled, so I enter my password, the grey screen appears, the wheel under the Apple logo starts spinning and after a while it just restarts. I enter my password again and it boots just fine.
    But only the second time.
    I tried verbose boot to see what's going on, but I don't really understand much of what it says. I took some pictures, I don't know if there's a startup log somewhere.
    http://cl.ly/3J103V1q112h1L1Q3n3K
    http://cl.ly/2n0Y3B1e0P382k1r3W2q
    I just don't understand it, because the second time it always boots with no problem, but the first time the above happens. I unfortunately can't take it to a genius bar as there is no Apple Store in Brazil and my Portuguese isn't good enough to explain that to someone.

    g_wolfman wrote:
    Are you using Parallels?
    Wolfman, thats a good hint!
    Additional info at --> http://reviews.cnet.com/8301-13727_7-20106682-263/macbook-airs-double-booting-wi th-parallels-and-filevault-enabled/
    Thanks for the input.
    Lupunus

  • SMTP send fails first time with exchange server. how about you?

    I run a 2007 Exhcange server at our business...never an issue with OSX working with it.
    Now that I've upgraded to mavericks anytime I have an attached of any good size (screenshots, photos) it fails the first time...and when I try to resend it goes. This issue doesn't exist with small attached (signatures for example) or blank emails.
    Anyone have this issue with Maverick/Mail.App?
    Before you start to tell me that I need to increase the attachment size on my exchange server it already permits up to 99,999KB and if it was being blocked due to size the 2nd attempt would not work either.

    Ok, so I've gotten Cups and wicd autostarting, set the static ip from my router because else it wasnt getting DNS etc details and left it asking for that by dhcp.
    Still having issues with the DE
    pedro_sland wrote:
    If DE is required, Xorg must be started in tty1, startlxde ran in tty2, and then manually switch to tty7 for the DE.
    I run xfce4 sometimes. I just run startxfce4 and it starts Xorg and displays the DE. I think that startx runs twm which you probably don't want so you might want to take a look at that. startx has a script it runs somewhere (I forget where but the wiki will know). When I'm done with xfce I just log out and it exits.
    For me, this isnt working. startlxde on its own just goes to
    [root@yomiko ~]#
    in tty1, and leaves me with a blank screen when i switch to tty7
    I literally must call Xorg in one tty, startlxde in another and then manually shift to tty7 to see it.
    startx itself:
    -bash: startx: command not found
    Even Xorg isnt happy being called on its own, that too goes to a blank screen, though it does at least switch to tty7
    With Xorg called in tty1, when i call startlxde in tty2 i get dbug errors from pcmanfm though these seem to be just it informing its detected the HDD partitions.
    there is a grumble early on in the process, before the debug errors, saying:
    Importing pynotify failed, notifications disabled.
    Finally, I did add the line to .xinitrc the LXDE page in the wiki said to to allow startx to run:
    exec ck-launch-session startlxde
    This is the only line in this file.
    Currently running as root... I'm not going to complicate matters by adding a user until im sure i got it all running as root, bad practice or not!
    Edit: A friend helped me solve it.
    The package xorg-xinit held the startx script that was missing. I now get LXDE when i want and only when I want.
    Last edited by Rhiadratech (2011-05-20 23:09:16)

  • Package fails first time after changes

    Hi,
    I have a package that I am making changes to. I'm running the package via the SQL Plus Worksheet. After making the changes to the package and recompiling, I try to execute the program from SQL Plus Worksheet and get this error message:
    BEGIN xml_import_export_package2_NED.start_transfer(:v_error_no, :v_error_message,:v_error_procedure); END;
    ERROR at line 1:
    ORA-04068: existing state of packages has been discarded
    ORA-04061: existing state of package "AVENTISDM.XML_IMPORT_EXPORT_PACKAGE2_NED" has been invalidated
    ORA-04065: not executed, altered or dropped package "AVENTISDM.XML_IMPORT_EXPORT_PACKAGE2_NED"
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 1
    The package does not run. However, when I execute it again it works fine. I'm now concerned that if I make a change to a package during the day, that is scheduled to run at night, that it will fail unless I run it once first.
    Is this behaviour by design?
    Regards,
    Ned

    This behaviour is by design, but it should not be a problem for your scheduled job.
    When you run the package in sqlplus, the package is loaded into SGA, and a pointer to this area is in your PGA. When you re-compile the package, the copy in SGA is invalidated. When you then try to re-run the package, the invalid pointer causes the error. Running it the second time causes a re-load of the package and the re-creation of the pointer. However, a new session (which your scheduled job would have) would not have the invalid pointer, so would work correctly.
    John

  • SBS 2008 Standard - Windows Backup fails first time after every reboot

    Backup runs successfully every night.
    Once server is rebooted first backup fails, then subsequent backups succeed OK.
    So much so that we run the backup manually and let it error (pretty much straight away) then let it run again successfully at 10pm.
    Backs up to external hard drive on rotation.
    I think it's a VSS issue - has anyone else had this? What did you do to resolve?
    Thanks,
    J. 

    Hi,
    According to the Event ID 521, please refer to the following article. you will get detailed explains.
    Event ID 521 — Backup Operations
    http://technet.microsoft.com/en-us/library/cc734453(v=WS.10).aspx
    Based on all error messages that you provided, it seems that backup issue caused by sqlwriter.exe. So, please
    temporarily disable SQL Server related services and then check if this issue can be solved. It will help us to confirm if this issue was related to SQL Server.
    Meanwhile, would you please let me know if you have installed available update rollup for your SBS 2008 Standard?
    Hope this helps.
    Best regards,
    Justin Gu

  • PURGE_SOURCE_CATALOG fails first time?!

    Hi,
    During the complete removal of streams I call the DBMS_STREAMS_ADM.PURGE_SOURCE_CATALOG for every table being replicated (see code below). The strange thing is that this fails with the following error:
    ERROR at line 1:
    ORA-04068: existing state of packages has been discarded
    ORA-04061: existing state of package body "SYS.DBMS_STREAMS_ADM_UTL" has been invalidated
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 905
    ORA-06512: at line 17
    If I run the script again it passes!!!?
    I've also added the same loop twice within the script and they both fail but when I run the script again it passes?!
    Any ideas?
    Cheers,
    Warren
    Code:
    DECLARE
    v_table VARCHAR2(30);
    v_db VARCHAR2(30);
    CURSOR c1 IS SELECT TABLE_NAME FROM dba_tables
    WHERE OWNER='WARREN';
    BEGIN
    SELECT GLOBAL_NAME INTO v_db FROM GLOBAL_NAME;
    DBMS_OUTPUT.PUT_LINE('Purging source catalogs');
    OPEN c1;
    LOOP
    FETCH c1 INTO v_table;
    EXIT WHEN c1%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE('Purging source catalog for table : ' || v_table);
    DBMS_STREAMS_ADM.PURGE_SOURCE_CATALOG(v_db,'WARREN.'||v_table,'TABLE');
    END LOOP;
    CLOSE c1;
    END;

    This is because the RI only keeps one component tree around, and throws away the one it has when it receives a request for a new one.
    When you include a stylesheet with a URL that starts with "/faces", the request for the stylesheet gets processed by JSF. JSF believes it's a "real" request, so it throws away the component tree it just created for the JSF page that contains the stylesheet reference. On the next request, it has to build the tree from scratch again and doesn't process the request data. If the browser caches the stylesheet, you only see this on the first postback.
    The solution is to use an absolute path for the stylesheet and place it somewhere else than under "/faces" in the URL structure, e.g.,
      <link rel="stylesheet" type="text/css"
        href="${pageContext.request.contextPath}/style.css">if you use a JSP 2.0 container and have the stylesheet in the top web application directory.

  • HT1926 I was prompted to install iTunes 11.1.4 this morning. It failed (first time EVER) with the comment that 'msvcr80.dll' was not available. Upon searching for that .dll in my computer, I found it to be all over the place! Thoughts?

    I've NEVER had a version update fail. I did go to 'Tools' and download for a manual install of this update as the info screen suggested. It, too, failed. After searching for the 'missing' msvcr80.dll on my computer, I found it all over the place!
    Ran a malware & virus scan with nothing evil popping up.
    Tried going back to a restore point before a previous update and doing the install. It failed.
    OS: Vista Home Premium x64, SP2 (and current with all MS updates)
    Now I'm pretty nervous re: syncing with ANYTHING-especially my iPod that has all my music I teach from at work.

    Solving the iTunes Installation Problems in Windows
    1. Apple has posted their solution here: iTunes 11.1.4 for Windows- Unable to install or open - MSVCR80 issue.
    2. If the Apple article does not fully resolve the problem for you, then try Troubleshooting issues with iTunes for Windows updates - MSVCR80.

  • Burning failed FIRST time.."device failed to calibrate the laser power leve

    Anyone know what this means? I've NEVER once EVER had trouble burning a CD.
    It just initializes over and over and doesn't burn or even recognize the CD is there later. I had to force quit to turn off iTunes and then eject the wasted disc.
    The message says "The attempt to burn a disc failed. The device failed to calibrate the laser power level for this media."
    Help anyone? does this mean my super drive needs fixing??
    thanks

    Ditto.
    Suddenly, it doesn't matter if I'm trying to burn a CD or DVD -- no go. I tried cleaning the lens, resetting the PRAM, upgrading the system and iTunes and burning with various programs and the finder. Nothing works.
    And, like Rollie, I've NEVER had trouble burning a CD.
    What's going on here, Apple gurus? Can all of our Superdrives be failing at once? And what are our options? Lose our computers for a week and spend about $500 to get a new drive installed - with no guarantee that's going to work any better than the old one? I might as well buy a new machine, except I'm worried Apple is STILL using these crappy Matshita drives. <insert sound of grinding teeth here>.
    Luckily (if you want to call it luck) I still have my old G4 around, whose drive seems to be working fine (well... I take that back. I haven't tried it yet today...). Maybe I can set up a network...

  • How to avoid system slow when login first time  everyday

    if login system first time every day, it will be very slow for loading web application.
    I think maybe it 's  reload cache every night or by a certain perods of time.
    how to avoid this situation. or set cache reload a time per week?
    Thanks.

    Terry,
    I would confirm your application pools are set up as suggested in the install documentation.  This should resolve your issue.
    Thanks,
    Drew

  • How to save password and username second time after pressing by mistake "never for this site" option when firefox asked to remember passwords for gmail for first time?

    By mistake i pressed "Never for this site" when firefox first offered to remember my login details first time on gmail.com. Now how can i save my username and password for gmail.com. firefox no longer asks me to save any new login details... How can i re enable that notification to save passwords.

    * Make sure that you not run Firefox in [[Private Browsing]] mode. In Private Browsing mode some menu items are disabled (grayed) and features like visited links and disabled and not available.
    * You are in Private Browsing mode if you see "Tools > Stop Private Browsing", possibly grayed.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History settings, choose: Tools > Options > Privacy, choose the setting '''Firefox will: Use custom settings for history'''
    * Uncheck: [[ ] "Automatically start Firefox in a private browsing session"
    See also [[Private Browsing|#Always_start_Firefox_in_a_private_browsing_session|Always start Firefox in a private browsing session]]

  • Gnome 2.28 won't load first time

    hi,
    I'm experiencing a strange problem as I investigate trying to have a working Gnome on my Arch.
    I boot in gdm through inittab, and when i login for first time, desktop seem to load but gnome-panel not, and top shows activity of dbus and gvfs (maybe looping as I reported in older posts).
    Then I kill gnome-session, back to gdm, login again and voila, it works.
    Any idea? I'm stuck on this since weeks...
    Last edited by lafayette (2010-05-14 18:54:04)

    Sorry, I got badly confused, I'm using Gnome 2.30 (with 2.28 I hadn't any problems). I just ran a "pacman -Syu", just in case.
    $ cat /etc/inittab
    # /etc/inittab
    # Runlevels:
    # 0 Halt
    # 1(S) Single-user
    # 2 Not used
    # 3 Multi-user
    # 4 Not used
    # 5 X11
    # 6 Reboot
    ## Only one of the following two lines can be uncommented!
    id:5:initdefault:
    rc::sysinit:/etc/rc.sysinit
    rs:S1:wait:/etc/rc.single
    rm:2345:wait:/etc/rc.multi
    rh:06:wait:/etc/rc.shutdown
    su:S:wait:/sbin/sulogin -p
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:/sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:/sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:/sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:/sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:/sbin/agetty -8 38400 tty6 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:/usr/bin/slim >& /dev/null
    # End of file
    It's getting even harder to log into Gnome, as system often freezes while in gdm login screen. I'd tend to exclude hw problems, livecds of other distros and memory tests did not report any problem.
    MODs: title of topic can be updated to Gnome 2.30?

Maybe you are looking for

  • Search help is not coming while using select-options?

    Hi All, I am using select options in my selection screen, i used wdr_select_options, also i coded some parameter values also ( non select-options ). For that field i am not getting search help. If i create as normal i am getting? Suggestions pelase?

  • Yoga 2 Pro WONT TURN ON (backlight flickers)

    First time poster here, I recently purchased a yoga 2 pro approximately one week ago in Hong Kong from a technology reseller (Fortress). Was super excited, majority of reviews were glowing etc. However, after taking home and using it for less than an

  • Item Pricing date from ref. Invoice not copied into Credit memo request

    Hi SAP experts, If a reference invoice includes several pricing dates on item level only the first pricing date will be copied into the credit memo request. Example: Invoice includes three items. First item has pricing date 2007-03-01 and item 20/30

  • JSF/Tiles/Spring Integration Problem

    Hi, I have a JSF based web application, which uses Struts Tiles framework through the view-handler "org.apache.myfaces.tomahawk.application.jsp.JspTi lesViewHandlerImpl". Now I am trying to integrate this with the Spring framework by making use of th

  • How do I retrieve my photos from iPhoto after Yosemite 10.10.3 update on my Macbook Pro?

    I have a MacBook Pro and just updated to OS X Yosemite 10.10.3 I noticed I had the Photos icon that the same as on my iPhone was on the dock where my iPhoto icon was.  How do I get my photos from iPhoto? Thank you in advance!