PCK installation : misssing  aii.properties file in the given path

Hi all,
i am doing installation for PCK from PCK installation guide, i want a aii.properties file in the given path  usr/sap/<sapsid>/JC00/j2ee/cluster/server0 but it's missing
can anyone knows from where i can get this file .
thanks

You find it on the installation DVD. You can also use the aii.properties from an XI installation.
Regards
Stefan

Similar Messages

  • HOw to create a text file in the given path and delete it after the use?

    Hi all,
    I am trying to create a text file at the given path and delete the created file after the use.
    I am using following code.:
    import java.io.*;
    // write binary data as characters
    public class RanIO {
                                            public static void main(String f[])
                                                      // First illustrate append
                                                      String lineSep = "\n";
                                                      try {
                                                                     File temp= new File("C:/Ash","cute.txt");
                                                      boolean ch=temp.createNewFile();
                                                      if(ch)
                                                           System.out.println("file created");
                                                      else
                                                      System.out.println("file Not created");
                                                      //writing to file
                                                 /*     PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
                                                      p.print("Emp NO");
                                                      p.close();*/
                                                                // Open fileWriter in append mode
                                                                               FileWriter fos = new FileWriter(temp, true);
                                                                               BufferedWriter bw = new BufferedWriter(fos);
                                                                               PrintWriter pw = new PrintWriter(fos);
                                                                               double d=550;
                                                                          // lineSep = System.getProperty("line.separator");
                                                                          pw.print("Hello");
                                                                          //pw.print( lineSep );
                                                                          pw.print( d );
                                                                          pw.close();
                                  boolean det=temp.delete();
                                                 if(det)
                                                      System.out.println("File deleted");
                                                 else
                                                      System.out.println("File not deleted");
                                                 } catch (IOException ioe)
                                                                System.out.println( "Append IO error:" + ioe );
    My problem:
    1)
    I am not able to write to the file. I want to know, where i am going wrong.
    It is giving error message like
    "Canot resolve Symbol: temp,"
    But, FileWriter Constructor should accept a File type parameter.
    here temp is a file parameter.
    If i am not using file=new file();
    i can't delete the file after the use. i.e if i use
    PrintWriter p = new PrintWriter(new BufferedWriter(new FileWriter("cute.txt",true)));
    how can i delete cute.txt after the use?
    2)
    I am not able to write to the text file. file is created but, a blank file.
    "Hello" is not written into the text file.
    can anyone help me in this regard
    Thanks in advance
    Ashvini

    Thank you Ram,
    But, i want to create a text file in Append mode.
    for that i used
    FileWriter fos = new FileWriter(temp,true); But, it is not accepting FileWriter constructor in
    this format. if i use
    FileWriter fos = new
    FileWriter("c:/ash/cute.txt",true); it works fine. !!!!!Here's the javadoc
    public FileWriter(File file,
    boolean append)
    throws IOExceptionConstructs a FileWriter object given a File object. If the second argument is true, then bytes will be written to the end of the file rather than the beginning.
    Parameters:
    file - a File object to write to
    append - if true, then bytes will be written to the end of the file rather than the beginning
    Throws:
    IOException - if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason
    Since:
    1.4
    Are you using jdk.13 or lower ?
    >
    ONe more doubt, Does flush method deletes a file?
    if not, then i need to use
    File temp=new File("c:/ash/cute.txt");
    FileWriter fos = new FileWriter(temp,true); //which
    is again a problem
    if(temp.delete())
    out.println("File is deleted");
    }I don't know whether i am taking it wrong ! or
    anything wrong with my coding ! but, after creating
    and writing data into a text file. I must delete it
    as it contains confidential informations.
    Regards,
    Thanks.'flush' writes to a file immediately. Else you should explicitly call 'flush' to write contents from buffer to underlying source.
    javadoc again
    PrintWriter
    public PrintWriter(Writer out,
    boolean autoFlush)Create a new PrintWriter.
    Parameters:
    out - A character-output stream
    autoFlush - A boolean; if true, the println, printf, or format methods will flush the output buffer
    cheers,
    ram.
    Question; What do you gain by opening a file, writing to it and deleting it in the same program ?

  • I want to place the file in the given path

    hi,
    I have one doubt on data transferring.
    I have got the path where i have to place the text file.
    I have written the coding OPEN dataset and transfer data set.
    But the file is not not replacing in the path.
    But i have tried to retrieve data from that path again by using open dataset and read dataset.
    I am getting exact data what ever i am sending data as text file.But only the thing is that file is not replacing in that path.
    Why it is not placing the file when i am sending?
    if any one knows the solution pls guide me.
    This is urgent requirement.I need help.
    Regards,
    lokesh.

    Hi Lokesh
    If you are transfering the flat file to the application server then use
    1) Define a variable which stores the path
        Data:   p_afile like IBIPPARMS-PATH
                       default 'F:\usr\sap\ECP\DVEBMGS00\log\test.dat'.
    2) Now use this code.
      OPEN DATASET 'p_afile' FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
      LOOP AT I_FF.    " Use your Internal table populated by using FM GUI_Upload
        TRANSFER I_FF TO 'p_afile'.
      ENDLOOP.
      CLOSE DATASET 'p_afile'.
    If Helpful Reward Points
    Arpit

  • Back ground job to download data into excel in the given path on sel-screen

    Hi Friends,
      I have 2 radion buttons on the selection screen 1. Online 2. Back ground.
    If i select the back ground radion button all program should run in back ground only, and finally the data should be downloaded to excel file on the given path in selection screen.
    Does any one have code for this.
    Thanks in advance
    Ajay
    Edited by: Ajay kumar on Aug 30, 2010 11:03 AM

    Hi Ajay,
    try this way..
    If sy-batch = 'X' . "background Job
    *   Submit report in background and creating spool
      SUBMIT (w_rname) USING SELECTION-SET p_var
          TO SAP-SPOOL WITHOUT SPOOL DYNPRO
          SPOOL PARAMETERS wa_pri_params AND RETURN.
      COMMIT WORK AND WAIT.
    *   To fetch the spool number from TSP01 table
      IF sy-subrc EQ 0.
        SELECT rqident
               FROM tsp01
               INTO p_spool
    *             UP TO 1 ROWS
               WHERE rq2name = wa_pri_params-plist.
        ENDSELECT.
      ENDIF.
    ENDIF.
    * Fetching Spool data into internal table
      CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
        EXPORTING
          rqident              = p_spool
        TABLES
          buffer               = t_Excel_data.
    "Now format the Data into excel format or Comma seperated format and download to Appl server.
    Prabhudas

  • [svn:fx-trunk] 8056: More updated project properties files for the sparkTest project.

    Revision: 8056
    Author:   [email protected]
    Date:     2009-06-22 12:13:58 -0700 (Mon, 22 Jun 2009)
    Log Message:
    More updated project properties files for the sparkTest project.
    Modified Paths:
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.actionScriptProperties
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.project

    Thats good news.

  • Properties-file with a relative path...

    Hello everybody,
    my question is as follows:
    I have a directory-structure like below:
    root_dir
    |
    -- source
    |
    -- classes
    |
    -- libs
    |
    -- xmlfiles
    |
    myproperties.propsIn words: my root_dir (is actually a subdirectory in my fs) contains folders like source (java-files), classes (class-files)... and a properties-file myproperties.props. The source-dir has subdirs like com/xyz/bla/Mainclass.java...
    I want to load the properties-file from the main-class, but without using the absolute path. That's the way I do it at the moment:
    Properties props = new Properties();
    props.load(new FileInputStream("d:\\foo\\something\\root_dir\\myproperties.props"));But I don't want to write the whole path, because of portability (forget the \\ :) )!
    How can I obtain the root_dir?
    Thanx for helping!
    Regards, Robert4

    Well I was already working on a replacer for /../ stuff before I was pointed to the File class. Not the best code I've written, but works fine. Perhaps it could be of use to you.
        public void setCoordinatesFileURL(String coordFileURL)
            coordinatesFileURL=coordFileURL;
            //replace .. to get canonical path
            StringTokenizer st = new StringTokenizer(coordinatesFileURL,"/");
            String[] stringURL= new String[st.countTokens()];
            int teller=0;
            while(st.hasMoreTokens())
                String token=st.nextToken();
                if(!token.equals(".."))
                    stringURL[teller]=token;
                    teller++;
                else
                    teller--;
            coordinatesFileURL="";
            for(int i=0; i<teller-1;i++)
                coordinatesFileURL+=stringURL[i]+"/";
            coordinatesFileURL+=stringURL[teller-1];
        }

  • How do I add a jar file into the build path of the compiler?

    Hey,
    I'm trying to import a jar file into the build path of the compilation process, but it does not find the packages or the classes that are in it.
    I think I don't add it right...
              ArrayList<String> options=new ArrayList<String>();
              options.add("-d");
              options.add(targetDirectory);
              options.add("-classpath");
              for(String str:includeDirectory)
                   options.add(str);
              if (!compiler.getTask(writer, fileManager, diagnostics, options, classes, compilationUnits).call());
                    ....and I've tried this way:
         public void setTargetDirectory(String targetDirectory) {
              this.targetDirectory = "-d " + targetDirectory;
         private void compile(Iterable<? extends JavaFileObject> compilationUnits) throws Exception {
              ArrayList<String> options = new ArrayList<String>();
              options.add(targetDirectory);
              String classPath="-cp ";// tried this also with "-classpath"
              for (String str : includeDirectory)
                   classPath+=str+":";
              options.add(classPath);
         if (!compiler.getTask(writer, fileManager, diagnostics, options, classes, compilationUnits).call())
              // throw new Exception("Compilation Error");
         }Thanks in advance,
    Adam.
    Edited by: Adam-Z. on Feb 24, 2010 5:41 AM
    Edited by: Adam-Z. on Feb 24, 2010 5:42 AM

    Thank you for your reply,
    Q: Are there .class files in that directory in that jar file? (the compiler doesn't ( can't )) look for directories, it can just look for specific files , and scan to get a list of all files matching certain criteria. So if there are no class files, it will say the package doesn't exist, even if there is a directory, possibly containing other files.yes there are class files in the jar, the tree structure:
    j2MeDataChunkGenerator_Plugin\(lots of class files)
    META-INF\manifest.mf
    and thats it.
    , your code will only work on windows because other platforms use a different path separator. You should use java.io.File.pathSeparator not explicit ';" when building your classpath. (this is unrelated to your problem, but you should correct it)will do, thanks.
    Q: Is that error in your post formatted by your own diagnostics? (we could possibly help you better if we didn't have to guess!!)I would not post my own error code, this text is generated by the compiler diagnostic.
    {code}
         System.err.println(" Error details: " + diagnostic.getMessage(null));
    {code}
    Q: Is line 3 of ImageCroper_Editor.java (sic) an import statement? (we could possibly help you better if we didn't have to guess!!)it is an import error... didn't the error message stated that it is an import problem? wired, I'm sure before it did. anyway it is an import error.
    Also you don't show us what the variable includeDirectory is in terms of type, and contents, that might be helpful. (we could possibly help you better if we didn't have to guess!!)It has only one String object: "D:\%Important Documents\WorkSpaces\PacMan\ApplicationManager\Plug-in\Data Chunk Designer.jar"
    the last file on the classpath list.
    Q: Have you proven this? that i did post, in this long line of text.
    Q: Is the compiler finding other classes (in other packages) in that same jar file?No. all the class files are in the jar, they all have entries that start with "j2MeDataChunkGenerator_Plugin\*.class", and since I get 47 errors I guess it does not load any other class.
    thank you for you comments, the problem with having these errors, is that I can't even get a piece of information where this error is coming from, only that it is an import loading error package not found, what does that mean? that the jar was not loaded in compilation(no error about this), that the jar is corrupted(no error about this), that the path is incorrect(it is correct I made sure), that there is no such package in the jar(There is), that the compiler does not load the package(does it even do that?), really I can't even guess why this happens, I've been at this on and of all day today, really annoying.
    Thanks,
    Adam.

  • Getting no file found under the given path- VNX-Family Monitoring and Reporting

    Server- Windows-2012 R2
    Using v21 of setup-vnx-mr-v21-win64
    Using NAVCLI-Win-32-x86-en_US-7.33.6.0.96-1
    Installed VNX-Family Monitoring and Reporting w/o any issues. Set user permissions.getting 
    Attempting to add VNX5400
    I am using direct IP address: 10.X.X.X, Getting no file found under the given path error.
    Any suggestions?
    An using correct permissions
    Thanks
    This topic first appeared in the Spiceworks Community

    Server- Windows-2012 R2
    Using v21 of setup-vnx-mr-v21-win64
    Using NAVCLI-Win-32-x86-en_US-7.33.6.0.96-1
    Installed VNX-Family Monitoring and Reporting w/o any issues. Set user permissions.getting 
    Attempting to add VNX5400
    I am using direct IP address: 10.X.X.X, Getting no file found under the given path error.
    Any suggestions?
    An using correct permissions
    Thanks
    This topic first appeared in the Spiceworks Community

  • I get the error "the given path's format is not supported report" when trying to edit a Report from SharePoint 2013 is SSDT 2012

    I downloaded a copy into my project and I get these errors when I try to Preview

    Have a look at these links please:
    Convert existing project the given path's format is not supported
    Unable
    to open Project File of SSRS 2008 into Visual Studio 2012
    sqldevelop.wordpress.com

  • The Given Path Format is Not Supported in MenuI'ds of Add-on

    Hi Experts,
    Im working on Add-On with Visual Studio 2008 and Database Sqlserevr2008,BidSetup with version 2.1.Afetr Building the Addon and After Registering the Addon .My Screens are Not Gettin Opened all the Screens(Menus) are throwing the Error with The Given path format is not supported(Here,Im Using Xml Conversion)To the open the screen..How do i solve this problem..
    Help would be appreciated
    Regards,
    Vijay Kumar

    Hi ,
      Can you explain load xml coding so we can get actual problem

  • How to read JBoss server 'app.properties' file in the deployed Flex application?

    Hi, my current Flex project is using LCDS server to make call (Remote object call and Data managements services' call) to the backend Java services and consume data to render. I have defined the AMF and RTMP channels in the services-config.xml file and destinations for the Java services' in the remoting-config.xml and data-management-config.xml files.
         <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://localhost:8080/eqcFlex/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
                <properties>
                    <polling-enabled>false</polling-enabled>
                </properties>
         </channel-definition>
    As of now both the Flex application WAR file and Java services EAR files are depolyed on the JBoss server on my machine, therefore I can hardcode the endpoint URL as http://localhost:8080 in the services-config file and hit the Java services.
    But the requirement is that the Flex application WAR file needs to be deployed on JBoss servers deployed on different machines and hence the endpoint URL cann't be hardcoded in the services-config.xml file. Is there a way we can pick up the endpoint URL from the JBoss server's app.properties file so that we can dynamically create channels in Actionscript code and make call to the backend services with dynamic endpoint URL?

    But in Command prompt I found out that My properties file by name
    'cedrelay.properties' is not recognised by web.xml.My web.xml structure is
    How does web.xml "recognize" anything?
    You specify the properties file as an init parameter. Do you read it in the init method of the servlet? If so, what does the code look like for reading the properties file?
    You'll have better luck if you put that properties file in WEB-INF/classes and load it as a resource input stream from the CLASSPATH.
    %

  • How can i read comments from properties file in the right order??

    Hello
    I want to build a console that read a properties file and print to the screen the property name, property value and property description and the developer can change the name or the value or the description of the property and update the property file.
    But the problem in using the properties class that it doesn�t read the comment and not save the properties in their order so I can�t couple description and name of the property.
    Does any one know any utility that do the job or know how to solve the reading the comments problem???
    Thank you a lot?

    sorry but i dont understand how the solution of using
    a dot ( property_key.description ) helping me to
    solve the problem?
    please try to explain it agin.
    thank youYou wrote:
    "I want to build a console that read a properties file and print to the screen the property name, property value and property description and the developer can change the name or the value or the description of the property and update the property file."
    So i'm as developer imagine that somebody edit properties in GUI or console. So you have 3 text fields: property name, property value, and propety description. Then developer save edit changes, then text fields maped to properties file and:
    text field "property name" and text field "property value" construct property:
    name=valuetext field "property name" adding ".description" and text field "property description" construct property:
    name.description=descriptionFor one described property, you will have put two properties.
    Thanks!

  • Have been lost, all the properties files in the CM repository (FSDB mode)

    Hi,
    I encountered the following problem: lost all descriptions to folders and files in the CM repository, which is connected to the FSDB mode. This happened as follows. At desired time connection to the server where the repository was broken, after some time the link was restored, but the repository was not available. After this portal has been restarted, and the repository to work, but lost all completed file properties, including the description.
    How do I return all the description files?

    Hi Stanislav,
    Has this issue been resolved?
    If not then the only way to restore this lost metadata would be a be restore, see sap notes 900571 and 737877 for more details.
    Regards,
    Lorcan.

  • Properties Files during the build process.

    Hi everyone, I have a question about files inside the src directory and how they relate to files in the /WEB-INF/classess directory.
    From what I've read, eclipse copies the files inside "src" into "WEB-INF/classes" when building a project.
    Inside my "src" folder I have a few properties files for my application, let's call them qe.properties, production.properties and final.properties
    When I build my app (using Ant) I currently copy qe.properties into final.properties when building my application in QE. And production.properties into final.properties when building my application for production.
    Here is the command:
    <copy file = "src/qe.properties" tofile="src/final.properties" overwrite="true" />
    Every once in a while a production build will have a qe properties file and vice versa (a qe build will have a production properties files).
    I tried changing this using a symbolic link but I ran into the same issue, and worst yet, the file that get's copied inot "WEB-INF/classess" is not a symbolic link it simply contains the contents of the symbolic link.
    How can I get around this issue?

    I replaced the files with new files they are in the same location but they have different names.  It still does not work.
    It's very frusterating.
    Everytime I make ANY changes to my original files I need to rebuild in encore.  For example, I have a dynamic link and I adjust a transition and then resave.  I have to build in encore from scratch (it will not build).
    When encore works if I just save my encore file, close and then reopen it does not work anymore.
    If I render the files and change anything in encore it does not work.
    BTW the preview works perfectly.  It just freezes during the Build Process.
    I also tried to build an image and this did not work (it froze too).
    I'm assuming CS5 works with intel i7 and windows 7 and 8GB of Ram per the Adobe requirements.
    Any other ideas (other than leave every instance of Encore up and never close the program down)?
    Jonathan

  • How to load a .properties file by giving relative path in a JSP file.

    Hey guys,
    I'm trying to load a .properties file in a JSP using relative path...
    It is not taking the properties file..
    What is the problem...?
    Any solution..?
    Thanks a lot.

    Yes I tried that also.
    Your path was something like this ?
    http://localhost:8080/Database/a.properties ?
    Whether this path will change after client installation ? if no then what's the problem ?
    For client side installation how you are going to set your conf directory for your application ?
    You are not going to give client installation page ?which will have all the values to be set like conf path. database,user name(s),log folder,temp folder etc ? Why you are keeping everything on server ?
    Check if this is useful,
    String context = request.getContextPath();
    String rmtAdd = request.getRemoteAddr();
    String host = request.getRemoteHost();
    out.println("http://"+rmtAdd+context+"<BR>");
    out.println("http://"+host+context);
    "http://"+rmtAdd+context
    Edited by: kanad on Jan 12, 2008 1:29 PM

Maybe you are looking for