How to create subfolders?

Hi,
Is it possible to create subfolders in the web gallery? How is that done?
Thanks!!!

I'm migrating 10 years of mail from Thunderbird on a dusty Dell to my brand-new Mini. I've got tons of subfolders and filters, and I want to replicate the structure using Mail 3.0.
No matter what I do, I can't seem to add a subfolder to the email accounts I have coming off of different servers (Yahoo, Gmail and 2 on Go Daddy.)
The Mac help advice doesn't work -- I'm just given the options to place a new mailbox "On My Mac" or as an RSS feed.
Any other suggestions? I'd keep T'bird, except that I heard that Mozilla's not going to continue developing it. This problem seems to be unique to Leopard. Or maybe just unique to me.

Similar Messages

  • How to create subfolders in a form?

    Hi,
    I have two folders in my form.
    Inside each folder i want to create 2 new subfolder.
    I've tried to do this by associating a panel number to folders in screen painter but i obtain only one level of folder.
    Can you help me?
    Thanks.

    Julien,
    Please see this post as it may help you ...
    How a folder (tab) inside Another folder (tab)
    You can also use the Search feature in this forum for articles like this one.
    HTH,
    Eddy

  • How to create subfolders with names corresponding to the filenames

    Hello outhere,
    sorry to ask this here, but I'm a complete noob with Actionscript.
    Can anybody please tell me if this is possible at all and perhaps give me some hint how to manage this:
    I would like to be able to do something like this:
    I have a source folder with files.
    The files do have different extensions, which are not important for the actions
    The filenames consist of a 8digit, some have some additional strings which are not important for the action.
    Example filename: 14123456.tif or 1423456YT.jpg
    I would like to create a folder structure where each of the 8digits of the filenames represents a subfolder (which needs to be created when not there) and then move the file into this subfolder, overwriting exinsting files with the same name without prompt.
    So for the file 14123456YT.jpg the script should create a folder structure like:
    Foler "1" with a subfolder "4", with a subfolder "1" etc. and move then this file into this subfolder. Again: it is only about 8 digits, if there are addition strings after the 8th digit, this does not need a subfolder (like "Y" in the above example". The next file in the source might have a complete different number.
    I do not expect that somebody creates this for me, not at all.
    But before I dive into the Applescript I would like to know if this is possible at all. Of course I would be happy for any hints to scripts that are similar to what I want so that I can use this as a starting point.
    Thanks for any discussions on this matter,
    gb5256

    It looks like (on a British system with "." as the decimals separator), coercion from a string to an integer will round up with a "." - "1234.567" becomes 1235 - and will ignore a "," - the same string becomes "1234567". On a continental system, this will likely be the other way around.
    In these circumstances, I think the only option you have is to iterate through every character to check that it's a number. This will take slightly longer, but it will at least guarantee that nothing other than a number will work. I have made the change below. Note that the 'exit repeat' takes you out of the repeat loop as soon as an illegal character is found.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;">
    tell application "Finder"
    set theFolder to choose folder --asks for user to select a top level folder
    set topLevel to theFolder --holds the path to the top level
    set fileList to document files of theFolder --gets every document file in the top level folder
    repeat with theFile in fileList --iterates through the files
    set fileName to name of theFile --sets variable to name of the file
    set thePath to characters 1 thru 8 of fileName --gets first 8 characters of the file name into a list
    set numeric to true
    repeat with theChar in thePath
    if theChar is not in "0123456789" then
    set numeric to false
    exit repeat
    end if
    end repeat
    if numeric then
    repeat with subFolder in thePath --iterates through the list of characters
    if (subFolder as text) is in "0123456789" then --checks for numeral
    if not (exists folder named subFolder in theFolder) then --checks if folder with this name already exists
    set folderName to (subFolder as text) --puts name into a variable
    set theFolder to (make new folder in theFolder with properties {name:folderName}) --makes the new folder
    else
    set theFolder to folder subFolder of theFolder --if the folder exists, move down to that level
    end if
    end if
    end repeat
    if not (exists file named fileName in theFolder) then
    move theFile to theFolder --move the file from the top level to the bottom of the folder hierarchy
    end if
    set theFolder to topLevel --start again from the top
    end if
    end repeat
    end tell </pre>
    Message was edited by: Bernard Harte

  • Extending Resource Catalog: How to create subfolders.

    Hi,
    we are extending the webcenter spaces application as described in this document:
    http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    We have succesfully extended the Resource Catalog for both the Personal Space and the Group Spaces to include a folder with our custom taskflows. Nevertheless we could not achieve to generate (non dynamic) subfolders in order to organize our tasflows based on functionality. I haven't seen if this is possible of not anywhere but we have tried with this and it didn't work.
    <?xml version="1.0" encoding="UTF-8"?>
    <catalogDefinition id="PersonalSpaceCatalog" name="Personal WebCenter Catalog"
    description="Resource Catalog definiton for Personal WebCenter"
    resourceBundle="oracle.webcenter.webcenterapp.resource.PersonalSpaceCatalogBundle"
    definitionFilter="oracle.webcenter.webcenterapp.internal.model.catalog.PersonalSpaceCatalogFilter"
    xmlns="http://xmlns.oracle.com/adf/rcs/catalog">
    <schema>
    <descriptor searchable="true" labelKey="TITLE.PROMPT_KEY"
    endUserVisible="true" shortLabelKey="TITLE.SHORT_PROMPT_KEY"
    attributeId="Title" multivalue="false"/>
    <descriptor searchable="true" labelKey="DESCRIPTION.PROMPT_KEY"
    endUserVisible="true"
    shortLabelKey="DESCRIPTION.SHORT_PROMPT_KEY"
    attributeId="Description" multivalue="false"/>
    <descriptor searchable="true" labelKey="SUBJECT.PROMPT_KEY"
    endUserVisible="true" shortLabelKey="SUBJECT.SHORT_PROMPT_KEY"
    attributeId="Subject" multivalue="true"/>
    <descriptor searchable="true" labelKey="WEBCENTER_SERVICE_ID.LABEL"
    endUserVisible="false"
    shortLabelKey="WEBCENTER_SERVICE_ID.SHORT_LABEL"
    attributeId="WEBCENTER_SERVICE_ID" multivalue="false"/>
    <descriptor searchable="false" labelKey="TOOL_TIP.LABEL"
    endUserVisible="false" shortLabelKey="TOOL_TIP.SHORT_LABEL"
    attributeId="ToolTip" multivalue="false"/>
    <descriptor searchable="false" labelKey="ICON_URI.LABEL"
    endUserVisible="false" shortLabelKey="ICON_URI.SHORT_LABEL"
    attributeId="IconURI" multivalue="false"/>
    </schema>
    <contents>
    *<!-- My Custom Task Flows Folder -->*
    <folder id="customTaskflowsFolder">
    <attributes>
    <attribute value="Custom Taskflows" attributeId="Title" isKey="true"/>
    <attribute value="A collection of custom taskflows"
    attributeId="Description" isKey="true"/>
    <attribute value="Taskflow" attributeId="Subject" isKey="true"/>
    <attribute value="custom.oracle.webcenter.ps.taskflow"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/img/home_cs_ng.jpg" attributeId="IconURI"/>
    </attributes>
    <contents>
    *<!-- My SubFolder -->*
    <folder id="customNavigationTaskflowsFolder">
    <attributes>
    <attribute value="Navigation" attributeId="Title" isKey="true"/>
    <attribute value="Custom Navigation Taskflows"
    attributeId="Description" isKey="true"/>
    <attribute value="Navigation Taskflow" attributeId="Subject"
    isKey="true"/>
    <attribute value="custom.oracle.webcenter.ps.taskflow.navigation"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/img/home_cs_ng.jpg" attributeId="IconURI"/>
    </attributes>
    <contents>
    <resource path="navigation-taskflow-war-1.0-SNAPSHOT.jar/ADF_TaskFlow/WEB-INF+ps-local-toolbar.xml#ps-local-toolbar"
    repository="application.classpath" id="ps-local-toolbar">
    <attributes>
    <attribute value="Local Toolbar" attributeId="Title"
    isKey="true"/>
    <attribute value="Local Toolbar" attributeId="Description"
    isKey="true"/>
    <attribute value="Local Toolbar" attributeId="Subject"
    isKey="true"/>
    <attribute value="custom.oracle.webcenter.spaces.ps.taskflow.navigation.localtoolbar"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    </resource>
    </contents>
    </folder>
    *<!-- Other Taskflows -->*
    <resource path="peoplefinder-taskflow-war-1.0-SNAPSHOT.jar/ADF_TaskFlow/WEB-INF+people-finder-wide.xml#people-finder-wide"
    repository="application.classpath" id="ps-people-finder-wide">
    <attributes>
    <attribute value="People Finder (Inline results)"
    attributeId="Title" isKey="true"/>
    <attribute value="Look for people based on several attributes"
    attributeId="Description" isKey="true"/>
    <attribute value="People Finder" attributeId="Subject"
    isKey="true"/>
    <attribute value="custom.oracle.webcenter.spaces.ps.taskflow.peoplefinder.wide"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    </resource>
    <resource path="profile-taskflow-war-1.0-SNAPSHOT.jar/ADF_TaskFlow/WEB-INF+profile.xml#profile"
    repository="application.classpath" id="ps-profile-taskflow">
    <attributes>
    <attribute value="Profile" attributeId="Title" isKey="true"/>
    <attribute value="Profile" attributeId="Description" isKey="true"/>
    <attribute value="Profile" attributeId="Subject" isKey="true"/>
    <attribute value="custom.oracle.webcenter.spaces.ps.taskflow.profile"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    </resource>
    <resource id="ps-personal-snapshot" repository="application.classpath"
    path="personalsnapshot-taskflow-war-1.0-SNAPSHOT.jar/ADF_TaskFlow/WEB-INF+personal-snapshot.xml#personal-snapshot">
    <attributes>
    <attribute value="Personal Snapshot" attributeId="Title"
    isKey="true"/>
    <attribute value="Shows the personal snapshot"
    attributeId="Description" isKey="true"/>
    <attribute value="Personal Snapshot" attributeId="Subject"
    isKey="true"/>
    <attribute value="custom.oracle.webcenter.spaces.ps.taskflow.personalsnapshot"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    </resource>
    <resource id="ps-company-info" repository="application.classpath"
    path="companyinfo-taskflow-war-1.0-SNAPSHOT.jar/ADF_TaskFlow/WEB-INF+company-info.xml#company-info">
    <attributes>
    <attribute value="Company Ingo" attributeId="Title" isKey="true"/>
    <attribute value="Shows the company info for a given user"
    attributeId="Description" isKey="true"/>
    <attribute value="Company Info" attributeId="Subject" isKey="true"/>
    <attribute value="custom.oracle.webcenter.spaces.ps.taskflow.companyinfo"
    attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png"
    attributeId="IconURI"/>
    </attributes>
    </resource>
    </contents>
    </folder>
    </contents>
    </catalogDefinition>
    Could anyone throw some light on this? Can this be done? Is there anything we may be missing in our XML?
    Many thanks.

    I'm migrating 10 years of mail from Thunderbird on a dusty Dell to my brand-new Mini. I've got tons of subfolders and filters, and I want to replicate the structure using Mail 3.0.
    No matter what I do, I can't seem to add a subfolder to the email accounts I have coming off of different servers (Yahoo, Gmail and 2 on Go Daddy.)
    The Mac help advice doesn't work -- I'm just given the options to place a new mailbox "On My Mac" or as an RSS feed.
    Any other suggestions? I'd keep T'bird, except that I heard that Mozilla's not going to continue developing it. This problem seems to be unique to Leopard. Or maybe just unique to me.

  • How to create subfolders for Albums?

    everytime i add a new albums to that long list, it gets very hard to find them again. sometimes i dont even know what im looking for because its just a random list. is there any way to improve it? i still wanna keep the albums as they are instead of just sorting the tracks. thanx.

    Do you have 'Browse' turned on?
    If you do you will get three new sections in the top of yuor iTunes window that shows you Genre, Artist and Album.
    You can then click on these shorter lists and the main list below will be filtered.
    To turn on 'Browse' click on the Eye shaped icon in the lower right hand side of the iTunes main window.
    Also you can change the way tracks are sorted by clicking on the headings in the list. If you click on Artist then the tracks will be sorted by Artist, etc.

  • Can I create subfolders in iCloud?

    Just started using iCloud today and although I've figured out how to create folders easily enough, I can't seem to figure out how to create subfolders. I have many hundreds of docs I'd like to store there, but without subfolders it's pretty well useless. Does anyone have any idea how to do this? Thanks!

    miniman wrote:
    Thanks so much Mr. Churchill. What were they thinking at Apple when they set iCloud up? Without subfolders its usefulness is severely limited and almost useless to someone like me with so many files to store. But thanks for the link to feedback - I'll certainly do that!
    I think the intention of iCloud, as far as document storage goes, is to act as a service to allow synchronization of documents between individual apps on your computer that you use with specific compatible apps on your iOS device.  It is not intended as general offline storage - it is intended merely as the means to allow access to select documents on multiple devices without the need for carrying or using physcial storage devices.
    That is why the storage, even if purchasing extra space, is limited to a maximum of only 50GB (which BTW, box will give you for free for life if you use their iOS app), and why iCloud does not interact with Apple's own backup app (Time Machine). Also  why the iCloud folders are somewhat obscured in OS X since you are expected to access iCloud documents via the Application used with those documents itself.

  • How to create IMAP subfolders?

    Hi,
    I used to have my archives mail onto my Mac itself. I recently added an IMAP server to my Linux box, and transfered my archives mails there.
    When I was on my MAc I could select a folder and create a subfolder just by doing new folder. The new created folder was placed inside the folder I had clicked. I could also move folders within folder just by drag and drop.
    Now, trying the same on my IMAP server, and Mail want to create the folder onto the main list all the time. I can create a subfolder unless I already have a folder that have subfolders into it.
    Is it a bug or misconfiguration in Mail or on my IMAP server?
    Thanks

    I finally understood the way it work:
    Folder of folders on an IMAP server are in white (not blue) but if I create a folder, it is blue by default and can contains only messages.
    If I want to create subfolders, I need to create it with the main folder by entering (example) Main/subfolder. This will create a main folder with a subfolder by that name. Then I can create as much subfolder on the main folder as I want.

  • How to create a "Explorer" like in java

    i'm just wonderin if there's a way on how to create "Windows Explorer" like in Java wherein you can view all your directories with yellow folder icon and also you can view all your files and drives....
    And when you double click the yellow folder icon it will then expand and will show all the subfolders and files ...
    How????
    Thanks!

    Yes, there is a way. Look up JTree in the API.-can you post some code.... i cant figure out on how to use JTree...
    i'm still confused on where will i get the entire directories of my drives...
    thanks

  • Allow every user to create subfolders

    Hello everybody,
    after some changes in our internal role system I need your help.
    In BEX there you can go to
    open query or open workbook.
    Then hit the button "Roles"
    There we can see the menu with all visible folders.
    How can I allow every user to create subfolders within the folders he is already allowed to see?
    As I activate a certain role even I (administrator) gets a greyed out view.
    Is there a way that users can create new folders in a convenient way?
    Thanks for your help!
    Harry

    I think the DNSAdmins group will give them too much control over the server (change forwarders, etc..).
    Create a custom MMC snapin and assign related permissions. The picture below may give you an idea:
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

  • How to create Folder and subFolder using web services

    Hi,
    Today I've been working with some Share Point develompment but the truth is that I can't just get it.
    Can any body help me with some easy links to start Share Point Development?
    Here is wath I'm trying: I need to create a new folder (lets say Folder1) inside a Document library. After Folder1 is created, I need to create a new Folder inside Folder1 (lets say Folder1.1) and so on.
    Until now, I'm able to create Folder1 but after that I don't know how to continue creating subfolders.
    It's important to say that I would like to solve this problem by using webservices and let de Microsoft.Sharepoint.dll as just in case.
    I hope somebody help me.
    Thanks.

    Hi Steve,
    I need to create a folder structure(e.g folder1/folder2) by the running the program once.I tried calling the UpdateListItemCreateFolder recursively and passed an extra rootFolder parameter.I changed the RootFolder attribute as shown below but the code isnt working.Please let me know the right procedure to create a folder structure in a list.
    public
    static void UpdateListItemCreateFolder(string folderName, string rootFolder)
    ListService.
    Lists listProxy = new ListService.Lists();
    string location = "http://localhost:414/Documents/one" + rootFolder.ToString();
    string xmlconst = "<Batch OnError='Continue' RootFolder='" + location.ToString() + "'><Method ID='1' Cmd='New'><Field Name='ID'>New</Field><Field Name='FSObjType'>1</Field><Field Name='BaseName'>!@foldername</Field></Method></Batch>";
    listProxy.Url =
    "http://localhost:414/_vti_bin/lists.asmx";
    listProxy.UseDefaultCredentials =
    true;
    XmlDocument doc = new XmlDocument();
    xmlconst.Replace(
    "!@root", location);
    string xmlFolder = xmlconst.Replace("!@foldername", folderName);
    doc.LoadXml(xmlFolder);
    XmlNode batchNode = doc.SelectSingleNode("//Batch");
    XmlNode resultNode = listProxy.UpdateListItems("Documents", batchNode);

  • Any reason NOT to create subfolders under user folder?

    I'm switching over from a 5+ year old MacBook Pro to a new one. I do a lot of audio recording and production work. On my old machine, which was my first Mac, I created a subfolder 'Recordings' under my user folder (let's say it's named "bob"). I don't remember why I did that. Probably I was thinking well, this stuff isn't documents.
    On the new machine, running Yosemite, I discovered that Apple in it's wisdom had made my "bob" user folder hidden, which meant I had to go figure out how to show it because there are some audio plugin settings files I needed to add manually from the old machine into my user/ Library area. Did that.
    BUT... I'm wondering if there is some reason why Apple changed the user folder to hidden (other than "you dumb users don't need to know about this stuff"), and specifically, if I should avoid creating any subfolders under my user folder? I would really rather not have my 'Recordings' folder  inside the Documents folder, but I guess I can if there's some good reason not to create subfolders under 'bob'.
    Thanks in advance.

    They didn't make it hidden (like the Library sub folder), but I believe it is no longer included in the sidebar by default. Probably for the reason you state. As you've found, you can add it back through Finder Preferences menu.
    Matt

  • Creating Subfolders.... Need Help

    Dear Everyone,
    I'm having trouble with my iWeb. I wanted to know if it's possible to create subfolders (I'm not sure if that's the right terminology here). Basically, I want to be able to Go to the Home page, click on one of the Pages (i.e. "Blog"), create an article, and have another subcategory in that (and maybe another after that?). Here's an example.
    Home - Outline
    - Assignments
    - Discussions
    - Blog - Art History - Rococo
    - Baroque
    - Neo-classicism
    - Mediums - Painting
    - Sculpture
    - Architechture - articles
    - photo gallery
    - reference links
    Does anybody know if this is possible with iWeb? If so, plllllleeeeeeeeeeaaasse show me how.

    It is just known as sub pages and yes, you can do it with iWeb.
    How you do it depends on whether you have built and are using your own nav bar or whether you are using the iWeb template nav bar? If using a template nav bar, have your first page with the heading that is included in the nav bar and then for the sub-pages that you want to link to yourself, hide it from the nav menu via the Inspector - Page then click on hide nav bar.
    You can then create your own links forward and back by using text boxes or shapes. The choice is yours.

  • How to create a folders and sub folders in solution manager ?

    Hi gurus,
    i want  2 know how to create folders and subfolders inside solution manager under configuration structure or business blue print  structure.
    tell me in detailed
    Thank you Regards
    sasikanth

    Hi kishore,
    Thanks for ur reply.
    wht u told is about to insert the file(.doc,.ppt..zip) in a particular folder name(FI folder or SD folder  under business scenarios folder which is main folder).
    here business scenarios is one main folder and FI and SD folders are sub folders  under business scenarios folder.
    I want to know how to create the these folders  and not the file insertion.
    Thank you and Regards
    sasikanth.

  • How to create multiple folder levels of connections

    Is it possible to create multiple levels of folders in the Connections tab. For example, I have 3 projects and each projects have dev, qa, prod. The documentations that come with sqlDeveloper2.1 only tells how to create 1 level of folder.
    Please share your suggestion if any.
    Thanks.

    I also tried this through the config file ~/.sqldeveloper/system2.1.0.63.73/o.sqldeveloper.11.1.1.63.73/product-preferences.xml.
    Seems to me that nesting additional list elements for subfolders does not work.

  • How to create a project's Menu in PeopleSoft left hand Menu Navigation ?

    Folks,
    Hello. My PeopleSoft project has 3 items (item1, item2 and item3). Each item has 5 components (Component1, Component2, Component3, Component4 and Component5).
    Currently, I can acces each component by type in the URL in Browser as follows:
    http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want my project to appear in the left hand "Menu" navigation after we sign on PeopleSoft. My project Menu will look like a hierarchical tree. When the user click on it, the user can see all the project's items and components and link to a component directly. But I don't understand how to do it.
    Do any folks understand how to create a project's Menu in PeopleSoft left hand Menu navigation ?
    Thanks in advance.
    :

    >
    >
    I have registered each component using Registration Wizard in Application Designer. Since each Menu holds a Component, the Menu is also registered while registering its Component. So far, I can access each component online using the URL: http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want to create a Menu for my project as a hierachical tree ( Project -> Item1 -> Component1, Compoent2, ...),
    and I want the project Menu appears in PeopleSoft left hand Menu navigation so that a user can simply click on it to access a component and don't need to type in the above URL. Please answer me 2 questions:
    First, how to make the project Menu appear in PeopleSoft left hand Menu navigation ? I am still not sure what you are trying to do(It is surprising that you registered the component and still dont have it in the main navigation; did you run the portal security sync process?? ).
    If it is all a matter of having a hierarchical structure, then you can create folders and subfolders and register each item accordingly(into different folders and subfolders as you want)
    Second, if need to register each Menu seperately again, how to do it ?Delete entries for content references that you added earlier while registering(by navigating to portal), as well as the entry from permission lists. After that you should be able to register again.

Maybe you are looking for

  • Passing events - whats wrong with this code?

    hi, I'm trying to get components to behave in a frame like they would as though I had written frame.getContentPane().add(thecomponent); by processing events explicitly. I've written the code below as a test, and it does work, but the events do not se

  • Problem with pop-up window

    Hi all, i caught up with one issue while using Function-Module POPUP_WITH_TABLE,with this Func-module im able to display all the entries in the pop-up,but if i press the continue button with out selecting any item in the window ,that window does not

  • Search help for 'Account ID' field in 'Identify Account' section

    Hello all, We are on CRM 5.0. I want to attach the search help 'BUPA' for the 'Account ID' field in 'Identify Account' view of IC Webclient. Can you please let me know how I can achieve this. Regards, Nag

  • Need information about release codes

    Hi, I need information about release codes.In which Transcation we will get it. Please give the information ASAP. Regards, Chow.

  • Multiple Result Set Using Nested Table

    Package declaration------------ CREATE or REPLACE PACKAGE dummy AS TYPE CResValues IS TABLE OF VARCHAR2(2000); FUNCTION GetValue(p_user IN VARCHAR2, p_owner IN VARCHAR2, p_resource IN VARCHAR2, ResValues OUT CResValues) RETURN INTEGER; END dummy; Pac