Session expires after the script1 in the job is over

hi,
i created a job. in my application i have to maintain the session. in the job, when script 1 gets over, and script starts, i dont know for what reason, the session expires. can this be due to cookies??

If the session is needed for the second script in the job, then try to change the following settings for the second script using Options -> Current Script -> Playback -> Script. In the Automation Actions frame, uncheck the first three checkboxes for Reset Browser, Start new browser session and use distinct cookie directory. Also remember to uncheck the checkbox for Use same settings for all new scripts, that is the last option on the Current Script Setting dialog. Otherwise the above settings will apply to any of the new scripts that you create.
Hope this helps.

Similar Messages

  • In TCode, EMMA, in ECC 6, even after the jobs are processed, it shows zero.

    Hi,
    The TCode EMMA, monitering mass runs, when it is executed, even after the Jobs have run successfully,it shows as zero in the columns, viz. No. succesful jobs, Proc. Jobs. in the ECC 6 Version.
    Can someone suggest what could be the reason, and if any Notes is to be applied for the same,kindly suggest which one.
    Thanks in advance.
    Regards,
    Irshad Ali Khan.

    Blumtain, Ravi,
    Thanks for your response. As told I did, but still I am not getting for the mass bills i.e EA38, EA26 and EA29 but where as the FI-CA related Tcodes, the list shows all the job items, i.e Number of Success, failure and all, and as Ravi said, we need to see the configuration, can you please tell me as where and what has to be done in the settings.
    Thnaks again for your valuable inputs inadvance....
    Regards,
    Irshad Ali Khan.

  • Does adobe captivate subscrition exported file expire after the subscription expired?

    I already used Captivate trial version and planning to purchase the monthly subscrition verion. The .cp files expired after the trial time ended.
    What happens, if I purchase Captive subscription for two month, export and deliver projects for my clients and do not renew my subscription, cause there is no project at all for half a year?
    Does these deliverd .cp files expire and not usable for my customers?

    I already used Captivate trial version and planning to purchase the monthly subscrition verion. The .cp files expired after the trial time ended.
    What happens, if I purchase Captive subscription for two month, export and deliver projects for my clients and do not renew my subscription, cause there is no project at all for half a year?
    Does these deliverd .cp files expire and not usable for my customers?

  • I just downloaded a video in HD, but I found out after the download was over my computer doesn't play HD videos. Is there any way I can return the video and get the SD version, or upgrade my computer so it will play the HD video?

    I just downloaded a video in HD, but I found out after the download was over my computer doesn't play HD videos. Is there any way I can return the video and get the SD version, or upgrade my computer so it will play the HD video?

    From http://support.apple.com/kb/HT3209
    When you purchase an HD video on a supported device or computer, only HD video will be downloaded. To download the SD version, you need to download the video again from your Purchased page. Conversely, if you purchase an HD video on an unsupported device, the SD version will be downloaded. Then, you will need to download the HD version from your Purchased page. Learn more about downloading previous purchases.

  • Unlocking my iPhone after the contract is over

    I purchased my iPhone 18 months ago and my contract with O2 is running out. I am moving for a ob to different country that also have iPhones and I was wondering whether it is possible to LEGALLY unlock my iPhone after the contract it over so I can use it with other operator in other country. Any details, like procedure, prices and everything would be apprecieated.

    Not sure if you can. It's down to the carrier in your country as to whether they feel like it or not.
    [This list|http://support.apple.com/kb/HT1937] will give you more details.

  • My calendar events are dropped after the month is over.  How can I stop that from happening?

    My calendar events are dropped after the month is over.  How can I prevent this from happening?

    Settings > Mail, Contacts, Calendars > [scroll way down to the Calendars section] Sync = "All events"

  • Start new session automatically after the current one is expired

    Hi Guys,
    My application should be displayed on the screen 24/7 . The information there is being refreshed every 5 minutes. When the APEX session is expired the refresh stops working and the page has to be reloaded.
    I'm looking for the solution that would allow to keep the application always on and to start new session automatically without a human being involved.
    Thanks in advance,
    Elena

    Hi everybody,
    Being impatient, I've already found a solution. I created a JavaScript function the reloads the page. Instead of current session ID in the url I use 1. In this case apex generates the new session.
    The Timer Plug-in runs the function every X minutes.
    The function code is the following:
    function reload() {
         var url = location.href;     
         var g_app_id = '&APP_ID.';
         var g_page_id = '&APP_PAGE_ID.';
         var patt = new RegExp("[^=]+","i");  // i - Perform case-insensitive matching
         var newUrl = url.match(patt) + "=" + g_app_id + ":" + g_page_id + ":1";     
         window.location.assign(newUrl);
    I hope it might be helpful for you guys.
    Regards,
    Elena

  • How to get a materialized view get to refresh itself after the job is "broken"

    we created a materialized view sometime ago with the following statement:
    create materialized view SXV_PUB_EMPLOYEE_CERT_ALL_M
    refresh complete on demand
    start with to_date('30-08-2009 04:00:00', 'dd-mm-yyyy hh24:mi:ss') next trunc(sysdate) + (28/24)
    as
    select  sxv_emp_cert_all.*
    from    sxv_employee_certification_all sxv_emp_cert_all;
    this week we found out it had not been refresh for about a month
    In dba_jobs the column broken was 'Y', next_date time something like 01-01-4000 and failures 16
    when I ran it manually by executing
    BEGIN DBMS_MVIEW.REFRESH('SXV_PUB_EMPLOYEE_CERT_ALL_M', 'C'); END;
    I found that one of the columns was too small (probably a columns of one of the underlying tables had been extended since the creation of the materialized view)
    After fixing this I ussied yesterday (on 29-8-2013) the statement :
    alter materialized view SXV_PUB_EMPLOYEE_CERT_ALL_M
    refresh complete on demand
    start with to_date('30-08-2009 04:00:00', 'dd-mm-yyyy hh24:mi:ss') next trunc(sysdate) + (28/24)
    after this the table dba_jobs showed me 30-08-2013 04:00:00 as next date
    I was expecting it to run this night at 04:00, but it didn't
    the last_date column value was still from about a month ago, the column broken still shows 'Y'
    and the next date 30-08-2013 04:00:00 (while it should been set to 31-08-2013 01:00:00
    Rrunning
    BEGIN DBMS_MVIEW.REFRESH('SXV_PUB_EMPLOYEE_CERT_ALL_M', 'C'); END;
    gave no errors this time
    and in User_Mview_Analysis the last_refresh_date column showed the date/time I had executed it
    Any idea how to get the job "unbroken" again so that the view refreshes itself every night?
    the database is Oracle Database 10g Release 10.2.0.4.0
    regards,
    Remco

    thanx for all your helpful and correct answers . but eventually I found it myself
    exec dbms_job.broken(<jobnumber>, false);

  • OIM 11g - User Not enabled After the job "enable user after start date"

    Hi,
    I have a future hired user in OIM whose start date is set in OIM. The status of the user in OIM is 'Disabled Until Start Date'.
    After the start date has passed and the scheduled job 'enable user after start date' is run, I see that the user is still in the status 'Disabled Until Start Date'. I re-run the scheduled job 'enable user after start date', this time manually, still the state of the user remains unchanged.
    Please help in troubleshooting as to find out the root cause of the issue and a workaround/solution, if possible.
    This issue is intermittent and has happened with quite a number of user. Any pointer would be helpful.
    Regards,
    Sudipto S.

    I agree with Nayan.
    One alternative approach can be to write your own custom scheduler which can overcome the limitation of OOTB scheduled job 'enable user after start date'. Let the OOTB job get executed first. After it, your custom scheduler should fire a simple SQL Query:
    SELECT USR_KEY, USR_STATUS FROM USR WHERE (USR_START_DATE > SYSDATE -1) AND USR_STATUS='Disabled Until Start Date';
    //Means those users who are supposed to get enabled today and are still not yet enabled and are in 'Disabled Until Start Date'. May be 2-3 user keys at max will come...
    As you said it happens only intermittently and not for all users... So, let the OOTB scheduled job take care of most of such users... And after it has finished, if any user still remains in 'Disabled Until Start Date', your custom scheduler should enable it via using tcUserOperationsIntf.enableUser(userKey);
    Using API is always better than database update... Because APIs trigger downstream provisioning workflows as well and not just updates OIM Database...
    Keeping your constraints in mind, I think it is the correct answer.

  • How to make the session expire when the refresh button is clicked

    Hi All,
    I am writing a Struts application where I want the session to expire when the user clicks refresh button or refresh the page by hitting F5, like any Bank sites. Any help will be appreciated.

    The trick isn't invalidating the session. The trick is detecting refresh requests.
    The Synchronizer Token pattern can handle this.
    Struts can do this for you. Check out [this article|http://www.javaworld.com/javaworld/javatips/jw-javatip136.html?page=1]
    Cheers,
    evnafets

  • Tomcat session expires after compiling servlet/ class

    Hi,
    Does anybody know why tomcat(4.1) session expires if you modify a serlvet or class and compile it.
    After compiling I refresh the page and I get session invalidated page. And every time I compile I have to relogin.
    Any ideas ? Is there a work around ?

    In serverl.xml, if you have set the reloadable="true" attribute in your <Context/> tag for your web application then each time one of the servlet classes is modified, tomcat will reload the web application. Set reloadable="false" and this will stop.
    tobes

  • Portal Session Expiration after 10 minutes.

    Hello Experts,
    We are running on EP 7.0 ABAP+JAVA stack.The UME has been configured on ABAP stack.
    We have a requirement to auto logoff the portal if no activity is done for 10 minutes.
    I have gone through SAP Notes and came to know this is not possible in current portal framework. In some threads I got clue to set some parameters for SSO expiration and Security session expiration but that did not gave desired result.
    I have set the security session to 10minutes in Visual administrator.(default 27h) [Security Provider -> SessionExpirationPeriod ]but nothing happened I am still in portal session after 10 minutes.
    I made the change in -> /usr/sap/<SID>/<inst>/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/web.xml
    And change the session time out to 10 minutes. But same result nothing happened.
    Please guide what settings I am missing. What else I have to do to get the session expire.
    thanks & regards
    shankar

    Hi,
    Check this:
    Redirect user to a custom "logoff" page after 10 minutes of user inactivity
    To set Logon Tickets Validity Period:
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/18b6cfe1235d79e10000000a11466f/frameset.htm
    Regards,
    Praveen Gudapati

  • Session Expired after logging on to Visual Administrator - SLD Config

    Hey Guys,
    I have a NW2004s installation, both ABAP and Java stack, with UME pointing to the ABAP stack.
    I created a user in ABAP stack, and assigned the J2EE_ADMIN role to this user.
    I try to log into the Visual Administrator with this user. The login is successful.
    However right after I navigate to the sld data supplier node and click it, I get the error message, Session Expired.
    I think it is because I am not authorized to configure SLD or something like that.
    When I created the user in the ABAP stack I entered all the roles for the user with which I am logging on to the Visual Admin:
         SAP_SLD_ADMINISTRATOR
         SAP_SLD_CONFIGURATOR
    Anyhelp so that I can get over this problem and configure the SLD in the system.
    Thank You.
    Sumit.

    J2EE_ADMIN role has all the rights(configure SLD etc) , make sure you configure the SLD and import the CIM model content you can login to SLD at http://<host>:5XX00/SLD and then access the data supplier bridge
    where XX is your instance number

  • POC Run after the Project Cut Over migration

    Hello Experts,
    Is it mandatory to run POC after Migration of Projects into SAP. We are taking over the legacy projects data to sap on 15th of this month and we want to run POC on the month end say 31st of march.
    i want to know wether we have to run POC immediatly after the project migration or not?
    Best Regards,
    Ravi

    Hi Ravi,
    It is certainly advisable to execute POC run after Project Cut over migration.  The calculated values should be same as before migration.  This is confirm that the migration is successful.  Executing POC on 31st will include values before migration and after migration and will make it difficult to reconcile the numbers.
    Regards
    Jayesh

  • Lightroom free trial, after the trial is over.

    I am in the free trial mode, wondering what will happen to the pics I used with lightroom and saved in my pc, after the free trial is over.

    The images will be were you put them. If you export them they will include any edits that you applied in Lightroom. Even the catalog will be available for reuse when you purchase Lightroom.

Maybe you are looking for