Setting Exclusion Group to Required in FormCalc or Javascript

Hi
I am looking for the syntax to toggle an Exclusion Group to required or optional
For regular text fields I am using field.validate.nulltest="error"  or field.validate.nulltest="disabled" however for the exclusion groups thats not working.
HELP
Suggestions?
Meir

Hi
Thanks for your response. It seems the code was ok the problem was that the behaviour of the exclusion groups is different depending on Version and wheter the form is static or dynamic.
Again thanks for your response
Regards
Meir

Similar Messages

  • Condition Exclusion group for Conditions

    Hi Gurus,
    Can we set up  C Exclusion group when two condition types having different calculation.
    1st condiion tyep- Condition class- Price and Calculation type is Quanity and
    2nd condition Type -Condition class-Discount and Calculation type is Percentage.
    Now i need to set exclusion group between this condition when 1st is active the 2nd should be deactiave. if calculation type is changed how system will react?
    Regards,
    Seegal

    Hi ,
    I think you have assigned the ZD01 and ZD02 condition type to the condition exclusion group.
    you have given the best between the conditions. so i think ZD01 discount value is more then the ZD02. so the system picked up the Zd01,
    Thank
    Kuntla

  • Layering radio button exclusion groups

    I would like to create a table using radio buttons, where the heading row is one exclusion group, and the two rows below it are two more exclusion groups.
    Then, I would like each column underneath the heading to be a separate mini exclusion group.
    Finally, for whichever button is selected in the heading row, I would like only the mini exclusion group directly beneath it to be able to be used.
    Is this even possible, or can radio buttons only belong to one group at a time?
    Shoshana

    The script isn't too complicated. The problem is that you have to get around the fact that Acrobat will always let a form with a radio button group flagged as mandatory be submitted regardless of whether a radio button within the group has been selected prior to submission.
    You can do this by using two buttons: The first is a regular (non-submitting) button while the second is the actual email submit button. The catch is that the real email submit button is hidden (it can't be seen on the form, nor can it be clicked on by the user).
    The first step, which isn't really necessary but would be good practice, would be to mark the radio button group which contains the radio buttons as being mandatory. You can do this by selecting any of the radio buttons in the group which should be mandatory, going to the Object palette and setting the Type property to
    User Entered - Required. This will have the effect of Acrobat being able to highlight the radio buttons in red if the user chooses to "Highlight required fields" when filling the form.
    The second step is setting-up the two buttons. This step is identical to the second step described in the following thread (about making a check box mandatory for email submission):
    Mandatory check box before form submission. Have a look at the first reply to the thread. You should start reading at the paragraph that begins with, "The second part..."
    The script checks that the value of the check box is "1". Your script would simply check that the radio button group's rawValue property isn't an empty string.
    Stefan
    Adobe Systems

  • How to set up Group Policy without any server installed

    How to set up Group Policy on Win8 without any server installed?
    I have set up 50 users on LAN and want to push softwares via one common point. From google I found to deploy Software using Group Policy. But then Group Policy occurs in Servers and I don't have any server set up.

    Hello,
    a Domain requires at least one Windows server OS machine which has Active Directory installed.
    As previous already mentioned from SenneVL this also requires that computers are added to the domain and that you create user accounts in Active Directory users and computers which stores the account information in the Active directory database.
    In your case with single computers each machine has its own database(SAM) which stores passwords etc. this is different in a domain.
    Each computer has a local policy which will be overwritten from centrally managed policies from the domain.
    "The common point would be my PC (Admin PC) ."
    This machine can not be used for your needs with software installation for 50 computers.
    "How To Use the Group Policy Editor to Manage Local Computer Policy."
    This is about the local machine and you cannot manage them for other computers from your Admin PC.
    "DOMAIN part: By default Microsoft takes everyone on Workgroup. Is that not a default DOMAIN? or should I make one lets say "ABC" on every PC ?"
    NO, this is NOT a domain.
    http://windows.microsoft.com/en-us/windows7/what-is-the-difference-between-a-domain-a-workgroup-and-a-homegroup
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • How to Use Switch Statement with Exclusion Group (radio buttons)?

    Wouldn't you know, just when I though I'd really be making progress, I've come across another problem I can't solve. In a homeowners insurance application I am building, there is an exclusion group that needs to set the value of several variables
    I have setup in the form properties/variables. These variables take on different values depending on the users choice.  For the exclusion group, in the object pallet, I have set the binding to normal, and have checked the "Specify Item Values" check box. Also the values for the choices have been assigned 1,2,3,4,5.
    Here is my code for the change event fir the exclusion group (This is exactly what I have tried). For now, the values for the variables to take on in the different cases, are completely arbitrary.
    switch (this.change.rawValue)              // I have tried so many things here
        case "1":                                        // I have tried the caption, single quotes in all combinations
            addLivingExp = "1";
            damageOthersProperty = "2";
            liabilityIncl = "3";
            maxCoverage = "4";
            minCoverage = "5";
            persProperty = "6";
            relatedPrivateStruct = "7";
            break;
        case "2":    
            addLivingExp = "10";
            damageOthersProperty = "20";
            liabilityIncl = "30";
            maxCoverage = "40";
            minCoverage = "50";
            persProperty = "60"
            relatedPrivateStruct = "70";
            break;
        case "3":    
            addLivingExp = "100";
            damageOthersProperty = "200";
            liabilityIncl = "300";
            maxCoverage = "400";
            minCoverage = "500";
            persProperty = "600"
            relatedPrivateStruct = "700";
            break;
        case "4":    
            addLivingExp = "1000";
            damageOthersProperty = "2000";
            liabilityIncl = "3000";
            maxCoverage = "4000";
            minCoverage = "5000";
            persProperty = "6000"
            relatedPrivateStruct = "7000";
            break;   
        case "5":    
            addLivingExp = "10000";
            damageOthersProperty = "20000";
            liabilityIncl = "30000";
            maxCoverage = "40000";
            minCoverage = "50000";
            persProperty = "60000"
            relatedPrivateStruct = "70000";
            break;   
        default:   
            minCoverage= 5;   
            break;
    There must be something obvious I am missing? Eternally grateful for advice on this.
    Stephen

    There are two issues in this script:
    1. You are not using the accessor 'value' to set form variables
    2. You are not correctly getting the value of the radio button list in the switch clause
    Please see the working script below.
    Ben Walsh
    www.avoka.com
    switch (this.rawValue) 
        case "1":                                       
            addLivingExp.value                  = "1";
            damageOthersProperty.value   = "2";
            liabilityIncl.value                      = "3";
            maxCoverage.value                 = "4";
            minCoverage.value                  = "5";
            persProperty.value                  = "6";
            relatedPrivateStruct.value        = "7";
            break;
        case "2":   
            addLivingExp.value                  = "10";
            damageOthersProperty.value   = "20";
            liabilityIncl.value                     = "30";
            maxCoverage.value                 = "40";
            minCoverage.value                  = "50";
            persProperty.value                  = "60"
            relatedPrivateStruct.value        = "70";
            break;
        case "3":   
            addLivingExp.value                 = "100";
            damageOthersProperty.value   = "200";
            liabilityIncl.value                     = "300";
            maxCoverage.value                 = "400";
            minCoverage.value                  = "500";
            persProperty.value                  = "600"
            relatedPrivateStruct.value        = "700";
            break;
        case "4":   
            addLivingExp.value                  = "1000";
            damageOthersProperty.value   = "2000";
            liabilityIncl.value                      = "3000";
            maxCoverage.value                 = "4000";
            minCoverage.value                  = "5000";
            persProperty.value                  = "6000"
            relatedPrivateStruct.value        = "7000";
            break; 
        case "5":   
            addLivingExp.value                  = "10000";
            damageOthersProperty.value   = "20000";
            liabilityIncl.value                      = "30000";
            maxCoverage.value                 = "40000";
            minCoverage.value                  = "50000";
            persProperty.value                  = "60000"
            relatedPrivateStruct.value        = "70000";
            break; 
        default:  
            minCoverage.value                 = 5;  
            break;

  • Validate empty exclusion group

    I have an exclusion group with an on empty message set. I have a print button with the following javascript code to check if any field with an empty  message isn’t set:
      var txt = topmostSubform.execValidate();
        if (txt == true){
        xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 1, 0, 0, 0);
    I have noticed that even if I select a radio button from the exclusión group I can’t printand shows the empty message for that field.
    I am using Adobe LiveCycle Designer 8.0 and Adobe Acrobat 8.0 Professional to view.

    Hi,Seems to work for me as I understand the problem, can you share the form, (maybe Acrobat.com, Google docs, ...) and post a link in this thread?

  • Exclusion Groups

    Is it possible to create an exclusion group using check boxes instead of radio buttons?
    I need to provide boxes on a form which can be filled (for example) Yes or No, but also need to be able to return the field to null in case it has been clicked inadvertently. (so for example if "yes" is selected, clicking on "yes" again sets that field to null without switching on the "no" field).
    While I can achieve this using the action builder, each check box has a separate field name in the database, and I need both boxes to be the same field, like when using a radio button exclusion group.
    If I create an exclusion group containing radio buttons, I can't seem to be able to switch off all the answers when filling the form.
    I'm sure I'm missing something really simple...but any help gratefully received!
    Many thanks...horrorhound

    Hi,
    I would be inclined to stick with radio buttons for mutually exclusive selections.
    There is an example here where the script in the click event of the radio button exclusion group, so that if the user is holding the Shift key, the selection is cleared. http://assure.ly/j1KdNq.
    Another example demonstrates script that looks at the initial value of the radio button exclusion group and if it is already selected, it will deselect: http://assure.ly/kp60nk.
    You can also use script to force a group of checkboxes to behave as mutually exclusive, but as you point out you end up with separate objects.
    Hope that helps,
    Niall

  • Grouping material requirements of Bottom level WBS

    We are stucked on material requirement planning
    We are assigning the various BOM to level 3 WBS and taking MRP on it  thru MD51.
    The final product which includes all BOMs at bottom level is assigned to level 2 WBS.But while running MRP on level 2 WBS system regenerates the requirements which already part of bottom level BOM. I want to avoid it.
    How shuld I achieve this ?
    Rgds

    Hi Shrikrishna,
                                Strictly speaking the way MD51 is creating demand is correct, its working right. Now coming to your scenario, lets take an example which can assist understand your scenario.
    Step 1:
    I create following materials 
    1 FERT material
    1 HALB material
    1 RAW material
    Step 2:
    I create BOM     HALB --> RAW
                            FERT --> HALB
    Step 3:
    Create routing and assign work centre and activities
    Step 4:
                FERT is your final material.
    Step 5:
                Lets create a project "Projectest" with following structure or requirements
    Project test
    > WBS1  <Set the grouping indicator in WBS basic tab to one 1 Grouping WBS element for all materials>
                      --> IWBS < Individual WBS >
                             -->  Network
                                  --> Cost element
                                       --> FERT < Your final assembly >
                                               5 EA
    Step 6:
                   Run MD51 on Project with 1,3,3,1
                                   You will get replenishments created as below
                                         RAW --> 1 PR --> for procurement of 5 EA
                                         HALB --> 1 PO --> for production of 5 EA
                                         FERT  --> 1 PO --> for Production of 5 EA
    Only one PR,PO's are created since we have set the grouping indicator in Level one WBS there by reduce the number of repleninshment elements created.
    Step 7:
                  Get the RAW into stock (GR 101 Q --> Mvt type)
    Step 8:
                 Create the Production order with ref to Planned order for HALB
                 Issue the stock of RAW to HALB( 261 Q)
                 Confirm the production order
    Step 9:
                 Create the Production order with ref to Planned order for FERT
                 Issue the stock of HALB to FERT (261 Q)
                 Confirm the production order
    By this you will complete the entire cycle.
    In you scenario there is lot of duplications that can be avoided if you try implementing this scenario.
    I hope this example will help fix your issue.
    <<Rewad Poins if Usefull>>
    Thanks and Kind Regards
    Mohan
    Edited by: Mohan Kumar K on Sep 16, 2008 9:03 AM

  • Set persistent group

    I'm trying to setup a share on my Snow Leopard server that always sets the group of a file or folder to "acct" whenever one is created with the group's permissions set to read/write.
    The shared drive is installed in the Xserve (the Xserve is running Snow Leopard 10.6.1). The volume name is "Accounting" and I want the whole thing shared with the "acct" group. I have already created the group and added users to it.
    I went into Server Admin and:
    1. selected the "File Sharing" service icon at the top
    2. highlighted the "Accounting" drive listed under Volumes
    3. clicked the "Share" button
    4. selected the "Permissions" tab and added the "acct" group under ACL to allow Read & Write with "Applies To" set as "This folder, Child folders, Child files, All descendants"
    5. set the group under POSIX to "acct" and allowed "Read & Write". It does not appear that the "Applies To" under POSIX can be set to anything other than the default "This folder" setting. Also under POSIX I left the owner as "root" (that was the default) with read/write, but changed "Others" to "No Access".
    I believe I am on the right path because every file and folder that gets created on it has the group set to "acct"; however, the permissions do not get set to rw- for the group. Instead, no matter what I try, the group permissions come out r-x for folders and r-- for files.
    Is there a way to set the permissions to always be rw- for the group for all files and folders created in the future?
    Thanks in advance for any help. Also, feel free to RTFM-me with the name of the documentation and page number if it is in the documentation and I simply have missed it.

    Hi,
    Setup groups are used in the Production Planning and Detailed Scheduling in SAP APO as mentioned below :-
    For single resources the setup group characterizes the setup status required for processing an operation.
    The system can use a setup matrix during detailed scheduling to adjust the setup time for an operation according to the sequence of operations or during setup optimization to define the optimal sequence of operations. Setup keys are used to provide a more detailed classification of setup statuses within a setup group.
    For multiresources the setup group characterizes any particular characteristic of an operation, for example, the temperature at which an operation is carried out. The system can synchronize operations with the same characteristic and the same duration, that is, it can plan them simultaneously on one resource.
    Setup group and setup matrix in APO are location dependant.
    /sapapo/cdpsc6 -> selection of setup groups
    /sapapo/cdpsc7 -> Select setup matrix
    Hope this is will help.

  • HCM F&P - How to set the field as Required based on drop down values

    Hi Experts,
    I have a requirement to set the Date field as mandatory when a particular value is selected in drop down list. I have already tried with MessageBox though it displays the error message but process moves further i.e. on clicking Check & Send button it throws an error message but still it moves further and i can see only Send button. Ideally it should halt there itself.
    Thanks & Regards,
    Jitesh Talreja

    Thanks for your valuable inputs
    Chintan
    I have already tried this. It only highlight the field with the red border but still allow to move further.
    Mukesh
    Yes, we can definately control this from the backend but that would be the last option i should execute. Ideally, this is something to be controlled in front end itself
    Poornima
    By setting the field attrbiute Required will set the field mandatory as a whole irrespective of drop down values or any other UI element.
    Regards,
    Jitesh Talreja

  • Not able to set security group without mail enabled as site collection admin using powershell in sharepoint online site - office 365

    not able to set security group without mail enabled as site collection admin using powershell in sharepoint online site - office 365?
    Any idea?

    after few days test in my lab, I can see that only email enabled group can be added as site collection admin using POWERSHELL.
    hope this helps who stuck like me!! :-)

  • How can I set up group contacts on my IPad Air?

    HOw can I set up group contacts on my IPad Air?

    I Don't know if you can or not.
    but you could try one if these 2 things:
    -under a new contact in name type the names of the people. Next, I'm not sure if this will work, but for phone just put a different hone down.
    -Also tou could just make a group message. In messages just type all the names in the to field after you tap compose.

  • How to set security group as primary site collection admin and secondary site collection admin using powershell in sharepoint online site - office 365?

    How to set security group as primary site collection admin and secondary site collection admin using powershell in sharepoint online site - office 365?

    Hi,
    According to your description, my understanding is that you want to set security group as admin of primary and secondary site collection using PowerShell command in office 365.
    I suggest you can use the command below to set the group to site owner, then it will have the site collection admin permission.
    Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -Owner [email protected] -NoWait
    Here are some detailed articles for your reference:
    https://technet.microsoft.com/en-us/library/fp161394(v=office.15)
    http://blogs.realdolmen.com/experts/2013/08/16/managing-sharepoint-online-with-powershell/
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • How to set a group by clause in ODI interface?

    How to set a group by clause in ODI interface?

    In ODI, group by method will be triggered automatically when any one of your mapping contains aggregate functions.
    Thanks,
    Saravanan Rajavel

  • Managing a set of documents that require approval, for each project stage

    Good day to all,
    I am new to SharePoint but I have dived in head first due to my job.
    The users I am dealing with need a solution where they can upload a specific set of named document types (example: project charter, site plan, schedule, costing approval, designs) but all documents will be scanned to PDF before being uploaded. Every stage
    will have its own set of documents with the same named document types. Each document has to be checked and the approved.
    I know I can use a workflow for the check and approve part.
    What I don't know is how to create a "blank" document set for uploading PDF files. In other words, I envisioned that I would have a document set of sorts where I can enter common information such as the Project Number, and the Project stage, and
    then I would have multiple upload fields that are named by the types above (project charter, site plan, etc.) so that the users will know exactly what documents are needed to complete the document set.
    Can anyone assist me in find a solution?
    Thanks and best regards.

    Hello,
    One thing to note is that the document set content type in SharePoint is analogous to a folder; you don't specify upload fields on the document set, but users can upload any number of documents to the set once it is created. You can have fields of information
    on the document set, and different fields of information on the documents within the set.
    With that in mind, the best way to accomplish what you're looking for may be to have columns on the document set that indicate which required documents have been uploaded.
    Document Set content type columns:
    Project Number (text)
    Project Stage (choice)
    Project Charter Complete (yes/no)
    Site Plan Complete (yes/no)
    Schedule Complete (yes/no)
    Costing Approval Complete (yes/no)
    Designs Complete(yes/no)
    Document content type columns:
    Document type (choice)
    It can either be a manual step so that when a user uploads a document, they then mark the corresponding yes/no checkbox, or it could be automated with a workflow.

