HTTP :  404 Not found - Not able to download file using custom table

Hi ,
I have created the custom procedure to download the file as follows :-
create or replace PROCEDURE "DOWNLOAD_MY_FILE" (p_file in number) as
     v_mime varchar2(255);
     v_length number;
     v_file_name varchar2(2000);
     Lob_loc BLOB;
BEGIN
     select mime_type, blob_content, file_name,dbms_lob.getlength(blob_content)
          into v_mime,lob_loc,v_file_name,v_length
          from consultant_feedback_header
          where file_id = p_file;
owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
htp.p('Content-length: ' || v_length);
-- htp.p('Content-Disposition: attachment; filename="' || v_file_name || '"');
          owa_util.http_header_close;
          wpg_docload.download_file( Lob_loc );
end download_my_file;
I have followed the following steps :-
1) Log in into SQL COMMAND as SYS
2) alter session current_schema=FLOWS_XXXXXX;
3) compile the procedure with my pl/sql procedure :
CREATE OR REPLACE FUNCTION
wwv_flow_epg_include_mod_local(
PROCEDURE_NAME IN VARCHAR2)
RETURN BOOLEAN
IS
BEGIN
IF UPPER(procedure_name) IN (
' DOWNLOAD_MY_FILE') THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
END wwv_flow_epg_include_mod_local;
I don´t know what am I do wrong?
Regards
Naveen

Check whether you are using a path on the Application Server.
OPEN DATASET cannot process files on presentation server. I guess, the path you are using is present on your PC or some other server that is not the SAP application server.

