UCM & structured (with no associated file) data

Hello
I am new to the Complutense University of MADRID.
In my understanding of the University Complutense of MADRID, I can store in it, structured data only if the data have an associated file in this... Am I wrong?
For example, in my work, I have a web form (structured data) with a dynamic number of fields (representing a datasheet of electrical components). Web (document metadata) form input fields is the data I want to manage with the AAU. I do not have a file associated with the web form.
Can I insert the UCM metadata and then manages revisions, (etc.) queries based on these items?

Thanks in advance.

Best regards.
S.

Yes, I think you got me right.

The use case, basically, is that you have a HTML form and do it turn into an XML file (for example, create a file) and send it to the University Complutense of MADRID for the treatment. The question is, if you send the file without metadata (content categorizer) UCM he file for you, or if analyze you the shape to the front and send the file and metadata already grouped around it. If you have WebCenter in the project, it could be the way to go - I think that there is an element of the ADF (ADF, it might be rather than component WebCenter framework, actually) somewhere that can do for you what you need.

Customization of the GUI of the UCM? Well, why not? However, you wrote

I have a web form (structured data) with a dynamic number of fields

then I thought, you have your LOAN form somewhere, then why repeat the same with the means of the UCM? Anyway, if you decide to do, take a look at profiles.

Nevertheless, choose whatever way works best for you. I think actually get an XML of an HTML form is a simple task of XSLT, but I'm not a web programmer, myself.

Tags: Fusion Middleware