Maybe you are looking for

  • Issue with Dashboard customization in OBIEE 11G

    Hi All, I have a dashboard page with 1 prompt and 4 sections. My need is to show all sections minimized when a user logs in to the analytics. So as a Admin I have minimized all sections and saved the customization for others as Default customization.

  • External services moved, but SOA suite still gives "no route to host"

    We have a SOA Suite integrating towards external services. The external service provider moved the services to a different server, and updated dns entries to reflect this move. But our SOA Suite gave "no route to host" errors when this move was perfo

  • Buying iBook clamshell w/ OS 10.3 Panther

    This question is for people with iBook clamshells, however anyone who has run or is running Panther 10.3 on any mac please chime in. I'm seriously considering getting an iBook clamshell, used of course. Unfortunately, I don't have a lot of time to do

  • Making moving eyes in java

    i have been trying to make a java applet in which: there is a circle as an eye (using the drawOval()) and then there is an eyeball (using the fillOval()) the eyeball is supposed to follow the movements of the mouse cursor... and i m not able think of

  • UWL - System doesnt support multiple tasks assignment for the same assignee

    Hi all, we have some tasks coming from our back- end system. When a certain task needs to be substituted to a colleague, no problem ... for one task. When we wish to assign him a second task, we get following message : <i>System does not support mult