Unable to go beyond the reponsibility menu

Hi,
I am able to lo into oracle apps. Select the first responsibility but unable to view any forms.
I wonder if the probelm is with forms-server and how can i confirm it???
Regards.

Is the form come out if you call it directly like this :
http://<machine_name>:port/dev60cgi/f60cgi

Similar Messages

  • I am unable to get beyond the "sync with iTunes" splash page after connecting my iPhone; every tab is grey. What gives?

    I am unable to get beyond the "sync with iTunes" splash page after connecting my iPhone; every tab is grey. What gives?

    Is the computer the one the device normally syncs with?
    If not, sync with the computer it normally syncs with.
    If it is, place the device in DFU mode (google it) and restore.

  • After recovery via DFU, I'm unable to get beyond the apple sign.

    Hi,
    I have tried to recover my iPhone 3gs in every possible way.
    Last resort seemd to be via DFU mode. The whole process looks good and runs withou any errors.
    After recovery is done the iPhone appears in iTunes again, but the phone is not getting beyond the apple.
    When I then try to restore the phone from backup or even try to set it up as a new phone, I get "iTunes could not restore the iPhone "XXX" because an error occurred.
    When I try to switch it off using the wake+home button, I never se the slider again that would enable me to turn the iPhone off.
    Any other methods. I don't care about lost data etc. since it can all get recovered from Address Book and iCal etc.
    I just need to get to a point where I can access the phone again.
    Your help is VERY much appreciated.

    I am having the exact issue as yours, but, I fixed this issue myself and I would like to help many of those suffering from this issue to not be treated by Apple -- when I woke up in the morning I found my iPhone 4 was in "Upgrade to iOS6" mode on the moring that I planed to travel -- my alarm is still alarming me to wake up but the phone could not be used anymore, so fortunately I have backup phone to switch the sim-card to. When I am back home I went to a local "Short Hills" apple store Genius Bar and the staff told me that it could not be fixed, the only way to resolve this was to pay $150 for "Replacement" for a refurbished iPhone - I didn't believe him! My home PC/iTunes can detecte my phone, but the Genius Bar staff said it can't be deteted. I tried many different ways and finally I came up the followings which fixed by iPHone: 1) if you need to backup your stuff within the iPHone, you can use iTools from your PC; 2) Install the latest iTunes; 3) Try to recovery your iphone with iTunes several times and to see if it could be fortunately restored, Pay attention to the error messages, I got (-1) and (3194) which are ok, if they all are not working, then perform the last: 4) download the latest firmware for your version of your phone, such as iphone 4,5, GSM, CDMA, etc and save it into your PC; 5) perform a recovery mode from iTunes, but this time, you are pressing down the "Shift" key while you are clicking the "Recovery iPhone" from your iTunes, it will pop up a window to ask you to upload the firmware, you then select that downloaded firmware and it should fixed you problem and your iPhone will be just like brand new from Apple manufacture! Good luck! -- I have several negative experience with Genius Bar -- they are using refurbished phone with much older screen life LCD to replace my warrenty new phone -- this is apple the policy which are being complaied worldwide!!!! If I had choice, I would not have been using iPhone!

  • Just want to get started. I am unable to move beyond the voice over welcome screen.  Any advice would be welcome.

    I just want to get started with my new out of the box MacAir.  I canot move beyond the voice over welcome screen.  It seems to be stuck.  What do I need to do to advance out of it? 

    Bt seem to have got their act together. After six days! All of a sudden it works. What a surprise, shame their help desk would not admit anything was wrong.

  • Unable to view all the pdf menu bar in internet browser

    We are working on a web application where we have to provide options to users to edit pdf directly(like changing the text) and save to the server again. I installed acrobat professional on my machine to develop the code. But when i open the pdf in my web application(i.e Microsoft Internet Browser..) it is just showing few tool bars, but i need to load all the menu bars so that user can use all the menus which is available for adobe professional. Thanks for your help.

    When viewing a PDF in a web browser, one is using a special plugin for the web browser to read PDF files. I have the same problem when I have an Excel file opened in a web browser, there is no Excel menu bar or toolbars.  You might be able to add some JavaScirpt to the PDF to display the necessary tool bars.
    I always wondered why they call these internet viewers browsers.

  • TS1398 I just bought my first Ipad, and I am unable to get beyond the set-up.  The Ipad will not connect to the internet, even though everything else does. When I click on settings there is no option buttons for General and then reset, or General WiFi.

    All it saids is that "The Wi-Fi network you selected is not providing an internet connection.  Change your settings or choose a different network, and when I select Settings, I just get the list of networks.  Nothing which was listed up above in the trouble shooting appears.

    Cycle power in your network router.  Make sure it has its latest firmware.
    If that doesn't solve it, next try resetting your iPad.  Hold the on/off and power buttons together for about 10 seconds till the Apple logo appears.

  • Unable to read beyond end of the stream

    I am coding a Training log for a college project and I am getting this error: 
    An unhandled exception of type 'System.IO.EndOfStreamException' occurred in Microsoft.VisualBasic.dll
    Additional information: Unable to read beyond the end of the stream.
    I have no idea where I have went wrong, could anybody please help and explain how what I have done wrong here is my code for the error:
     Private Sub drpRunner_SelectedIndexChanged(sender As Object, e As EventArgs) Handles drpRunner.SelectedIndexChanged
            FileOpen(2, "Training.dat", OpenMode.Random)
            Dim Runner As RunnerRecord
            Dim Value As Integer
            Value = drpRunner.SelectedIndex + 1
            FileGet(2, Runner, Value) 'This is where I get the error
            If drpType.SelectedItem = "Swimming" Then
                txtMilesInput.Text = Runner.MetresSwam
                txtTimeInput.Text = Runner.TimeSwam
                txtSpeedInput.Text = Runner.SpeedSwam
                txtCaloriesInput.Text = Runner.CaloriesSwam
                txtWeightInput.Text = Runner.WeightSwam
            ElseIf drpType.SelectedItem = "Running" Then
                txtMilesInput.Text = Runner.MilesRan
                txtTimeInput.Text = Runner.TimeRan
                txtSpeedInput.Text = Runner.SpeedRan
                txtCaloriesInput.Text = Runner.CaloriesRan
                txtWeightInput.Text = Runner.WeightRan
            ElseIf drpType.SelectedItem = "Cycling" Then
                txtMilesInput.Text = Runner.MilesCycle
                txtTimeInput.Text = Runner.TimeCycle
                txtSpeedInput.Text = Runner.SpeedCycle
                txtCaloriesInput.Text = Runner.CaloriesCycle
                txtWeightInput.Text = Runner.WeightCycle
            Else : MsgBox("Please select your type of training")
            End If
            FileClose(2)
        End Sub
    End Class

    The Training.dat file is empty, if that is what you mean it needs to be to start off with because in my program you need to enter the training information and save it, here is the code to save and it is all used on the same form:
     Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click
            Dim RR As RunnerRecord
            FileOpen(2, "Training.dat", OpenMode.Random)
            If drpType.SelectedItem = "Running" Then
                RR.MilesRan = txtMilesInput.Text
                RR.TimeRan = txtTimeInput.Text
                RR.SpeedRan = txtSpeedInput.Text
                RR.CaloriesRan = txtCaloriesInput.Text
                RR.WeightRan = txtWeightInput.Text
            ElseIf drpType.SelectedItem = "Swimming" Then
                RR.MetresSwam = txtMilesInput.Text
                RR.TimeSwam = txtTimeInput.Text
                RR.SpeedSwam = txtSpeedInput.Text
                RR.CaloriesSwam = txtCaloriesInput.Text
                RR.WeightSwam = txtWeightInput.Text
            ElseIf drpType.SelectedItem = "Cycling" Then
                RR.MilesCycle = txtMilesInput.Text
                RR.TimeCycle = txtTimeInput.Text
                RR.SpeedCycle = txtSpeedInput.Text
                RR.CaloriesCycle = txtCaloriesInput.Text
                RR.WeightCycle = txtWeightInput.Text
            End If
            Dim RecordNumber As Integer
            RecordNumber = drpRunner.SelectedIndex + 1
            FilePut(2, RR, RecordNumber)
            FileClose(2)
            MsgBox("Your information has been successfully saved")
        End Sub
    P.S I don't know why I saved the Structure as a different name from the last I just decided to leave it as it is since it was quicker

  • How can I get beyond the Apple logo on the screen of my iPod Touch 6g?

    Suddenly I'm unable to get beyond the Apple logo on my iPod Touch 6g (with latest OS).  I noticed that battery life was drastically reduced (been using a portable external power supply), and I turned Airplane Mode "On" to conserve battery power.  I'm not sure if this has contributed to my present "freeze."
    Any suggestions appreciated before I send it out for professional repair.

    Airplane mode should not have anything to do with your problem
    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                                                       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Unable to click in the toolbar area in Excel

    I have a user in our corporation who is unable to click in the toolbar menu while using Excel. He could be working on one sheet all of a sudden not be able to click. He will open another document he can click in the toolbar menu. 
    He also says that if he minimizes it and maximizes it, it will then work. This seems to be random and a little frustrating. 
    Anybody have any ideas?

    Restore original settings for buttons, commands, or toolbars
    http://www.ozgrid.com/VBA/toolbar-remove-restore.htm
    http://www.bettersolutions.com/excel/EBZ143/VU822216331.htm
    Oskar Shon, Office System MVP - www.VBATools.pl
    if Helpful; Answer when a problem solved

  • Unable to Create Fact and Dimension tables from the Tools menu in EIS conso

    Hi All,
    In the EIS console, I am unable to create the fact table and the dimension tables to produce my OLAP model from the TOOLS menu whereas I am able to create them by dragging from the left panel where the tables are displayed. I am geeting the below error message:
    "An exception occured while retrieving OLAP model metadata. Please verify you are connected to the catalog and try again"
    Any help appreciated.
    Thanks,
    Raja

    I have fact and dimension tables in one server and i moved those stuff to another server.If I do that what happen to essbase and about totale EPM System.I want to know how to do this and what I can expect?
    Please reply

  • Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  Sy

    Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  System Library/Application Support/Adobe.  Any ideas?  I only have 16 days left on the trial and have been unable to get it to work on my Macbook Pro.  This is all I am seeing after Lightroom opens.  Thanks!

    Thanks to both of you for attempting to help.  I finally figured out what was wrong . . . it was a Permissions problem.  Very frustrating, but after scouring the troubleshooting tips I finally found the one that solved my problem.  I had to add a User and give it Read/Write privileges to Lightroom.  The file I had to add the User to was Hidden on my Mac, so that added an even bigger challenge to the mystery.  Only a few days left on my trial version!  I hope I have time to try it out!

  • How do I rotate a video clip in iMovie when I am unable to click on the Cropping Button in the Adjust menu?

    Can you help me rotate my video clip in iMovie ?  I followed the instructions in the Help menu, but was stuck on Step 3  - after I had selected the entire Clip and then was unable to click  on the "Cropping Button". 

    Are you in the timeline? You can't access the crop button if the clip is in the browser.

  • I am unable to get past the apple login screens on my iPad to access my settings menu for a new home network. My password is not recognized so I cannot even get into the settings mode to make a chance. How can I get past the Apple logins?

    I am unable to get past the apple login screens on my iPad to access my settings menu for a new home network. My Apple password is not recognized so I cannot even get into the settings mode to make a chance. How can I get past the Apple logins?

    Hey Dpcupcake,
    If you can not get past the sign in screen on your iPad, you will need to use the steps in this article to recover use of your iPad -
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • HT1420 I have successfully deauthorised my old computer but am unable to authorise my new machine.  I have followed the instructions but there is no option on the store menu to 'Authorise this computer'. Please help!

    I have successfully deauthorised my old computer but a unable to authorise my new machine.  I have followed the instructions but there is no option on the store menu to 'Authorise this computer'.  Please help!

    There's a couple of ways to get through to the authorisation controls in the 11.0.x versions.
    The control is still in the Store menu, but first (if you're using iTunes versions 11.0.x) you might need to bring up the menu bar to see the Store menu.
    If you're using 11.0.x, click on the wee boxy icon up in the top-left corner of your iTunes to see the "Show Menu Bar" control, as per the following screenshot:
    Then you'll find the control in the Store menu:
    Alternatively, if you don't want to bring up the menu bar, it's still possible to get into the authorise controls via nested menus accessible from the wee boxy icon. Here's a screenshot of where to find them:

  • Recently got the new IPad. Every time I try accessing the iTunes store, I get the error message, 'cannot connect to the iTunes store'. Am unable to proceed beyond this. Any suggestion?

    Recently got the new IPad. Every time I try accessing the iTunes store, I get the error message, 'cannot connect to the iTunes store'. Am unable to proceed beyond this. Any suggestion?
    I bought it in Thailand and am using it in Kenya.

    I have the same issue.  How did you solve it?

Maybe you are looking for