Similar Questions

  • CS5 does not all the associated files

    I have several sites in DW CS5.

    All of a sudden, the pages of sites do not display the associated files in the toolbar where they should be. The other site is showing them without problem.

    I checked all the settings and tried "Refresh related files." Nothing does then appear. On one or two pages, the associated .js show files, but not the .css files. In this case, by using the 'Show all files' in the section file related Options does nothing.

    Can anyone help? THX.

    OK... Thank you. So I took out the "/" before the path to the files related to make them relative and Yes, all of a sudden the associated files appeared in DW.

    However, I went and looked at the pages of my other site in DW with the associated files with absolute paths which have no problem appear. The directory of the page structure and its related files is the same. So, with one site, DW can find files associated with absolute and paths in the other site DW needs the relative path, but the absolute path worked a week or two ago.

    FOUND THE PROBLEM: In the server for the site information, the site that works very well has the full FTP path information entered. FTP full path information has been omitted in the other site that didn't work. As soon as I filled it, it worked fine.

    Thank you.

  • Analyze the flat file data in a nested structure.

    This has been driving me crazy all day long.

    I have a flat data file I want to analyze in a nested data structure.

    Small sample data:

    0 HEAD
    1 SOUR FTW
    2 VERS Family Tree Maker (16.0.350)
    2 NAME Family Tree Maker for Windows
    2 CORP MyFamily.com, Inc.
    3 ADDR 360 W 4800 N
    4 CONT Provo, UT 84604
    3 PHON (801) 705-7000
    0 TRLR
    

    If anyone recognizes this, yes it's a small piece of a GEDCOM file.  That's what I'm trying to analyze.  For someone who is not familiar with this data format.  The first number is the level of a data element.  Level 0 are elements of the root of a data segment.  Level 1 lines relate to the data of level 0 line previous closest.  Level 2 lines relate to the level 1 data line that precedes the closest. And so on.

    Here is an example of the desired output, the different elements to the related parent of nesting.

    <cfset foobar = {
     HEAD = {lvl=0,
     SOUR = {lvl=1,data="FTW",
     VERS = {lvl=2,data="Family Tree Maker (16.0.350)"},
     NAME = {lvl=2,data="Family Tree Maker for Windows"},
     CORP = {lvl=2,data="MyFamily.com, Inc.",
     ADDR = {lvl=3,data="360 W 4800 N",
     CONT = {lvl=4,data="Provo, UT 84604"}},
     PHON = {lvl=3,data="(801) 705-7000"}}}},
     TRLR = {lvl=0}
    }>
    
    <cfdump var="#foobar#">
    

    I think I'm looking at a kind of recursive function to embed these data correctly, but I just can't figure out how to do.

    I have this basic function that will display each line of data in a separate structure key

    <cffunction name="parseFile">
         <cfargument name="file" required="yes">
         <cfargument name="line" required="no" type="string" default="">
         
         <cfscript>
              var returnStruct = structNew();
              var subStruct = structNew();
              var cur_line = "";
              var next_line = "";
              var line_lvl = "";
              var line_key = "";
              var loop = true;
              
              if (len(trim(arguments.line)) EQ 0) {
                   cur_line = fileReadLine(arguments.file);
              }
              else
              {
                   cur_line = arguments.line;
              }
              
              do {
                   if (not FileISEOF(arguments.file)) {
                        next_line = fileReadLine(arguments.file);
                   }
                   else
                   {
                        next_line = "-1";
                        loop = false;
                   }
                   
                   line_lvl = listFirst(cur_line, ' ');
                   cur_line = listRest(cur_line, ' ');
                   line_key = listFirst(cur_line, ' ');
                   cur_line = listRest(cur_line, ' ');
                   
                   returnStruct[line_key] = structNew();
                   returnStruct[line_key]["level"] = line_lvl;
    
                   cur_line = next_line;
              } while (loop);
              
              return returnStruct;
         </cfscript>
    </cffunction>
    
    <cfscript>
         gedcom_file = FileOpen(getDirectoryFromPath(getCurrentTemplatePath()) & "Ian Skinner.GED","read");
         /*gedcom_data = {individuals = structNew(),
                        families = structNew(),
                                             sources = structNew(), 
                                             notes = structNew()};*/
                                             
         gedcom_data = parseFile(gedcom_file);
    </cfscript>
    
    <cfdump var="#gedcom_data#" label="Final Output">
    

    I tried many ways to recursively call this function in order to nest the elements.  None of them have produced await in the above example of hand coded output.  Which made me the closest is recursive call, the function parseFile() towards the end of the while loop if the following line is greater than the current level of line:

    if (listFirst(next_line,' ') GT line_lvl) {
         parseFile(arguments.file,next_line);
    }
    


    It works pretty well, as long as the next level of line is the same as or higher than its previous level of the line.  But once the next line level is lower, the recursive call will not return to the appropriate parent level.  The current function call ends just on a loop on the data file.  Everything that I tried to provide a correct output for recursive function calls when the next data line belongs to a line parent just a horribly distorted data.

    Yes, that's exactly it. I think that the node must always be added to the stack.

    I just had a period gave me. But that's what I thought.

    That is to say...

    While (not FileISEOF (gedcom_file)) {}

    line = fileReadLine (gedcom_file);

    extract data from the node

    node = {};

    node.LVL = listFirst (line, "");

    line = listRest (line, "");

    key = listFirst (line, "");

    If (listLen (line, "") gt 1) {}

    node. Data = listRest (line, "");

    }

    Download the most recent ancestor of the battery

    lastNode = stack [1];

    If it is a brother/ancestor, look for its parent

    While (arrayLen (stack) & node.lvl lte lastNode.lvl) {}

    arrayDeleteAt (battery, 1);

    lastNode = stack [1];

    }

    Add to the stack

    arrayPrepend (stack, node);

    Add this node from its parent

    lastNode [key] = node;

    }

  • Which programs are associated with the xcm files

    I found a folder in my folder system program (. 86) that I don't know or I don't know where it comes from. It has a bunch of XCM file in the known folder that cannot open my own computer, can not give me info on how to open and cannot tell me which of my programs, he joined. I want to delete it because it seems that a suspect case, but not because I can not check programs what or how much it may or may not be associated with.

    Sincerely yours, Aaron Baker.

    Take a look at this link:

    http://pcsupport.about.com/od/FileExtensions/f/xcmfile.htm

    Excerpts .....................................

    What is the .xcm file?

    Response: A file with the XCM file extension is a Concept exported CmapTools mapping file.

    How to open a XCM file:

    The easiest way to open a file XCM is double-click on it and let your PC decide which default application should open the file. If no program opens the XCM file then you have probably an installed application that can view and/or edit files XCM.

  • My Cookie file was corrupted in data and my programs continually pop up with the 'corrupt file' error when a program opens, pointing to \Users\name\Appdata\Roaming\Microsoft\Windows\Cookies.

    My Cookie file was corrupted in data and my programs continually pop up with the 'corrupt file' error when a program opens, pointing to \Users\name\Appdata\Roaming\Microsoft\Windows\Cookies.

    The problem is, Chkdsk will not fix this, and I can't access the file. This opens up a world of problems when I need to fix this error, so I can upgrade to Windows 7. Help, please!

    I just ran the scan again. He said of the errors found, but could not be repaired.

    This problem actually has nothing to do with internet explorer. It's the cookies folder that is corrupt in the Windows folder in roaming. The error file is in conjunction with the programs, that I try to run (AIM, Skype, so forth). Trying to enter the folder it says it's corrupt. I don't know what is the root of the problems or how to solve this problem, but these measures have not helped so far. Regarding the repair, I will try that next.

    http://Tinypic.com/view.php?pic=14mw4ly&s=4

    Here is a picture. This is the error of the lower right

    It's what the tool SFC to see system files corrupted and try to repair the system files.
    SFC could not fix it.

    Looks like you will need to do this:

    http://www.Vistax64.com/tutorials/88236-repair-install-Vista.html

    Read the info on the link above.

    Good luck with it.

    Let us know how you go with it.

    See you soon.

    Mick Murphy - Microsoft partner

  • Conversion: Can I use Corel WordPefrect 8 data with Windows Vista files?

    Can I use data files Corel WordPefrect 8 with Windows Vista?

    On Friday, June 11, 2010 17:03:40 + 0000, grandmadfs wrote:
     
    > Can I use Corel WordPefrect 8 data with Windows Vista files?
     
     
     
    The issue here is not one of which version of Windows you are using.
    It is one of what you have installed applications.
     
    The answer is Yes, if you have WordPerfect (or some compatible)
    program) installed on Windows Vista. The answer is no, if you do not.
     
     
    Ken Blake, Microsoft MVP (Windows desktop experience) since 2003
     

    Ken Blake

  • Problem by associating files with a program.

    I installed a new program and have problem associate the file type for the program.  Whenever I pass by the exercise, he would only associate to the wrong program.  I assumed I could do in the registry, but not too sure how to in this regard.

    I have followed the first link, downloaded the unassoc.zip and run the unassoc.exe file.  The program deleted the extension I wanted to delete.  According to the program of the extension has been removed.  I ran the default programs later and found that there was still the extension in question.  I restarted the computer, the situation remained.  I double-clicked on the file in question and he still tried to open with wrongly associated program as indicated on the default programs.

    I tried what all other links suggested before that I started this thread.

    Registration of MYOB once using OpenWithAdd should solve the problem. See:

    [OpenWithAdd] Record the programs with the "Open with:" dialog box
    http://WindowsXP.MVPs.org/openwithadd.htm

    Ramesh Srinivasan . The Winhelponline Blog
    Microsoft MVP, Windows desktop experience

  • Distribute the data file with the cod file?

    Hi all

    My application runs from a file of database on camera flash memory.  While the application can transfer data from my server to complete the database, the first download is quite large and takes a long time to run (I'm working on it).

    It occurred to me that an alternative might be to provide a database of pre-populated with the app file, while the app will run straight out of the box without needing to first synchronization.

    Does anyone know if the App World store supports this - distribution of data, and the app?

    Thank you very much...

    You're right about the wasted space.  How about you always include a resource file, but make sure that if your program needs to read data from "base", read from the resource file, and if it's new data, read from the DB.  I don't know what your app does so I don't know if it's feasible or not, but if this is the case, that would solve your problem.  What do you think?

  • Form of the ADF for data structure with several child records

    Jdev version: 11.1.1.2.0

    I have a data structure with a one-to-many parent-child relationship. I give an example of the data structure.

    Employee table:
    ----------------------
    EmpId
    EmpName
    Salary

    Table Historiqueemploye:
    -------------------------------
    EmpId
    Previous_Employer
    From_Date
    To_Date


    In the ADF form for entering data for a new employee, I want to give a layout (say, a button "Add row") for the history of the employee's employment. How can we succeed in ADF?

    I'm new to ADF. Would be grateful if someone can help me with detailed steps or a link showing such a demonstration.

    Thanks in advance.

    Hello

    If you exposed a View for the Historiqueemploye table object, then simply drag this point of view as a form and then drag and drop the create operation (within the structure of the View object in the data control palette) as a button for the new line is created. If you do not always display the historical, add it to an af:popup and start button context menu create or hide the af: panelFormLayt that a form is added by default.

    Frank

  • Import text data into text with script level file fields


    I use Adobe 9 professional and have a level of javascript file import text into the existing fields of a pdf document.

    There are several fields with multiple lines of data to import.

    The folder level script does not work (but there is no error in the console showing when operating)

    I manually tested the file opening text with the following code in the console and the text file opens and fills text fields, so the text file must be correct:

    this.importTextData ();

    The following code is the folder level script that does not work:

    function mailmergeFunction()

    {


    Import the first line of data of "Mailmerge.txt".

    this.importTextData ("of/h/mailing/Jo Smith Things / Mailmerge.txt", 0)


    If (typeof cnt == 'undefined') cnt = 0;
    this.importTextData ("of/h/mailing/Jo Smith Things / Mailmerge.txt", cnt ++ % 4)

    }


    app.trustedFunction (mailmergeFunction);

    app.addToolButton ({cName: "Mailing", cExec: "mailmergeFunction ()", cTooltext: "Mailing", cEnable: true, NPO: 14});

    If anyone can please provide assistance, it will be more appreciated thanks.

    Try using an app.beginPriv () just before the importTextData statement and a statement of app.endPriv () afterwards. Don't forget to restart Acrobat after you change the JavaScript file.

  • Loading data to Essbase with ODI rules file

    Hi all

    I need to load the flat file DATA (no metadata) or an Oracle table in to ESSBASE using ODI.

    Where can I find an example or a tutorial on the loading procedure.
    I have not have how to use ODI with a rules file:

    (1) in the standard rule file I can insert a transformation (join, split ecc.) can be used
    a rule like this in ODI file?

    (2) if I put the file of IKM SQL for Hyperion Essbase (DATA) rules I have to manually set the mapping
    between the source and target? the mapping is not set in the rule file?

    (3) can I use both the type of rules (flat file or SQL) file?


    Thanks a lot for your help!

    Edited by: 882454 on 19-game-2011 2.57

    Edited by: 882454 on 2.58 19-game-2011

    If you go to the next page in my blog, you should see a link to all the different posts around ODI and hyperion knowledge modules - http://john-goodwin.blogspot.com/2011/08/odi-series-summary.html

    In ODI, you can do all the transformations, the rule of the load is really used to optimize the process of loading the data.
    You must configure your interface with source and target mapping, and then create a rule to load that corresponds to the mapping of the target.
    You can use any type of source.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • ATTRPARENT dimension of the text attribute to several levels of construction with a rules file

    Hello

    My first post here.

    I'm trying to create the dimension generation rule to create a dimension of the multilevel text attribute and then combine with the basic dimension.

    So far, it is difficult.

    With regard to my experience:

    -J' have a relatively basic understanding of the rules of charge both with regard to the data loads and define the updates - I find this quite confusing area and the documentation does not help that much

    -J' only started using dimensions attribute, so for me it's a new concept, but we are already quite useful in certain applications

    -J' I try to automate the process of construction of dimension attribute, and then associating attributes with the basic dimension

    I use the following documentation as a guide:

    Building size attribute and associate attributes

    http://docs.Oracle.com/CD/E12825_01/EPM.111/esb_dbag/frameset.htm?dotdimb.htm

    and / or

    Work with the attribute multi-level Dimensions

    http://docs.Oracle.com/CD/E26232_01/doc.11122/esb_dbag/frameset.htm?ch21s06s05.html

    (essentially the same source in both cases)

    The ultimate goal is to replicate one of our existing recently created attribute dimensions of a cube to another.

    I built a few versions of the required flat file and the corresponding rules file, but none worked.

    I tend to get the following validation error message:

    This field is defined as an ATTRPARENT. The following column must be a field of association attribute type.

    As I got stuck so I gave to the current actual attributes and moved on to experimenting with the sample / base cube.

    I built a flat file that is supposed to create a new dimension of text attribute named ABC with two attributes level structure:

    ABC

    A

    AA

    AB

    B

    BA

    BB

    and associate it with the dimension of the product in the following way

    200-10 AA

    200-20 AB

    200-30 BA

    200-40 BB

    The flat file looks like this:

    "AA"      "A"         "200-10"               "A"         "AA"      "200"

    "AB"      "A"         "200-20"               "A"         "AB"      "200"

    "AB"      "B"         "200-30"               "B"         "AB"      "200"

    "BB"       "B"         "200-40"               "B"         "BB"       "200"

    and the rule file has 6 matching columns with titles as follows:

    Level0, LEVEL1 ABC, ABC Level0, product ATTRPARENT0, ABC ABC0, LEVEL1 product, product

    all agree with what the documentation says.

    The first 2 columns are intended to define and create the dimension of the attribute, while the 4 next make association...

    I couldn't the above rules file to validate.

    The same validation error message appeared as previously:

    This field is defined as an ATTRPARENT. The following column must be a field of association attribute type.

    However when I tried to actually update the outline of the mistakes of dimbuild.err file has been created which gives some additional clues:

    \\ATTRPARENT column 4 must precede a numeric or datetime column attribute association

    Now... Finally the interesting part...

    Back to the documentation...

    I don't mind if the size of the attribute is generated and then those associated with step or in two separate steps.

    I try to do both tasks in one step only because that's what the documentation seems to suggest attributes at several levels.

    First of all I read:

    Note:

    If you work with a multilevel dimension attribute or with a dimension of the attribute of the digital type, Boolean, or date, the rules file requires an additional field. See working with Dimensions of the multilevel attribute.

    Yes, I work with a dimension of the multilevel attribute so the above statement applies (I guess) and so I'm going to see what works with several levels attribute Dimensions has to say.

    Then, I read:

    When an attribute is part of a digital multi-level, Boolean, or dimension attribute date, the source data must include columns for all generations or the size of the attribute levels.

    Fair enough... so I do what they say... my attribute dimension is at several levels, so I can assume that the statement above applies...

    So, I build my rule in accordance with the guidelines above.

    And then, as we have already mentioned, I get the error message about ATTRPARENT and when I read, it turns out that ATTRBPAREN cannot be used for numeric or date attribute dimensions !

    I'm totally confused at this point.

    What about the attribute text multi-level dimensions ?

    They are several levels but they are NOT numeric or date those!

    The documentation does not seem to tell what to do in this case...

    Anyone build something like that?

    What is the thing that I'm missing?

    What about

    I'm glad that you got to work. I tested and that is to create the dimension attribute and associate it with the rule of the load.

    You could ignore the construction size manually. Remove the attribute dimension. The rule1 go for the Dimension settings under the definition of Dimension tab. Then right-click on the product and change the properties. On the attribute tab, add 'Test' or whatever you want to call the attribute, and assign the text type. He adds the attribute and associate it with the basic dimension when it create the hierarchy. Note that the rules could actually be reversed where you create members of level 0 and then more later to create the hierarchy.  Of course you must pass the size of the attribute association to the other rule

  • file data and the ASM disks.

    Hi experts,

    We have a situation where one of the data file has been corrupted. Can we find the related ASM disk... no request to find that the drive associated with asm (physical disk) will be useful...

    because for example I need to find the disk related asm for the data file: +disk_group_1/my_dir/my_file.dbf

    Kind regards

    Spengler

    Hi Spengler,

    In ASM we saw exactly the same as database.

    What you do is,

    Your file "+ disk_group_1/my_dir/my_file.dbf" is an alias, so go to this directory through asmcmd and ls - lt and get the original physical file named ..

    + Now check where the distribution of the is distributed for this file.

    To do this, run the command UESA (read-only)

    UESA - diskstring ''-'' dump - noimage

    This will generate a new directory.

    on the inside you will see 2 files.

    + Now open the .map file and find this filenumber, it is like F00000NNN

    Where NNN corresponds to file_number

    + See related disc of the map as N00n file, then look for this file report.txt N00n.

    -This will give you disc associated with this asm file.

    Kind regards
    Loriette

  • Script to change the name of the file to the virtual machine and its associated files

    Hello

    I'm looking for a script to change the name of the virtual machine in virtual center and also change it has associated file names in the data store to match file name of virtual machine. But the vmdk file will contain a descriptor which maps the - flat.vmdk file. So not sure that we can achieve this through a script.

    Thanks in advance!

    Not really as much as I know.

    The advantage of the svMotion is renamed it the files (.) VMX, VMDK,...) For you.

    The only alternative would be the command line. See Duncan Howto: renaming a virtual computer.

    With the help of the plink.exe tool which could possibly be scripted.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Pools of multiple connections to the same physical Structure with SPR

    I use OBIEE 10.1.3.4 and have multiple physical databases that contain the exact same structure. Instead of creating the same physical structure in the RPD file with their own pools of connections, I would like to have a physical structure with multiple connections pools. I have this Setup, however, I can only see the data of one of the physical databases by using the right click, view data... option in the physical appearance of the RPD file. I searched and could not find a solution to my particular problem. Can someone point me in the right direction?

    Goal is to get the CPs separated... and then, you can use two data. But better to have 2 separate objects.

Maybe you are looking for