MII prompts for a login for every execution of a workbench object

Hi,
Is there a setting in MII 12.1.9 Build(108) somewhere, by which I can make the system not to prompt for a login for every execution of a Web object in the workbench?
I have all of the following checked in the System Configuration page -
1. NetweaverDataSourceCaching
2. ResolveMachineName
3. RunTransactionExpirationCheck
4. TransactionCaching
5. UsageStatisticsMonitoring
6. WSDLGenSecurityEnabled
Regards,
Chanti.

Hi Chanti,
Check out this note: 1538719
And
"Additionally the customer needs to review the security and upgrade documents which can be found on SMP under Software Downloads (top menu) -> Installation and Upgrades (lh menu) -> Installation and Upgrade Guides (lh menu) -> SAP Business Suite Applications (lh menu) -> SAP Manufacturing -> SAP Manufacturing Integration and Intelligence (lh menu) -> SAM MII 12.1 (lh menu).  Both of these documents were upgraded specifically for SP08 and the security changes."
The background is that there were significant changes made to the underlying NW package and corresponding changes in MII starting with 12.1.8 which are what is causing the difficulties you experience.
Regards,
Mike

Similar Messages

  • How to force sql developer to prompt for user input for every execution ?

    Hi Folks,
    Environment: Oracle 11g (on Windows 7)
    SQL Developer: *3.1.07*
    I am executing a PL/SQL code off Sql Developer. The code uses substitution variables to prompt user for input. However,I am only prompted for the user input for the very first run of the code. For the subsequent executions, the code simply picks up the user input from the very first run. This behavior persists for all subsequent runs of the code.
    I have executed the same piece of code from SQL*PLUS and the behavior seems normal (i.e. I am prompted for fresh input for every execution)
    How can flush out the old user input so I can be prompted for new user input for every run of the code in sql developer?
    Thanks in advance
    rogers42

    Hi Rogers42,
    1/try
    undefine
    undefine fred
    select '&&fred' from dual;
    [run this multiple times]
    [prompts gere]
    old:select '&&fred' from dual
    new:select 'a' from dual
    'A'
    a
    [prompts here]
    old:select '&&fred' from dual
    new:select 'b' from dual
    'B'
    b
    2/try
    exit (requires recent version of sql developer: tools->preferences->Database->worksheet->Re-initialize on script exit command)
    select '&&fred' from dual;
    exit
    run this multiple times
    [prompts here]
    old:select '&&fred' from dual
    new:select 'x' from dual
    'X'
    x
    Commit
    [prompts here]
    old:select '&&fred' from dual
    new:select 'y' from dual
    'Y'
    y
    Commit
    3/use &fred instead of &&fred
    For background see
    http://totierne.blogspot.co.uk/2010/04/substitution-and-bind-variables.html
    -Turloch
    SQLDeveloper team

  • Loading default limits for every execution

    Hi,
    My situation is like that:
    I execute my sequence using sequential model. Usually, the sequence is executed "in the loop" which means when once the sequential model is launched we can test unit after unit till the moment we want to stop for some reason. The sequence is loaded dynamically by the sequential model and with unload after step executes unload option.
    In the sequence we are using limits. The default TS limits looks like below.
    All our limits get changed during the execution depending on what unit we are testing and on what stage the unit is.
    Problem:
    I thought that if the sequence is loaded dynamically and it is unloaded when executed, the next time the next unit will be tested the default values of the limits container will be loaded (as a result of being loaded dynamically and unloaded when step which calls the main sequence is executed). Unfortunately, it looks like when we perform continous testing the test limits are not reverted back to the default, as expected, but they are a superposition of the limits loaded by previous executions. Of course
    Questions:
    1. Are my expectations regarding TS behaviour are correct?
    2. How to impose the default limits to be "reset" to the default for every sequence execution, not only the first sequential model execution?
    Solved!
    Go to Solution.

    MimiKLM wrote:I'm worry about not the speed of loading you mentioned associated with your solution but the potential problems with the memory. Let say, I call the main sequence 1000 times without interrupting of the execution. So instead of having one copy of the sequence called with cleared/reinitialised all variables and properties I have 1000 copies in the memory. I'd call it a waste to have 1000 copies only because I need to have the the properties and variables cleared.
    The copy only exists while the sequence is running. Once the execution of the sequence completes, the copy will be destroyed/freed. At least as long as your code modules don't hold their own reference to it somewhere (which typically they should not be doing).
    So if you call main sequence 1000 times in a loop, you should still only ever have one runtime copy in memory at a time. The difference is a new copy is created (and destroyed once the sequence is done running) each time, rather than creating a copy only once and reusing it. There is a performance hit to this per call of your sequence that is somewhat proportional to the size of your sequence, but unless your sequence is really huge, or you test execution is extremely fast, you probably will not notice the difference.
    Hope this helps clarify things,
    -Doug

  • DB Link between 8i and 10g : INSERT query parse once for every execution ?

    Hi, All
    Wonder if there is anyone out there who has processes that work among 8i x 10g databases through DB Link, and could enlight this.
    I have the following INSERT statement :
    INSERT INTO SAFX01
    (COD_EMPRESA,
    COD_ESTAB,
    DATA_OPERACAO,
    CONTA_DEB_CRED,
    IND_DEB_CRE,
    ARQUIVAMENTO,
    VLR_LANCTO,
    CONTRA_PART,
    CENTRO_CUSTO,
    CENTRO_DESPESA,
    HISTPADRAO,
    COD_OPERACAO,
    HISTCOMPL,
    COD_INDICE_CONV,
    VLR_OPER_IND,
    NUM_LANCAMENTO
    VALUES
    :BIND001,
    :BIND002,
    :BIND003,
    :BIND004,
    :BIND005,
    :BIND006,
    :BIND007,
    :BIND008,
    :BIND009,
    :BIND010,
    :BIND011,
    :BIND012,
    :BIND013,
    :BIND014,
    :BIND015,
    :BIND016 )
    This piece of the process starts at the 8i side.
    The SAFX01 is a table on the 10g side.
    They connect through a db link.
    The trace shows the following situation :
    call count cpu elapsed disk query current rows
    Parse 227521 696.91 1258.88 1 0 910 0
    Execute 227521 381.97 1136.74 0 0 0 227521
    Fetch 0 0.00 0.00 0 0 0 0
    total 455042 1078.88 2395.62 1 0 910 227521
    As can be seen, for every executation, the statement is parsed.
    Is this a expected behaviour, in general ?
    or ...
    Is it happening because it is a 8i vs 10g interface ?
    Am I missing some DB parameter, that could avoid this ?
    Thx,

    This your application is submitting the statement over and over and over again.
    However, it is probably a soft parse.
    You could make it a still softer parse if you set session_cache_cursors to something sensible (100 or so)
    Other than that, only INSERT etc statements in pl/sql procedures are parsed only once, reason why Oracle often uses packages to do DML in their own applications.
    Hth
    Sybrand Bakker
    Senior Oracle DBA

  • Why am I now getting plugin prompts for every single website I now visit with Dragon Dictate enabled?

    We have used the Dragon Dictate add on for the past 4 months with no problem (the last 2 versions of Firefox I believe). Now since the new version launched this morning, there is pop-up warning for every single website visited - "Allow www.xxxx.com to run Dragon Dictate Internet" along with a 'Continue Blocking' or 'Allow' button. Why is this here since it was not present before? Surely there must be a global setting where I can switch this off rather than have to click a button and choose 'Allow' for every single website we go to?? Or is this something that Dragon has to fix in how it deals with the new version of Firefox?

    You are a genius.
    Why didn't I see that Tab?? Lack of sleep certainly does make one blind..
    many thanks

  • ADF panel does not prompt for variable defined in ADF view object.

    I have created an ADF Panel, which allows the user to run a few simple queries against an Oracle database done using ADF view objects and ADF view links and ADF application module.
    One of these queries lookup detail information about a given database object (Table, view or whatever) from dba_objects. The SQL uses a parameter (:P_OBJ_NAME) that has a default value of “Departments”. If I run the ADF application module by itself outside of the ADF panel, all works fine, it prompts me to provide a value for the parameter :P_OBJ_NAME.
    As I said the panel contains the different ADF view links including the one that should prompt the user to provide a value for :P_OBJ_NAME. When I run the panel it does not prompt me for :P_OBJ_NAME, it just uses the default defined value “departments”.
    I hope I described my problem for every one to understand. The question obviously is how do I get the ADF panel to prompt the user to provide a value for parameter :P_OBJ_NAME, my expectation was that since the sql in the view object and the application module both are designed to prompt for a value for this parameter then the panel should do just that but it does not.
    You expert input would be most appreciated.
    Thanks.
    Bobby A.
    Edited by: Babak Akbari on Aug 13, 2009 8:34 AM
    Edited by: Babak Akbari on Aug 13, 2009 11:12 AM

    The prompting for a parameter is a feature we built into the ADF Tester - it is not a default behavior you get in your application when you just place a VO on your page.
    To get something like this expend the operations node under the VO in the data control palette, and drag the "Execute with parameters" operation to your page to drop it as a parameter form.
    This will provide your user a place to fill out the parameter and press a button to execute the query.

  • OS X asking for admin login for every email sent in Apple Mail

    I am having an issue where I am getting the administrator prompt for every email I send through Apple Mail (Yosemite 10.10.2). Not to be confused with the email account specific password issues that are common... Here is the prompt:
    I get this prompt with every email I attempt to send. I am assuming that this is a Keychain issue, but I ran Keychain First Aid which didn't find any issues and also Reset my Default Keychain and that hasn't cured the issue. The only other thing I am wondering is if it might have something to do with an old install of Server that was on this machine from Mavericks.
    Any ideas?

    Turns out this was related to a preference I hadn't seen before that was on after upgrading to Yosemite. Each email was set to send with a digital signature and as soon as I turned that off, the prompt went away.
    Follow up question: was that the expected behavior for that setting? Should it have been prompting me for each email sent if I did indeed want to sign each email?

  • Counter in mapping for every succesfull message....

    Counter to be maintained for every execution of map.Requirement is to generate sequence number which should be like counter.Whenever this map runs and file is created, sequnece numberhas to be generated and it should be appended accordingly when it runs for second time.Like on a particular day, if this interface runs once, counter should be populated as once and next time when it runs it should be incremented to 2

    wat I understood is
    first time ur mapping is run the counter value is set to 1 and is mapped to target.
    second time the same mapping is run counter shud be incremented by one and mapped to target field.
    this is wat u r looking for.
    if yes:
    what u can do is u can maintain one table which shud hold the interface no and count no.
    first time when mapping runs the table will be updated with count value one. when the mapping run second time the counter value will be incremented n it will update the data in that table.
    u have to use the lookup.
    chirag

  • When i am logging to my company intranet site for every page navigation it is asking for credentials

    When i am logging to my company intranet site for every page navigation it is asking for credentials

    Also, if the navigation works most of the time but you are prompted for every single image, I suggest restarting Firefox and trying again.
    The following also might help in that situation: When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?

  • Ajax:callback function not called for every readystatechange of the request

    Author: khk Posts: 2 Registered: 2/17/06
    Feb 17, 2006 11:04 PM
    Hi
    I am working with an ajax program.
    In that i have defined a callback funtion
    but that function is not being called for every readystatechange of the request object for the first request .
    but it is working fine from the second request.
    function find(start,number){
    var nameField=document.getElementById("text1").value;
    var starting=start;
    var total=number;
    if(form1.criteria[0].checked) {
    http.open("GET", url + escape(nameField)+"&param2="+escape("exact")+"&param4="+escape(starting)+"&param5="+escape(number));
    else if(form1.criteria[2].checked) {
    http.open("GET", url + escape(nameField)+"&param2="+escape("prefix")+"&param4="+escape(starting)+"&param5="+escape(number));
    http.onreadystatechange = callback2;
    http.send(null);
    function callback2(){
    if (http.readyState == 4) {//request state
    if(http.status==200){
    var message=http.responseXML;
    alert(http.responseText);
    Parse2(message);
    }else{
    alert("response is not completed");
    }else{
    alert("request state is :-"+http.readyState);
    }

    Triple post.
    You have been answered here: http://forum.java.sun.com/thread.jspa?threadID=709676

  • Gutterball Bowling Game Keeps Prompting For Update Every Week

    Hey Adobe,
    I am running Firefox 16 with Adobe Shockwave Player, the latest version.  About every 7 days, I get a prompt to update Shockwave Player when I play Gutterball 3D at this site:
    http://www.shockwave.com/contentPlay/shockwave.jsp?id=gutterball&refCode=&brand=ag
    There is no evidence of virues or malware on my computer and my Windows XP is up-to-date.  Both Shockwave Player and Flash Player are the latest versions, so I don't know if it is something with the game or a bug.  Feel free to test.  Thanks!
    Jack

    Hi,
    As per the information and details provided by you, to solve the Outlook 2010 password problem, please follow these steps: -
    Firstly, you try to
    change the profile.
    Open Control panel/Mail/Select the profile and click Properties.
    Select the mailbox and click the
    Change button.
    When inside the profile you will see tabs at top for
    connection and security.
    Please make sure you have selected
    Negotiate authentication, and have unchecked the box that states
    Always prompt for login credentials.
    Then check if you are using
    HTTP to connect with exchange, if so uncheck this and apply the changes.
    Close Outlook if open and reopen Outlook.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G
    Hi Goyal,
    Thank you very much for your reply. The Outlook settings are the same as you described. We do use HTTP to connect to Exchange. I unchecked it and see what happens tomorrow. but just FYI. All Outlook has the same settings with HTTP connection checked. Only
    two specific accounts have the credential issue.
    Will update you tomorrow.
    Thanks,
    Grace

  • Outlook 2010 keeps prompting for password every morning

    Hi,
    We run Exchange 2007 on Windows server 2008. All SP and updates are up to date.
    About a month ago, two users got prompt for user credential in Outlook every morning, but other users in the domain are fine. Below are what I have tried but no help.
    1. Deleted user credential for Outlook in Credential Manager
    2. Recreated Outlook profile
    3. Disjoin and rejoin their computers to the domain
    I can repeat the problem on another computer with the user's account log in.
    The problem only happens in the morning, once the user entered the credential, Outlook starts to update new email and it will be fine for the rest of the day.
    Only two users have this problem. I can't figure out if they have anything in common. Since I can repeat the problem on another computer, I assume this problem should be related to user account.
    I need help!
    Thanks in advance!
    Grace

    Hi,
    As per the information and details provided by you, to solve the Outlook 2010 password problem, please follow these steps: -
    Firstly, you try to
    change the profile.
    Open Control panel/Mail/Select the profile and click Properties.
    Select the mailbox and click the
    Change button.
    When inside the profile you will see tabs at top for
    connection and security.
    Please make sure you have selected
    Negotiate authentication, and have unchecked the box that states
    Always prompt for login credentials.
    Then check if you are using
    HTTP to connect with exchange, if so uncheck this and apply the changes.
    Close Outlook if open and reopen Outlook.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G
    Hi Goyal,
    Thank you very much for your reply. The Outlook settings are the same as you described. We do use HTTP to connect to Exchange. I unchecked it and see what happens tomorrow. but just FYI. All Outlook has the same settings with HTTP connection checked. Only
    two specific accounts have the credential issue.
    Will update you tomorrow.
    Thanks,
    Grace

  • Disable login prompt for SAP NW based Xcelsius Dashboard

    Hi all,
    Need assistance to understand what needs to be done in the below case:
    Current scenario:
    1. Developed Xcelsius Dashboard based on SAP NW Connectivity on BO XI 3.1 SP2+.
    2. Configured trust between SAP BW server and BO Server using steps outlined in integration kit(login/accept_sso2_ticket, etc).
    Imported user roles in BOE and enabled SAP authentication.
    After this, WEBI Reports based on Bex queries refresh in Infoview without prompting for Login id/Password.
    3. Configured SAP Server to enable portal/interop switch to display the Xcelsius Dashboard within Infoview which is the existing BI portal. Used Hyperlink object for enabling the link.
    In the hyperlink, I am using the same link which gets generated when I use the option Xcelsius 2008>>file menu>>SAP>>Launch
    Issue: On click of Hyperlink, I get SAP EP Login window. Once I fill up the SAP user id and password, the dashboard comes up
    Server Configuration:All on same domain
    SAP system ID=X(SAP BW server)
    SAP system id=Y(SAP EP Portal)
    BOBJ system Z(BOBJ Server)
    User roles stored in X. Entitlement system defined in Z for SAP BW Server X.
    Dashboard is not available in SAP EP Portal in any folder as of now. Have not created any roles yet.
    As per the various posts and KB articles,
    Do I need to enable SNC for both X and Y? or trust between Infoview and SAP EP portal can be enabled without enabling SNC?
    Just like SAP BW server, does the SAP EP portal also has *.cert files that can be used to exchange with BO Server to enable trust.
    Thanks,
    V Fernandes

    Hi Ingo,
    Thanks for your explanation. I was referring the configuration mentioned in the wiki article for displaying Xcelsius Dashboard in Infoview where this was explained as a possibility. Even though its not Lean.
    Link: [http://wiki.sdn.sap.com/wiki/display/BOBJ/IntegrationofanXcelsiusdashboardinBOE+Infoview]
    The only difference in my case is the use of SAP Authentication instead of Enterprise.
    Thus as per your last update the following workflow is only valid:
    1. User logins to Infoview using SAP Authentication.
    2. User clicks on Xcelsius Dashboard Hyperlink object.
    3. SAP Enterprise Portal login pops up within the Infoview Workspace.
    4. User has to fill in the Login credentials again.
    5. Dashboard load up successfully.
    Please correct me in case I am wrong.
    Thanks for the response.In case there is any other way this can be achieved, then please do let me know. Appreciate for all the help.
    Regards,
    V Fernandes

  • WRT110 works for every website except ONE after login, help please

    I have a WRT110 version 1.0
    It works for every website, except one. And it works for that one website just fine, until I login. When I enter my username/password it accepts it then redirects me to the companies landing page. I can see that because the URL loading changes and it shows the Title in the page which indicates it connected, but then it just sits there 'loading', in the status bar I see the message: "Waiting for tools.domain.com... to load" or something like that. and it takes like 5 to 10 minutes, no joke, then it loads.
    If I connect my computer directly to the modem and bypass the router, then it loads just fine, very fast like everything else.
    But then when I re-connect my router and refresh the page, it does it again, takes forever, but I can instanly see the title of the page in the title bar.
    It works on every computer that I connect trough the mobile hotspot on my 4G verizon phone. but if it is through the router, every computer takes 5 to 10 minutes. Literrally.
    Anyone have this happen to them? If so, how did you fix it?
    Thanks,
    Richard

    Try the following settings:
    # Open up the browser on the desktop and on the address bar type 192.168.1.1 that will open up the Router setup page…
    # Lower the MTU (Maximum Transmission Unit) from 1500 to 1400 or less (usually found on your router's main/ basic setup page)
    # Then click on Security tab disable SPI Firewall Protection, uncheck Filter Anonymous Internet Requests...
    Now check the connectivity status.

  • Report sometimes prompts for database logon prior to execution

    I have installed the Crystal Reports Integration Addon on our system and it works correclty for users on our terminal services server.  But when I installed it on a user's PC running Windows XP, when I go to execute an existing report, the Runtime viewer launches, and then displays a Database logon panel with the Server field filled in, the database field is blank, and the SA user and password fields are populated, and I get an error that says logon failed.  I type in the SA user id and password, but get the same error.
    If the same user logs onto the TS server, the runtime viewer launches correctly and the report prompts for input, then displays the appropriate data (no database logon is requested). But if it runs at that user's workstation, the viewer launches, and then prompts for database logon.
    We are running SAP 2007A SP00 PL47, CR Basic 2008 for SAP Business One, and the runtime viewer is Crystal Reports 2008 Runtime SP1. version 2.0.0.7

    Hi Bruce,
    I am not sure what the problem is.
    The only workaround I can think of is to change the Integrated Security in the report to true. This means that you will be using Windows Authentication as opposed SQL Authentication. This will not prompt for SQL username and password.
    Usually this is NOT an ideal process as you will have to Add each and every Windows user in the SQL Database you are trying to access. For example, you have to add DOMAIN_NAME\User_Name under the Database Properties.
    I am not sure what the minimum security you need to run the report. You will try a few different options and see what works best for you. Avoid permissions that would give users ability to write to the SQL database.
    Again, I know this is not ideal. But I am not sure what else can be done here.
    Krishnan

Maybe you are looking for