Linking a sequence of XSD schema to subform repeated items

Hi, I have created a form with the rows in the table that is repeated using an Add button to add rows dynamically. I lie the line with the schema xsd with a [*] at the end of the option of data binding with ticked repeat rows for each data item. All by submitting the form as XML data to java controller I get only one line of the table and not other lines dynamically added by add the functionality of the button.

Untitled.jpgUntitled1.jpg

Untitled2.png

I want to know that how generate the XML for lines added dynamically linked with an XSD schema.

I also explored the link below, but is not to solve the problems:

http://www.Adobe.com/devnet/LiveCycle/articles/binding-XSD.html

Thanks in advance

I have solved the problems by adding maxOccurs = "unbounded" in the xsd schema with the name of the bound element.

Tags: Adobe LiveCycle

Similar Questions

  • What to put in the xsd schema for the form of the ADF radio buttons?

    Hello, we create a form generated from the data of a HT ADF auto which is a type defined in a schema .xsd. Which schema component Let's in the .xsd schema correspond to buttons option in the form of the ADF? For example, in our .xsd we just

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < xsd: Schema container = ' http://www.w3.org/2001/XMLSchema "xmlns:wf =" " http://www.example.org "

    " targetNamespace = ' http://www.example.org "elementFormDefault ="qualified"> "

    < xsd: complexType name = "FormDataType" >

    < xsd: SEQUENCE >

    < xsd: element name = "FirstName" type = "xsd: String" / >

    < xsd: element name = "Name" type = "xsd: String" / >

    < xsd: element name = "Department" type = "xsd: String" / >

    < / xsd: SEQUENCE >

    < / xsd: complexType >

    < / xsd: Schema >

    What would be the element / type etc be for radio buttons?

    Hi Tali,

    It depends on what you want to do with radio buttons, but it would be better to be a part of string in most cases.

    This could be better handled on the ADF OTN forum, but I'll take a shot at it.  If you have many items to choose from, you can use the string "Department", you already have in your XSD.  When displayed on the form, include various departments with radio buttons next to each other (for example,"manufacturing", "Marketing", "Sales").

    Because this is the BPM forum, I guess your XSD is used as data for a human task which in turn used to create a form of the ADF.  If this is the case, you can use your "Department" in your XSD string element that has already been placed on your form as a text input field.  The reason is the link that you need to update the element of the human task service is automatically created in this way.  Select this field to text, and then in the properties panel, copy the text that is in the 'value' of the field (you stick it in the Value property of the Radio group you will add in the next step).

    There are two ways to get the radio buttons on the form.  You might drag the "Radio group" widget on the form-> click on radio to 'Create a list (select an item)' button-> click the Add icon to add the choices you want to appear on the form (for example,' manufacturing ', 'Marketing', 'Sale').   Once this was added, paste property value text you copied in the previous step into the field of "Value" property of the new Radio group.

    If you select the radio button of the new group source, it should look like this if you wanted two choices for your radio buttons:

    After this has been added, delete the existing text entry field that was created when the form was generated automatically from the human task.

    Hope this helps,

    Dan

  • XML validation against the XSD schema

    Hi all

    I have a strange problem.

    I'm trying to validate an XMLTYPE variable against a XSD schema using the XMLisValid function.

    The XML code that I am trying to validate returned false (0) when you use this method.

    However, when I save the XSD against a column in a table, and then insert this XMLTYPE in this column, I don't get any errors. If I change the XSD to ensure failure when using this method, I get an error, if it is registered and work.

    I then created a very basic XSD and both methods work when validating XML against that. Then of course the XSD harder I want to validate against a difference, but I expect or them both don't both pass, not a failure and a single pass.

    Does anyone know why it would return different results?

    Thanks in advance for your help.

    Robin

    examples of what I use:

    XML to validate:

    <>centers
    < Add >
    <>Center
    < centreName > name 1 < / centreName >
    < centreRef > 45678 < / centreRef >
    < / Center >
    < / add >
    < / Center >

    Simple XSD:

    <? XML version = "1.0" encoding = "UTF-8"? >
    < xs: Schema attributeFormDefault = "unqualified" elementFormDefault = "qualified" xmlns: XS = "http://www.w3.org/2001/XMLSchema" >
    < xs: element name = "centres" type = "centresType" / >
    < name XS: complexType 'addType' = >
    < xs: SEQUENCE >
    < xs: ELEMENT type = "xs: String" name = "centreName" / >
    < xs: ELEMENT type = "xs:short" name = "centreRef" / >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < name XS: complexType = "centresType" >
    < xs: SEQUENCE >
    < xs: ELEMENT type = "addType" name = 'Add' maxOccurs = "3" minOccurs = "0" / >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: Schema >

    XSD complex:

    <? XML version = "1.0" encoding = "utf-8"? >
    <! - created with liquid XML Studio - 30 Day Trial Edition 7.1.6.1440 (http://www.liquid-technologies.com)->
    < xs: Schema attributeFormDefault = "unqualified" elementFormDefault = "qualified" xmlns: XS = "http://www.w3.org/2001/XMLSchema" >
    < xs: element name = "Center" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: element name = "Remove" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: ELEMENT minOccurs = "0" maxOccurs = "1000" name = "centreRef" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "50" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < xs: element name = "Add" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: ELEMENT minOccurs = "0" maxOccurs = "1000" name = "Center" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: element name = "centreName" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "100" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < xs: element name = "centreRef" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "50" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < xs: ELEMENT minOccurs = "0" maxOccurs = "1" name = "qualities" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: ELEMENT minOccurs = "0" maxOccurs = "1000" name = "qualRef" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "100" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < xs: element name = "modifyQualAssociations" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: element name = "Remove" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: ELEMENT minOccurs = "0" maxOccurs = "1000" name = "o" >
    < xs: complexType >
    < name XS: attribute = use "centreRef" = "required" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "50" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: attribute >
    < name XS: attribute = use "qualRef" = "required" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "100" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: attribute >
    < / xs: complexType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < xs: element name = "Add" >
    < xs: complexType >
    < xs: SEQUENCE >
    < xs: ELEMENT minOccurs = "0" maxOccurs = "1000" name = 'a' >
    < xs: complexType >
    < name XS: attribute = use "centreRef" = "required" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "50" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: attribute >
    < name XS: attribute = use "qualRef" = "required" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:minLength value = "1" / >
    < xs:maxLength value = "100" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: attribute >
    < / xs: complexType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: element >
    < / xs: Schema >

    Just had a quick glance at your XSD complex...

    
    
    

    You have a piece of 'delete' that is required as part of the sequence of elements with the element "centers." Yet your XML will fail validation compared with what it has only one item "add".

    Maybe your

    
    

    must be:

    
    

    ?

    Just guessing. ;)

  • Could not create the link of database of the schema of the ORA/APEX

    Hello

    I tried to create the link of database for my schema oracle on my localhost and it brings me an error "database user has sufficient privileges for the proposed operation.". I don't know what the problem is?

    This pattern of localhost was created for APEX.

    Thank you

    I tried to create the link of database for my schema oracle on my localhost and it brings me an error "database user has sufficient privileges for the proposed operation.". I don't know what the problem is?

    This pattern of localhost was created for APEX.

    What is developer Sql has to do with the problem? This forum is ONLY for sql developer questions.

    If this isn't a problem with Sql developer please mark ANSWERED thread and repost it in the general forum of the database

    Database General Discussions

    The exception is you say the problem: the user you are using to create the DB link doesn't have the necessary privileges to create the DB link type you are trying to create. Privileges are required on the source and target databases.

    When repost you, you will need to provide:

    1. your full 4 DB for DBs source and target text segment

    2. a copy OF the sql * plus (or other) session you use to create the DB link

    3. information on the user that you use to create the link DB - including the privileges that have been granted to this ulser

    4 information on the type of link DB you try to create

  • show all the resources for an XSD schema

    I am running Oracle 10.2.0.4 and today they asked me if it is possible to display all the XML documents (resources) that are validated against an XSD, registered.

    The XML DB repository contains several registered XSD schemas and XML files have the annotation "noNamespaceSchemaLocation". I would like to know if it is possible to list all XML files that contains the noNamespaceSchemaLocation for a particular XSD schema annotation.

    Kind regards
    René

    The easiest way is to join the RESOURCE_VIEW with the default table

    SQL> select any_path from resource_view,purchaseorder p where extractValue(res,'/Resource/XMLRef') = ref(p)
      2  and rownum < 10;
    
    ANY_PATH
    --------------------------------------------------------------------------------
    /home/OE/PurchaseOrders/2002/Aug/CJOHNSON-20021009123337283PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/DAUSTIN-20021009123337103PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/JCHEN-20021009123337123PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/JCHEN-20021009123337223PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/LSMITH-20021009123337323PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/SBELL-20021009123337353PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/SKING-20021009123337153PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/SMCCAIN-20021009123337173PDT.xml
    /home/OE/PurchaseOrders/2002/Aug/TFOX-20021009123337243PDT.xml
    
    9 rows selected.
    
  • Share the XSD schemas of the BPEL projects?

    Hello

    Does anyone know how to share among projects BPEL XSD schemas?

    I use the GS1 XML standard for a project. But I want to just keep only one consolidated copy of the XML schema. Now, I have to copy the entire schema to each BPEL project folder for use.

    Moreover, I can assign the directory of the application of the scheme to help "... /.. '. "/ something", but I can't assign the absolute path in WSDL. And how about you during the deployment?

    Thank you and best regards,
    Kerr

    Edited by: Kerrs 03/24/2009 15:29

    You can copy xsd in /bpel/system/xmllib folder and access it by using the following url:
    http://:/orabpel/xmllib.

    for example - http://localhost:8888/orabpel/xmllib/Mail.xsd

    Kind regards
    Diakité
    http://SOA-HOWTO.blogspot.com

  • Problem to change a sequence from another schema

    Hello

    My question is a continuation to the thread below.

    problem using sequences of a diagram to another diagram

    Here, I tried to access a sequence created in schema2 in Figure 1.

    I gave both select and change privileges on the encoder in Figure 1 and I see the same thing in the all_tab_privs table.

    Now, I created a synonym in the diagram 1 'create a synonym seq for schema2.seq '. By doing this, I could access the seq directly (without the schema name) in Figure 1. But when I try to change directly (without the schema name). I got the errorORA-02289: sequence does not exist.

    But I can able to alter using the full name schema2.seq.

    Can anyone tell why this anamoly?  He takes everything by choosing synonym, but not while altering.

    My question is a continuation to the thread below.

    problem using sequences of a diagram to another diagram

    Not really--your question has NOTHING to do with the question in this thread.

    Here, I tried to access a sequence created in schema2 in Figure 1.

    I gave both select and change privileges on the encoder in Figure 1 and I see the same thing in the all_tab_privs table.

    Now, I created a synonym in the diagram 1 'create a synonym seq for schema2.seq '. By doing this, I could access the seq directly (without the schema name) in Figure 1. But when I try to change directly (without the schema name). I got the errorORA-02289: sequence does not exist.

    But I can able to alter using the full name schema2.seq.

    Can anyone tell why this anamoly?  He takes everything by choosing synonym, but not while altering.

    Simple - funcitionality is NOT supported by Oracle for synonyms. See the CREATE SYNONYM statement in the doc of the SQL language

    https://docs.Oracle.com/CD/B28359_01/server.111/b28286/statements_7001.htm

    You can refer to synonyms in the following DDL statements: AUDIT , NOAUDIT , GRANT , REVOKE , and COMMENT .

  • XSD Schema for the return of several SOA records

    Hello

    I want to pass the Dept Id as an input to wsdl parameter and return the employee records of name, empno and job.
    Please help me build an XSD that can pass input request and response to a complex type that would match the data collection.


    Thank you
    Kiran

    Hi Kiran,

    You must pass the input parameter DeptId and need to assign the output received from the database to your output variable used to help transform the business. In that you can use for each as under.

      
        
          
            
              
                
                  
                
              
            
          
        
      
    

    Kind regards
    Neeraj Sehgal

  • Repeat items in a stacked sequence

    Hi does anyone know how to repeat elements of a stacked sequence?  For example, if I want to repeat that frames 7-12, how would I go all this?  I was watching the State machines, but also to try to understand.  I thought that there could be an easier way to do somehow with a while loop, but not sure how I would go all this.  Thank you!

    Jon

    You need to understand the state machine. It serves to do just what you want to do.

  • Sequence but transcoded to change the menu item

    After I converted my PrPro sequence that I imported into again, I noticed that I needed to change the display settings in the menu.  I made the change, then built the DVD.  DVD reflects the FORMER executives of the poster.  Upone examine the project Panel again, I noticed that the status of transcoding is "converted" so I don't see a way to "re - transcode" sequence (although that would take forever).  How can I make a change to the menu and use burn a DVD that reflects the new changes AND I'd love to do it without having to retranscode.

    I don't think that changing a menu should assign a sequence transcoded, so I don't think you should have to re - transcode the sequence (chronology). But if there is the possibility of "Back to the Original" when you right click on the menu, you should be that (I guess if the menus are transcoded, that's when the thumbnails are created, so back to the original must erase the transcoded files and allows you to transcode again with new thumbnails).

    So make sure that you 'revenue to original' in the menu, then try to return to the original on the timeline as well.

    If that did not work, try clearing your support cache - go to Edition-> Preferences-> media and press 'Media Cache database' 'Clean '.

    If it does not, you can try to remove caching and the files transcoded to the project manually: hence your project file is still located, go to the folder that contains the files for this project and try to remove (or just move) anything in the folder Cache or Sources (transcode is in a subfolder in the Sources and it's pretty obvious that everything is because the files have) for the most sensitive names).

  • How to set global variables for use by all THE #subform [0] items of form1. ?

    Hi all

    I don't know how to code javascript but am new to Adobe LiveCycle.  When I open the script editor, I have the following code (the code is in United Nations in bold):

    -form1. #subform [0]: initialize :-(FormCalc, client).

    //////////////////////////////
    TO START: SET GLOBAL PRICES.
    //////////////////////////////

    var Cityscope_Sydney_CostUser1 = 60,39;
    var Cityscope_Sydney_CostUsers2to5 = 3.02;
    var Cityscope_Sydney_CostUsers6to20 = 1.21;
    var Cityscope_Sydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_Sydney_CostHardCopyWithoutOnline = 54,67;
    var Cityscope_Sydney_CostHardCopyAdditional = 14.59;

    var Cityscope_NorthSydney_CostUser1 = 48,40;
    var Cityscope_NorthSydney_CostUsers2to5 = 2.42;
    var Cityscope_NorthSydney_CostUsers6to20 = 0.97;
    var Cityscope_NorthSydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_NorthSydney_CostHardCopyWithoutOnline = 43,54;
    var Cityscope_NorthSydney_CostHardCopyAdditional = 14.59;


    ////////////////////////////
    END: SET GLOBAL PRICES.
    ////////////////////////////

    -form1. #subform [0]: enter :-(FormCalc, client).

    -form1. #subform [0]: output :-(FormCalc, client).

    -form1. #subform [0]: calculate :-(FormCalc, client).

    -form1. #subform [0]: validate :-(FormCalc, client).

    -form1. #subform [0]: preSave - (FormCalc, client).

    < < = etc etc etc = > >

    -form1. #subform [0]. Item1Cost::initialize :-(JavaScript, client).

    -form1. #subform [0]. Item1Cost::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    Store the values of the form of friendly names.
    var AreaSelected = Item1Area.rawValue;
    var NumberOfUsersSelected = Item1Users.rawValue;

    Declare other variables.
    var Users1Calculation;
    var Users2to5Calculation;
    var Users6to20Calculation;


    Calculate the cost to the "components" user will depend on the number of users selected for the region.
    Switch (true)
    {
    If (NumberOfUsersSelected < 2):
    Users1Calculation = NumberOfUsersSelected * Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 0.00;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 1 & & NumberOfUsersSelected < 6):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = (NumberOfUsersSelected - 1) * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 5):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 4 * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = (NumberOfUsersSelected - 5) * Cityscope_Sydney_CostUsers6to20;
    break;
    by default:
    Alert ("BROKEN: calculate the individual components of cost of use will depend on the number of users selected for the region.");

    }

    apply the total cost for this article
    Item1Cost.RawValue = Users1Calculation + Users2to5Calculation + Users6to20Calculation;

    -form1. #subform [0]. Item1Cost::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::ready:layout - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::initialize :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::calculate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Users::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Users::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::ready:layout - (FormCalc, client)-

    .. and so on and so forth...

    In short, I want the code in:

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    .. .to be able to access the variables I created in:

    -form1. #subform [0]: initialize :-(FormCalc, client).


    (I guess that's where I store global variables)

    At this point, global variables are not accessible with the above configuration.  Was the only one I can get this working is to cut and paste the Globals in each item of form1. #subform [0], which of course defeats the purpose of global variables!  I intend to have a lot more items so wouldn't duplicate global variables for each of them!

    Can someone show me how to do this?

    Any help is very appreciated!

    Thank you

    Stanbridge

    Post edited by: stanbridgej - colors and fonts or not will not save.  Are bolded my question make (non-fat) code easier to read (I hope).

    I haven't used Formccalc, but I thought it would be the same regardless. Insert a script object to the top of the hierarchy and call it, for example "sco." Paste the Globals. Then refer to variables of the extent that sco. Cityscope_Sydney_CostUser1, etc. Make one

    App.Alert (sco. Cityscope_Sydney_CostUser1);

    one of the fields. If the debugger is activated, it will tell you if it cannot resolve the reference as "sco. In this case, you may need to use the som expression to reference the script object, for example

    var scoScript = xfa.resolveNode ("topOfHierarchy.sco");

    scoScript.Cityscope_Sydney_CostUser1

    But if as close as possible to the top of the hierarchy above should work.

  • Subform repeat for each data item is grayed out

    I try to use a button of Add a subform. I know that I must have the repeating subform Flowed (what I did) and I know that I should set the subform to repeat for each item of data at 1 Min. However, the subform to repeat for each item of data is grey so I can't select.

    What I am doing wrong?

    Thank you

    MDawn

    You can ask the most subform roof parent to pass on to activate the option Repeat subform.

    Thank you

    Srini

  • Create a new instance of subform on click of a button

    I need a new instance of the subform:

    assessment. Page3.standards.Standardsdetail

    be created when you click on this button:

    assessment. Page3.addanotherstandard.button1

    I tried this code on the button:

    () xfa.form.assessment.Page3.Standards.Standardsdetail.addInstance

    true );

    but it does not work.

    I am a beginner and I'm learning how to do all this with the help of the book create dynamic with Adobe LiveCycle Designer Forms but I can't seem to understand this one.

    In the subform which is supposed to be repeat you must indicate that you will allow more than one. Click the subform in the hierarchy, and then click the object/link tab, click the box that says subform repeat for each data item.

    Paul

  • Binding XML schema to the repetitive elements - what am I doing wrong?

    I managed to successfully link a schema to a form of basic and apart from a few problems of active player, it works as expected.

    My next project is to do the same thing but with a form that contains repeating subforms.

    I wrote my diagram and validated and everything seems fine.  When I connect it to shape if it makes certain fields behave in strange ways.

    The form consists of three sections.  The first is a unique subform to repeat fields.  Two of the pieces is a table with the repetition of lines, and the third part is a collection of fields with the Add/Remove button using the instance manager script.

    When I bind these fields and add lines, I get strange results.  In the second part by pressing the Add button copies the entire line rather than create a new one.  Changing the value of a line of others change.

    In the third part, I can create entirely new subforms by using the Add button, but the this.parent.index + 1; script stops working.

    Anyone know why this is happening and how can I solve it?

    The pattern is below:

    < xsd: element name = "RemoteWorking" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "PartZero" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "RequireAddHardWare" / >
    < xsd: element name = "RequireRemoteWork" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartOne" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "Name" / >
    < xsd: element name = "FirstName" / >
    < xsd: element name = "User name" / >
    < xsd: element name = "JobTitle" / >
    < xsd: element name = "Role" / >
    < xsd: element name = "LineManager" / >
    < xsd: element name = "Direction" / >
    < xsd: element name = "PersonnelCategory" / >
    < xsd: element name = "CONumber" / >
    < xsd: element name = "TelephoneNumber" / >
    < xsd: element name = "BuildingCode" / >
    < xsd: element name = "NuméroBureau" / >
    < xsd: element name = "WorkingHours" / >
    < xsd: element name = "AltContact" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartTwo" maxOccurs = "unbounded" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "AdditionalHardware" maxOccurs = "unbounded" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartThree" maxOccurs = "unbounded" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "ARTICLEREQUIS" / >
    < xsd: element name = "Program" / >
    < xsd: element name = "CostCentre" / >
    < xsd: element name = "BusinessCase" / >
    < xsd: element name = "Device" / >
    < / xsd: SEQUENCE >
    < xsd: attribute name = "ItemNo" type = "xsd: Integer" use = "required" / >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartFour" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "Unit" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: Schema >

    The binding expressions must indicate that you have more than one section of PartTwo. To do this you need to add a [*] binding expressions that use the PartTwo node. If you want to keep just bind the subform that contains the information of PartTwo th to the PartTwo node, and then add the [*] at the end of the expression. Then al children of this node will get expressions such as $. Name of the node to which it refers.

    Hope that helps

    Paul

  • call the service wsdl (XSD) using util_http package web

    Hi expert,

    I have a request to call a WebService using sql, pl This is the web content as? wsdl :

    normally the WSDL file contains Saopaction url etc, but I don't know how to write a pl sql (using the utl_http package) if it is xsd, and I am a newbie to webservice, any idea?

    Thank you

    Nick

    /****************************************/

    ....

    "< xsd: complexType name="getReport">"

    < xsd: SEQUENCE >

    "" < xsd: Element name= "ReportName" " nillable="true" type="string"/ >"

    "" < xsd: Element name= "password" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "region" " nillable="true" type="string"/ >"

    "" < xsd: Element name= "Perm.Prog" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "Perm.Status" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "Issue.St.Date" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "Issue.End.Date" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "Exp.St.Date" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "Exp.End.Date" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "Perm.Owner" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "SortBy" " nillable="true" type="string"/ >"

    "" < xsd: Element name= "Direction" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "IsCurrent" " nillable="true" type="string"/ >"

    "" < xsd: Element name= "IsFuture" ' nillable= "true" type= "string"/ > "

    "" < xsd: Element name= "IsExpired" " nillable="true" type="string"/ >"

    "" < xsd: Element name= "isArchved" ' nillable= "true" type= "string"/ > "

    < / xsd: SEQUENCE >

    < / xsd: complexType >

    ......

    "< s0:binding name="ReportSrv"' type="s1:ReportSrv">

    "< s2:binding style="document"" transport= "http://schemas.xmlsoap.org/soap/http"/ >

    "< s0:operation name="getReport">"

    < s2:operation / >

    < s0:input >

    "< s2:body use="literal"/ >"

    < / s0:input >

    < s0:output >

    "< s2:body use="literal"/ >"

    < / s0:output >

    < / s0:operation >

    < / s0:binding >

    "< s0:service name="ReportSrvService">"

    "< s0:port link="s1:ReportSrv"' name="ReportSrvPort">

    ....

    The easier (and better) is to use XMLTABLE.

    But given that the data is in a text() node shipped, it must be done in two steps:

    (1) extraction and analysis of the report document

    (2) the document shredding in columns and relational rows report

    Assuming that the answer is in an XMLType variable (or column), say 'xml_response', you can do it like this:

    select x2.*
    from xmltable(
           xmlnamespaces(
             'http://schemas.xmlsoap.org/soap/envelope/' as "env"
           , default 'http://nps.pub.collections/'
           )
         , '/env:Envelope/env:Body/getResponse/return'
           passing xml_response
           columns report_xml  clob path '.'
         ) x1
       , xmltable(
           '/Report/record'
           passing xmlparse(document x1.report_xml)
           columns RecordNumber     number path 'RecordNumber'
                 , Submitted_by_CCM varchar2(10) path 'Submitted_by_CCM'
                 , Data_action_code varchar2(10) path 'Data_action_code'
                 , VID              varchar2(10) path 'VID'
                 , Name_of_the_v    varchar2(10) path 'Name_of_the_v'
                 , Flag_of_the_v    varchar2(10) path 'Flag_of_the_v'
                 , r_number         number       path 'r_number'
         ) x2 ;
    
    RECORDNUMBER SUBMITTED_BY_CCM DATA_ACTION_CODE VID        NAME_OF_THE_V FLAG_OF_THE_V   R_NUMBER
    ------------ ---------------- ---------------- ---------- ------------- ------------- ----------
               0 cty              null             null       test1         cty                 1221
             210 cty              null             null       test2         cty               978287
    

