Generate Files in Server

Hi
I have a server on which Oracle client is installed and I wish to create some files from pl/sql procedure.
Is it possible to create a file using UTL_FILE or any other utility on any server other than the DB server?
Regards
Kapil

Hi,
Try with this.......
create or replace PROCEDURE CREATEING_FILE
AS
    v_file            UTL_FILE.FILE_TYPE;
    v_text            VARCHAR2 (20);
    v_filename        VARCHAR2 (200);
    v_delimitedchar   CHAR (1);
BEGIN
   v_delimitedchar := CHR (124);
   v_filename := 'filename.txt';
   v_file := UTL_FILE.FOPEN ('SCOTT1', v_filename, 'W');
   UTL_FILE.PUT_LINE(v_file,'C1|C2|C3');
   FOR MANUAL_NSF_DATA IN
                   (select dept_id as C1,dept_name as C2,no_of_emps as C3 from reddy)
LOOP
      UTL_FILE.PUT_LINE (v_file,
                         MANUAL_NSF_DATA.C1
                         || v_delimitedchar
                         || MANUAL_NSF_DATA.C2
                         || v_delimitedchar
                         || MANUAL_NSF_DATA.C3
                         || v_delimitedchar
   END LOOP;
   UTL_FILE.FCLOSE (v_file);
END CREATEING_FILE;Regards
Reddy.

Similar Messages

  • Generate file on Server

    I have a JSP and i would like to create file localy and remotly :
    <%@ page language="java" %>
    <%@ page import="java.io.*" %>
    <%!
    String dcr = request.getParameter("dcr");
    String contentTplPath = "";          
    int DebChaine = dcr.indexOf("Dev_Contrib") + "Dev_Contrib".length();
    String Path = "/htdocs/pages/Test.HTML";
    public void OutFile(String Nom, String Local, String LigneFic) {
    boolean local = Local.equals("true") ? true : false;
    try {
    if (local) {
    DataOutputStream handlefic = new DataOutputStream(new FileOutputStream( Nom ) );
    handlefic.writeBytes(LigneFic);
    handlefic.close();
    else {
    FileOutputStream fileoutputstream = new FileOutputStream( Nom );
    int len = LigneFic.length();
    for (int i = 0 ; i < len ; i++) {
    System.out.println( "Ecriture de :" + LigneFic.charAt(i));
    fileoutputstream.write((byte)LigneFic.charAt(i));
    fileoutputstream.close();
    catch (IOException e) {
    e.printStackTrace();
    %>
    <html>
    <head>
    <title>Test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body>
    <% OutFichier(Path, "false", "String in my file"); %>
    <p>Test</p>
    </body>
    </html>
    When it is a local path ex: "c:\\Tmp\\Test.HTML" and Local = true it is OK
    But the problem is when path is not local (on a Tomcat server for ex)
    ex: "/Tmp/Test.HTML" and Local = false i don't generate my file.
    How can i do ?

    My Jsp always run on server side.
    When i use a local (physical path) like "c:\\....\\FileName" I call
    OutFile("c:\\...\\FileName", "true", "My string ...") and it's OK
    But this JSP is use for generate HTML files (on a TOMCAT server) and, if the web site move on the disk (place) i don't want to rewrite my JSP with the new "LOCAL path".
    I would like to use the "WEB path" (where "/" is the root of my web site) independently of the pysical localisation.

  • How to delete the Generated files from application server(open hub)?

    hi experts,
    when i try to execute process chain the DTP it is giving below dump. Exception CX_RSBK_REQUEST_LOCKED logged.
    when i execute the DTP manually and trying to delete the previous request, it is giving for dump ITAB_DUPLICATE_KEY.
    so to delete the generated file from application server, how to delete it for specific dates?
    Information on where terminated
    Termination occurred in the ABAP program "GPD6S3OE0BCVGC6L9DBNVYQARZM" - in
    "START_ROUTINE".
    The main program was "RSBATCH_EXECUTE_PROZESS ".
    In the source code you have the termination point in line 2874
    of the (Include) program "GPD6S3OE0BCVGC6L9DBNVYQARZM".
    The program "GPD6S3OE0BCVGC6L9DBNVYQARZM" was started as a background job.
    and when i check the dump it is point out at below code
    " Populate the lookup table for 0STOR_LOC
    SELECT * from /BI0/TSTOR_LOC
    into CORRESPONDING FIELDS OF table L_0STOR_LOC_TEXT
    FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
    STOR_LOC = SOURCE_PACKAGE-STOR_LOC.
    but the programme is syntactically correct only.
    how to rectify the issue.
    regards
    venuscm
    Edited by: venugopal vadlamudi on Sep 28, 2010 1:59 PM

    hi experts,
    We have written start routine to get the storage location text and sending to File located at Application server through OPEN HUB.
    here is the code written in the Transformations
    In the global section
    Text for 0STOR_LOC
        DATA: l_0stor_loc_text TYPE HASHED TABLE OF /bi0/tstor_loc
              WITH UNIQUE KEY stor_loc.
        DATA: l_0stor_loc_text_wa TYPE /bi0/tstor_loc.
    and in the code to get the text
    " Populate the lookup table for 0STOR_LOC
        *SELECT * from /BI0/TSTOR_LOC*
          into CORRESPONDING FIELDS OF table L_0STOR_LOC_TEXT
          FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
                  STOR_LOC = SOURCE_PACKAGE-STOR_LOC.
    im sure there is problem with the Routine only. i think i need to change the code if so please provide me the modified one.
    thanks
    venuscm
    Edited by: venugopal vadlamudi on Sep 29, 2010 9:37 AM

  • Export of PDF errors after the PDF generates on the server (File I/O error)

    We have Crystal 9 reports engine, developed with VS2003, which is being called from a VS2008 web app on a 32-bit server. The reports have been working okay, unless the file is of size > 600K. Then, right after the PDF is created in the C:\Windows\Temp, the export fails to display it on the screen, throwing the following error:
    Error in File C:\WINDOWS\TEMP\temp_c2e5676e-7d48-413e-9dca-fd2615f236c6.rpt: File I/O error.
    at [1].[1]D(Int16   , Int32   ) at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export() at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export() at commisionstatement.CommissionStatementPDF.Page_Load(Object sender, EventArgs e) at System.EventHandler.Invoke(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain()
    The issue is quite frustrating as it doesn't indicate what the cause of it is. It is not clear whether this is a timeout issue and what Timeout setting applies. The report objects have a default CacheTimeOut set as CachedReportConstants.DEFAULT_TIMEOUT. How long is this? is there any other setting on the server that can overwrite this timeout? What does the Export method need in order to find and pull the file on time?
    Note that the report generates on the server and if it's not too big, will display on the Client's browser.
    Your help will be greately appreciated.
    Thank you,
    Sonya

    Hi David,
    So we were finally able to test with the increased timeout, which we set to 5 min:
    <httpRuntime
                executionTimeout="300"
                maxRequestLength="4096"
                useFullyQualifiedRedirectUrl="false"
                minFreeThreads="8"
                minLocalRequestFreeThreads="4"
                appRequestQueueLimit="100"
                enableVersionHeader="true"
            />
    Unfortunately, now we started getting other errors, related to the limit of the licenses:
    A Crystal Reports job failed because a free license could not be obtained in the time allocated. More licenses can be purchased direct from Crystal Decisions or through the Crystal Decisions Online Store.
    According to page 8 of the article below, we should be able to purchase more such licenses free of cost:
    http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/7006fc4c-6a1e-2b10-8ea8-9019b136fa90?quicklink=index&overridelayout=true
    Could you let us know how to proceed in order to obtain the licenses?
    Thank you,
    Sonya

  • Problem while generating file in linux server

    I am generating one text file in windows server by using UTL_FILE .after completion of line it is coming to next line properly.
    When i am generating the same file in linux server by using UTL_FILE. It is not going to next line after the end of file.Instead of that it is showing one BOX symbol .After that it is not moving to next line.it is continuing with that box
    for example:
    I generated the file in Windows server the output is
    "number name age
    number name age
    etc..."
    If I am generating the same file LINUX server the output is
    "number name age 'Box symbol' number name age'Box symbol'etc..."
    please help me out.....i have to submit this job in the next 12 hours....

    M_FIELD_VALUE := SUBSTR(M_FIELD_VALUE,1,C6_REC.DFCS_FIELD_SIZE);
                        IF (NVL(LENGTH(M_ROW_VALUE),0) + NVL(LENGTH(M_FIELD_VALUE),0)) < 32000 THEN
                        M_ROW_VALUE := M_ROW_VALUE || M_FIELD_VALUE;
    END IF;
    END LOOP; End Column Loop D
    UTL_FILE.PUT_LINE(M_FILE_HANDLE,M_ROW_VALUE);------here I am printing the row in text format

  • List the files from server

    Hi Experts,
      I have a requirement in my application, that list out the files from the server in table and also delete the file. Pls specify the code.
    Regards,
    Kiruba.R

    Hi
    List all the files from server
    public void listServerFiles( )
        //@@begin listServerFiles()
        wdContext.nodeFiles().invalidate();
        IPrivateExperimentView.IFilesElement element;
        java.io.File file = new java.io.File( "D:\\Test");
        File list[] = file.listFiles();
        for( int i = 0; i < list.length; i++)
             element = wdContext.createFilesElement();
                  element.setFileName( list[ i].getName());
             wdContext.nodeFiles().addElement( element);
        //@@end
    Display the selected file
    public void onActiondownload(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiondownload(ServerEvent)
        IWDResource resource;
        String name = wdContext.currentFilesElement().getFileName();
        String path = "D:\\Test\\" + name;
         InputStream stream;
         try {
              stream = new FileInputStream(path);
              resource = WDResourceFactory.createResource( stream, name,
                                  WDWebResourceType.UNKNOWN, true);
              stream.close();
              wdComponentAPI.getWindowManager()
                             .createNonModalExternalWindow( resource.getUrl( 0), name).show();
         } catch (FileNotFoundException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
         } catch (IOException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    Delete the selected file
    public void onActiondeleteFile(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiondeleteFile(ServerEvent)
        String path = "D:\\Test\\" + wdContext.currentFilesElement().getFileName();
        File file = new File( path);
        file.delete();
        listServerFiles();
        //@@end
    vinod

  • How Do RoboHelp 9 WebHelp Generated Files Handle Map IDs and Aliases?

    The text below was written by our team's developer/architect. I am the help author who uses RoboHelp to write content and generate the help files, but I am clueless how it all gets generated and is deployed. Please help. We use RoboHelp 9. I use it in Windows XP and our app and help run on IE 7, 9, and Firefox (multiple versions).
    "Our application uses the numeric identifiers associated with the Map ID. For example, to get to the <appname>_home_page.htm file, we use the number 1053. <appname> = pecs, in this example.
    All of this is used in a call to a RoboHelp method defined in the RoboHelp_CSH.js file. The mehtod we are calling is the RH_ShowHelp() JavaScript method and the code to perform the call, when you click on Page Help, is this:
    RH_ShowHelp(0, ''/pecsHelp/index.htm>pecsHelp',HH_HELP_CONTEXT,topic);
    Topic is translated to the Map ID number for the page help. HH_HELP_CONTEXT is defined in the RoboHelp_CSH.js file. This method translates into a URL and from what I have seen, the URL that gets generated is this:
    http://{server}[:port]/pecsHelp/index.htm/{server}[:port]/pecsHelp/index.htm#<id=1053>>pecsHelp
    Server and port get replaced with the appropriate values. I have no clue how id=1053 is supposed to get translated to mean "pecs_home_page.htm". If you check the PECS_help.h file, you will see the following entry:
    #define PECS_Home_Page1 1053
    Then in the RoboHelp alias file (PECS 3.0.ali), the following line is in the file:
    <alias name="PECS_Home_Page1" link="pecs_home_page.htm"> </alias>
    But both of these files are used during the WebHelp generation process and I don't know how the WebHelp generated files handle the Map ID and aliases."

    You need to assign the numbers you find in the pecs_help.h file to topics in your help. You do this in Context Sensitive Help > Map Files > All Map IDs. (From RH7, but I assume the location is similar in RH9.) This creates the entries in the .ali file.
    Peter Grainge suggests a couple of sites to read for a greater understanding here:
    http://www.grainge.org/pages/authoring/calling_webhelp/using_map_ids.htm
    (Although the second  site is based on RH X5, the basic concepts and procedures should be very similar. )
    HTH,
    Amber

  • Report not found in File Repository Server

    I am looking for some guidance as to what to try next with this issue.
    We had ran into some issues with the central management service and had to reinstall crystal. During the setup we are connecting to our mysql database and the reports and folder structure is restored in the Central Management Console but when the reports are previewed or scheduled to run they fail I receive the following message:
    "File generated name.rpt not found on File Repository Server.
    Unable to retrieve Object.
    File generated name.rpt not found on File Repository Server."
    Has anyone came across this issue and if they could provide a solution would be greatly appreciated.
    Thanks.

    there are very many forum posts and SAp knowledge articles on this topic/error message. Please do use search before posting.
    The repository that stores all your objects in Crystal is dual one part is int he DB - called CMS DB - it stores all te metadata, and second part is FRS (Input /Output servers) - they store actual physical reports and instances on the disc.
    My guess is that during re-install you either wiped out original FRS location or after re-install didn't point your FRS to the right place.
    If its second - all you need to do is point FRS to the right directory and you'll get your reports back.
    If it's first - you just lost all your reports/universes etc.... and will need to restore from backup.

  • Reading a XML File from server in BI Publisher

    Hi All,
    Can any one help me how i can get the XML file from server to BI Publisher using data source.
    The file should transfer directly to BI Publisher with out storing it in any local directory in local system.
    Thank you
    Shalini.

    Shalini
    Do you mean that you have another system that is going to serve up the XML data and you want BIP to be able to pick it up as a data source ?
    Couple of options:
    1, If the XML filename can remain static you can use the 'XML File' datasource. You need to set up a directory on the server and then maybe create a dummy XML file to start with upon which you can build a report. Then have your external data generator put the file into that directory and then schedule the report so that BIP will pick and report.
    2. IS the data generator accessible via HTTP or web service - BIP supports those too.
    3. More complex but with a little effort you can create a servlet that will pick up the file from a directory and serve it up to BIP on demand - Im going to write about this on the blog this week
    Regards
    Tim

  • Reading XML file from server in BI Publisher

    Hi All,
    Can any one help me how i can get the XML file from server to BI Publisher using data source.
    The file should transfer directly to BI Publisher with out storing it in any local directory in local system.
    Thank you
    Shalini.

    Shalini
    Do you mean that you have another system that is going to serve up the XML data and you want BIP to be able to pick it up as a data source ?
    Couple of options:
    1, If the XML filename can remain static you can use the 'XML File' datasource. You need to set up a directory on the server and then maybe create a dummy XML file to start with upon which you can build a report. Then have your external data generator put the file into that directory and then schedule the report so that BIP will pick and report.
    2. IS the data generator accessible via HTTP or web service - BIP supports those too.
    3. More complex but with a little effort you can create a servlet that will pick up the file from a directory and serve it up to BIP on demand - Im going to write about this on the blog this week
    Regards
    Tim

  • Not generate file using ItemAdded Event in SharePoint Online

    I develop a list item event receiver For Sharepoint online.I upload the .wsp file in solution and activate the feature On ItemAdded event I create/generate document on 15 document library based on library template.
    Some time it generate all 15 files and sometime it generate 8/10/12 files.
    i.e not generate files in all the document library.
    It work fine in my local server.
    Please Help me.

    &nbsp;****1.design_Pre_Order_Meeting_Template [=========== ] System.ArgumentException: Value does not fall within the expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****2.design_Checklist_T [=========== ] System.ArgumentException: Value does not fall within the expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****3.design_Drawing_Change_Schedule [=========== ] System.ArgumentException: Value does not fall within the
    expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****4.design_Responsibility_Matrix_Template [=========== ] System.ArgumentException: Value does not fall within
    the expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****5.design_Review_Record_Template [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****6.design_Risk_Assesment_Template [=========== ] System.ArgumentException: Value does not fall within the
    expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****7.design_Supplier_Material_Sheet [=========== ] System.ArgumentException: Value does not fall within the
    expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****8.design_Team_Meeting_T [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****9.pc_Key_Isssue_Schedule [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****10.pc_Client_Progress_Report [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****11.pc_Design_Change_Register [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****12.pc_rfi_schedule [=========== ] System.ArgumentException: Value does not fall within the expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****13.pc_Drawing_Progress_Schedule_T [=========== ] System.ArgumentException: Value does not fall within the
    expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****14.pc_Technical_Submittal_Schedule [=========== ] System.ArgumentException: Value does not fall within the
    expected range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****16.pc_Drawing_Issue_Schedule [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****19.proc_Pre_Order_Meeting_T [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties) ****20.proc_Preferred_Supplier_List [=========== ] System.ArgumentException: Value does not fall within the expected
    range.
    Server stack trace:  
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetWebRelativeUrlFromUrl(String strUrl, Boolean includeQueryString, Boolean canonicalizeUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:  
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    &nbsp;&nbsp;&nbsp;at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb_SubsetProxy.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile__Inner(String strUrl)
    &nbsp;&nbsp;&nbsp;at Microsoft.SharePoint.SPWeb.GetFile(String strUrl)
    &nbsp;&nbsp;&nbsp;at new_contract_request.pc_contract_request_form.pc_contract_request_form.ItemAdded(SPItemEventProperties properties)

  • Input File Repository Server not running

    When I try to access reports I get the following error
    Server Error in '/v2' Application.
    File Repository Server Input is down.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: File Repository Server Input is down.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [COMException (0x80004005): File Repository Server Input is down.]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +77
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +218
    [Exception: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +272
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +875
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename) +52
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(InfoObject infoObject, EnterpriseSession enterpriseSession) +87
       ProjectVillage.ReportView.ViewReport()
       ProjectVillage.ReportView.Page_Load(Object sender, EventArgs e)
       System.Web.UI.Control.OnLoad(EventArgs e) +67
       System.Web.UI.Control.LoadRecursive() +35
       System.Web.UI.Page.ProcessRequestMain() +750
    I have gone to the Central Configuration Manger and it all of the servers running except for input file repository server and output file repository server. When I start those two servers it goes right back to stopped. Now I checked the event viewer for errors and these to errors show up.
    Event Type:     Error
    Event Source:     BusinessObjects_inputfileserver
    Event Category:     Startup
    Event ID:     35602
    Date:          4/8/2011
    Time:          10:04:59 AM
    User:          N/A
    Computer:     PVWEB3
    Description:
    Fail to register with the nameserver.  Please check for name duplication and validness of name used: Input.PVWEB3
    and
    Event Type:     Error
    Event Source:     BusinessObjects_inputfileserver
    Event Category:     Services
    Event ID:     34200
    Date:          4/8/2011
    Time:          10:04:59 AM
    User:          N/A
    Computer:     PVWEB3
    Description:
    Failed to register with the name server. Reason: The server name being registered is invalid. There might be another server registered using the same name. Choose another name or delete the corresponding server entry in the CMC.
    Now to give a bit of a back story as to what happened before this. We were having a issue logging into the domain on this machine. The only way to get passed this was to unjoin and rejoin it to the domain then this happened.  When I try to go to the CMC using the admin launch page I get the following error.
    Server Error in '/businessobjects/Enterprise115/WebTools' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested Url: /businessobjects/enterprise115/WebTools/relativeredirect.aspx
    I'm a bit new to business objects software as this system was setup way before I started working for this company and noone that put this system in place has worked here for a while now. So I'm hoping some of you can help me out a bit or atleast point me in the right direction.

    Disregard that last post. I have gotten into Central Management Console.  My next question is, where in the CMC do I got to fix the following 2 errors I was getting?  I figure that are both talking about the samething but since this is my first time I've been in the CMC I am not sure where to go to fix it.
    Event Type:     Error
    Event Source:     BusinessObjects_inputfileserver
    Event Category:     Startup
    Event ID:     35602
    Date:      4/8/2011
    Time:      10:04:59 AM
    User:      N/A
    Computer:     PVWEB3
    Description:
    Fail to register with the nameserver. Please check for name duplication and validness of name used: Input.PVWEB3
    and
    Event Type:     Error
    Event Source:     BusinessObjects_inputfileserver
    Event Category:     Services
    Event ID:     34200
    Date:      4/8/2011
    Time:      10:04:59 AM
    User:      N/A
    Computer:     PVWEB3
    Description:
    Failed to register with the name server. Reason: The server name being registered is invalid. There might be another server registered using the same name. Choose another name or delete the corresponding server entry in the CMC.

  • Oracle Apps RDF Report generates file with ^M (Carriage return) characters

    We are upgrading from 11i to r12 (also moving from HP unix to AIX on hardware side) and this rdf report generates a text file which is then eventually sent to a third party system for printing. Report works just fine in 11i as it generates a file without any ^M chars but in R12 environment, the same report generates file with ^M chars.
    Also want to understand how the Oracle Apps system hands over the output files to O/S which is saved.
    Pls advice
    Thanks
    Ram M.

    What type of concurrent program are we talk about here?
    This is a Report type of Concurrent program
    How does the text file get generated?
    Report is generating a Text file on :desname, a custom folder. 
    Was the binary mode used to copy the files from the old server to the new one?
    I believe RDF Reports were copied over in Binary format but none of the text files generated from old server are copied over.

  • Open Hub  - Add header line to file on server.

    Hi All,
    How can I add header description to the file being generated in the server from the Open Hub. The open hub generates a fiule with data fields only, however i want a header line.
    Example
    IF my data fields are displayed as below,
    John M 12 2344
    Thomas M 17 8960
    Lin F 10 8467
    Jan M 12 4323
    I need to add, description as NAME above John, Thomas, Lin etc.
    as GENDER above M,M,F etc.
    as CODE above 12, 17,10 etc. and
    as EXTENTION above 2344, 8960,8467 etc
    Can anyone help.
    Points will be assigned

    Hi,
    i don't think this can be done even in BADI.
    what you can do is once the Infospoke run is complete and the file generated , run a custom report for this.
    in the custom report open a file dataset , write header and then close the file dataset.
    then again open the file dataset in append mode , writhe the file that the infospoke generated and close the file dataset.
    include this custom program after you infospoke run in the process chain.
    Regards,
    Neeraj.

  • Static Files with same name. How does apex determine which files to serve?

    Hello, I'm using apex 4.2.1.00.08 and I cannot figure out how apex manages the static files and cannot find any help in the docs (other that some high level UI description).
    The application is serving some file and I cannot find which one it is in any easy way.
    I have a workspace where there are several files that have the same name, and I cannot understand how apex figures out which one to serve, and also don't understand what is value of associating a file with an application.
    There are files associated with application 0, which don't appear to show up in the "shared components", but can be seen as
    SELECT *
    FROM wwv_flow_files
    WHERE flow_id = 0;
    and can apparently only be deleted using "SQL Commands" inside apex.
    the URL called is something like
    wwv_flow_file_mgr.get_file?p_security_group_id=13498126233076320&p_fname=myfile.css
    so apparently the only parameters that matter are the workspace and the file name. The associated application is irrelevant.
    apparently files linked to flow_id 0 have precedence over all the other files ...
    Thanks for clearing up a bit of "fog" on this issue.

    VC wrote:
    Go to that application > shared components > Static files you should see the file.the problem is that there are multiple files with that name, and that sometimes the file being served is linked to application "0" and it doesn't show in the "shared components" interface ...
    I have a workspace where there are several files that have the same name, and I cannot understand how apex figures out which one to serve, and also don't understand what is value of associating a file with an application.Static files can be uploaded to apex with optionally associating with an application within that workspace.
    Files associated with an application are referenced using *#APP_IMAGES#*
    Files not associated with an application are referenced using *#WORKSPACE_IMAGES#*I referenced with #WORKSPACE_IMAGES#, but now I see that if I use #APP_IMAGES# the URL generated will also contain the application ID. This would help to discriminate between different files with the same name but linked to different applications ...
    There are files associated with application 0, which don't appear to show up in the "shared components", but can be seen asWhy are you particularly interested in application 0?Because somehow APEX puts the files that I uploaded there ... they can be seen selecting from wwv_flow_files. Do they take precedence over all other files with the same name?
    Filename is unique for the given workspace[and application]I disagree. I have multiple files with the same name ... the root of this problem ...
    so apparently the only parameters that matter are the workspace and the file name. The associated application is irrelevant.How is your static file referenced??
    But not always, try associating an static file with and application and reference it using #APP_IMAGES# instead of #WORKSPACE_IMAGES#
    See
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/concept_sub.htm#BEIDCGAJ
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/ui_file_manage.htm#HTMDB06011
    Thanks, but the documentation doesn't give much details ... apparently files referenced with #WORKSPACE_IMAGES# can still resolve to files linked to specific applications ... I would like to understand the actual workflow for the various cases (file references with APP_IMAGES, referenced with WORKSPACE_IMAGES, file associated with the application, with another application, with no application, with application "0" ...).
    Also, I find it somewhat misleading that you can have files associate with applications that don't exist anymore (e.g. have been deleted).
    Edited by: GChierico on Apr 11, 2013 2:16 PM

Maybe you are looking for

  • Missing Cursor problem in Pages still exists

    Beginning with page 97 of a document you cannot place the cursor at the bottom of the document anymore. There already is an archived discusion on it but I don't find any further hints whether it is now a bug accepted by Apple: https://discussions.app

  • R12 not able to load supplier contact

    Hi Instance : R12.1.3, Not able to upload the supplier contact details. using the conc program "Supplier Site Contacts Open Interface Import" the conc program is publishing the report with "no data found" when the conc program is completed normal. ob

  • My music won't show up on my iPhone

    I purchased music on a 4 about a week ago, shared it to my iPad (which worked just one) through iCloud. I fell when I was on a run and busted my phone so had to get a new one and got a 4s. I went to share my music and it appeared to be downloading to

  • How to batch edit...adding text(company logo)

    I would like to add my company name (logo) to my images before posting them to the internet, but is there a quicker way than to open each file and add the text to each indiviual image...like even to save it as a selection that i could open or somethi

  • Looking for OS 10 4.11 Anti dns virus software download

    Does anyone know where oh where I can find free anti-dns virus software for my beloved and obviously antiquated 800 MHZ IMAC G-4 10. 4.11. Thanks very much.