Sub-directories in the PDBooks

Hi,
I use the distribution list to edit some of my reports and place them in a designated folder.
When I create a new distribution list, I save it in the PDBooks section by doing this : ePublish > Manage distribution list > Save under. Here we have the possibility to create sub-directories in the PDBooks section. That's what I did.
We also have the possibility to save the distribution list in the PDBooks section of my team.
However, when we edit the distribution list (ePublish > Offline Distribution Wizard and then Lockdown and Save to folder), we only have access to the distribution lists saved in the company PDbooks directory (not the directory of my team and not the sub-directories).
Do you have a solution to classify my distribution list according to the users?
Thanks
Christelle

Hello Joris,
I am an administrator on BPC and I check that I am a teamleader in my team. Moreover, I have access to publisk books.
Indeed, I can publish distribution list, but only when they are saved in the company PDBooks.
Do you have another idea?
thanks.
Regards,
Christelle

Similar Messages

  • Class not found - from jsp sub-directories

    Hello:
    Main-Issue:
    - I have some java-class files in the \<my-web-app>\web-inf\classes directory. These classes do not belong to any packages.
    - I have some jsps in the \<my-web-app>\ directory and also in some sub-directories in the \<my-web-app>\ directory. Example: \<my-web-app>\test\index1.jsp.
    - The jsps in the \<my-web-app>\ directory can invoke the classes in the \<my-web-app>\web-inf\classes directory with no issues. But, the jsps in the sub-directories CANNOT see the classes in the \<my-web-app>\web-inf\classes directory. I get a "class not found" error. (this is just in oc4j).
    First of all, just a background to the issue:
    - I am trying to port a web application from JRUN to OC4J.
    - I want to do this with minimal changes to the existing code.
    - The application has been running on JRUN for a while. I only see the above mentioned error (class not found) error when trying to run it on oc4j.
    - As a test, I created my own test application to verify:
    (-) I wrote a simple java class (test.class) with no package and placed it in the web-inf\classes directory
    (-) I wrote a jsp file (index.jsp) to invoke test.class. I placed the jsp at the top-level directory of the web-app.
    (-) I wrote another jsp file (index1.jsp) to invoke test.class as well. I placed that jsp file in a sub-directory in the top-level directory of the web-app.
    (-) index.jsp worked without any problems. index1.jsp gave the "class not found" error.
    (-) As another test, I then modified the class to be in a package (com.benny). I then changed the jsps to call "com.benny.test" rather than just "test". This time, both index.jsp and index1.jsp worked fine.
    So, I guess my question is, do these classes have to be in a package? I am trying to avoid having to make a lot of changes to the app. If they do have to be in packages, then I have re-compile a lot of class files, add import statements to jsps, etc.
    Any help/suggestion would be appreciated.
    Thanks,
    Benny

    So, I guess my question is, do these classes have to be in a package?Answer: yes.
    As of Java1.4, classes in the "unnamed" package were no longer accessible.
    What version of java were you running with JRun?
    What version are you running with OC4J?
    Read all about it here:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4361575
    If you have to repackage the classes, the IDE Eclipse has excellent support for refactoring, and wil let you put classes into packages with a minimum of fuss.

  • List all files in a directory, not including the sub directories if any

    Hi,
    I have been looking around php.net for a bit and can not work
    out how i list the files that are in a directory i.e.
    www.site.com/directory/
    I would like the names of each file to be placed in an array,
    but not to have the sub directories in this list should there be
    any.
    I was given some code a while ago that done this but it
    listed the sub directories and i would like them not in this list.
    I do not have this code anymore and do not know where i got
    it, so i can not get it amended to what i need.
    please can someone tell me what line of code i should be
    using.
    thank you in advance for your help.

    (_seb_) wrote:
    > not very clever wrote:
    >> Hi,
    >>
    >> I have been looking around php.net for a bit and can
    not work out how
    >> i list the files that are in a directory i.e.
    >>
    >> www.site.com/directory/
    >>
    >> I would like the names of each file to be placed in
    an array, but not
    >> to have the sub directories in this list should
    there be any.
    >>
    >> I was given some code a while ago that done this but
    it listed the
    >> sub directories and i would like them not in this
    list.
    >>
    >> I do not have this code anymore and do not know
    where i got it, so i
    >> can not get it amended to what i need.
    >>
    >> please can someone tell me what line of code i
    should be using.
    >>
    >> thank you in advance for your help.
    >>
    >>
    >>
    >
    > The follwoing PHP code will do just that. Just replace
    "pathToFolder"
    > with the path to your folder.
    > I made the list of files also link to each file. Just
    remove the link
    > echo if you don't them to be links.
    >
    > <?php
    > // FUNCTION TO LIST FILES:
    > function listFiles($path){
    > if($handle = opendir($path)){
    > while(false !== ($file = readdir($handle))){
    > if (is_file($path.'/'.$file) &&
    !preg_match('/^\./',$file)){
    > $files_array[]=$file;
    > }
    > }
    > }
    > return($files_array);
    > }
    > $path = 'pathToFolder';
    >
    > // CALL THE FUNCTION:
    > $files_array = listFiles($path);
    > foreach($files_array as $file){
    > echo '<p><a
    href="'.$path.'/'.$file.'">'.$file,'</a></p>';
    > }
    >
    > ?>
    >
    I spotted one error:
    foreach($files_array as $file){
    echo '<p><a
    href="'.$path.'/'.$file.'">'.$file,'</a></p>';
    should be:
    foreach($files_array as $file){
    echo '<p><a
    href="'.$path.'/'.$file.'">'.$file.'</a></p>';
    (a dot after $file, not a coma)
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • Index.html pages in local sub-directories will not load automatically when sub-directory name entered into address field, followed by a forward-slash

    I am in the process of designing a website-on-a-CD. In order to make things easier for my clients, I decided to organize this site into local sub-directories with an index.html page in each one. However, when I try to enter the local sub-directory name, followed by a forward-slash, the index page does not open automatically. Instead, I get a raw directory listing that includes the index.html file, and anything else that is present within it. I would like to know if there is any way to force this page to load automatically within Firefox from a local storage medium as it would load from a web-server.

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • How to correct SpryAssets/SpryMenuBar paths in template for sub-directories?

    I recently converted my real estate web site to CSS using Dreamweaver CS4. I use a primary template for most of my pages, which have both a horizontal and a vertical spry menu bar. When I create a page with the template and save it in a sub-directory (not at root level), after a page view,  I get errors on the server such as:
    File does not exist: /home/I_DELETED_THIS/public_html/homes_for_sale/SpryAssets, referer: http://locatehome.com/homes_for_sale/10-2264.htm
    (I replaced part of the URL with "I_DELETED_THIS" since this is posted publicly)
    The SpryAssets directory is at the root level of my site. The template includes the code further below at the bottom of the source code in a non-editable area of the template, which I think is the source of the problem, especially since I get two error messages for each page view and the SpryAssets directory is referenced twice in the following code after the last div. Part of the code is commented out:
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    Can I delete this code from the template or will my menu bars not function if they have sub-menus?
    The template changes the file path for other CSS scripts in the head of the template and links, etc. in the body, but not for this section of code. Is there a way to modify my template so that the path files will be correct when a create new pages in sub-directories?
    I saw one suggestion in the Forum to another user with a related problem that he should manually change the code in this section of the template to have a file path relative to the root, but it seems that the program should automatically be taking care of things like that.
    Many thanks,
    Dave K.

    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var
    MenuBar2 = new Spry.Widget.MenuBar("MenuBar2",
    {imgDown:"SpryAssets/SpryMenuBarDownHover.gif",
    imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    No you cannot delete the menu constructors, they are the ones that call the menus. The comment tags are purely for browsers that do not have JavaScript enabled.
    As far as template behaviours are concerned, I am afraid that this is not a very helpful forum. You will need to go to the Dreamweaver Forum for that http://forums.adobe.com/community/dreamweaver/dreamweaver_general
    I hope this helps.
    Ben

  • Is it possible to deploy .fmx files to different directories on the 10g OAS

    All,
    I have 10g R2 App Server (10.1.2.0.2) with a BI & Forms Middle Tier.
    Currently, all of my .fmx files are placed into the middle tier's $ORACLE_HOME/forms directory.
    I use a URL similar to the following to run the forms in a browser:
    http://machinename.domain/forms/frmservlet?form=test.fmx
    I now have some additional applications that are coming online. Some of the .fmx files for the new application are named identically to .fmx files of my current application.
    So I would like to be able to segregate all .fmx files related to each application into their own directories on the 10g OAS. I've been poking around in this form and on Metalink and so far, have not found any solution.
    I've seen references to using the FORMS_PATH environment variable that that is not going to work for us.
    For example, let's say that I have two different forms applications that have a file named frame.fmx. The frame.fmx form is completely different between these applications.
    I would like to be able to put all of application 1's files into $ORACLE_HOME/forms/app1 and all of application 2's .fmx files into $ORACLE_HOME/forms/app2.
    Is this possible when running forms on the web? What URL would I use to invoke the frame.fmx file in the app2 or the app1 sub-directory? Is there such a thing as virtual directories in forms?
    Any help is greatly appreciated.
    Cheers
    John S.

    Make different config's in your formsweb.cfg which include different default.env files
    The url will then be something like
    http://machinename.domain/forms/frmservlet?config=app1&form=test.fmx
    http://machinename.domain/forms/frmservlet?config=app2&form=test.fmx
    Where application1 and application2 are config definitions in your formsweb.cfg file.
    [app1]
    envfile=default_app1.env
    [app2]
    envfile=default_app2.env
    In the different env files, use diffent FORMS_PATH environment variables.
    default_app1.env: FORMS_PATH=$ORACLE_HOME/forms/app1
    default_app2.env: FORMS_PATH=$ORACLE_HOME/forms/app2

  • Loop through sub-directories

    Hi,
    I want to loop through the sub-directories of one given folder. How to correct the following problems?
    dir = args[0];
    try
    string [] dirlvl2Ent = Directory.GetDirectories(dir);
    for (string dirlvl2 in dirlvl2Ent)
    Error 1 ; expected F:\App8\Program.cs 50 37 ProcessSWFile
    Error 2 ; expected F:\App8\Program.cs 50 40 ProcessSWFile
    Error 3 Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement F:\App8\Program.cs 50 40 ProcessSWFile
    Many Thanks & Best Regards, Hua Min

    for should be foreach.
    string [] dirlvl2Ent = Directory.GetDirectories(dir);
    foreach(string dirlvl2 in dirlvl2Ent)
    jdweng

  • Include all sub-directories and files?

    I did search, so don't complain that this has been asked a billion times.
    I am using Automator to replace text for files and folders. But this only works with the files and or folders I select, it doesn't do it with the sub-directories and sub-files. How can I config. Automator to do this?
    Thanks.

    The various actions operate on whatever is input to them. If you are referring to the *Rename Finder Items* action, you can use the *Get Folder Contents* action to go into sub folders, but be careful, since this action will go into bundles/packages such as applications and RTFD files.

  • Sub-directories / albums

    Is it possible to create sub-directories of albums in iPhoto 4? Looks like you can create Folders in iPhoto 5 which then contain separate albums, but can you do something similar in iPhoto 4? Basically I want to group all photos from a holiday in Egypt ('master' album/folder called 'Egypt') and the subdivide this into separate albums called e.g. Cairo, Giza, Red Sea etc.) - or is this one of the enancements in iPhoto 5 which couldn't be acieved in earlier versions?
    Neil

    Neil,
    If you have lots of photos have you thought of multiple library folders to speed things up.
    These two apps make it a snap to create multiples and switch between them:
    For using multiple library folders:
    buddy/ manager
    http://nofences.net/iphotoBuddy/
    http://homepage.mac.com/bwebster/iphotolibrarymanager.html

  • Jad in sub directories

    Hello all,
    How can i use JAD to de-compile all the class files in java files in a
    directory and also in its sub-directories in a single statement instead of
    going to each directory and decompile.
    Thank You.
    KK

    Nope... DW wants to find all of its templates in one place.
    Can't you just name the file admin.dwt and keep it in the default
    folder? Then tell your admins that's the one to use?

  • Sub directories foto's

    I use the IPOD Video, and want to try to get all my foto's on the IPOD. This is not a problem. I give the name of the directorie where the foto's are, and all the foto's are on the IPOD. But I have one probleem. My First level directory, named Holiday have al lot of subdirectory's under it. Example Hollyday Jamaica, Holliday Europe, etc. Whats happen: When I open foto's, Holidays than I see all the pictures, and not the posibilty to open the sub-directories. How can I do this. Please let me know. Thanks

    Ik weet niet over Photo Organizer. Voor mijn gebruik, ik meestal bijsnijdenen vergroten of verkleinen. Ik gebruik "PS Express ". Ik heb ookPhotoPad, ColorSplash, Photobucket en ArtStudio.
    Niet zeker wat is zoals iPhoto, heb ik niet een gevonden. Hopelijk werkt Apple aan een, zoals ze vrijgegeven voor iMovie op de iPhone en iPad 2.
    Ik gebruik translate.google.com te vertalen naar het Nederlands. Ik hoop dat het juist is.

  • Sub-directories

    I am new to iWEB having finally moved over from MS FrontPage. So far so good. I can even work out all the ftp settings etc However, how do I set up sub-directories? So far all my pages are under the home page and are therefore in the nav. bar. I have about 60 pages in my web and I really need to have them in a hierarchical structure.
    Thanks for any help.

    He did it in the Inspector/Page/Page pane:
    Click to view full size
    OT

  • How I search only sub directories in my bookmarks?

    If I do search Firefox searches through all my bookmarks. I only want it to search in the current directory and/or sub directories.
    I do not want to use tags. I just want to search for the name.

    Is there any add-ons that I can use to make searching my bookmarks useful. It is now getting beyond frustrating. I can not believe this program doesn't have a useful way to search.

  • Calling forms from sub-directories

    Greetings,
    I have 19 different apps that are on a Solaris Application server in separate directories. I do have the FORMS_PATH set to the "root" but I was wondering if it is possible to call forms in one of the sub-directories without having to add that sub-directory to the FORMS_PATH.
    So far have tried CALL_FORM('ats/ats_ro_2') and CALL_FORM('/ats/ats_ro_2')
    Regards,
    Bill Chadbourne

    It may be possible, but i would not recommend to do so. What happens if you at some point decide to restructure your applicarion? You would have to adjust all your calls.
    if you really want to go that way and you have only one path in your FORMS_PATH, you could read the FORMS_PATH using TOOLENV.GETVAR and then use the full qualified path to call your forms.

  • Infuriating sub-directories

    When importing from digital camera, I get all my photos arranged into sub-directories (one for each new shooting session), each with its own data and thumbs folder. Fine for iphoto, but when wanting to burn onto CD for storing/playing on TV, using on other computers, etc, it's an absolute pain. Is there any way I can just import all the images on the camera into one straight folder?

    I'm not aware that iPhoto 4 (or earlier) does what you describe -- Which version of iPhoto are you using?
    Secondly, if you're wanting to burn images to a CD (and not as an iPhoto Library), then it's a simple matter to export the desired images to a folder on the desktop, and all you'll have is the JPG images -- burn that folder to CD.
    Another alternative is to download your camera's contents directly to a folder in the Finder using Image Capture, and leave iPhoto out of the loop entirely.

Maybe you are looking for

  • When I close my Mac Book when its on a- The display won't turn back on whe-

    When I close my Mac Book while it is on and leave it on while closed for long periods of time and then I open it, the display will not turn back on- why?

  • Multiple screens at once

    Ok so i am doing a project where i want to have 4 different clips playing at once on the same screen, So want 4 different boxes. All the footage is widescreen footage so i am just wondering if anybody knows the exact specs of how to but them in so it

  • Msg SE181 on ML81N/ME21N- PR WITH MULTIPLE SERVICES ITEMS-1 ACC. ASSIGNMENT

    Hi, when trying to create a new order using transaction ME21N or creating an entry sheet  on an existing order based on a purchase requisition  with multiple items in the tab services , the system gives the error message SE181 . Debugging , i've disc

  • DVD Footage to compressor

    If I use mpeg streamclip to pull footage off DVD - after I edit it and export to quicktime via fcp should I still export it to compressor or can I just use DVD studio or iDVD. In my previous workflow I would export to iDVD or dd studio pro but wanted

  • Feature request: inline video element

    An inline video element (similar to the inlineGraphicElement) would be a tremendous enhancement to the already impressive text engine. I know that it is late in the game but would such feature be an option in the near future? Imagine a text document