Similar Messages

  • Not able to download stack using MOPZ (There is no OS/DB dependent file)

    Hi,
    I want to download ERP 6.0 EHP4 Stack 8. I am having solution manager 7 with EHP1, so once I select the Target enhancement package product version & Target enhancement package stack. I get option of selecting the Technical Usage, In that I select Central Application & HCM, but when I continue to next step 2.3 Select OS/DB-Dependent files, I get message "There is no OS/DB dependent file" along with below mentioned messaged
    EA-IPPE 400 SAPKGPID19 is not available for user S0003575872
    SAP_APPL 604 SAPKH60409 is not available for user S0003575872
    Please suggest, as I am stuck and not able to download the stack.
    Regads,
    Manish Sharma

    Hi
    ERP 6.0 EHP4 SPS09 not yet released, see the sap note Note 1064635 - SAP ERP Enhancement Packages: SP Stacks Release Info Note
    please again check what you done on step 2.1 in MOPZ, have you selected proper target stack version?
    if you not sure on the steps info pls read the help link here
    [http://help.sap.com/saphelp_smehp1/helpdata/en/30/1fea80d9b44f5a88fc0038d3dabb76/content.htm|http://help.sap.com/saphelp_smehp1/helpdata/en/30/1fea80d9b44f5a88fc0038d3dabb76/content.htm]
    Jansi

  • Not able to checkout Files using Java Code and SAP BAPI  from DMSServer

    Hi
    Able to download / checkout the files using T-Code SE37 (BAPI_DOCUMENT_CHECKOUTVIEW2).
    But when same RFC is executed from Java, it alsways says -
    Message ::::::::Document LGL/10000000003/000/00 does not exist
    My inputs in Java Code is as below -
    import java.io.*;
    import java.util.*;
    import com.sap.mw.jco.*;
    //CREATED ON - 10-APRIL-2010.
    public class BapiDocCheckOutview {
         public static void main(String args[]){
              try{
                   if(mConnection!=null){
    JCO.Repository repository=new JCO.Repository("AraSoft",mConnection);
    JCO.setMiddlewareProperty("jco.middleware.allow_start_of_programs", "SAPFTPA");
    JCO.Function function=repository.getFunctionTemplate("BAPI_DOCUMENT_CHECKOUTVIEW2").getFunction();
                        //End of get function.
                     System.out.println("Before execution1");
                     if(function !=null){
                   JCO.Field DOCUMENTTYPE = function.getImportParameterList().getField("DOCUMENTTYPE");
                    DOCUMENTTYPE.setValue("LGL");
                    JCO.Field DOCUMENTNUMBER = function.getImportParameterList().getField("DOCUMENTNUMBER");
                    DOCUMENTNUMBER.setValue("10000000003");
                    JCO.Field DOCUMENTPART = function.getImportParameterList().getField("DOCUMENTPART");
                    DOCUMENTPART.setValue("000");
                    JCO.Field DOCUMENTVERSION = function.getImportParameterList().getField("DOCUMENTVERSION");
                    DOCUMENTVERSION.setValue("00");
                    JCO.Field GETSTRUCTURE = function.getImportParameterList().getField("GETSTRUCTURE");
                    GETSTRUCTURE.setValue("1");
    JCO.Field GETCOMPONENTS = function.getImportParameterList().getField("GETCOMPONENTS");
                 GETCOMPONENTS.setValue("X");
    JCO.Field ORIGINALPATH = function.getImportParameterList().getField("ORIGINALPATH");
                  ORIGINALPATH.setValue("C:
    TEMP
    DMS_");
    JCO.Field GETHEADER = function.getImportParameterList().getField("GETHEADER");
                          GETHEADER.setValue("X");
    JCO.Field PF_FTP_DEST=function.getImportParameterList().getField("PF_FTP_DEST");
              PF_FTP_DEST.setValue("SAPFTPA");
    //JCO.Field PF_HTTP_DEST=function.getImportParameterList().getField("PF_HTTP_DEST");
         //PF_HTTP_DEST.setValue("SAPHTTPA");
                          System.out.println("Here Setting Values Inside Structure ::DOCUMENTFILE");
    JCO.Structure DOCUMENTFILE=function.getImportParameterList().getStructure("DOCUMENTFILE");
    DOCUMENTFILE.setValue("1","ORIGINALTYPE");
    DOCUMENTFILE.setValue("WWI","WSAPPLICATION");
    DOCUMENTFILE.setValue("ZHCL_CS","STORAGECATEGORY");
    DOCUMENTFILE.setValue("E0DF7893E2BD5DF19C07001517B4A299","APPLICATION_ID");
    DOCUMENTFILE.setValue("E0DF7893E2BD5FF19C07001517B4A299","FILE_ID");
    DOCUMENTFILE.setValue("X","CHECKEDIN");
    DOCUMENTFILE.setValue("X","ACTIVE_VERSION");
                            //DOCUMENTFILE.setValue("LGL","DOCUMENTTYPE");
                            //DOCUMENTFILE.setValue("10000000003","DOCUMENTNUMBER");
                            //DOCUMENTFILE.setValue("000","DOCUMENTPART");
                            //DOCUMENTFILE.setValue("00","DOCUMENTVERSION");
                          //JCO.Field GETCOMPONENTS = function.getImportParameterList().getField("GETCOMPONENTS");
                          //GETCOMPONENTS.setValue("X");
                          //JCO.Field GETHEADER = function.getImportParameterList().getField("GETHEADER");
                          //GETHEADER.setValue("X");
                        mConnection.execute(function);
    If anyone have an Idea on what I have missed out...
    Please do advice me.
    Thanks
    Prashant

    Hi
    To update in the initial requirement, I have added (prefixed, zeroes) in Document No., doing that, now the  application is able to find the document, but not able to transfer the same from DMS Server to my local Machine, always giving the following error -
    Type ::::::::E
    Message ::::::::File d:\dms\z_IPI_PRASHANT01.doc cannot be created
    Please let me know, if some services needed to checked in SAP System or some more information to be provided in RFC.
    Thanks
    Prashant
    Dear Experts
    Any advice on this. Still not able to download the documents from DMS Server.
    I have also added few more code in my Java program -
         private int use_sapgui;
         public void setSapGui(int use_sapgui){
              use_sapgui = 2;
    PLease help !!
    Regards
    Edited by: Prashantroy on Sep 26, 2011 12:49 PM
    Hi,
    Further to my earlier Mail, while checking the Trace suing SM59 in ECC System I got  the following Error -
    Trace file opened at 20111010 142232 India Standard Time, SAP-REL 701,0,134
    ======> cannot open SAPGUI
    ABAP Programm: SAPLSYSE (Transaction: )
    User: IPI_PRASHANT (Client: 220)
    Destination: SAPFTP (handle: 3, , )
    SERVER> RFC Server Session (handle: 1, 43220900, {5D1DF3E0-ACBD-F11F-8EA0-00A0D1
    SERVER> Caller host:
    SERVER> Caller transaction code:  (Caller Program: java)
    SERVER> Called function module: RFC_START_PROGRAM
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1742
    FUNCTION: 'exec_sapgui'
    cannot open SAPGUI
    PROG =sapftp erpdev sapgw00 43232164 IDX=4
    Can someone help me in getting this sorted out.
    Thanks N Regards
    Edited by: Prashantroy on Oct 10, 2011 2:32 PM

  • Not able to download files like word, pdf etc from the mail and also in general google search.

    the download option in general is not working, not able to browse the folder for downloading.
    .using windows 7

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache Clear Cookies & Cache]
    * [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    * Start Firefox in -> [[Safe Mode]] to check if your add-ons/extension are causing the problems.
    * Also see this article -> [[Troubleshooting extensions and themes]]
    Check and tell if you are able to download a file while using Firefox -> [[Safe Mode]].

  • Not able to send file Using FTP in SSIS 2005

    I am using SSIS 2005
    I am trying to send file to ftp server using FTP task in SSIS but i am getting following error.
    Error Message-:An error occurred in the requested FTP operation.
    Detailed Description-:550 /FileName.txt: Access is denied.
    RemotefilePath is /
    I need a advice.
    Thanks in advance.

    I got this error recently from the FTP task in SSIS:
         Unable to send files using "FTP".
    I had everything correct, by the book.  I was trying to send a file, but I got the same error when trying to receive a file. 
    I already verified that I could send the file via command line FTP, so the FTP was not "secure FTP" (which wouldda required FileZilla or WinSCP or something similar) and my credentials were fine. 
    But I still got the above error.  Heck, I was beginning to thing that the FTP task in SQL Server 2008 was broken and just couldn't send files.
    Well, this issue is now resolved.  The problem was in the
    destination folder.  I was assuming that the root folder for my FTP account held the files. 
    So I entered the destination folder as this:   
    /data_in/
    But... the FTP task sees the root folder as one up from that. 
    So I had to use my account name in the path... meaning I had to change the destination folder to this:    
        /myaccountname/data_in/
        (where "myaccountname" was my login to the FTP site.)
    I hope this post helps someone else.
    Donna

  • Problem while downloading file from custom table

    Hi All,
    Im trying to download the file from the custom table where i have stored the uploaded files through apex.
    I have created the download procedure as mentioned in the oracle docs ,
    And given the execute grant for public user.
    and calling that procedure by calling the URL -- #OWNER#.download_my_file?p_file=#ID#
    But im getting the below error
    Forbidden
    You don't have permission to access /pls/apex/owner.download_my_file on this server.
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server Server at servername Port number
    Can any one tell whats the problem here.
    Thanks in advance
    regards,
    Arumugam KR

    Your function apex_util.get_blob_file_src under region, the first argument must be the name of page item anywhere in your application that is of type "file browse." So if your form for uploading the blob content is on page 11 and the file browse item is "P11_FILE_NAME" then your query would look like below:
    SELECT FILE_ID
         , FILE_NAME
          , CASE WHEN NVL(dbms_lob.getlength(BLOB_CONTENT),0) = 0
           THEN NULL
            ELSE
                  CASE WHEN attach_mimetype like 'image%'
                THEN '<img src="'||apex_util.get_blob_file_src('P11_FILE_NAME',id)||'" />'
                ELSE
                     '<a href="'||apex_util.get_blob_file_src('P11_FILE_NAME',id)||'">Download</a>'
               end
           END new_img
        FROM TABLE_NAME
    GET_BLOB_FILE_SRC FunctionAs an alternative to using the built-in methods of providing a download link, you can use the APEX_UTIL.GET_BLOB_FILE_SRC function. One advantage of this approach, is the ability to more specifically format the display of the image (with height and width tags). Please note that this approach is only valid if called from a valid Oracle Application Express session. Also, this method requires that the parameters that describe the BLOB to be listed as the format of a valid item within the application. That item is then referenced by the function.>
    [url http://docs.oracle.com/cd/E14373_01/apirefs.32/e13369/apex_util.htm]GET_BLOB_FILE_SRC

  • Pacman not able to download files[SOLVED]

    I am trying to install some packages but pacman is not working even though browser is. The error is as follows:
    error: failed retrieving file 'libgtop-2.28.4-1-i686.pkg.tar.xz' from mirror.aarnet.edu.au : Could not resolve host: mirror.aarnet.edu.au; Unknown error
    warning: failed to retrieve some files from extra
    Same thing is happening for all files and with different mirrors. I have tried changing the mirrorlist file in /etc/pacman.d/ folder.
    Last edited by rnarch (2012-03-23 05:27:43)

    Try this (if you are running as a normal user who is a member of wheel)
    sudo bash -c "echo 8.8.8.8 >> /etc/resolv.conf"
    Or, since you run as root,
    echo 8.8.8.8 >> /etc/resolv.conf
    Then try ping mirror.aarnet.edu.au
    How is your network configured?  Are you running through a local router?
    Well, I did not express myself well.  Is this a wired network? Is this a DSL, Cable Modem, Dial up, Other?  Do you have a router in your house? is it what provides the IP address? Does it act as a DNS server?  Can you log into the router?  What is it using for its DNS server?
    The 8.8.8.8 is a Goggle DNS server.  We are configuring your system to use it for the time being.  It will go away the next time you get an IP from the DHCP server.
    Edit: Never mind
    Last edited by ewaller (2012-03-23 05:43:55)

  • 51032257 NW 2004s SR2 Java based SW Component Not Able to download, advice!

    Hi all the expert here
    I am trying to download the following files from the SAP Service Marketplace->Installations and Upgrades->SAP Application Components->IDES SOLUTIONS->IDES SEM-BW 6.0/7.00
    51032257 - NW 2004s SR2 Java based SW Comp
    I have tried all methods:
    1. Using SAP Download Manager and it returns msg Fail: 403
    2. Using Right Click and Save as, the page cannot be displayed.
    I am a superuser with the Download Authorisation and have been able to download every single file in the site. This is the first time I am not able to download file from this site.
    I need this file urgent for the company IDES BI 7.0 set up in next week. Any kind soul please log in to check for me or give me advise how to download it? We have resorted to mail order the DVD from SAP but it has taken a very long time to reach us. And SAP has instructed us to download from the site if we want it fast.
    Full point 10 will be given for those who are willing to give me good advice on this issue.
    Thanks in advance.

    Hi,
    download following
    NW 2004s SR2 Java based SW Comp. 1 of 5, 51032257_1, File Size=683,594 MB
    https://smpdla.sap.com/00000199/516/51032257_part1.exe?object_id=012002523100008573662006E&filepath=00000199\516\51032257_part1.exe
    NW 2004s SR2 Java based SW Comp. 2 of 5, 51032257_2, File Size=683,594 MB
    https://smpdla.sap.com/00000199/514/51032257_part2.rar?object_id=012002523100008573572006E&filepath=00000199\514\51032257_part2.rar
    NW 2004s SR2 Java based SW Comp. 3 of 5, 51032257_3, File Size=683,594 MB
    https://smpdla.sap.com/00000200/596/51032257_part3.rar?object_id=012002523100008573592006E&filepath=00000200\596\51032257_part3.rar
    NW 2004s SR2 Java based SW Comp. 4 of 5, 51032257_4, File Size=683,594 MB
    https://smpdla.sap.com/00000199/934/51032257_part4.rar?object_id=012002523100008573602006E&filepath=00000199\934\51032257_part4.rar
    NW 2004s SR2 Java based SW Comp. 5 of 5, 51032257_5, File Size=109,520 MB
    https://smpdla.sap.com/00000200/597/51032257_part5.rar?object_id=012002523100008584412006E&filepath=00000200\597\51032257_part5.rar
    regards,
    kaushal

  • 51032257 NW 2004s SR2 Java based SW Component Not Able to download

    Hi all the expert here
    I am trying to download the following files from the SAP Service Marketplace->Installations and Upgrades->SAP Application Components->IDES SOLUTIONS->IDES SEM-BW 6.0/7.00
    51032257 - NW 2004s SR2 Java based SW Comp
    I have tried all methods:
    1. Using SAP Download Manager and it returns msg Fail: 403
    2. Using Right Click and Save as, the page cannot be displayed.
    I am a superuser with the Download Authorisation and have been able to download every single file in the site. This is the first time I am not able to download file from this site.
    I need this file urgent for the company IDES BI 7.0 set up in next week. Any kind soul please log in to check for me or give me advise how to download it? We have resorted to mail order the DVD from SAP but it has taken a very long time to reach us. And SAP has instructed us to download from the site if we want it fast.
    Full point 10 will be given for those who are willing to give me good advice on this issue.
    Thanks in advance.

    hi Anil
    javascript:ms_getObject('https://websmp130.sap-ag.de/sap/bc/bsp/spn/download_basket/download.htm?objid=012002523100008573662006E&userid=S000xxxxxxx&action=DL_DIRECT');
    is your path of Download for those files same as these and located in https://websmp130.sap-ag.de/
    else, can you give me the links for those 5 files, would really appreciated!
    Please provide me the direct links that are working for the following 5 files
    NW 2004s SR2 Java based SW Comp. 1 of 5, 51032257_1, File Size=683,594 MB
    NW 2004s SR2 Java based SW Comp. 2 of 5, 51032257_2, File Size=683,594 MB
    NW 2004s SR2 Java based SW Comp. 3 of 5, 51032257_3, File Size=683,594 MB
    NW 2004s SR2 Java based SW Comp. 4 of 5, 51032257_4, File Size=683,594 MB
    NW 2004s SR2 Java based SW Comp. 5 of 5, 51032257_5, File Size=109,520 MB
    You can find these files under the path:
    SAP Service Marketplace->Installations and Upgrades->SAP Application Components->IDES SOLUTIONS->IDES SEM-BW 6.0/7.00
    ->Windows Server->MS SQL Server
    Edited by: Junior  SCM Consultant on May 27, 2008 12:37 PM

  • 51032257 NW 2004s SR2 Java based SW Component Not Able to download, HELP!

    Hi all the expert here
    I am trying to download the following files from the SAP Service Marketplace->Installations and Upgrades->SAP Application Components->IDES SOLUTIONS->IDES SEM-BW 6.0/7.00
    51032257 - NW 2004s SR2 Java based SW Comp
    I have tried all methods:
    1. Using SAP Download Manager and it returns msg Fail: 403
    2. Using Right Click and Save as, the page cannot be displayed.
    I am a superuser with the Download Authorisation and have been able to download every single file in the site. This is the first time I am not able to download file from this site.
    I need this file urgent for the company IDES BI 7.0 set up in next week. Any kind soul please log in to check for me or give me advise how to download it? We have resorted to mail order the DVD from SAP but it has taken a very long time to reach us. And SAP has instructed us to download from the site if we want it fast.
    Full point 10 will be given for those who are willing to give me good advice on this issue.
    Thanks in advance.

    Hello,
    Please raise an OSS message, they should be able to help you.
    Regards,
    Siddhesh

  • This error (HTTP 404 Not Found) means that Internet Explorer was able to connect to the website, but the page you wanted was not found. It's possible that the webpage is temporarily unavailable. Alternatively, the website might have changed or removed the

    This error (HTTP 404 Not Found) means that Internet Explorer was able to connect to the website, but the page you wanted was not found. It's possible that the webpage is temporarily unavailable. Alternatively, the website might
    have changed or removed the webpage.
    For more information about HTTP errors, see Help.

    check this
    http://social.msdn.microsoft.com/Forums/en-US/5576aba1-d196-42ce-bd62-ad5ddfa3a8fd/this-error-http-404-not-found-means-that-internet-explorer-was-able-to-connect-to-the-website-but?forum=sharepointgeneralprevious

  • Invalid content type for SOAP: TEXT/HTML; HTTP 404 Not Found

    Hi,
    I have mentioned some issues that I am facing in SOAP receiver adapter:
    [XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 404 Not Found;
    Apart from that I am trying with unchecking 'Do Not Use SOAP envelope' and by using MessageTransformBean, for which I am getting the following error:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: invalid content type for SOAP: TEXT/HTML; HTTP 404 Not Found: java.io.IOException: invalid content type for SOAP: TEXT/HTML; HTTP 404 Not Found
    Need your help in resolving  this.
    Regards,
    Vishal

    I have some ideas which will help you out. Check the below option one by one:
    1. Check receiver server is accessable from XI/PI system through IP address in command prompt.
    2. Check whether any PORT is enabled for this server. ex: http://ipaddress:portno/XXX/XXX.asmx
    3. You can download webservice tool(SOAP UI and etc..)to check your webservice(WSDL) file able to connect the server by importing webservice file in this tool.
    4. Sometime customer may updated in their application(coding and etc) and not given the updated webservice file to us. so make sure you got updated one.
    Regards,
    Senthil

  • HTTP 404 not found Error while click on Tab

    Hi All,
    Please help us as we are facing issue in Prodution.
    We are using Apex 3.0.1 version. our appication having 1 parent tab and 4 child tabs. parent tab working fine and 3 child tabs are working fine but while click on 4th child tab we are getting HTTP 404 not found error.
    The detials in tab/page
    it has 4 reports and 5 Iteams and 1 Hidden iteams.
    We are not able to find out the issue please help us.
    Thanks,

    Yes Scoot,
    i do understand that 1 hour is not sufficient to answer in forum but my situation is strange.
    To take a wild stab in the dark - how do you define your links in the tab set? Are you linking to a page in the application or your own URL?
    Kumar: I have linked to pages in Appication. In same appication rest of the TAB's are working fine with respective linked pages but only one TAB is not working, getting error.
    URL is same for all pages/Tabs, i don't think URL is the issue here.
    Please help me to get exact error so that i can resolve the issue my own. is there any possibilities to find out the errors in backend tables or elase files.
    Kumar.

  • Getting Error HTTP 404 NOT FOUND on launching MAM app

    Hi All,
    I started MAM application and i got the HTTP 404 not found error. I am not even able to reach the login page .
    I tries to debug the application and find out the reason, but unable to locate anything as debug point kept moving between classes like Object , string , MAP classes .
    How could i locate the error for the problem or what could be the possible cause ?
    BELOW I HAVE PASTED THE INFORMATION ON THE CONSOLE WINDOW:
    Initialize framework ...
       Configuration initialized. Installation Base = C:\Program Files\SAP Mobile Infrastructure
       Path settings adjusted
       Timezone initialized; use timezone id 'Etc/GMT+12'
       Trace initialized. Log is switched on.
       Framework singletons initialized.
       Gzip data compression configuration initialized.
       Registry initialized.
        MI OS installer lib (C:\Program Files\SAP Mobile Infrastructure\bin\NATSTART.DLL) loaded successfully.
       Dlls loaded.
       Timed Sync initialized.
       Persistence initialized.
       Smart Sync initialized.
       CCMS initialized.
       Agents initialized.
       Communication server initialized.
    Framework initialized.
    Check if running inside installation server.
    Installation toolkit parameters C:\Program Files\SAP Mobile Infrastructure/itool.properties not detected
    Use normal startup: true
    Try to login user 'vipin'
    Cannot login user
    com.sap.ip.me.api.user.LogonException: User or password is incorrect. Check your entries.
         at com.sap.ip.me.core.UserManagerImpl.logOnUser(UserManagerImpl.java:588)
         at com.sap.ip.me.core.FrameworkInitializer.logonUser(FrameworkInitializer.java:689)
         at com.sap.ip.me.core.FrameworkInitializer.logon(FrameworkInitializer.java:664)
         at com.sap.ip.me.core.FrameworkInitializer.main(FrameworkInitializer.java:103)
         at com.sap.ip.me.mdk.api.runtime.Start.startME(Start.java:128)
         at com.sap.ip.me.mdk.api.runtime.Start.main(Start.java:41)
    Starting tomcat. Check logs/tomcat.log for error messages
    ME started with 'FrameworkInitializer' class and user 'vipin'

    hello vipin,
    how did you start your MAM? are you using the -app option?
    from the log, it seems that you have an auto-login enabled.
    if you ran your MI from NWDS, try removing the debug
    options -logon:<user>:<password>
    how did you ran your MI btw?
    regards
    jo

  • HTTP 404 Not found OEM login error

    Hallo!I have installed Oracle 11gR2 on a HP-UX Itanium server.I have been using OEM seamlessely for several weeks.However,I am getting the error below.
    I am able to lauch OEM from its url
    https://<ip_address>:1158/em/console/aboutAppplication
    When I login with SYS AS SYSDBA,I get the HTTP 404 Not found error from the logon URL
    https:// <ip_address>:1158/em/console/logon/logon
    How do I resolve this error?
    Thanks.

    4joey1 wrote:
    I have tried to login as SYSMAN but the error still persists.
    How do I resolve this?
    Thanks.I recommend you to clear your browser cache, and restart the EM.
    Best Regards,
    Gokhan
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

Maybe you are looking for

  • How to move OU from one suffix to other suffix and waht kind of precautions we need to take?

    Hi All Hope all are doing well.I love to read this blog regularly and i also posted couple questions here and i got very brilliant answers and hoping same now. Question is: We are planning to change our DIT structure like moving OU (contains 80k entr

  • An error has ocurred during the execution of the Extract_Rom

    I have this problem Trouble Ticket Report---- Upgrade to SAP NetWeaver'04s SID................: J2E Hostname...........: sapepd Install directory..: d:/usr/sap/J2E Upgrade directory..: D:\usr\sap\jupgrade Database...........: Microsoft SQL Server Ope

  • N81 USB Cable - Resolved problem!

    I had problem with my N81. It wasn't connecting with my PCs using nokia's USB cable. No message was showing. Bluetooth was working fine. I was restarting PCs and mobile several times but without effect. Then I remembered myself that I had same proble

  • How do I move or delete App icons from my screen?

    I'm tryng to eliminate most of the icons on my phone screen.  On my 4, I used to be able to do it by holding my finger on the icon and either editing or just moving.  But I can't move anything to page 2 of my screen and page 1 is full.  HELP

  • API Locations (the answer)

    Problem: In order to use Java for BI development, you need to "introduce" the supporting API files to the Java application. This note describes how to (a) find the appropriate library, (b) link the library to the jDeveloper application and (c) link t