Dynamically assign email submission target based on form content

We need to be able to assign the email target on a given form dynamically based on user selection out of a pre-defined set - drop-down.  Currently, you can only target the submissions to an email manually entered into the email field or have a separate form for each unique email submission target.
We have a branch-office model company and each office interacting with a given form is going to need some things on that form to change based on which office the person filling out the form is with.
Thanks.

Thanks Randy.
Say we had an Agent Sales Information Form online in our intranet/portal - embeded, and it was visable by 20 branch offices.  When a user fills out the form it needs to go to a single central office person as well as the administrative assistant and manager in the specific branch office that the user (form filler) is based out of.
Example:
Agent Sales Information Form
--> user selects 'I'm with Office A' from the drop-down menu --> form needs to go to: Central Office, Admin Assistant in Office A, Manager in Office A
--> user selects 'I'm with Office B' from the drop-down menu --> form needs to go to: Central Office, Admin Assistant in Office B, Manager in Office B
In FormsCentral I can put an email field on the form and direct the form submission to that email address or I can share a given form with a pre-defined set of people.  What I can't do is have a single form with a drop-down menu for which branch office that user (form filler) is from and change the people the form submits to based on that choice.  Having the users manually enter the email addresses of the people the form needs to be submitted to is a deal breaker.
While we're at it, other things on my list for an embeddable paperless forms solution:
- user can print the form -- automatically on submission or by 'print button' on the form
- user can download pdf copy of the form
- user can save a form for later completion (across browser sessions)
- upload pictures and have them display on the form (not just as attachments)
- API functionality to allow fields to be auto-populated with data from another system (eliminating the office selection drop-down menu in this example -- our portal knows what office the logged-in user is from and can tell the form if it would listen )
Thanks Randy.  I appreciate your taking a look at this for me. 

