How to create repository folders to various file systems

Hi
How to create repository folders for various filesystems,and allow the user to do access those files(checkin/checkout)
Prasad

Please explain further.
You can create a file system repository for each of the file systems.
The document approval workflow is a functionality which is already available withing the portal.
However, be aware that the file system repository does not support custom properties and versioning.
In that case you might want to use a CM respository in the FSDB mode which lets you store metadata on the portal and the actual files on the file server.
Regards,
Vibhu

Similar Messages

  • How to create a folder in the file system?

    Hi All,
    How to create a normal folder in my PC's file system in a specific path?

    Host just passes commands to the OS; the simplest way to try would be playing a little bit around in the shell to figure out what's not working...
    C:\>dir "I am"*
    Volume in drive C is System
    Volume Serial Number is 5C03-B54D
    Directory of C:\
    File Not Found
    C:\>cmd /c mkdir "c:\I am a directory"
    C:\>dir "I am"*
    Volume in drive C is System
    Volume Serial Number is 5C03-B54D
    Directory of C:\
    09/21/2010  02:38 AM    <DIR>          I am a directory
                   0 File(s)              0 bytes
                   1 Dir(s)     509,628,416 bytes free
    C:\>cmd /c mkdir "c:\I am a directory"
    A subdirectory or file c:\I am a directory already exists.
    C:\>or with the host built-in
    host('cmd /c mkdir "'||full_path||'"');But first you should check if the directory already exists as mkdir will throw an error if it exists as you can see.
    cheers

  • How to create a 2 digit (gigabyte) file system to be used for 3 digit tiny size files and not running out of inodes

    I have a 83Gb file system that apparently is not full, but its actually full, because I have run out of inodes, and I have 10 million files in there, so I want to create another that will cater for this inode issue. My question is if I use the
    newfs -T
    option will it work? As its only going to be 90Gb?

    You use probably a UFS file system, right ? Then in this case, use the "-i" option with a value less as 8192. 8192 is the default value for a UFS filesystem that is between 3GB and 1 TB size.
    But if you want to store 10M of files, UFS will be limited to 1M per TB : 64-bit: Support of MultiterabyteUFS File Systems (System Administration Guide: Devices and File Systems)
    In this case, use instead UFS a ZFS filesystem that supports 2^48 entries !!!

  • Aperture 3.1.2 When exporting files to Finder is creating a folder for each file, that means export 200 files is creating 200 folders for each files. Does anyone knows how to fix this. Thanks

    Aperture 3.1.2 When exporting files to Finder is creating a folder for each file, that means export 200 files is creating 200 folders for each files. Does anyone knows how to fix this. Thanks

    No. This is NOT true. I've been battling with this for a couple hours.
    I choose Export>Versions
    choose
    Subfolder Format: Project Name
    no custom subfolder
    Name Format: Current Version Name.
    Aperture creates project folders for each image and names them Projects1, Projects2, Projects3 etc.
    To be sure, I have no project named Projects
    x
    This particular Aperture library has 16 projects. you can see in the screen grab it's created more than 30 folders
    If I uncheck the Subfolder, that is say NONE, I just get images and images and images, not in their project folders (of course, because I've said NONE, so why would it put them in project folders?)
    I just want to export the entire library and have the versions placed in folders named by the projects from which they came.... ez enough, no?

  • How to create a table in the file using java code.?

    HI,
    I should export the data from the view objects to a word document. I have done that but I should
    display the data in the form of a table.
    Kindly come up with the necessary information on how to create a table in the file using java.
    Thanks,
    Phani

    Hi, Thank you for responding to my query.
    The below are the details of my code.
    DCBindingContainer dcBindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding StudentDetailsContent =
    (DCIteratorBinding)dcBindings.get("StudentView1Iterator");
    OutputStreamWriter w = new OutputStreamWriter(outputStream, "UTF-8");
    Row currentRow =
    StudentDetailsContent.getRowSetIterator().first();
    Object a[]= currentRow.getAttributeValues();
    int i;
    for(i=0 ;i<=a.length;i++){
    w.write(a.toString());
    w.write(" ");
    w.flush();
    I am usning this coding to achieve the task of exporting data to file.
    I need to display this information in the table that is where I need help from you people.
    Thanks,

  • How to create Inbound Idoc from XML file-Need help urgently

    Hi,
    can any one tell how to create inbound Idoc from XML file.
    we have xml file in application server Ex. /usr/INT/SMS/PAYTEXT.xml'  we want to generate inbound idoc from this file.we are successfully able to generate outbound XML file from outbound Idoc by using the XML port. But not able to generate idoc from XML file by using we19 or we16.
    Please let me know the process to trigger inbound Idoc with out using  XI and any other components.
    Thanks in advance
    Dora Reddy

    Hi .. Did either of you get a result on this?
    My question is the same really .. I am testing with WE19 and it seems SAP cannot accept an XML inbound file as standard.
    I see lots of mention of using a Function Module.
    Am I correct in saying therefore that ABAP development is required to create a program to run the FM and process the idoc?
    Or is there something tht can be done with Standard SAP?
    Thanks
    Lee

  • How to create Mail Folders?

    Question
    Does anyone know how to create mail folders for oganizing the inbox? I can't figure it out, but likely, the answer will be "you can't".
    I'm not using an IMAP mail host, I have a pop account with Yahoo!Mail.
    Any help is appreciated...
    Thanks.

    I can't figure it out, but likely, the answer will be "you can't".
    How'd you know?
    No, you cannot create folders on POP mail accounts on the iPhone. Let Apple know you would like to be able to do that.
    http://www.apple.com/feedback/iphone.html

  • How to create and manage the log file

    Hi,
    I want to trace and debug the program process.
    I write the code for creating log file and debugging the process.
    But i am not able get the result.
    please help me how to create and manage the log file.
    Here i post sample program
    package Src;
    import java.io.*;
    import org.apache.log4j.*;
    import java.util.logging.FileHandler;
    public class Mylog
         private static final Logger log = Logger.getLogger("Mylog.class");
         public static void main(String[] args) throws Exception {
         try {
           // Create an appending file handler
            boolean append = true;
            FileHandler handler = new FileHandler("debug.log", append);
            // Add to the desired logger
            Logger logger = Logger.getLogger("com.mycompany");
            System.out.println("after creating log file");     
              catch (IOException e)
                   System.out.println("Sys Err");
            }Please give the your valuable suggesstion... !
    Thanks
    MerlinRoshina

    Just i need to write a single line in log file.

  • How to create Repository DB?

    Hi
    I installed Oracle Developer 10 and I would like to work with Designer but Repository is missing. I have Oracle 9.2 DB on my PC. How to create repository?
    Thanks.

    There is a detailed installation guide which steps you through creating a Repository for Designer available on OTN. (http://otn.oracle.com/products/designer/index.html)Select the link for Designer Online Documentation and you'll find installation guides.
    Regards
    Sue

  • Creating .app folders in other operating systems?

    I'm working on a cross-platform game and am hoping to create an OS X port of it. I don't have access to a mac, and so am unable to use the xcode tool for creating .app folders. Are there any tools for creating .app folders on other operating systems? I'd prefer Linux, but can also use windows if required.
    Thanks
    Nathaniel

    Well, .app bundles are specific to Cocoa and Carbon applications... The closest way to make such applications is to use GNUStep (which is an open Cocoa) but it means to rebuild the whole app to make it work with Cocoa/GNUStep...
    However, application that are compatible with Mac OS X are not necessarily in .app bundles. Bundles are used for a specific purpose which gather files that the app should have really close, like its interface files (nib) that is used only with Cocoa or Carbon. If your app is neither Carbon nor Cocoa, there's no use in creating a .app bundle it doesn't even exist. And moreover, Xcode (or Project Builder on GNUStep) is the only app that creates .app bundles.

  • How to create a backend administrator content management system?

    How to create a backend administrator content management system using SQLyog515 and JSP only.
    Can give suggestions?
    Thanks,
    JSPnewbie*
    Message was edited by:
    Liting_JSPnewbie

    Have a look at Perch
    Perch - The really little content management system (CMS) - Perch
    It requires a php/mysql database to run but the tables and set up are all automated through the Perch set up files - you just need a server that runs php/mysql. It works on the same principals as the one Ben suggested but its a lot cheaper for a one off site - however if you intend to build more CMS driven sites the one Ben suggested might be more financially viable in the long run.
    The nice thing about Perch CMS is it fits in with your workflow unlike Wordpress/Joomla where you have to jump through hoops to change anything.
    Plus I think you can take Perch for a spin before buying (or at least you could when I was exploring CMSs) - you can't with Power CMS. I never investigated Power CMS beacuse I would not buy something before trying it. It looks good but it might be a bit dated as it doesnt seem to be in continuous develoment. Perch is in a constant state of development and the guys are working to make it better on a daily basis.

  • How to create Web Service as a source system in BI and configure a DS

    Hello,
    I was wondering if you can give me the links to information where it is explained how to create Web Service as a source system in BI 7 NW 2004s and also how to create a data source that would read data from that Web Service?
    Thanks,
    AG

    Hi AG.
    Please check the following documentation which talk about this questions.
    [Creating Web Service Source System|http://help.sap.com/saphelp_nw70/helpdata/EN/80/1a618ae07211d2acb80000e829fbfe/frameset.htm]
    [Creating DataSources for WebServices|http://help.sap.com/saphelp_nw70/helpdata/EN/43/ec90a315434c5de10000000a155369/frameset.htm]
    [Transfering Data Using WebServices|http://help.sap.com/saphelp_nw70/helpdata/EN/80/1a618ae07211d2acb80000e829fbfe/frameset.htm]
    I hope that I can be helpful.
    Thanks,
    Walter Oliveira.

  • How To create a new R/3 source System ?

    Hello,
    Can somebody guide me to a white paper or something related which explains in detail how to create a new R/3 source System in BW?

    hi jay,
    while i don't have a white paper, it was as simple as right-clicking the source systems tree in AWB and creating a new one - the process is simplified if you're using release 3.0E up, but i can't help you much if not. but you basically have to create an RFC connection to the source system, create a BW user, assign the IDOCs properly (this one i don't know how to do), and linking them all up together in one source system.
    if i come across any notes, i'd be more than happy to help.
    i'll try asking our Basis people too, just in case they know of anything i could point you at.
    ryan.

  • How adutilities comes to know that the file system is shared file system

    How adutilities comes to know that the file system is shared file system ?
    In multinode shared file system : if we want genearte message file we can invoke adadmin from any node and perform this activity. In this case, how adadmin knows that the filesystem is shared filesystem.

    Duplicate post.
    How adutilities comes to know that the file system is shared file system
    How adutilities comes to know that the file system is shared file system

  • How to create "valuation group code" in ECC system

    Hi,
    How to create" valuation group code" in ecc system and what is the path to create valuation grp code
    Thanks&regards
    kishore kumar

    Use the following IMG path.
    MM -> Valuation and Account Assignment -> Account Determination -> Account Determination without wizard -> Group together valuation areas (T Code OMWD).  The Val.Grpg Code in this customizing is a freely definable 4-character code.  You can then use this as valuation modifier in MM-FI account determination (OBYC).
    Assign pts. if this answers your question!

Maybe you are looking for

  • How to execute a scenario from Windows command prompt

    Hi, I have a package which is executing fine from Designer. But the same scenario if I am trying to execute from windows command prompt, then it is giving error. The package is getting a refresh variable, passing to interface which is creating a file

  • JPA with EclipseLink, error Entity cannot be cast to Entity, any help?

    Hello, I'm currently deploying a JPA project with EclipseLink on a MySQL db, it's been working fine, however, I'm receiving a problem of this type: java.lang.ClassCastException: beans.Empleado cannot be cast to beans.Empleado Where Empleado is my Ent

  • HT4211 Trying to update my apps but when prompted to enter in my Apple ID password, it's not my email ?

    Downloaded an app and entered my thumb print for verification. Was successful. Prompted to update my apps. When I chose to do do, prompts me to enter my Apple ID password, but the email is not mine. Tried several times, multiple diff emails come up,

  • Adding space to drive letter

    Hello Community     When you have an SQL Server and lets say you have your mdf on your D:\ drive and your ldf on your E:\ drive.     If your database on your D:\ drive starts to run out of storage space and/or your E:\ drive starts to run out of stor

  • [SOLVED]KDE 4.2 / Amarok (2?)

    What happened to Amarok then? I could install and use it in KDEMod but in KDE 4.2? Nope. I really don't want to use Amarok 2, namely because it wouldn't compile and I think it's too much effort to sort out for an app that most people don't enjoy. Is