Archive directory memory

Hi,
I have to check arch. directory staus in DB12, but it is showing only free space availble. Where can i find the total size of archive directory memory. Is there  any parameter. I dont have access to OS, Please give me suggestions at R3 level.
Thank you

RKV
You can configure AL11 to show any directory path on your servers. You can see the contents and the size as well.
Click on configure botton in AL11 and set up the path and name and save it. It will appear in the AL11 front screen. There if you douvle click you will be able to see the size and contents of any valid path in the system.
Note This facility is not there for older versions. It is there for ECC5.0.
Hope that helps. Thanks
Please get back if you have some queries on this.

Similar Messages

  • Relation between DB Collector and Archive Directory

    If archive directory could not be read, this would cause DB Collector error. Why so?
    And in what condition will cause the archive directory to be not readable?
    Thank you.

    OS process "saposcol" is responsible to read this irectory.
    if this does not work, this means that:
    1. saposcol is broken
    2. saposcol had problems with shared memory
    3. saposcol has wrong permissions set
    4. archive directory has wrong permissions

  • How to monitor available disk space in archive directory

    I need to monitor the available disk space of the archive directory during a long running PL/SQL program which does a lot of inserts and updates. This program is running in a background session and should regularly check for the available space. If there is less then a customizable number of MBs free the program must terminate itself. How can I access this information from the file system? (I'm using 8.1.6 and the application will run on both AIX and NT)

    The directory itself is not taking space (It actually does but in most cases you can neglect its size). It is files that it has that take space. Also, the more files you create the more space gets allocates from the media that holds them. And the last, the media (Hard Drive, Floppy, or other) has free space, not directory. That is how all OS's that I know about work.

  • Reg:File adapter archive Directory

    Dear team,
    Our requirement is to read a csv file from a directory and archive the file in archive folder specified in the file adapter.
    If any exception is caught,then we need to read the archieve file from archive directory rename the archive file with source file name and place it in source directory.
    On the receive activity we are able to get the source file name and source file directory.
    <receive name="Receive1" createInstance="yes"
    variable="Receive1_Read_InputVariable" partnerLink="fileRead"
    portType="ns1:Read_ptt" operation="Read">
    <bpelx:property name="jca.file.FileName" variable="srcFileName"/>
    <bpelx:property name="jca.file.Directory" variable="srcDrFolder"/>
    How to get the archive file name and archive file directory from the receive activity so that we can store in local variables.
    Pls do help.
    Thanks

    Hi,
    Another way you can accomplish your scenario. Instead of deleting or archiving in beginning just move the file from inbound to archive location after business flow completion.
    In case of error, the file will remain at original position as moving operation is at the end.
    First read the file using read operation, then at the end create a file adapter with sync read operation. Change the entries in .jca generated with below sample.
    Sample jca file.
    <endpoint-interaction portType="SynchRead_ptt" operation="SynchRead">
    <interaction-spec className="oracle.tip.adapter.file.outbound.FileIoInteractionSpec">
    <!-- Below properties are dummy except Type , it will be changed in runtime -->
    <property name="SourcePhysicalDirectory"
    value="srcdir"/>
    <property name="SourceFileName" value="abc.txt"/>
    <property name="TargetPhysicalDirectory"
    value="targetdir"/>
    <property name="TargetFileName" value="abc.txt"/>
    <property name="Type" value="MOVE"/>
    </interaction-spec>
    Then,in you bpel flow at the invoke for sync read add these two properties.
    <bpelx:inputProperty name="jca.file.SourceFileName"
    variable="varInputFileName"/>
    <bpelx:inputProperty name="jca.file.TargetFileName"
    variable="varArchiveFileName"/>
    <bpelx:inputProperty name="jca.file.SourceDirectory"
    variable="varInputDirectory"/>
    <bpelx:inputProperty name="jca.file.TargetDirectory"
    variable="varArchiveDirectory"/>
    - It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    Thanks,
    Durga

  • Regds : Read archive Directory

    I want to read the archive directory name in sender file adapter at runtime in the message mapping?
    Please suggest how can i achive this?

    Want to read the archive directory name in sender file adapter at runtime in the message mapping?
    Why?
    For a given sender file channel, the Archive Directory is constant. One sender file channel can be used only in one Sender Agreement. That means for given combination Communication Component, Interface, Namespace there is only one Communication Channel (Archive Directory). These three variable can be accessed in UDF using
    map = container.getTransformationParameters();
    headerField = (String) map.get(StreamTransformationConstants.INTERFACE_NAMESPACE);
    /* similarly Communication Component, Interface */
    http://help.sap.com/saphelp_nw04/helpdata/EN/43/09b16006526e72e10000000a422035/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/EN/78/b4ea10263c404599ec6edabf59aa6c/content.htm
    i.e. if this combination of Communication Component, Interface, Namespace then this is Archive Directory, if this combination of Communication Component, Interface, Namespace then this is Archive Directory.
    Now we have 2 option:-
    1. Hard code in UDF for this combination this is Archive Directory.
    2. Store these values in a database (this combination this is Archive Directory) and access it in message mapping by database lookup.
    There is other option, write a Adapter module, which populate the Archive Directory in SOAP header of messages in Adapter Engine. And access Archive Directory in UDF, similar to this http://help.sap.com/saphelp_nw04/helpdata/EN/78/b4ea10263c404599ec6edabf59aa6c/content.htm
    . But, this option is not recommended as it is performance overhead, and as for a Communication Channel, Archive Directory will not change (we have to do manual edit), At least very less in production (we don't change it very day ).

  • FTPAdapter - logical directory name - file not moved to archive directory

    I created a simple ftp service to read the file from remote inbound directory and archive it to an "archive" directory using logical directories. I supplied the input and archive directories. The process reads the file from the input directory, but doesnt move it to archive directory. In the opmn logs i see the following message
    File Adapter::Outbound> Since file could not be copied to specified archive directory, file : CUST__20081113002951.xml is being copied to a default archive directory :/apps/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/fileftp/defaultArchive/
    I checked the a) directory permission - this is the ftp users home directory , so it has all the bits set rwxrxrx- I even tried rwxrwxrwx, but same issue
    b) there is enough space on the box
    c) I can manually move the files around as the same user.
    Secondly, the files under the default archive directories are being created as root. Not sure why. Our server is running as "oracle" user.
    We are on 10.1.3.4
    any idea how to troubleshoot this ?
    Edited by: user9514124 on Nov 13, 2008 5:27 PM

    Just a thought. You are trying to archive to an FTP user's home directory. I assume that you want to archive remotely (on the source server)? If so you need to specify UseRemoteArchive="true" in the WSDL file for the adapter. If you forget that the adapter archives locallly on the SOA Suite server and perhaps there the directories are indeed missing or have the wrong rights?
    If you are using remote archiving and it doesn't work, have you tried to login with an FTP client and upload a file to the archive folder with FTP (as the FTP adapter user)? That is what the FTP adapter will do.
    If you are using local archiving, check all the parent directories and make sure that they are fine as well as the target directory. Also look into the file ownership issue, the files should not be created as root if everything really runs as oracle! Perhaps someone has accidentally started something as root?
    Good luck!

  • Regrdin file transer from al11 to archive directory  URGENT

    HI ,
    my actual require ment is
    in BDC inbound interface i have to read data from applcation server .i did that.
    but now i have to send that file to archive directory after succefully reading that.
    can anybody help on this
    wt is archive directory?
    how to send that application server file to archive directary after succesfull reading it? .......
    is there any function module for this....
    wt is archive directory?

    Hi,
    An archive directory is just a concept where one directory on the operating system holds files that have been processed.  You don't need to do anything special, either take the internal table you already have and write it to a file in this directory or call an operating system command to move the file.
    You just need to find out for your system which directory is the archive directory.
    Regards,
    Nick
    P.S. Please consider the rules of the forum and do not mark your post as URGENT.

  • Weird filename are getting created in archive directory.

    Hi All,
    Weird filename are getting created in archive directory.
    I have one ftp adapter,after the file getting processed the file's are getting moved to archive directory.
    But with some different file name/ filename are randomly generated. But the content of the file remains the same.
    Pls suggest.
    Thanks.

    This is standard functionality, it uses the original filename with a suffix of the datetime.
    cheers
    James

  • Problem in Placing the file in  Archive directory

    Hi,
    I am trying to read a file and after processing , I want to archive and place in other directory. Though i am able to read and insert the data succesfully into database but not able to place in 'Archive' Directory.
    What might be the reason any idea???
    I heard there is a bug in 10.1.3.3.0 version... Is this true???
    Any help in this regard would be appreciated.
    Thanks,
    Pallavi
    Message was edited by:
    user614169
    Message was edited by:
    user614169

    I don't think there is a bug related to this in 10.1.3.3
    I am using SOA and JDeveloper 10.1.3.3 and its working fine
    Are u checking the archive option in file adapter?( Check wsdl for entry)
    Also are you giving the physical location or logical one?
    try with physical path if u are not doing it already.
    And also, i don't think files get archived after processing, they get archived at the same time the file adapter is in action.
    Regards
    Ketan

  • EDIFACT File TO IDOC Archive directory file name.

    HI Experts,
    I have EDIFACT file to IODC scenario. I have  multiple source file locaiton but only one Archive location directory.But I have three different kind of file coming form three different location.
    we can only have one archive directory per service, is it possible to manipulate the file name so we can tell if files were successful or failed?
    For example, FileName1.txt, if it was successful, it would move to the archive directory and rename to u201CFileName1.txt.PASSu201D,
    if it failed it would move to archive directory like u201CFileName1.txt.FAILu201D. Is this functionality possible?
    Or will we just have to rely on Alert Categories to tell us when files have failed?
    Kindly give your valuable suggestion.
    Regards,
    Sumit Gupta

    >
    sumit gupta wrote:
    > HI Experts,
    >
    > I have EDIFACT file to IODC scenario. I have  multiple source file locaiton but only one Archive location directory.But I have three different kind of file coming form three different location.
    >
    > we can only have one archive directory per service, is it possible to manipulate the file name so we can tell if files were successful or failed?
    > For example, FileName1.txt, if it was successful, it would move to the archive directory and rename to u201CFileName1.txt.PASSu201D,
    > if it failed it would move to archive directory like u201CFileName1.txt.FAILu201D. Is this functionality possible?
    > Or will we just have to rely on Alert Categories to tell us when files have failed?
    >
    > Kindly give your valuable suggestion.
    >
    > Regards,
    > Sumit Gupta
    When you say success or failure does it mean a successful IDoc created in SAP? if so you will have to use a BPM and on successful creation fo the IDoc write the file out with the PASS name else FAIL name.
    you can also look at employing  scripts but there is no standard feature for this requirement. I gather alert is a better option.

  • File Adapter - Error creating archive directory adapter file

    Hello,
    I've a interfase File to RFC. In sender CC i have Archive Directory.
    It occurs the follow error:
    Error creating archive directory adapter file
    The archive directory exists.
    any idea?
    thanks very much

    Hi Silvia,
    Check whether the user you are using for FTPing is having proper authorizations.
    Also, verify whether you have the archive directory in place.
    Regards,
    Neetesh

  • Move File Object to Archive Directory

    I am getting a file FTP'ed into a directory which I read, modify and process the data into a different directory. My question is that the origanal file that I read I would like to move to an archive directory. What is the best way to do this?
    Thank you,
    Mike

    Couple of ways, depending on the platform, and if the machine os a server, work station, etc. Can you please let us know what your config is so we can advise you better. - Bart

  • DB12 not showing archive directory status.

    hi,
    We are having SAP ECC 6.0 production server on Microsoft cluster.
    in st06 I am able to see the free space status on each disk.
    but when I check the archive dir status in DB12
    status of archive directory:
    free space (KB):Unknown
    kindly suggest.
    thanks& reg,
    Gokul

    Please review OSS note 536954, which describes the setup of a separate cluster resource that DB12 will use.  You may also need to review 657999 for DB13 operations.

  • BPEL Archive directory {0} not found

    Hello,
    I have created deploy.xml,to deploy bpel processes on SOA server which is on unix based machine.
    xml is like
    <?xml version="1.0" encoding="windows-1252" ?>
    - <project default="Install" xmlns:oracle="antlib:oracle" basedir=".">
    <property name="process.dir" value="${basedir}" />
    <property name="package.dir" value="${basedir}/Package" />
    <echo>$(basedir) $(process.dir) $(package.dir)</echo>
    - <!-- Accounts Payable WorkFlow Version
    -->
    <property name="FlowVersion" value="1.0" />
    <property environment="env" />
    - <!-- First override from build.properties in process.dir, if available
    -->
    - <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME
    -->
    - <condition property="bpel.home" value="${env.BPEL_HOME}">
    <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
    </condition>
    <xmlproperty file="${process.dir}/bpel/bpel.xml" />
    <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}" />
    - <!-- If bpel.home is not yet using env.BPEL_HOME, set it for JDev
    -->
    - <!--      <property name"bpel.home" value="/apps/soa/product/10.1.3.1/OracleAS_1/bpel">
    -->
    <property name="bpel.home" value="C:/product/10.1.3.1/OracleAS_1/bpel" />
    <property name="bpel.home" value="${oracle.home}/integration/bpel" />
    <property file="${bpel.home}/utilities/ant-orabpel.properties" />
    <property name="bpel.home" value="${bpel.home}" />
    - <!-- import custom ant tasks for the BPEL PM
    -->
    <import file="${bpel.home}/utilities/ant-orabpel.xml" />
    - <!-- Use deployment related default properties
    -->
    - <!--
    This Task is Used to Unjar the jar file & replace the Token value,but needs to identify
    required or not. & if required from where it is get called.
    -->
    - <!-- Define the deployer URL
    -->
    <echo>Deployer URI : deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}</echo>
    <property name="deployer.url" value="deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}" />
    <echo>------------------------------------------------------------------- | ${env.BPEL_HOME} | Deploying to Server deployer:oc4j:opmn://${j2ee.hostname}/${oc4jinstancename} -------------------------------------------------------------------</echo>
    <property name="process" value="process1" />
    - <target name="FixURLLocations">
    <echo>------------------------------------------------------------------- | Updating Web Service Location Information | JAR file to update: ${p.jarfile} | Web Service Location base: http://${http.hostname}:${http.port} -------------------------------------------------------------------</echo>
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    <mkdir dir="${package.dir}/temp" />
    <mkdir dir="${package.dir}/Save" />
    <copy file="${p.jarfile}" todir="${package.dir}/Save" />
    <unjar src="${p.jarfile}" dest="${package.dir}/temp" overwrite="yes" />
    <!-- Code to replace some hardcoded values -->
    <delete file="${p.jarfile}" verbose="no" quiet="yes" failonerror="no" />
    <jar destfile="${p.jarfile}" basedir="${package.dir}/temp" update="yes" />
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    </target>
    <target name="Test">
    <echo>---------------------------------------------------------------- | Deploying process GWT_SP_L1WipBPELProcess ----------------------------------------------------------------</echo>
    <antcall target="FixURLLocations">
    <param name="p.jarfile" value="${package.dir}/Test.jar" />
    </antcall>
    <deployProcess user="${admin.user}" password="${admin.password}" domain="${domain}" process="${process.name}" rev="${rev}" dir="${package.dir}/output" hostname="${http.hostname}" httpport="${http.port}" verbose="${verbose}" isSSL="${isSSL}" trustStore="${trustStore}" trustPassword="${trustPassword}" />
    </target>
    <target name="Install" depends="bpel, apps_webservice">
    <tstamp />
    <echo>--------------------------------------------------------- | Deployed all process ---------------------------------------------------------</echo>
    </target>
    <target name="apps_webservice" depends="Test">
    <tstamp />
    <echo>--------------------------------------------------------- | Webserivces and application Installation completed directory "{0}" ---------------------------------------------------------</echo>
    </target>
    <target name="bpel" depends="">
    <tstamp />
    <echo>--------------------------------------------------------- | BPEL Process Installation completed ---------------------------------------------------------</echo>
    </target>
    </project>
    but when I try to run this xml using Ant It,unjar file files replaces code ,make jar again and on deploying it gives following error
    BPEL Archive directory {0} not found.
    Could you please tell me why this error is coming and how i can resolve it?

    Hello,
    Could any one help regarding this.
    Please suggest why d<deployprocess> is failing and giving BPEL Archive directory {0} not found.
    Could
    <copy file="${p.jarfile}" todir="C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\deploy" />
    replace <deployprocess>
    Thanks & Regards,
    Jignya

  • Multiple Archive Directory

    Hi All,
    Our scenario like....
    source directory:
    /data/interface/xxx/file1.txt
    /data/interface/yyy/file2.txt
    /data/interface/zzz/file3.txt
    I want file will be archived in different directory.
    Archive directory...
    /data/interface/xxx/processed/file1_timestamp.txt
    /data/interface/yyy/processed/file2_timestamp.txt
    /data/interface/zzz/processed/file3_timestamp.txt
    I am using one file adapter for sender.
    Plz Help needed urgently.
    Regards,
    Samarjit

    Hi,
    For each interface you must be having different Communication.
    In the sender communcation channel for<b> each</b> of the sender
    Specify:
    Processing Mode : Archive
    <b>Set</b> Add TimeStamp Indicator.
    Specify the archive directory path.
    Further reference
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/94007075cae04f930cc4c034e411e1/content.htm
    <b>Cheers,
    *RAJ*</b>

Maybe you are looking for