Similar Messages

  • Dynamic element binding between XML based PDF form and WDA context

    Hi Experts,
    I am working on a XML based interactive form.There is a table node in the XML interface which generated by WDA context, and binding on a subform in the PDF form.
    I tried to add instances to the subform using javascript. Unfortunately, I can not get the internal table in WDA.
    If I initialize the table to 10 lines in WDA , and then add 5 line to it in PDF, when I submit the PDF, I can only get 10 lines in the WDA framework. It seems that the element which is create dynamically can not be past to the interface.
    Could you tell me why? And is there any other better solution? I just want build a table in PDF form in runtime and pass it to WDA context.
    Thanks a lot!
    Best Regards,
    Guo Guo Qing

    Hi Thomas,
    Thank you for your reply.
    I think the performance will be a problem if I create the elment in WDA using submit event. I need to create hundreds of record dynamically. I must find some way to reduce the communication between the WDA and PDF form. Maybe I can set a container with a number of elements before the PDF output. Do you have some better ideas?
    Best Regards,
    Guo Guo Qing

  • Dynamically assigning Catalogs (or customer based catalogs)

    Hi,
    If we want every Business One customer (business partners records of type 'C') his own set of Items to purchase, what are the options if we want to avoid having to maintain multiple themes?
    In other words, catalogs are assigned to themes, which are assigned to customers.
    However themes are much more than a simple catalog. They may involve more maintenance as well (e.g. modifying the content of an html slot).
    What are the workarounds to this limitation?
    Thanks
    Charles

    Hi Stephen,
    The reason why I was asking this is that this need seems to be kind of recurring from one client to another.
    We work with you guys on some of our cases (in which I believe you are personally involved) so for at least one of them (2000 members requiring their own custom part list), I believe you (at V33) will custom code.
    As to the datasource to use to get the part list per client, my colleague here (which you already know) came up with the idea of simply using the past invoice history as a source.
    Could therefore be a simple DTS that populates a custom table on the B1Webtools database based on a Query ran over the SBO database.
    Thanks Stephen for your input. Appreciated.
    Charles

  • Create a filename based on form content

    Hello,
    I always have a hard time explaining my question's but here goes.
    I have a button which saves a form once filled out. I would like to take the thinking out of this when it comes to naming the file and it create the name based on a numerical field in the form (in this case a serial number). The example would be something like 00000_Inspection Form.pdf. I am certain this can be done with  javascript but not being a programmer, I have no idea where to begin with this. I have a variable set up but no idea how to act upon it.
    thanks in advance.
    Brad

    Hi
    try this syntax
    Sum(HrsWorked)/(Count(Payperiod) In Report)
    Regards,
    Stratos

  • Resizing Accordian based on the content in each component within in it.

    Hi,
    I wanted to know whether is there a way to resize Accordion
    component based on the content in the present tab.In my Accordion I
    am using four Canvas as its four children.The data in each of the
    canvas changes based on the Accordian tab selected. I want to
    dynamically resize the entire accordion based on the content in the
    canvas for that tab.
    In short the height of the Accordion need to change
    dynamically based on the tab selected. I have tried using the
    resizeToContent property but this didn't solve the problem.
    Thanks,
    amar.

    Hi,
    We can resize it.Always give the height and weight in
    percentage format. and turn off the horizontal n vertical scroll
    policy in u r main application.
    Hopes it helps you...

  • EMail Submit button with mailto: based on form data

    Based on form data, I would like to have an email button that sends mail to the email address identified in the email field. Obviously this can change, how would one go about programming a button to send to email based on field data?
    Thx...
    /cw

    Hi Chris,
    Yes this can be easily done. I gathered the following solutions from various threads and so I am not claiming any originality here...
    Set up a textfield "Email", with a tooltip telling users to separate email addresses with a ";".
    Next set up a regular button with the following Javascript in the click event:
    var email = xfa.resolveNode("form1.#subform.Email").rawValue;
    var subject = "Specify your subject line here"
    event.target.submitForm({cURL:"mailto: "+ email +"?subject=" + subject +"&body=You can also input some standard text to appear in the body of the email.",cSubmitAs:"PDF",cCharset:"utf-8"});
    You might want to put an if statement that if the "Email" textfield is blank/null that an app.alert comes up informing the user to input at least one email address.
    We took it a stage further on one of our forms. We set up three checkboxes with people's names who are regularly sent the form (nod and cc1 and cc2) and then a textfield "additional" for additional addresses.
    Each checkbox had an associated Textfield (EM1_email, cc1_email, and cc2_email) that were invisible. Each checkbox had similar Javascript in the mouse up event:
    if (this.rawValue == 0) {
    EM1_email.rawValue = null;
    else {
    EM1_email.rawValue = "[email protected];";
    Then we set up another invisible textfield (Email) which had the following Formcalc in the calculate event:
    if (nod.rawValue == 0 & cc1.rawValue == 0 & cc2.rawValue == 0) then
    $ = null
    else
    $ = Concat(EM1_email, cc1_email, cc2_email, additional)
    endif
    This basically pulled the email addresses from the ticked checkboxes and the additional user inputted email addresses into one text field. From there the regular button with the script above send the email. This speeded up the process for regular reciptents.
    If you search the forum for topics such as cURL:"mailto: you should see lots of other examples.
    Good luck,
    Niall

  • How to dynamically assign Display Pattern using FormCalc in Adobe PDF Form

    I am using Adobe PDF Form Designer. I am trying to dynamically assign a display pattern like MM/DD/YYYY to the Field tab - Display Pattern property. May I know how to do that?
    I am using FormCalc scripting.

    hi,
    After placing the date field in layout from data view, u will get tabs like field,layout,border etc..
    In field tab under the edit pattern specify the pattern in which you want to display the date field.
    hope this works.
    Reward points if helpful.

  • Can you dynamically change an LOV on the parameter form based on other params?

    Can you dynamically change an LOV on the parameter form based on other parameters? For example, based on a entered purchase order number, create an LOV of the purchase order lines that belong to the entered PO #.

    Hi
    Accouding to my knoledge you can't do it.
    If you want to build lov for that particular
    value, you can do it in Forms.
    Vijay

  • Form email submission with limited locked fields

    Hello,
    I've been reading through forum after forum and piece-mealing together what I need isn't working.  I'm COMPLETELY unexperienced with any kind of JavaScript changes or additions to forms in Adobe (I do not have or use LiveCycle), so I'm struggling a bit.  I have a lot of relatively complex forms, but only complex in how many different fields/types of fields.  So, what I need is this:
    Form #1:
    I need to create a submit button at the bottom of the form that will do two things:
    Lock all editable fields
    Email the locked PDF (preferably without having to be saved and then attached to an email)
    Submit button should disappear
    Form #2:
    Different individuals need to complete different sections of the form, but there are no signature fields.  Here's the order of what I need to happen after the first person completes their sections and clicks a "submit" button:
    Specific fields (not all) need to be locked
    The form needs to attached to an email (without having to save and then attach)
    Submit button needs to disappear
    After the receivers (Persons 2 and 3) complete the final field it needs to lock and email to the final person in the chain.
    (For clarity; the final field is a field that will be text, and will not be able to be completed without all the other information)
    If someone could assist me with the specific script, as well as confirm what selections I need to make for the button (ie Mouse Up, Mouse Enter, etc.) and other fields that control locking, that would be tremendously helpful.  Thank you.

    Check if you have any hidden fields on the form which are required..
    If not, some how the disabled may not be working as expected..
    If you still have issues, you can send your form to [email protected] so I can have a look at it..
    Thanks
    Srini

  • Dynamically creating a Record Group based on Previously entered Record Grou

    Forms [32 Bit] Version 10.1.2.3.0 (Production)
    Hi,
    I know how to dynamically create a record group based on a query and putting the code in When new form instance.
    My query is. I have a form which has multiple Record Groups and the user wants to dynamically create subsequent groups based on previous groups.
    For example
    I have a record group with selects a Location,
    when the user selects the Location from a list of values
    the 2nd record group called 'Cost Centres' will have to filter out only those with the locations selected above.
    How can I populate the 2nd record group at run-time when I do not know what site the user will select?
    If I simply populate in when new form instance as in location and just select everything, the list of values populates.
    CC field is a LIST ITEM and the list style is a POP LIST, it is not required.
    I have put the code in the Location field in the when-list-changed trigger.
    I am getting this error:
    frm-41337: cannot populate the list from the record group
    here is the code:
    DECLARE
    v_recsql Varchar2(1000); -- The SQL for creating the Record Group.
    v_recgrp RecordGroup; -- Record Group
    v_status Number; -- Return Value of Populate_Group function.
    c_where VARCHAR2(1000);
    BEGIN
         IF :location = '1' THEN
              c_where := ' substr(cost_centre,1,2) in (''01'',''02'')';
         ELSIF :location  = '2' THEN
              c_where := ' substr(cost_centre,1,2) in (''02'',''03'')';
         ELSIF :location   = '3' THEN
              c_where := ' substr(cost_centre,1,2) in (''01'',''11'',''07'')';
                   ELSE
              c_where :=  ' 1=1'; --EVERYTHING
         END IF;
    v_recsql := 'SELECT cost_centre, description  FROM   cost_centres  where '||c_where;
    -- Create the Record Group
    v_recgrp := CREATE_GROUP_FROM_QUERY('v_recgrp', v_recsql);
    IF NOT ID_NULL(v_recgrp)
    THEN -- No Error, record group has been successfully created.
    -- Populate Record Group
    v_status := POPULATE_GROUP('v_recgrp');
    IF v_status = 0
    THEN -- No Error. Record Group has been Populated.
    POPULATE_LIST('block.CC', 'v_recgrp');
    END IF; -- IF v_status = 0
    -- Delete the Record Group as it is no longer needed.
    DELETE_GROUP('v_recgrp');
    END IF; -- IF NOT ID_NULL(v_recgrp)
    END;thanks for your assistance.

    Hi,
    Once record status gets change for block you can not populate/repopulate the list item. Keep those list items as non-database item with different names and create different items as database orignal items. Than assign the values in WHEN-LIST-CHANGE trigger to the actual database items.
    -Ammad

  • Is it possible to use logic rules to manage email submission receipts?

    Is it possible to use logic rules to manage email submission receipts?
    I have one form and based on the user's selection I want to manage which email submission receipt gets sent to that specific user.
    Is this at all possible?
    Please ask for clarification if I am not making sense.

    It should be no problem since the Audio Kontrol 1 is Core Audio compatible. This has nothing to do with VST's.
    In doubt contact Native Instruments support.
    Fox

  • Dynamically Assigning Users

    Hi,
    I am trying to dynamically assign users within my process and need some guidance with it. The following two steps briefly describe what I am trying to achieve
    1. A user starts the process by filling in data into the PDF and completes the task.
    2. Based on the information filled in by the first user, I have to determine who the user for the next task is going to be and then assign the task to the user accordingly.
    I do not have the option of using multiple assign task operations and then setting the logic within the route evaluation, as there are way too many users that can be assigned for the second task ( there are more the 50 possible users from which the second user has to be selected )
    I am fairly new to Livecycle and from the options that I have seen so far, here are few questions that I need some help with
    1. The only option within the Assign Task operation that lets you assign the user dynamically is by using an XPath expression. If I were to use this, should I be embedding the logic within the form itself and then use the XPath expression to find the user by dynamically updating the form after the first user completes the task?
    2. Is there another approach to achieve this other than having the logic for selecting the user defined in the form itself? I believe embedding the logic in the form might not be a good idea as it can have performance implications and also having user information in the form itself doesnt seem right.
    3. Is there an operation that I could use, which would contain the logic that I would need to determine the next user and then assign the task to the user based on the result of the operation?
    I am hoping someone would have definitely run into this situation before so any suggestions/thoughts will be appreciated.
    Thanks,
    Varma

    "1. The only option within the Assign Task operation that lets you assign the user dynamically is by using an XPath expression."
    Yes
    "If I were to use this, should I be embedding the logic within the form itself and then use the XPath expression to find the user by dynamically updating the form after the first user completes the task?"
    I depends. If you can get to it server side, it woulb probably better. If you need to make a change to something, you don't want to change the form.
    "Is there another approach to achieve this other than having the logic for selecting the user defined in the form itself?"
    I'm not sure where the logic for the next user is located, but you could make a database or web service call from the process to get the next user instead.
    "I believe embedding the logic in the form might not be a good idea as it can have performance implications and also having user information in the form itself doesn't seem right."
    I agree.
    "Is there an operation that I could use, which would contain the logic that I would need to determine the next user and then assign the task to the user based on the result of the operation?"
    Again, I need a bit more info as to where the info (logic) is located.
    Jasmin

  • Assign a role automatically based on resources assigned to the user?OIM 11g

    Hi,!
    i have a request and this is:
    in my scenario i have roles associated with access policies that assign resources .
    i have resources assigned by a target reconciliation ... what i need is assign a role based on resources that the user has..
    if the user has 4 resources added by a target reconciliation and these 4 resources make a role then the role has to be assigned automatically...
    any idea?? this is possible?? thnx..

    any idea?? ... this is possible??

  • How to add a link/url to the the task assignment email body?

    Hi,
    I'm currently creating a SharePoint 2013 workflow by using visual studio 2013.
    in the workflow I assign tasks to multiple users by making use of the CompositeTask workflow activity.
    I would like to add a ling to the task form in the body of the assignment email. 
    When using the SingleTask workflow, the output of the activity provides a task item ID which can be used when construction a link/url to the task edit form, but there is no such output.
    How can I add a link to the task form in the body of the email?
    Thanks in advance

    Found this link just after I posted my question:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.workflowservices.activities.taskemailtokens_fields.aspx
    It has a bunch of tokens you can use inside the body of the emails

  • How do I edit Send button designated email address on a web form in Dreamweaver CS6?

    I have a webform on our website for folks requesting information. There is a country button which folks select. The send button submits the form and there is some script somewhere that sends submissions from say a USA based enquirer to a USA email address, UK based enquirer to a UK address, etc. How can I edit the script that controls that function? I am a newbie in CS6 but am learning fast!

    Hi Fritz
    In the source code I have:
    <td height="30" colspan="2"><div align="center">
                      <input type="submit" value="Send" />
                  </div></td>
                </tr>
              </table>
            </form>
    If I click on </form> in Properties the action box shows an asp file /gdform.asp on the root. I opened that and it has no site specific info, i.e. my URL or any email address.
    The webform can be viewed on www.aboutmeco.org/opportunities/index.html   Ther you see the Send button is at the bottom of the webform, which corresponds to the source code.   Do you think I am looking at the right form tag?
    Stephen

Maybe you are looking for