Maybe you are looking for

  • 700 - 230ea envy: start-up, shut down &amp; to the recovery partition

    8.1 upgrade to 10 in place. It went well. However, the judgment takes very long time to complete as well as start-up (when the reason for HP on screen disappears Goes in a blank screen for a few seconds - patience is a virtue here as the kicks from W

  • Satellite L500-017 - acting erratically CPU

    I recently bought the Satellite L500-017 who has the dual-core processor Intel Pentium T4200 2.0GHz and came preloaded with Vista Home Premium. Being a buff and new XP on Vista, I wonder why my dual-core CPU is erratically? Nifty box it jump around,

  • Satellite C660 - some Web page icons do not work

    First of all please forgive me for being very naïve about the functioning of the laptop. I know a little but nothing more than how to perform analyses of virus/malware and surf the net. I have a laptop C660 - R15 (PSC0LE). I started to have problems

  • D10 BIOS AND O/S SHOWING ONLY HALF THE RAM INSTALLED

    Computor was purchased with 8 1gig chips installed. The bios and the operating system report 4 GB. When I remove the ram in slot 2, 4, 6 and 8, the bios and the o/s report 2 gig. I have cleared the cmos memory and reinstall the RAM chips. Although th

  • Error "requested attribute is not valid.

    I'm looking to get a program (and ultimately define) attributes camera with CVI. I can get the values attribute, such as ROI_WIDTH to the imgGetAttribute function, but not all and not that I really need access, which are 'Exposure time' and 'Gain val