Line 8060 of the INF file\i386\txtsetup.sif

Hi !
I have problems throw the formating..
after partioning the disk...i want to formmat , but i can't do format iwith a sturtup disk...
 when i write A:>/ format C: (i take)
bad command in a dos line (or somthing like this it doesn't work)
2. throw booting from CD i take this problem
Line 8060 of the INF file\i386\txtsetup.sif
VIZ i can't install the windows xp

is this a home made windows
made with nlite or similar ?
Line 8060 of the INF file\i386\txtsetup.sif
thats the file you alter to make xp install without you having to enter any thing

Similar Messages

  • How do I uninstall the .inf file (for USB)

    I read here how to create and install an .inf file:
    http://zone.ni.com/devzone/conceptd.nsf/webmain/6792BAB18242082786256DD7006B6416?opendocument
    Before I start... How do I uninstall it if required?

    Hey Viking,
    If you installed a driver for the device then all you have to do is uninstall the driver. For example if I wanted to use a DAQPad I would just uninstall NI-DAQ.
    However, Windows ships with drivers for several USB devices. In this case you have a few options. After creating your .inf file and installing it you can go to the device manager and click update driver for the device and then manually select the .inf file you created instead of the default one that windows uses.
    You could also search the inf files on your computer (normally at C:\Windows\inf) for a file that contains your specific vendor and device ID. Then comment out the line that references your device.
    I hope this helps out.
    JoshuaP
    National Instruments

  • Error accessing JSp file from Tomcat4.1.27 at line:-1 in the jsp file: null

    Hi...when I tried to access my JSp file from tomcat 4.1.27 web server, I got the following error message. Can anyone help me out?
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: -1 in the jsp file: null
    Generated servlet error:
    [javac] Compiling 1 source file
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:8: '.' expected
    import java;
    ^
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:80: illegal start of expression
    private static java.util.Vector jspxincludes;
    ^
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:82: illegal start of expression
    public java.util.List getIncludes() {
    ^
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:280: '}' expected
    ^
    4 errors
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:353)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:601)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:534)

    You JSP has four compile errors:
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:8: '.' expected
    import java;Invalid import. You need to import a whole package (*) or single class.
    import java; is wrong
    import java.util.*; is right
    import java.util.List; is right
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:80: illegal start of expression
    private static java.util.Vector jspxincludes;
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:82: illegal start of expression
    public java.util.List getIncludes() {Check the lines before these to make sure you didn't leave off a semi-colon, parens (')') or bracket ('}').
    C:\Tomcat\work\Standalone\localhost\Tree\jspfiles\tree_jsp.java:280: '}' expectedYou are missing a closing bracket ('}') somewhere.
    The message about the "line -1" error is the standard message that is always given when there are compile errors in the JSP.

  • Taglib don't work!An error occurred at line: -1 in the jsp file: null?!

    Hi everyone:
    I write a simple jsp file with taglib to test whether it can work property.But it says"org.apache.jasper.JasperException: Unable to compile class for JSP
    "When I compile it with Tomcat4.1.The specific error information in the browser is ://////////////////////////error info///////////////////////////////////
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: -1 in the jsp file: null
    Generated servlet error:
    [javac] Since fork is true, ignoring compiler setting.
    [javac] Compiling 1 source file
    [javac] Since fork is true, ignoring compiler setting.
    [javac] E:\Tomcat4\work\Standalone\localhost\_\testtag_jsp.java:82: can't resolve the charactor [javac] charactor��class Tagtest
    [javac] location��class in org.apache.jsp.testtag_jsp
    [javac] Tagtest jspxth_lyotag_tag_0 = (Tagtest) jspxtagPool_lyotag_tag.get(Tagtest.class);
    [javac] ^
    [javac] E:\Tomcat4\work\Standalone\localhost\_\testtag_jsp.java:82: Can't resolve the character [javac] charactor��class Tagtest
    [javac] location��class in org.apache.jsp.testtag_jsp
    [javac] Tagtest jspxth_lyotag_tag_0 = (Tagtest) jspxtagPool_lyotag_tag.get(Tagtest.class);
    [javac] ^
    [javac] E:\Tomcat4\work\Standalone\localhost\_\testtag_jsp.java:82: can't resolve the charactor [javac] character��class Tagtest
    [javac] location��class in org.apache.jsp.testtag_jsp
    [javac] Tagtest jspxth_lyotag_tag_0 = (Tagtest) jspxtagPool_lyotag_tag.get(Tagtest.class);
    [javac] ^
    [javac] three error
    But I have include the package in my java file:
    ////////////////////////Tagtest.java///////////////////////////
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    import java.io.Writer;
    public class Tagtest extends TagSupport{
         public int doStartTag()throws JspException{
         try{
              JspWriter out=pageContext.getOut();
              out.println("hello Tag!");
         }catch(Exception e){
              return SKIP_BODY;
    //////////////////////////////Tagtest.tld//////////////////////////
    <tag>
    <name>tag</name>
    <tag-class>Tagtest</tag-class>
    <body-content>empty</body-content>
    <description>
    Perform a server side action; Log the message.
    </description>
    </tag>
    //////////////////////////testtag.jsp////////////////////////
    <%@ taglib uri="/taglib/Tagtest.tld" prefix="lyotag"%>
    <h6>Hi Lyo</h6>
    <lyotag:tag/>
    Why can't compile my jsp file?Where is it wrong?Please help me.Thank you!

    In the tomcat4 console:
    Compile failed; see the compiler error output for details.
    at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:842)
    at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
    at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:317)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContex
    .java:473)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrappe
    .java:190)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:
    95)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(App
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(Application
    ilterChain.java:193)
    It seems that tomcat can't find the javac in the classpath.But I set it in my win2000! And it could compile the java file using javac command!Why???

  • Line missing in the Manifest file

    Hi,
    I've encountered a problem when creating a Manifest file. My file is named 'mymanifest.mf' and it's as below:
    Manifest-Version: 1.0
    Class-Path: .;htmlparser.jar;xerces.jar
    Main-Class: Mymainclass
    Then I type the command in the command-line window:
    jar -cvfm myjar.jar mymanifest.mf directory1 class1.class
    The jar file 'myjar.jar' is created and can be opened by winrar, but the MANIFEST.MF file in the META-INF directory is strange, it is as below:
    Manifest-Version: 1.0
    Created-By: 1.3.1 (Sun Microsystems Inc.)
    Class-Path: .;htmlparser.jar;xerces.jar
    and the 'Main-Class' line is missing. I change the position of 'Main-Class' line and 'Class-Path' line, still the one line in the bottom is missing. Would you please tell me the reason? Is my manifest file wrong? Thanks a lot!

    Hi,
    You have to end the file with a new-line. From the documentation:
    Be sure that any pre-existing manifest file that you use ends with a
    new line. The last line of a manifest file will not be parsed if it doesn't end with a new line character.
    Eyal Lupu

  • Batch list import is picky about line terminations in the text file

    After running into trouble trying to compose a batch list for import, I isolated the issue:
    The text file that you attempt to import must have "carriage return" characters at the end of each line. It can have a "carriage return" and a "line feed", but it cannot have only a "line feed".
    If you feed Final Cut a text file that does not meet this criteria, it will barf up this error message:
    One or more items on the header line do not match valid Browser column headers.
    Line terminators have been the cause of many a problem over the years! Typically, MSDOS/Windows systems tend to create text files that use a CR-LF combo. While Mac OS was typically just a CR. And UNIX systems have typically been just an LF. However, since Mac OS X is now a hybrid of older Mac ways, and UNIX ways, you can find mixed situations there. For example, the Mac OS X Text Edit program saves out files with just an LF, and thus can't be directly used to create batch lists for Final Cut.
    So, you need to be careful what means you use to create batch list text files.
    Hope this helps some poor soul some day!
    -Rick

    I am trying to export a batch list created in FCP 5.1 to someone with 6. I follow directions, export and save and then e-mail the file. When he tries to import it, he gets that message ("One or more items on the header line do not match valid Browser column headers"). But I have tried re-importing it from my desktop and have no problem. Is there a problem going with such simple data from 5.1 to 6? Is it possible that the e-mail transmission is corrupting the files?
    Thanks for suggestions.

  • Search for a word and return all the  lines (row) from the text file..

    Hi all,
    I need a help on how to search a string from the text file and returns all the lines (rows) where the searched string are found. I have included the code, it finds the indexof the string but it does not return the entire line. I would appreciate your any help.
    public class SearchWord
         public static void main(String[] args){
         //Search String
         String searchText = "man";
         //File to search (in same directory as .class file)
         String fileName = "C:\\Workspace\\MyFile.txt";
         //StringBuilder allows to create a string by concatinating
         //multiple strings efficiently.
         StringBuilder sb =
         new StringBuilder();
         try {
         //Create the buffered input stream, which reads
         //from a file input stream
         BufferedInputStream bIn =
         new BufferedInputStream(
         new FileInputStream(fileName));
         //Holds the position of the last byte we have read
         int pos = 0;
         //Holds #of available bytes in our stream
         //(which is the file)
         int avl = bIn.available();
         //Read as long as we have something
         while ( avl != 0 ) {
         //Holds the bytes which we read
         byte[] buffer = new byte[avl];
         //Read from the file to the buffer
         // starting from <pos>, <avl> bytes.
         bIn.read(buffer, pos, avl);
         //Update the last read byte position
         pos += avl;
         //Create a new string from byte[] we read
         String strTemp =
         new String(buffer);
         //Append the string to the string builder
         sb.append(strTemp);
         //Get the next available set of bytes
         avl = bIn.available();
         catch(IOException ex) {
         ex.printStackTrace();
         //Get the concatinated string from string builder
         String fileText = sb.toString();
         int indexVal = fileText.indexOf(searchText);
         //Displays the index location in the file for a given text.
         // -1 if not found
         if (indexVal == -1)
              System.out.println("No values found");
         else
              System.out.println("Search for: " + searchText);     }
    }

    Hi, you can use servlet class and use this method to get the whole line of searched string. You can override the HttpServlet to treat that class as servlet.
    public class ReportAction extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    //write your whole logic.
    BufferedReader br = new BufferedReader(new FileReader("your file name"));
    String line = "";
    while(line = br.readLine() != null) {
        if(line.contains("your search string")) {
            System.out.println("The whole line, row is :"+line);
    }

  • How to refer the SQL*Loader command line parameters in the control file

    The problem I am trying to resolve is to insert the input file name when SQL*Loader is loading the record from the file. I have multiple files to load and it is nice to associate a record with a particular input file.

    Create the control file dynamically (and fill one of the columns with the file name as a constant) before you start SQL*Loader
    Another option is to use external tables
    Re: Data Loading
    Message was edited by:
    Jens Petersen

  • Looking for an off line version of the help file for lion server that I can print

    I would like to find an offline version of the help file for lion server
    Im a newbie trying to set up a home server for our macs and Iphones

    Go to this URL using Safari on your mac:
    https://help.apple.com/advancedserveradmin/mac/10.7/print.html?lang=en#printBook
    Then press cmd+p and from the print menue choose PDF and then Save as PDF and there you have it.

  • How to find dynamically the current line number in the source file

    Is there a mechanism like __LINE__ and __FILE__ macro in C to get dynamically
    the current line number and file name of a source file?

    Don't know - but others have asked too. Have you searched the forum? For example:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=210496

  • Netweaver not showing line number in the error file.

    Hi All,
    I am working on SAP NetWeaver 2.
    I am having a serious problem in here.
    What is happening is, In my code there is a Null pointer exception occurring frequently.
    In my log file I can see the file in which it is occurring but I cannot see the line no in which the nullpointer exception is coming.
    Is there any setting in netweaver which i should turn on to see the line no in which the error is happening.
    Thanks in Advance,
    Manny

    Hi Sam,
    Title means workflow title coming in the inbox or mail subject ?
    Anyways both the issues can be fixed in the WF itself.
    If you want to change the mail subject check your mail step and provide proper variable.
    for the workitem text you can change it form the task.
    Regards
    Bikas

  • How do I get the .inf file to load up for an ISA Stepper board?

    The board in question is pcStep-4AOL. I have the pcRunner software to recognize it. However, when I go to Add New Hardware and select nuLogic Motion Controller, there is a blank list for the drivers. I need this to allow me to configure it. Please help if you can. Thanks.

    Hello,
    One common problem is that you don't have your dip switch settings correct on your board. Check the diagram in the Configuration Utility to verify that these are correct on your pcStep-4AOL. If this is done correctly, then try to install the board on a different PC so we can determine whether there may be a problem with the board, or a confict with that particluar system.
    Regards,
    Andy Bell
    Application Engineer
    National Instruments

  • Which inf file to use for HP LaserJet Pro 200 color m251nw, when updating the driver?

    My printer is LaserJet Pro 200 color Printer M251nw. I visited the support page and found there is a newer driver.
    Driver (61.117.01.15301)
    Currently my driver version is 61.117.1.11493. I want to upgrade the driver.
    After downloading and unzipping the files into the folder, I found there are 3 inf files in the folder:
    hpcm251u.inf
    hpcm251c.inf
    hpbuio70l.inf
    So which one should I install? I am disappointed at the lack of information and inconvenience in upgrading the driver.
    June

    Hi CJKim,
    Welcome to the HP Forums.
    I see that you are trying to update the driver and are not sure which .inf to choose.
    I will be happy to help you.
    Since it is running through the add printer wizard you can select any one of the .inf files you listed
    to update the drivers.
    Thank you for posting on the HP Forums.
    Have a great day.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Where to put the class file

    i am using tomcat 4.1.27 server and i created a UserData.java file as a bean; i have placed the class file in the WEB-INF/classes folder. still i get the following error:
    ==============================================================
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 21 in the jsp file: /ics334/Javanese/name7.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\_\ics334\Javanese\name7_jsp.java:60: cannot resolve symbol
    symbol : class UserData
    location: class org.apache.jsp.name7_jsp
    UserData user = null;
    ^
    An error occurred at line: 21 in the jsp file: /ics334/Javanese/name7.jsp
    Generated servlet error:
    C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\_\ics334\Javanese\name7_jsp.java:62: cannot resolve symbol
    symbol : class UserData
    location: class org.apache.jsp.name7_jsp
    user = (UserData) pageContext.getAttribute("user", PageContext.SESSION_SCOPE);
    ^
    An error occurred at line: 21 in the jsp file: /ics334/Javanese/name7.jsp
    Generated servlet error:
    C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\_\ics334\Javanese\name7_jsp.java:65: cannot resolve symbol
    symbol : class UserData
    location: class org.apache.jsp.name7_jsp
    user = (UserData) java.beans.Beans.instantiate(this.getClass().getClassLoader(), "UserData");
    ^
    3 errors
    Apache Tomcat/4.1.27
    ===============================================================
    the structure of the jsp file is as
    <%@ page contentType="text/html" %>
    <%@ page import="java.sql.*,java.util.*" %>
    <%@ page import ="javax.servlet.*"%>
    <%@ page import ="javax.servlet.http.*"%>
    <html dir="rtl">
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>New Page 1</title>
    </head>
    <body>
    <p dir="ltr">
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <jsp:setProperty name="user" property="*"/>
    <font size="5">Your Name is :<%= user.getUsername() %> <BR></font>
    </p>
    </body>
    </html>
    can anyone help plz?

    I am also facing the same problem. Try placing ur
    class files in tomcat's /common/classes folder.
    Sometimes it works. How ever it did not work in my
    case. Hope it works in your!!This ain't a right way of doing it... when creating a web-app, the files should be contained in it.
    The problem is can be resolved by packaging the class in say beans. Then place that class in WEB_INF/classes/beans.
    Cheers!
    ***Annie***

  • Is there a way to export a searchable list of artists/albums/songs (not the music files, just the text) to my iPhone 4?

    Basically, I have an iPod Classic which contains over 17,000 songs. I have a 16 GB iPhone 4. I don't always have the iPod with me, but just about always have the iPhone. Since I am still old school enough to actually buy CDs, I'd like a handily available and searchable list that I can export from iTunes to my iPhone so I can make sure I don't accidentally duplicate a purchase (it happens). I've tried searching the App Store but either I am doing it wrong, or nothing exists as yet. Obviously the phone can't carry all of that music so I am not looking to transfer those files en masse. Just want the lists so I can reference them as needed. Is this a pipe dream or is there actually a way to do this?  Thanks in advance...

    Sealion64
    I just saw your post
    Im using Adobe Elements 11 and my movie is a prel file. When I move it an
    external hard drive I want to maintain the order of of my movie in its
    original time line if possible
    The prel file is a project file which will eventually be exported to a file which will be your movie.
    If all this involves just changing the location where you save your project files routinely, that is one thing.
    But, once you move the source media that go into a project which has been saved closed, then you get
    into serious media - project reconnect issues.
    When you import media into a project, all you get are copies of the originals that are at a hard drive save location.
    But, the project needs to trace back to the originals at the hard drive save location where they were when first
    imported into the project.
    Moving the project file should not get you into trouble; whereas moving, deleting, renaming source media that went into the project will.
    If the project is finished, I can see using the Project Archiver to save it in a Copied Folder (saved to the external hard drive).
    But, to work from the Copied Folder on a routine basis needs some thinking about. I would think about pointing your project and
    it components to locations of your choice (even the external hard drive) for the "next" project but without involving the Project Archiver until you have finished
    with the project and want it safely out of the way.
    ATR

Maybe you are looking for

  • Slow going from Login to full loading of desktop in main user account

    Lately my beloved Macbook Pro has developed a problem in the main user account. It is taking too long to load the desktop & menu bar after Login. I don't know quite how to approach troubleshooting this, because my alternate user loads fine. I am goin

  • Problem in creating a JDBC System on VC7.1 portal ( CE7.1 SP3)

    I have a problem in creating a JDBC System on VC7.1 portal (CE7.1 SP3) I get the following error: Test Details: The test consists of the following steps: 1. Retrieve the default alias of the system 2. Check the connection to the back-end application

  • Can Apple TV be used without wireless or Internet  connection?

    I would like to take Apple TV camping. I wanted to mirror NetFlix or movies from my iPhone 4s to it. Is it possible without any wireless router or Internet connection?

  • Dispatcher & JControl is not up & running after a DB Restore

    Hi,   In CRM 7.0 server,with MSSQL server DB,a backup was taken and restored successfully.After this successful restoration,the  SAP Instance(disp+work) & JCo (Java Instance) are not up & running.. What might be the possible reasons ??

  • Rounding of Decimals(Essbase)

    Hi..... I'am having a problem in Essbase.... i want to Round of decimals from 12 digits to 5 digits and my requirement are. 1. Cube is an ASO Cube so, i cant write any Calc Script. 2. Report Extraction is done in Excel. 3. I had written a Fromula bes