Disable security Alert while redirecting from secure to non secure mode

Hi Experts,
I am new to the portal and came accross a very different kind of requirement for which i need you advice.
On pressing the Logout button on the portal, the navigation/control is redirecting to the non secure Http website. My portal is on Https site. Now the issue is upon logging out I am getting the security Alert " You are about to direct to a connection that is non secure. Do you want to continue? "
Now I have a requirement to suppress or remove this pop up. I do understand that this is the IE functionality to show the pop message and I have already uncheck the check box under Internet Options -> Advanced -> miscellaneous -> Warn if changiung between Secure to non secure.
Please suggest !
Thanks
Shobhit Taggar

Shobhit,
Which version of IE?
Regards,
Sandeep Tudumu

Similar Messages

  • Disable Security  Alert while redirecting for secure to non secure mode.

    Hi Experts,
    I am new to the portal and came accross a very different kind of requirement for which i need you advice.
    On pressing the Logout button on the portal, the navigation/control is redirecting to the non secure Http website. My portal is on Https site. Now the issue is upon logging out I am getting the security Alert " You are about to direct to a connection that is non secure. Do you want to continue? "
    Now I have a requirement to suppress or remove this pop up. I do understand that this is the IE functionality to show the pop message and I have already uncheck the check box under Internet Options -> Advanced -> miscellaneous -> Warn if changiung between Secure to non secure.
    Please suggest !
    Thanks
    Shobhit Taggar

    Shobhit,
    Which version of IE?
    Regards,
    Sandeep Tudumu

  • Disable Popup Alerts While Writing Text or Email?

    Is there any way to disable the annoying alerts that pop up while you're in the middle of writing an email or a text? I'll be right in the middle of typing something and the alert will pop up; next thing I know I've hit the alert with my thumb and {{ whoosh }} off I go into some completely other place. It's so freaking annoying! But I don't want to disable the alerts all together--only while I'm typing. Alerts are the only way I know if I received a message since the iPhone has no blinking light or other reminder.  Anyone else annoyed by this? Any known fixes/workarounds/solutions out there?

    They're email alerts. When I'm typing a text message or email and I receive a text or an email, the alert for that text or email pops up right in the middle of my screen while I'm typing (see picture) so I accidentally hit the alert and either hit "Close" or "Options" by accident. If I hit "Options," I've sometimes accidentally hit "Trash" and then I have no idea what the alert was even for. I use my iPhone for business and I've lost opportunities because I've accidentally trashed things.
    Surely I can't be the only person this is happening to.

  • How to pass on variables while redirecting from BSP to HTML  page.

    Hi all,
    I have two BSP pages - BSP1, BSP2.  When I click a submit button on BSP1, it should call BSP2 wherein BSP2 will work silently behind the scenes and redirect some variable values through hidden form fields to BSP1 back. 
    User will not see BSP2 in fact.  He just deals with BSP1, but when he clicks the submit button on BSP1, it silently calls BSP2, and then BSP2 will process something behind the scenes and sends back values through hidden form fields to BSP1 by means of redirection. After redirection from BSP2 to BSP1, I am not getting the hidden fields in BSP1.  From the BSP1, I am trying to get the hidden fields of BSP1 using:
    Here is how my code in BSP2 (redirecting to BSP1) looks like:
    <b>BSP2 : Layout:</b>
    <input type="hidden" name="hf1" value="vicky">
    <b>BSP2 : OnInitialization:</b>
      response->redirect( url_BSP1 ).
      navigation->response_complete( ).
    But when I am doing this, the hidden form fields from BSP2 are not being passed to BSP1 back.
    I am trying to get the form values <b>in BSP1</b> as below:
    <b>BSP1 : Layout:</b>
       <%
       data:  hfield type string.
       hfield = request->get_form_field('hf1').
       %>
    I even tried the above code in onRequest, and onInitialization sections.  But I am getting nothing.
    Please give me some ideas on how to deal with the redirection and get the hidden values out of that.
    Thanks in advance.
    Cheers,
    Vicky.

    Hi,
    There are different ways to do it, but let's pick this one. It closes the popup. If you need additional things to be done, you can make a form with all hidden fields, submit that form, do the same close and do whatever you need in the inputprocessing
    <html>
      <head>
    <title>title</title>
          <script language="javascript">
              function init() {
              <%if count eq 1.%>
                  opener.document.form.F<%=field%>.value = '<%=value.%>';
              close();
             <%else.%>
          <%endif.%>
          </script>
      </head>
      <body onLoad="init();">
    </body>
    </html>

  • I also have the same issue..whenever i turn the 60 fps mode on the camera freezes while switching from video to any other mode...does everyone have the same issue?

    My 6 plus camera freezes while switching from video to other modes after 60 fps is enabled....does everyone else have the same issue?

    Yup, i have the same issue, i reported this with apple and there is ticket opened for me with
    the engineering section. more that month still not solved. I was hope after update to IOS 8.1.3 to fix!
    But not fixed yet.
    YOu should to report also with apple bro.

  • ALV Grid fields from editable to non-editable mode

    Hi,
    I am displaying my data through ALV Grid. In my grid the non-key fields are in editable mode.
    When I edit any of the editable fields and place the cursor on other field the field which I have edited should become disable(non-editable). Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it.
    Thanks & Regards,
    Adithya M.

    Hi Adithya,
    I am confused by your statement "place the cursor on other field the field which I have edited should become disable" -- are you stating that this is the requirement or what is currently happening with your program.  The way the edit fields should work by default is they are editable at all times unless you tell it otherwise. 
    If you are saying your requirement is to change the field to disabled once the field is edited (runtime change), first you want to handle the event on data changed then within your method of handling on data changed, you can disable the field from being edited by using cell styles and changing the value to disabled. 
    If you look at program BCALV_GRID_EDIT,
    You will find code where it disables the field for edit using Cell Style -- this will give you an idea how Cell Style controls editable fields and display fields:
            ls_cell-style  = cl_gui_alv_grid=>mc_style_enabled.
            ls_cell-maxlen = 4.
            ls_cell-fieldname = 'CARRNAME'.
            append ls_cell to gt_sflight-cell.
    This specific code will set the field disabled when the program is first exectued, in your case if you need to do this at run time, after someone edits the field, you need to implement handling the event on data changed, in the same program you will find:
    method handle_data_changed.                 
       perform data_changed using er_data_changed.
    endmethod.                     
    It is within this method that you can disable a field for editing.
    However, once it is disabled you will not get back into the handle_data_changed method.  I'm not sure I understand your statement "Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it."  Why would you want the user to be able to edit something, then show it disabled, then let them click on it and edit it again?  Why not just leave it in edit mode?  Maybe if I understand the requirement better, I can answer this portion of the question. 
    If this is based on security or changing from edit to display for the entire grid, you can run the same program mentioned above and click on the Change/Display button in the top left to see how it enables and disables the entire grid for editing.
    Cheers,
    Bonnie

  • I am getting a high performance security alert regarding firefox from Norton, what does this mean?

    Every time my mother turns her computer on Firefox a Norton warning pops up saying "Warning, High performance security alter, from firefox".

    http://norton.lithium.com/norton/

  • Error while redirection from oracle SSO to custom application

    Hi All,
    I have enabled SSO for my web based application. I have modified in mod_osso.conf files in $ORACLE_HOME/Apache/Apache/conf directory. When user gives url like http://<application server name>:<port number>/<application name> then the browser will automatically directed to SSO page. After getting the authontication it has to come to the home page of the application.
    After giving http://<application server name>:<port number>/<application name> the browser is going to SSO page. In some IE browsers after entering the authontication details, the browser redirects to the application home page. But in some of the IE browsers its going to 'page not found' error page.
    I have checked all the details like privacy, IE service pack and security but couldn't get a concreate reason. Please any one help me out.
    Shrikant

    Hi,
    I am currently experiencing the same problem. We have narrowed it down to users running Internet Explorer through a proxy connection (e.g. SQUID etc..). If they bypass their proxy servers then using the same PC / browser authentication works, however with the proxy enabled authentication fails and they have to refresh the page manually to get the portal landing page. The strange thing is the problem does not appear to happen with Opera / Firefox browsers.
    Here are some links to the SQUID proxy issues:
    http://www.squid-cache.org/mail-archive/squid-users/200312/0338.html
    http://www.squid-cache.org/mail-archive/squid-users/200312/0336.html
    Cheers,
    Wayne

  • Problem while redirecting from servlet to wml page

    Hello everybody
    I am developing a WAP site but I am a begnner in wml and servlet. So I need some help from you ppl.
    I have made a wml page whch redirects to a Login servlet now from that LoginServlet I want to gain redirect to a wml page. I have written the following code so that when the user clicks on Login he is redirected to emailreaderwap/Login.wml page
    PrintWriter out = response.getWriter();
    String url="/emailreaderswap/login.wml";
    response.addHeader("Content-Location:", Double.toStringMath.random()));
    response.setContentType("text/vnd.wap.wml");     
    out.println("<?xml version=\"1.0\" encoding=\"utf-8\"?> ");
    out.println("<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.3//EN\" ");
    out.println("\"http://www.wapforum.org/DTD/wml13.dtd\"> ");
    out.println("<wml>");
    out.println("<card>");
    out.println("<p>"+ "Email Address or Password are wrong Please Try Again!\r\nClick On The Link Below to go back to Login Page"+
                                "<a href=\""+url+"\">Login</a>");               
    out.println("</p>"+"</card>"+"</wml>");But when I run this in my Nokia Mobile Browser4.0 I get "malformed output" as output whereas I want to see the /emailreaderwap/Login.wml page as the output.
    Please tell me whether this is the right way to go abt it or is there any other way i can accomplish my task.
    I hope you ppl reply as soon as possible as I have a deadlne to meet.
    Eagerly waiting for your reply.
    Thankyou
    Heti Shah

    hi ,
    u forgot to give the slash ("/") before jsp file when u r creating the RequestDispatcher object. I tried the following example. Its working fine.
    check this code:
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.GenericServlet;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    * @author sivakumar
    public class TestServlet extends GenericServlet  {
          public void service(ServletRequest request,ServletResponse response)throws ServletException,IOException{
                   PrintWriter out=response.getWriter();
                   response.setContentType("text/html");
                   out.println("Hi this is first servlet");
                   RequestDispatcher requestDispatcher=getServletContext().getRequestDispatcher("/test.jsp");
                   requestDispatcher.forward(request,response);
    }test.jsp shows images also.
    try it...
    good luck...

  • Problem while cloning From RAC to Non RAC

    Hi
    Can any body help me to solve this problem occured while cloning my RAC database of EBS 12.06 to Non RAC
    APPS Password : Log file located at /dump/rmsbkp/db/tech_st/10.2.0/appsutil/log/RMS_devmdb1/ApplyDBTier_03240738.log
    - 50% completed Determining Source system database type ("single" or "rac").
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    error in opening zip file
    ERROR while running Apply...
    Wed Mar 24 10:42:07 2010
    ERROR: Failed to execute /dump/rmsbkp/rac/oracle/product/10.2.0/rac/appsutil/clone/bin/adclone.pl
    Please check logfile.
    oradev@devmdb1/dump/rmsbkp/rac/oracle/product/10.2.0/rac/appsutil/clone/bin$>
    I Passed the following parameters :
    Provide the values required for creation of the new Database Context file.
    Target System Hostname (virtual or normal) [devmdb1] :
    Target Instance is RAC (y/n) [y] : n
    Target System Database SID : RMS
    Target System Base Directory : /dump/rmsbkp/rac/oracle/product/10.2.0/rac
    Target System utl_file_dir Directory List : /usr/tmp
    Number of DATA_TOP's on the Target System [2] : 1
    Target System DATA_TOP Directory 1 : /dump/rmsbkp/db/apps_st/data/RMS/datafile
    Target System RDBMS ORACLE_HOME Directory [dump/rmsbkp/rac/oracle/product/10.2.0/rac/db/tech_st/10.2.0] : /dump/rmsbkp/db/tech_st/10.2.0
    Do you want to preserve the Display [rmsmdb1:0.0] (y/n) ? : n
    Target System Display [devmdb1:0.0] :
    Do you want the the target system to have the same port values as the source system (y/n) [y] ? : y
    RC-50220: Warning: Database Port: 1525 is not free. Unable to preserve the port settings from source system.
    Target System Port Pool [0-99] : 7
    and here are the errors from logfile:
    /dump/rmsbkp/db/tech_st/10.2.0/appsutil/scripts/RMS_devmdb1/addlnctl.sh start RMS
    You are running addlnctl.sh version 120.1
    Logfile: /dump/rmsbkp/db/tech_st/10.2.0/appsutil/log/RMS_devmdb1/addlnctl.txt
    Starting listener process RMS ...
    Listener RMS has already been started.
    addlnctl.sh: exiting with status 0
    .end std out.
    .end err out.
    checking DB Connection...
    DEBUG: checkDBConnection in()
    ADX Database Utility
    getConnection() -->
    sDbHost : devmdb1
    sDbDomain : mof.gov.kw
    sDbPort : 1528
    sDbSid : RMS
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@devmdb1.mof.gov.kw:1528:RMS
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1528))(CONNECT_DATA=(SERVICE_NAME=RMS)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1528))(CONNECT_DATA=(SERVICE_NAME=RMS.mof.gov.kw)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    DEBUG: checkDBConnection out()
    Thanks for your help
    Mohamed

    Hi I passed the correct parameters and i reached the following:
    / 50% completed Determining Source system database type ("single" or "rac").
    | 50% completed RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    ERROR while running Apply...
    Wed Mar 24 12:53:05 2010
    ERROR: Failed to execute /dump/rmsbkp/RMS/rac/oracle/product/10.2.0/rac/appsutil/clone/bin/adclone.pl
    Please check logfile.
    In the logfile:
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : devmdb1
    sDbDomain : mof.gov.kw
    sDbPort : 1525
    sDbSid : RMS
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@devmdb1.mof.gov.kw:1525:RMS
    Exception occurred: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1525))(CONNECT_DATA=(SERVICE_NAME=RMS)))
    Exception occurred: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1525))(CONNECT_DATA=(SERVICE_NAME=RMS.mof.gov.kw)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    The Connection descriptor used by the client was:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1525))(CONNECT_DATA=(SERVICE_NAME=RMS.mof.gov.kw)))
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    RC-00118: Error occurred during creation of database
    Raised by oracle.apps.ad.clone.ApplyDatabase
    Thanks
    Mohamed

  • How to disable security warning while printing(Silent Print) from Javascript?

    We have a webapplication through which, we are creating a pdf document and trying to print it sliently ("Silent Print").
    Users who are having latest Adobe version, were getting javascript warning message. However, those with older versions able to "Silent Print", without any warning messages.
    How to disable this security warning while printing from Javascript?
    Warning message: "A script has requested to print an Acrobat file. This could print an entire document. Do you want to proceed printing?".
    Appreciate for your kind help.
    Thanks.

    It's a security warning so it can't be bypassed by anything within the file.

  • Wrong PDF on Security Alerts Page

    On the Security Alerts page (http://otn.oracle.com/deploy/security/alerts.htm) there is a link next to "Buffer Overflow Vulnerability in Oracle9iAS Reports Server Alert #35, 05 June 2002" which links to a document called http://otn.oracle.com/deploy/security/pdf/reports6i_alert.pdf
    This document is actually a copy of the document for a different vulnerability "Buffer Overflow Vulnerability in Oracle Net (Oracle9i Database Server) Alert #34, 05 June 2002"
    Please fix it so we can read about the 9iAS Reports Server Alert!
    Thanks,
    -Otto

    Hi Otto,
    This should now be fixed on OTN but please let us know if you encounter any difficulties.
    Regards,
    OTN Team

  • Oracle Security Alert for CVE-2012-1675

    Hi,
    I want to know more about recent release "Oracle Security Alert" : http://www.oracle.com/technetwork/topics/security/alert-cve-2012-1675-1608180.html
    Document available in https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1453883.1
    Fix is about Class of Secure Transport (COST). I need to know about elaborate steps to find out whether this change is need to apply to my databases or not.
    About my DBs : 10.2.4 , AIX, Nondefault Listener, Shared env , non RAC, local_listener is null & running in pfile.
    Thx,
    Gowin.

    Hello;
    Apply it. Very clean. Simple. No outage on Non-RAC. Biggest Impact is listener stop and start. Took about 3 minutes per server.
    Tested today and had zero issues. ( Assumed you understood a CONNECT was part of the test ). Zero issues.
    Had a thread on this here a few days ago :
    Oracle TNS Poison vulnerability
    See Oracle Support Note 1453883.1 for additional information.
    Best Regards
    mseberg
    With all due respect this isn't very hard. Make a decision.
    Edited by: mseberg on May 2, 2012 7:13 AM

  • Redirect from Constructor

    Hi,
    I am facing a problem in JSR-168 JSF protlet while redirecting from the Page Bean constructor. I am using the following code:
    getFacesContext().getApplication().getNavigationHandler().handleNavigation(getFacesContext(), null, "case2");The same code works fine when used in the click event of the button.... but I want to do it on load the page.
    The scenario is: I want to show my own login page when the portlet is loaded, so on load I check a value of a flag from session if it is 0 then go to login page otherwise open the same page.
    Any idea how to solve this issue?

    i try to handle with it in that way
    FacesContext context = FacesContext.getCurrentInstance();
    UIViewRoot view = UIViewRoot)context.getApplication().getViewHandler().createView( context, "/exception.jsf");
    context.setViewRoot(view);
    context.renderResponse();but it's still not working correct. i go to this page by <t:commandNavigation2 value="Manage" action="managePersons"/>. page even this is displayed. when i click comand nawigation again page is redirecting. when i refresh page from browser redirect not working.
    the same was doing with
    FacesContext facesContext = FacesContext.getCurrentInstance();
    facesContext.getExternalContext().redirect("databaseexception.jsf");
    facesContext.responseComplete();any idea? thanks form help.

  • System PATH environment variable issue when user log off and log in or switch from admin to non-admin account

    Hi,
    Problem Description:
    After installing my new product version, when user does log-off and log in again into admin account
    or switch from admin account to non-admin account, PATH environment variable shows incorrect path of my product (previous product version’s path) using command prompt.
    It seems windows refresh issue during session changes (log off and log in / switch from Admin to
    Non-admin account).
    Why PATH environment variable is not refresh immediately after log off and log in again or Switch
    from admin to non-admin mode?. 
    Please see my thread for more details http://social.msdn.microsoft.com/Forums/vstudio/en-US/445ab42c-bdff-405a-8d53-558e1b6c7d34/path-environment-variable-issue-when-user-logoff-and-login-or-switch-from-admin-to-nonadmin?forum=windowsgeneraldevelopmentissues
    Also submitted bug for this in connect.microsoft.com portal.In that it has lots of information
    like problem statement, Reproduction steps and Expected Results.
    Bug ID: 871782
    Could you please any body help me for this?. your support will be appreciated.
    Thanks,
    Marichamy

    Why PATH environment variable is not refresh immediately after log off and log in again or Switch
    from admin to non-admin mode?. 
    I wouldn't have any expectation of what you are doing to work the way you expect.  E.g. why is the %ABC% being replaced at all?  There is some help about this ambiguous scenario in the cmd help...
    /V:ON Enable delayed environment variable expansion using ! as the
    delimiter. For example, /V:ON would allow !var! to expand the
    variable var at execution time. The var syntax expands variables
    at input time, which is quite a different thing when inside of a FOR
    loop.
    /V:OFF Disable delayed environment expansion.
    So, what's the setting for the /V:  switch that your users would be using?  Perhaps you should be using the ! instead of the % for your ABC variable?
    Oh.  There's more below where I found that...
    Delayed environment variable expansion is NOT enabled by default. You
    can enable or disable delayed environment variable expansion for a
    particular invocation of CMD.EXE with the /V:ON or /V:OFF switch. You
    can enable or disable delayed expansion for all invocations of CMD.EXE on a
    machine and/or user logon session by setting either or both of the
    following REG_DWORD values in the registry using REGEDIT.EXE:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansion
    and/or
    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansion
    to either 0x1 or 0x0. The user specific setting takes precedence over
    the machine setting. The command line switches take precedence over the
    registry settings.
    In a batch file the SETLOCAL ENABLEDELAYEDEXPANSION or DISABLEDELAYEDEXPANSION
    arguments takes precedence over the /V:ON or /V:OFF switch. See SETLOCAL /?
    for details.
    If delayed environment variable expansion is enabled, then the exclamation
    character can be used to substitute the value of an environment variable
    at execution time.
     So, I guess the essence of your "bug" will boil down to whether you
    need the feature to get the result you want and the
    truth of that first sentence but it certainly looks like a "can of worms" to me.   ; )
    HTH
    Robert Aldwinckle

Maybe you are looking for

  • Importing from Imovie HD 6

    If I import a finished project form imovie hd 6 into imovie 08 then export, will imovie 08's better hd output capabilities apply in the same way as if i just did the whole project in imovie 08? phew...

  • Connect my ipad2 to tv

    After I upgrade my IPad 2 with 7.0.4 IOs, it wouldn't show pictures nor video onto the TV screen anymore.

  • How to export sent email from n8?

    Hi, I'm using the standard email application on my N8 (no Anna yet) with a POP3&SMTP account. I need to export the messages I sent with my N8. They are stored in two "sent" folders I need to import these messages into the email software on my compute

  • Problem related with languange of script (urgent )

    hi frnds can i copy a scipt to language en which is existing in de . actualy i am havng a problem that whenever i am trying to change a script its showing me that its existing in original laguage de . so in language en i am not able to modify that sc

  • File adapter schedule

    Hi, I need the file adapter to poll a directory every day at 04:00 - how is that done (besides activating the adapter at 04:00 in the morning and set the poll interval to 86400...)? /Jakob