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.

Similar Messages

  • 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.

  • 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

  • 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.

  • How to create a product catalog in crm(by the end user of the system)?

    how can we an end user create a product catalog?
    what is the diff b/n prod cat and prod?
    we download the prod from r/3.
    how we get the prod cat done in crm for the customers and consumers and how it is done?
    thank you,

    hi
    first of all we need to look at what is catalog management before proceding with product and product catalog.
    You use this business scenario to create a centralized product catalog that contains product descriptions, multimedia objects, pricing, and associated literature. The catalog enables quick and easy customer access to timely and personalized product information, structured in such a way that most meets your customers needs.
    Product catalogs are implemented in sales processes and are of particular importance in CRM Web Channel for presenting your products in the Web shop.
    difference between the product and product catalog
    this is not the thing that product and product catalog are completely different entity.
    Product catalog :   A grouping together of products from your product master data, in a structured hierarchy.
    You use product catalogs to group together products to present them in the Web shop, Interaction Center, or in other forms of media, for example printed format or CD-ROM.
    You can create various catalogs for your products in the product master and use them according to a validity date. For example, you could use certain products for the summer season, and other products for the winter season.
    You can also tailor your product catalog to meet other needs by creating catalog variants. For example, you can create a catalog in English with the prices displayed in US Dollars.
    so by above definition it is very much clear that products are actually assign to the catalog,i will give you an analogy that museum is a kind of catalog and you add different pictures to the museum,in the same way you add product to the product catalog according to the acatlog variant.
    Now how you assign product to product catalog
    Product Assignment
    You assign products manually or automatically to a catalog area, depending on the catalog type. The product ID, product description, and status of all products is displayed, as is the information as to whether the item contains accessories or if it is a configurable product.
    Prerequisites
    You have created products in your product master in SAP CRM under Accounts and Products
    Process
    You select a catalog area in your product catalog, and edit the item list by assigning products to the area.
    Manual Assignment
    You can assign products manually on an individual basis or by copying a catalog area. You tend to choose manual product assignment for marketing-oriented catalogs that are subjected to editorial controls.
          Individual assignment
          In this case you select the catalog area in which the product should be assigned, manually search for the product in the product master, and assign it to the area.
          Copying items from catalog areas
          You select an area or subarea from another catalog and copy it to your new catalog. The system copies all products from the copied area to the new catalog, as long as they belong to the distribution chain assigned to the target catalog variant. From these products, you can then manually determine which products from the copied area you want to keep and which items you wish to delete.
    The following is true for manually assigned products:
          You can activate or deactivate items on an individual basis.
          You can edit the list of accessories for manually assigned products. The system determines which accessories are maintained for the product in the product master and displays them in the item area of the catalog. You select which accessories should be displayed for the product in the catalog and activate them.
          Manually assigned products can be included or removed from catalog views on an individual basis.
    Automatic Assignment
    You can assign products automatically to a catalog by transferring product hierarchies from your product master to the catalog areas. The categories, items, attributes, and documents contained in the product hierarchy are copied to the new catalog.
    You use automatic product assignment mainly for functional catalogs, where products can be copied with very few changes, from the product categories of the product master. It enables a standardized characterization of your products in the catalog.
    The following is true for products assigned to the catalog using product hierarchy transfer:
          Product categories which make up the hierarchies become catalog areas in the catalog.
          Product categories in the product hierarchy must be assigned to the distribution chain to which the target catalog variant is assigned. Otherwise the category is not transferred. The same applies to the items, texts, and documents assigned to the category.
          Items are always active and cannot be individually activated or deactivated.
          Accessories maintained for transferred product in the product master are automatically included and displayed in the catalog.
          Transferred items cannot be individually included in catalog views or removed from them. Instead all items of the hierarchy are always contained in the view.
          Lists of characteristics for transferred categories and items can be automatically created when transferring product hierarchies. The transferred values are included in the item overview of the product catalog.
    how to create a product catalog
    just have a look at this link
    http://help.sap.com/saphelp_crm60/helpdata/en/1c/12b2dc57d644d19ea3a5c4156f904f/frameset.htm
    your query regarding the products you have uploaded from the R3,now as above i said how you maintain and create the product catalog ,you just assign the products uploaded from the R3 to the product cataloag created in CRM.
    more detail info you can see in these links
    http://help.sap.com/saphelp_crm60/helpdata/en/91/be9642e5ef0731e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/46/27f09d25da5a68e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/46/037716cfc604a9e10000000a114a6b/frameset.htm
    if you read carefuly what i have said,it is pretty easy to implement ,you will see it yourself
    guess it will help you
    do revert back in case of any doubt
    best regards
    ashish

  • 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.

  • Resources on our to create step by step intructions

    hi, i am looking for resources on how to create a step by step instruction that will prompt a user for step by step instructions for testing.
    do you know what book i can buy? link i can look at?
    i want to do something like this
    Message Edited by krispiekream on 03-12-2008 05:53 PM
    Best regards,
    Krispiekream
    Attachments:
    stepbystep.PNG ‏29 KB

    is there a way where i can put a string inside a listbox?
    can someone show me how to do that?
    Message Edited by krispiekream on 03-13-2008 01:45 PM
    Best regards,
    Krispiekream
    Attachments:
    list.PNG ‏42 KB

  • How to add a jar file into resource catalog in webcenter spaces

    Hi All,
    i am new to webcenter spaces. my requirement is like, i have created one adf taskflow and deployed it as a shared library.now i want to register this jar file as a resource catalog into webcenter spaces (i.e. already deployed). How to achieve this task.
    Thanks,
    Monika

    Pls do the foll actions:
    Step 1:
    File -> Import -> Selct radiobutton - "Jar file" -> Next
    -> Select the file name(ur jar file) - > click on the java button and ensure that u have selected all the file or what evre files u want " -> Finish
    If at all u r not getting any errors but the files are not apperaring in ur Project means go to
    Step 2:
    From the work bench click
    Window -> Reposiroy Explorer -> Select the Project,edition,package or type and right click and from the pop up menu click "Add to Workspace"
    This 'd work
    All the best for a successful completion of ur work
    Pramod

  • How to create a view object and attach with extended AM

    Hi,
    I tried to create new vo and attach this vo with the extended AM. But it is throwing error like 'PC.NAME : invalid identifier' (Actually this PC.NAME is exiting one).
    Now i want to know how to create a view object similar like seeded one but with one additional condition in the where clause.
    It is possible though extension, but i want to create two view object similar like seeded one, one with some other condition in the where clause
    and another one with some other condition.
    So for my requirement, i'll extend one VO and i'll add my condition but how to do it for second condition.
    But i want same seeded VO with two different condition.
    Any suggestions please,
    SAN

    SAN,
    There is no need to attach the newly created VO with extended AM. You need to attach the same with the standard AM.
    Regards,
    Gyan

  • How to create and maintain a backup catalog, separate from default  location,  on and external HD

    How to create and maintain a backup catalog on a separate hd - separate from default location of the catalog?

    Simply copy the LR catalog backup file to another location. It’s quite small and only contains metadata e.g. your edit develop settings, keywords, captions, titles and camera exif data etc.
    The LR backup does not physically copy your image files. So make sure you have a separate system backup for your photo files and folders.

  • How to create a Catalog (Product/Service) & TAX issues

    SRM Guru's
    Product Ver: SRM 5.0 : ECC 6.0  ( No CCM or Service Master )
    TAX S/w: Vertex ( O )
    As of now:    We are planning to implement a vanilla SRM-ECC (in ext. classic). We are into Indirect procurement w/limit orders.
    Catalog:
    I want to create a Catalog ( UNSPSC or 1 level company catalog),
           1. Can this be created in ECC  (with out Products ) and replicated to SRM (EBP)
           2. How to go about creating it ?
           3. Can it be done with out CCM, if so how
           4. How to replicate it ? ( no CCM or middleware )
           5. Can i create it in EBP ? if so, plse say how..
    TAX:
    Vertex mentioned that, Tax codes will be mapped to services, in our case, since we don’t have Services except a free form text describing what service is provided ( eg: "Payroll Service" ), what can be done ?
    In a normal scenario, i can imagine having Service Master with all "Services", but in our situation, how can we use catalog to map to TAX codes. ?
    PS: If you could, please describe/break down the relationship between
       Catalog -- Category Id -- Product -- Services/Materials
    regards.,
    -Rupesh

    Hi
    <u>To create internal catalog there are three possibilities</u>
    1. CCM Catalog developed by SAP.
    2. SRM-MDM Catalog taken over by SAP.
    3. Requisite Catalog other catalog provider.
    <u>Check these links -></u>
    http://help.sap.com/saphelp_ccm20/helpdata/en/index.htm
    https://websmp101.sap-ag.de/ibc-srm here check SRM-MDM Catalog.
    http://www.requisite.com/solutions/index.cfm?pageID=productpac_bugseye
    Re: Catalog Mgmt
    <b>Other related links -></b>
    <u>Create Internal Catalog</u>
    Re: Create Internal Catalog
    CCM Create catalog link
    Re: creating a catalog
    Catalog ID does not exist
    Re: SRM Contract Catalog - Creation
    CCM SRM product catalog
    Re: Product Catalog to CCM
    <u>Managing Catalog content in SRM</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/0a/f9353e39011a38e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/ba/7a50415e216e24e10000000a155106/frameset.htm
    <b>P.S: All tables for CCM (Catalog tables and CCM) start with "/CCM/" ,so you can search on that using SE11 transaction.</b>
    <u>MDM-SRM Catalog</u>
    Re: MDM SRM - Catalog - External Catalog - Punchout
    <u>Punchout catalog</u>
    Punchout catalog
    <u>Loading Product Data into Catalog using CSV files</u>
    Loading Product Data into Catalog using CSV2.0 file
    <u>Contract catalog</u>
    Re: Contract catalog
    Hope this will definitely help. Do let me know.
    Regards
    - Atul

  • How to create user on a resource ?

    Hi ,
    Let's say i have a resource ( LDAP ) with the following object attributes :
    user
    userPassword
    firstname
    lastname
    Can anyone point do some documents or post some examples on how to create a form that wil ENROLL a new user on the LDAP resource ?
    Any ideas and questions would be welcomed.
    10x,
    Victor
    PS what i'm looking for is the XPRESS form code , not the actual configuration :)
    Edited by: java_gibi on Jan 22, 2008 4:24 AM

    Thank you simlover,
    What I am looking for , is a simple example of a registration form . Unfortunately I do not have the time to travel to Sacramento , or San Diego .
    Although you are completely right , I'm sure that it can be accomplished without training .
    Victor

  • How to creat a resource file in blackberry playbook

    Hai,
    how to creat a resource file  in blackberry playbook.
    Regards
    Ratheesh R Kurup

    I think you will have to use PP for this.

  • How to Create Field Catalogs (More than one Source Table)

    Hi Data Archiving Experts,
    Could you please help me how to create the Field Catalogs (More than one Source Table). If any one is having example that will help.
    My scenario:
    Currently we are archiving on CRM Data archiving project. We are facing one issue on creating field catalog with more than one source table.
    Ex: ST -- BP1
                  BP2
                  BP3
    ST info store in one table and BP1 -- BP 3 info sotre in another table. with current field catalog we are getting ST -- BP1. Our requirment is we need to show the ST  -- BP3 How we can achive this.
    Regards,
    Srini

    Hi,
    I don't think its possible to create fieldcatalog for different tables,
    but if you want to do so create a dummy table which has all the fields which you want in fieldcatalog.
    populate the data from different table to that dummy table
    then create fieldcatalog for that table and pass it in the function module...
    Regards,
    Siddarth

Maybe you are looking for