Browser not working when apps are in use.

Although my browser works normally if I use any app which requires an internet connection and try to use the browser simultaneously the browser says connection not available and I'm unable to connect. Any ideas what's wrong?

That's weird
Are you using SmartConnect or Psiloc Connect?
Also, can you check in the browser settings if you have set-up a default connection? (a destination group, or a single access point, or "always ask", or nothing?)
Maybe you could also check the connection settings for one of the other applications from which you can open the browser (just to make sure that the settings of the application do not conflict with the settings of the browser..)

Similar Messages

  • Why Dynamic Parameter is not working, when i create report using stored procedure ?

    Post Author: Shashi Kant
    CA Forum: General
    Hi all
    Why Dynamic Parameter is not working, when i create report XI using stored procedure ?
    Only i shaw those parameters which i used in my stored procedure, the parameter which i create dynamic using stored procedure
    is not shown to me when i referesh the report for viewing the results.
    I have used the same procedure which i mention below but can not seen the last screen which is shown in this .
    ============================================================================================
    1. Select View > Field Explorer2. Right-click on Parameter Fields and select New from the right-click menu.3. Enter u201CCustomer Nameu201D as the name for your parameter4. Under u201CList of Valuesu201D select u201CDynamicu201D5. Under the Value column, click where is says u201Cclick here to add itemu201D and select Customer Name from the drop-down list. The dialog shown now look like the one shown below in Figure 1. Click OK to return to your report design.
    Dynamic Parameter Setup6. Next, select Report > Select Expert, select the Customer Name field and click OK.7. Using the drop-down list beside select u201CIs Equal Tou201D and using the drop-down list, select your parameter field (it should be the first field). 8. Click OK to return to your report design and see the parameter dialog.The parameter dialog will appear and show you a dynamic list of values that is updated each time your run your report. It couldnu2019t be easier! In our next tutorial, we will be looking at how to use this feature to create cascading parameter fields, where the values are filtered by the preceding selection.
    Dynamic Parameters in Action
    My question is that whether dynamic parameter is working with storedprocedure or not.
    When i added one table and try to fetch records using dyanmic prameters. after that i am not be able to find the dynamic parameter option when i referesh my report.
    One more thing when i try the static parameter for my report, the option i see when i referesh the screen.
    Please reply soon , it's urgent
    Regards
    shashi kant

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Automatic hierarchie aggregation not working when dimension formula is used

    Hey folks,
    i'm facing the following issue. currently i'm setting up an application to plan sales quantities, prices and manufacturing costs.
    subsequently i want to calculate following values for members of account dimension:
    - turnover (price * sales)
          -> implemented as dimension formula
          -> in the account hierarchie it's a child of net revenue
          -> account type: inc
          => calculation work fine in the reports
    - manufacturing cost (manufacturing cost * sales)
          -> implemented as dimension formula
          -> in the account hierarchie it's a child of net revenue
          -> account type: exp
          => calculation work fine in the reports
    - net revenue (turnover - manufacturing cost)
          -> in the account hierarchie it's the parent of turnover, manufacturing cost
          -> account type: inc
          => key figure is empty !!
    As far as i understood BPC is aggregating automatically along the hierarchie. That means to me that net revenue should be automatically calculated due to the hierarchical relation in account dimension.
    Did anyone ever face same issue ? probably the hierachical aggregation is not working when key figures based on dimension formula is used !? Do i really have to implement script logic to solve this issue ?
    Looking forward to interesting approaches to solve this issue !
    Best regards,
    Moritz

    Hey,
    sorry my description was misleading at this point. i don't have a formula define for net revenue dimension member. i expected the system to automatically calculate it by aggregation along the account dimension hierarchy where net revenue is parent to the turnover and manufacturing costs which are calculated by dimension formula.
    Best regards,
    Moritz

  • Mail and Browser not working when I VPN to work

    I swear this was working before but...
    I have a mackbook pro running 10.9.5. Today, needed to connect to work, so I went in using their VPN. Then I used the Microsoft Remote Desktop application to remote into my work PC. Normally, I can to to other apps like my Apple Mail and Chrome and do the normal things. But today, while connected to the VPN/Remote Desktop, all my mail was showing errors (triangles) and I could not hit any of my normal websites (facebook, etc.).
    Is the VPN taking over my machine?  Is there a configuration i can use to fix this?
    Thanks

    Are you connecting your iPhone directly to your PC or to a USB hub?

  • Outer join not working when filters are applied from Prompts

    Hi,
    Without values being selected from the dashboard prompts, my outer join is working fine with all the rows and all the columns showing up( as per requirement). But as soon as I select values in the prompts, only certain rows and columns show up.
    BTW, I have 2 prompts Year and Quarter. I put Year is Prompted or is null in the criteria. It works. BUT as soon as I also put in quarter numbers, it does not work.
    Is there a workaround for this?
    Thanks,
    Dan
    Edited by: Danny on Apr 26, 2013 12:10 PM

    I just experimented by adding is null to not only the year and quarter but to the row and column too and it worked!
    Thanks,
    Dan

  • Dynamic record group not working when apostrophes are used

    Hi Everyone,
    I have developed a Form for the most part everything is working as expected. However, there is a search functionality that is giving me problems. The issue is that when the user enters search criteria for last_name that has an apostrophe (O'brian) the search lov doesn't get populated because the dynamic record group is not getting created when the string has an apostrophe (ie O'brian). I have a dynamic record group that takes the user's search criteria and populates an LOV on the screen with the records that matched their criteria.
    Here is the code that is behind my search button where the dynamic RG gets created. It works fine for all searches that don't contain an apostrophe. Btw, the Oracle Forms version is 10g.
    DECLARE
    p_where_debtor varchar2(2000);
    p_where_liab varchar2(2000);
    rg_id RecordGroup;
    v_query varchar2(2000) := null;
    rg_name varchar2(2000):= 'RG_LIAB_LST';
    errcode NUMBER;
    BEGIN
    IF :SEARCH.cd_nb is null and
    :SEARCH.cd_seq is null and
    :SEARCH.f_name is null and
    :SEARCH.l_name is null and
    :SEARCH.mi_name is null
    then
    display_message ('Search criteria must be entered');
    raise form_trigger_failure;
    END IF;
    v_query := 'SELECT last_name, first_name, middle_name, c_no, c_seq
    FROM TABLE_VW2 WHERE 1=1';
    /*Search criteria entered by user*/
    IF :SEARCH.l_name_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(last_name) LIKE '''||UPPER(:SEARCH.l_name)||'%''';
    END IF;
    IF :SEARCH.f_name_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(first_name) LIKE '''||UPPER(:SEARCH.f_name)||'%''';
    END IF;
    IF :SEARCH.mi_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(middle_name) LIKE '''||UPPER(:SEARCH.mi_name)||'%''';
    END IF;
    IF :SEARCH.cdcs_nbr_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(c_no) LIKE '''||UPPER(:SEARCH.cd_nb)||'%''';
    END IF;
    IF :SEARCH.cdcs_seq_srch IS NOT NULL THEN
    v_query := v_query||' AND UPPER(c_seq) LIKE '''||UPPER(:SEARCH.cd_seq)||'%''';
    END IF;
    /*Make sure record group doesn't exisit*/
    rg_id := Find_Group(rg_name);
    /*If it doesn't exist then create record group*/
    IF id_null(rg_id) THEN
    rg_id:= create_group_from_query(rg_name,v_query);
    END IF;
    IF NOT id_null (rg_id) THEN
    delete_group (rg_id);
    rg_id:= create_group_from_query(rg_name, v_query);
    END IF;
    errcode := Populate_Group(rg_id);
    Any help would be greatly appreciated.
    Thanks,
    Adrian

    For every item where an apostroph can occur, do a
    REPLACE(:BLOCK.ITEM, '''', '''''');

  • Clientgen not working when an autotype is used with an xsd

    Here the situation is i am generating java files utilizing autotype using an xsd which in turn import another child xsd and as both have different namespace they class are generated in a different package structure. I wrote a ejb where i expose a method with the user defined objects , which is been generated from the above xsd, as the parameters.Here i cant able to generate the clientgen as its not able to fetch the class of the child xsd complex type.
    Can anybody provide me a suggestion

    Let me be more clear
    - I need to generate java classes using an xsd which in turn import another xsd.Its been worked out with autotype.
    - I need to exposed a service using Ejb which has some user defined datatypes and are derived from the classes generated by autotype( both from the parent xsd and the imported child xsd ) as per the first point, and i used Servicegen to exposed it too... i generated an ear file.
    - Now the issue is when i used clientgen using the above EAR file it cant able to view the Package structure (Namespace) of the imported child xsd.
    Please post ur suggestion

  • Canon Mp600 will not work when I try to use photoshop print settings since I upgraded to latest Maverick?

    I upgraded to latest Maverick . Now when I use PhotoshopC5 my print settings crash every time I even touch the button. My printer is a Canon MP600 and worked with all Photoshop settings until this week. Help!

    The last driver that Canon released for the MP600, v10.5.1.2.0, was for Mac OS X 10.7. Since you mention upgrading to Mavericks you could have a driver version earlier than this. You can check by opening Printers & Scanners, selecting the MP600 and then clicking on Options & Supplies. With the General tab selected you will see the driver version.
    Now even if you do have the latest version there is no guarantee that it will be compatible with all applications on 10.9, especially the CS5 suite. You could try installing Gutenprint v5.2.9 to get a driver more compatible with the latest OS. Or if colour management is a requirement for Photoshop printing then you may need to purchase Printfab, although since you are using an MP600 then I would assume that you are not overly concerned with colour accuracy. Another option is to export the image from Photoshop as a PDF and then open this in Preview and print from that application.

  • 4.0 webservice does not work when Address Cleanse is used

    Hello,
    For my real time web service, I am unable to add any address cleansing transforms and make it work. The web service works fine as long as I do not add any address cleanse transform.
    As soon as I add any address cleanse transform and try to start the service,  the real time services list icon would turn yellow for more than 10 mins with the status stuck as "Service Starting"
    The code in designer complies fine. The address cleanse transform works fine with batch jobs. Web services without address cleanse transforms work fine. Am not sure what the problem might be.
    It'd be great if you could give some pointers on how to resolve it.
    Thanks for looking.
    Regards
    T.

    Hi Vidya,
    Thanks for posting your example. You may want to remove your workspace details from the previous posting, or at least update the password on the workspace. I've taken a look at your example and initially couldn't see anything wrong with your tree query. However, when I ran your query in SQL Workshop, it only returned one row, which would explain why you were only seeing one node in your tree! I've updated your query to use a WITH clause, and the tree is now working correctly. I believe you've hit an underlying database bug where the CONNECT BY query is only returning 1 row, when in fact it should return > 1 row. By re-writing the query to use a WITH clause, you can get around the problem.
    Regards,
    Hilary

  • No audio when apps are in use

    There is no audio when i play ibooks and school apps that I have purchase. Problem started just today. They used to play. They are school apps for 1st grade children. Is anyone else having this problem.

    Have you got notifications muted ? Only notifications (including games) get muted, so the iPod and Videos apps, and headphones, still get sound. Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and its the icon; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

  • IPhone message tone does not work when app is open

    I no longer get a tone or vibration notification when receiving a text message if the Messages app is open, even after the phone has been put to sleep.
    So, this is what happens: I write a message in Messages and send it, and then press the power button to put the phone to sleep.  If a message comes in reply, the phone does not play an alert tone or vibrate.  But if, instead of pressing the power button, I press the home button first and then the power button, the alert tone/vibration functions correctly.
    I don't have iMessages turned on.  My phone does have a password lock at the home screen.
    (The Mail application may have a similar problem, though I haven't been able to reproduce it on purpose, so it's possible I'm just missing the notification when it happens.)
    Encountered on both iPhone 4S (with iOS 6) and iPhone 5.

    I have Firefox 11.0 and still had to disable Skype Click to Call to get the copy options back in Excel.

  • Safari web browser not working when the iPad is upgraded to ios 4.2

    I have just upgraded my ipad 1 to ios 4.2. Now my safari browser will not stay on selected website...it just takes me back to the desktop menus. It worked perfectly before. If possible I will go back to original setting...but how?

    Tap Settings / Safari. Clear the History, Cookies, and Cache.
    Restart your iPad.
    Press and hold the Sleep/Wake button until the red slider appears. Slide your finger across the slider to turn off iPad. To turn iPad back on, press and hold the Sleep/Wake until the Apple logo appears.

  • Payment comes off credit card not account when apps are brought

    payment for apps comes off credit card insted of account

    Go back into your iTunes account and set the credit card to none. As long as you have a card set, it will charge the card instead of credit on your account.

  • No matter how many times I reet my password, it will not work when trying to sign intothe App Store through my iPhone4S.

    No matter how many times I reset my password, it will not work when trying to sign intothe App Store through my iPhone4S.

    What is the error that you are seeing? Try to login using another App like GameCenter or iMessage? Also try logging in to other Apps like Facebook to check if it is your Internet connection problem.

  • HT1430 For some unknown reason my Apple ID password does not work when trying to down load books from the IBook or Nook Apps.  It also has stop work when trying to down load new Apps.  Any suggestions out their???

    For some unknown reason, my Apple ID Password does not work when trying to down load IBooks, Nook books, or new Apps.  Everything else seems to work.  Any suggestions out their???

    I appreciate the info and realize that the Nook App is not related to my Apple account but this too has stopped working.  My situation first started with the Nook App not down loading and then has now spread to my IBook and new app downloads.  I have checked into my ITunes account and the ID and password are correct  and at times when I am asked to submit my Apple password such as setting up this Apple Support Community the ID and password work.  My problem seems to be just with trying to use my ID and password when wanting to download new books or apps.  I can go into the IBook, Nook, and App stores and seemingly download an item but when clicking on the new book or app nothing happens and I get a message that states it can not get into the ITunes store and it wants me to either try again or cancel.  This message appears usually ten minutes after I have tried to make a purchase.  At other times when I attempt to download a book or app I lose the screen and the IPad goes into the opening screen.  Short of redoing my Apple account or deleting an app and attempting to reload the app (but this won't work because the App store won't load new apps) I don't have a clue what to do.

Maybe you are looking for

  • Temp Tables - Best Practice

    Hello, I have a customer who uses temp tables all over their application. This customer is a novice and the app has its roots in VB6. We are converting it to .net I would really like to know the best practice for using temp tables. I have seen code l

  • What is maximum size of attachments?

    Hi, Does Mail determine the maximum size of attachment I can send or is that down to my ISP (Telefonica in Tenerife)? I have been trying to send a video It is 177Mb If I can find out what the maximum size I can send is I can trim it down. Thanks for

  • Does anyone have three monitors working?

    A friend of mine who enjoys the piece of mind of using Linux, but not the poking and prodding recently "inherited" a good monitor in addition to the two he already had. He has two Nvidia cards. One came with the computer and has one out while the oth

  • The software could not be found on any servers at this time

    Hello, Within the last few days OSD from within the OS has started to fail. The error it provides is The software could not be found on any servers at this time. I find this error misleading since I can PXE, connecting to the same server, and the OS

  • No SATA drives are recognized in Windows but are detected in BIOS.

    *sigh* Irritating problem. First off, here are my computer specs. (Just built it less than a week ago) CPU: AMD 64 3500+ CPU Cooling: Stock CPU Fan Mainboard: MSI K8N Neo4 Platinum/SLI  Mem: Crucial/Mushkin 2GB (4x512) HDD: (1) 40GB IDE,(1) 160GB IDE