"Submit Cancelled" appears after extracting XML

Hi All,
1) I'm trying to extact the XML of the form by using the option "Internet Email" in the SELECT EMAIL CLIENT window.
2) When i click on OK, i'm able to successfully save my XML file. But, the message "Submit Cancelled" pop up appears.
Is there any way restrict this? Or, is there any way that i could close the form automatically after clicking of OK?
PS: I can share the PDF upon demand.
Thanks,
Vijay.

Hey Iam also getting this problem..by using xdoreppb I am getting the output in excel format but not getting the data populated into that..
Please help if you have any solution

Similar Messages

  • "Submit Canceled" message appearing after clicking e-mail buttons

    On the forms I've been creating, a "Submit Canceled" message window has been appearing for users whenever they click the e-mail button on the form, although the functionality of the e-mail button works fine and does what it is supposed to do (opens the e-mail window with the proper addresses, subject, and text, no problem).
    Anyone know how to get rid of this "submit canceled" message?  A sample of one of my documents is here:
    https://acrobat.com/#d=40jQ4MZutn-BPLswgv37PA
    I'm using Acrobat 9.3, LS 8.2, and e-mail client is MS Outlook 2007.
    Thanks!

    Try this corrected file..
    https://acrobat.com/#d=NYCyBXSnCrbUHu*4PC2ApA
    I changed the control type of the button to Regular and moved the code to Click event.
    Thanks
    Srini

  • Hi this message appears after 2 hours downloading Mavericks : an error occurred while extracting files from the package "mzps4135638417199433253.pkg"

    Hi this message appears after 2 hours downloading Mavericks in App Store :
    an error occurred while extracting files from the package "mzps4135638417199433253.pkg"
    Same with "CMD + R"
    Help...

    It sounds to me like your Internal Hard Drive is failing.
    I recommend you buy a new one, that is a good candidate for replacing the old one, but install it in an External enclosure and Install a fresh Mac OS X on it from the DVD. You can boot your Mac from any attached drive.
    The new System can be used to get some work done, check your emails, and takes the pressure off resolving this immediately. You can also attempt to salvage files off the old drive if needed.
    Once things seem to be working, then move the new drive inside the computer. Failures at this point may be due to bad cable, which has been a problem in some of these MacBooks.
    Use security erase, write Zeroes, one pass, to re-write every block on the old drive. Any block discovered to be bad will be replaced with spares the drive holds in reserve for this purpose. If more than 10 blocks are pared on one pass, "Initialization Failed!" will be the result. Although you can try the erase again, there is some question whether you want to trust this drive with your precious data.

  • I've downloaded adobe after effects and now at the end of downloading it appears "errot extracting t

    I've downloaded adobe after effects and now at the end of downloading it appears "errot extracting the product installer (error 101). check for availbale disc space on your computer and try downloading the product again.  I have 193 GB of free space in my system. ????   

    We cannot know. You are not telling us anything about your system. This error usually occurs due to running out of temporary disk space in the relevant folders. Check this:
    Installation Preparations
    Important Directories
    Other than that, refer to this:
    Troubleshoot Adobe Download Assistant
    In short: Do a little housekeeping, download again.
    Mylenium

  • Cannot attach a pdf after extracting a page in Acrobat X Pro

    I have a user that wants to extract one page from a multi page pdf and then e-mail it.  He performs these steps - >
    Tools - Extract - Share - The file is not showing up in the Select Any Type of File box and the Attach to Email bubble is filled in.
    He aslo has Adobe Reader XI installed and is using Windows XP.
    Any ideas?

    Hopefully Adobe Reader is not being used to attempt this as it cannot do it.
    Now if Acrobat XI Pro is used the "click" path is Tools | Pages | Extract which will present the "Extract Pages" dialog.
    Note that there is no "share" associated with this.
    The "Extract Pages" dialog affords the user the ability to select the "from" and "to" pages, the ability to tick "Delete Pages After Extracting" and the ability to tick "Extract Pages As Separate Files".
    A similar dialog / end-user choices for Acrobat X Pro, the flavors of Acrobat 9 Pro and 8 Pro.
    It appears that some other process is in play. Could you identify it please.
    Be well...

  • Extract XML from an XML File

    Hi All,
    I have an xml file from which data has to be extracted and inserted into table. XML file looks like this..
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE labels SYSTEM "label.dtd">
    <labels FORMAT="Harvest Label for Lot Project" QUANTITY="1" PRINTERNAME="PFP3400E006" JOBNAME="JA272017">
    <label>
    <variable name= "ITEM">PM191_JTEST</variable>
    <variable name= "ITEM_DESC">6 Pack Blue Assembled 2004 JTEST</variable>
    <variable name= " LOT ">ja28-10</variable>
    <variable name= "QUANTITY">1</variable>
    </label>
    </labels>
    In the above xml, if i remove <!DOCTYPE labels SYSTEM "label.dtd"> and use the below query, I am able to get the details.
    SELECT EXTRACTVALUE(VALUE(x), 'labels/@_FORMAT') format
    ,EXTRACTVALUE(VALUE(x), 'labels/@_QUANTITY') QUANTITY
    ,EXTRACTVALUE(VALUE(x), 'labels/@_PRINTERNAME') PRINTERNAME
    ,EXTRACTVALUE(VALUE(x), 'labels/@_JOBNAME') JOBNAME
    FROM (SELECT XMLTYPE
    ('<?xml version="1.0" encoding="UTF-8" standalone="no"?> <labels FORMAT="Harvest Label for Lot Project" QUANTITY="1" PRINTERNAME="PFP3400E006" JOBNAME="JA272017"> <label> <variable name= "ITEM">PM191_JTEST</variable> <variable name= "ITEM_DESC">6 Pack Blue Assembled 2004 JTEST</variable> <variable name= " LOT ">ja28-10</variable> <variable name= "QUANTITY">1</variable> </label> </labels>' ) xml
    FROM DUAL),
    TABLE(XMLSEQUENCE(EXTRACT(xml, 'labels'))) x
    But <!DOCTYPE labels SYSTEM "label.dtd"> tag is there means then i am getting error as
    Invalid resource handle or path name "/label.dtd"
    Please let me know how we can parse the xml and insert into table. OR how can i remove <!DOCTYPE labels SYSTEM "label.dtd"> tag and process it further.
    Thanks and Regards,
    Mahesh
    Edited by: magu on Sep 2, 2009 3:15 PM
    Edited by: magu on Sep 2, 2009 3:16 PM

    I don't understand why the DOCTYPE is in the XML, but it appears that Oracle is trying to resolve label.dtd to a registered resource. As you discovered, it may be easier to remove the DOCTYPE from the XML then try to register the label.dtd resource within Oracle. To do this, some options are
    - Use the REPLACE command
    - treat the data as a CLOB and instr/substr to build a new clob without the DOCTYPE tag in it.
    - Use the REGEXP_REPLACE command
    Also, if your DB version supports XMLTable, here is the way to do it with that.
    SELECT *
      FROM XMLTABLE('/labels'
                    PASSING XMLTYPE('<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <labels _FORMAT="Harvest Label for Lot Project" _QUANTITY="1" _PRINTERNAME="PFP3400E006" _JOBNAME="JA272017">
         <label>
              <variable name="ITEM">PM191_JTEST</variable>
              <variable name="ITEM_DESC">6 Pack Blue Assembled 2004 JTEST</variable>
              <variable name=" LOT ">ja28-10</variable>
              <variable name="QUANTITY">1</variable>
         </label>
    </labels>
                    COLUMNS
                    format    VARCHAR2(15) PATH '@_FORMAT',
                    quantity  VARCHAR2(15) PATH '@_QUANTITY',
                    printername  VARCHAR2(15) PATH '@_PRINTERNAME',
                    jobname  VARCHAR2(15) PATH '@_JOBNAME');

  • New keyboard layout appeared after update - how to remove it?

    Hello community,
    I'm using two keyboard layouts RU and DE and switching them with Ctrl+Shift. After a recent update a third keyboard layout appeared - US. I checked /etc/X11/xorg.conf, /etc/hal/fdi/policy/10-keymap.fdi and /etc/rc.conf but in all of them there is no US layout. Setting everything there up for the DE and RU layout didn't help, still the US layout is in the layouts list in Gnome. If I remove it from that list, it appears after the next reboot. So how can I go rid of it?
    Here are the config files:
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "de,ru"
    Option "XkbVariant" ",winkeys"
    Option "XkbOptions" "grp:alt_shift_toggle"
    EndSection
    <?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
    <deviceinfo version="0.2">
    <device>
    <match key="info.capabilities" contains="input.keymap">
    <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>
    <match key="info.capabilities" contains="input.keys">
    <merge key="input.xkb.rules" type="string">base</merge>
    <!-- If we're using Linux, we use evdev by default (falling back to
    keyboard otherwise). -->
    <merge key="input.xkb.model" type="string">keyboard</merge>
    <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
    string="Linux">
    <merge key="input.xkb.model" type="string">evdev</merge>
    </match>
    <merge key="input.xkb.layout" type="string">de,ru</merge>
    <merge key="input.xkb.variant" type="string">nodeadkeys,winkeys</merge>
    <merge key="input.xkb.options" type="string">grp: ctrl_shift_toggle</merge>
    </match>
    </device>
    </deviceinfo>
    # /etc/rc.conf - Main Configuration for Arch Linux
    LOCALE="de_DE.utf8"
    HARDWARECLOCK="local"
    USEDIRECTISA="no"
    TIMEZONE="Europe/Berlin"
    KEYMAP="de-latin1-nodeadkeys"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    Thanks, PhotonX

    Thanks for your input, guys, I think, this issue has been already reported (quite a long time ago) which is even the top entry of the most wanted tasks: http://bugs.archlinux.org/toplevel/proj1 So the only thing we can do is to follow the comments and to hope for a fix.

  • MDMGX - After Extraction

    Hi,
    I am new for MDM Generic Extraction concept and understand the process up to generation of XSD and XML file generation. Below are the doubts in my mind. Please help me to get clear.
    1. What is the use of XSD file generation. Is it used for source template for MDM import manager?
    2. What is the use of Time out option in 'Define Repositories and FTP Server Details'.
    3. How will import generated multiple XML files into MDM server via Import Manager. For Ex
    1. Repository Fields :
    Product ID -- UNIQUE Key FIELD
    Product Desc
    Country
    Counry Description
    ISO Code
    Field1
    Field2
    2. Extracted XML files from MDMGX will be
    File1 --> Product ID & Desc
    File2 ---> Country & Country Desc (How can we upload data without key field)
    Please take the above ex or any valid examples and explain.

    Hi Rakesh,
    Below are few points to your questions.
    1. An XML Schema describes the structure of an XML document and and this schema is required so that Structure of the XML file which is generated should be in the format defined in XML Schema defined for the Import map in Console.
    2. Session Timeout Minutes (in number). It causes MDM Console, CLIX, and applications based on the new Java API to expire after the specified number of minutes elapses. Default is 14400 (24 hours).When set to 0, sessions never time out.
    3. For File1 and File2, you will need to create two Inbound Ports with Suitable Remote System along with the Import Map using Import Manager and assigning the same to these ports. And Processing Type for these Inbound Ports should be Automatic So that once the file is placed in the respective ports on FTP Server,AutoImport will be triggered and files will get Imported.
    Regards
    Gaurav K Sharma

  • "Submit cancelled" error

    Can someone please help me figure out why I keep getting a "Submit Cancelled" error when clicking the Submit button (Master Page)?
    After the preSubmit script verifies that required fields (first page only) are filled in, it should generate an email, but "Submit Cancelled" stops everything.
    Document has been posted at https://acrobat.com/#d=7Uqs6BsWpNjJzrz9k79m0g
              Thanks!              ~Carol

    Niall -
    The size of the graphic is very small, but I can take it down more, so will do that.
    But it's obvious that embedding the two fonts is the biggest culprit - I didn't realize. The end user requested a distinctive font for responses, which is why I chose Courier, which they like. I just assumed Arial and Courier were very common, as most agencies completing the form will not have many extras on their computers. What would you suggest? Or would I be safe to just stay with those two and not embed?
    Srini assisted me with the preSubmit even code to control the Subject, Message and Email addresses so I could customize the subject and message body, which is why there is nothing in the Submit to URL spot.
    So now, with no fonts embedded and (temporarily) no graphic, the form size went down from 1,983 KB to 53 KB (wow!!), but I still get the "Submit Cancelled" error message.
    The original is still at https://acrobat.com/#d=7Uqs6BsWpNjJzrz9k79m0g
    The smaller version with no fonts embedded is at https://acrobat.com/#d=XX9YGkyp81nqkitAiGQ9-w
                        Thanks (yet again)!             ~Carol

  • Hidden parameters appears after Oracle 11gR2 upgrade

    Platform: HP-UX B.11.31 U ia64
    Upgrading from: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    Upgrading to : Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Issue : There are around 130 hidden parameter appear after Oracle 11gR2 upgrade.
    Before upgrade I have commented the hidden parameters on the PFILE. PFILE only to start the database for the Oracle 11gR2 upgrade.
    Before upgrade, checking the hidden parameter:
    SQL> SELECT name,description from SYS.V$PARAMETER WHERE name LIKE '\_%' ESCAPE '\';
    optimizerextended_cursor_sharing_rel
    optimizer extended cursor sharing for relational operators
    allowlevel_without_connect_by
    allow level without connect by
    I am using client parameter file ( PFILE ) commented the hidden parameters highlighted above.
    However after successful upgrade to 11gR2, creating SPFILE from the PFILE ( commented the hidden parameters) now i am getting 132 hidden parameters.
    SQL> select count(1) from sys.V$PARAMETER where name like '\_%' escape '\';
    COUNT(1)
    132
    SQL> select name from sys.V$PARAMETER where name like '\_%' escape '\';
    name
    aggregationoptimization_settings
    alwaysanti_join
    alwayssemi_join
    andpruning_enabled
    btree_bitmap_plans
    bloomfilter_enabled
    bloomfolding_enabled
    bloompruning_enabled
    complexview_merging
    compressioncompatibility
    connectby_use_union_all
    convertset_to_join
    costequality_semi_join
    cputo_io
    dimensionskip_null
    eliminatecommon_subexpr
    enabletype_dep_selectivity
    fastfull_scan_enabled
    firstk_rows_dynamic_proration
    gbyhash_aggregation_enabled
    generalizedpruning_enabled
    globalindexpnum_filter_enabled
    gsanti_semi_join_allowed
    improvedouterjoin_card
    improvedrow_length_enabled
    indexjoin_enabled
    ksbrestart_policy_times
    leftnested_loops_random
    localcommunication_costing_enabled
    minimalstats_aggregation
    mmvquery_rewrite_enabled
    newinitial_join_orders
    newsort_cost_estimate
    nljbatching_enabled
    optimadjust_for_part_skews
    optimenhance_nnull_detection
    optimnew_default_join_sel
    optimpeek_user_binds
    optimizeradaptive_cursor_sharing
    optimizerbetter_inlist_costing
    optimizercbqt_no_size_restriction
    optimizercoalesce_subqueries
    optimizercomplex_pred_selectivity
    optimizercompute_index_stats
    optimizerconnect_by_combine_sw
    optimizerconnect_by_cost_based
    optimizerconnect_by_elim_dups
    optimizercorrect_sq_selectivity
    optimizercost_based_transformation
    optimizercost_hjsmj_multimatch
    optimizercost_model
    optimizerdim_subq_join_sel
    optimizerdistinct_agg_transform
    optimizerdistinct_elimination
    optimizerdistinct_placement
    optimizereliminate_filtering_join
    optimizerenable_density_improvements
    optimizerenable_extended_stats
    optimizerenable_table_lookup_by_nl
    optimizerenhanced_filter_push
    optimizerextend_jppd_view_types
    optimizerextended_cursor_sharing
    optimizerextended_cursor_sharing_rel
    optimizerextended_stats_usage_control
    optimizerfalse_filter_pred_pullup
    optimizerfast_access_pred_analysis
    optimizerfast_pred_transitivity
    optimizerfilter_pred_pullup
    optimizerfkr_index_cost_bias
    optimizerfull_outer_join_to_outer
    optimizergroup_by_placement
    optimizerimprove_selectivity
    optimizerinterleave_jppd
    optimizerjoin_elimination_enabled
    optimizerjoin_factorization
    optimizerjoin_order_control
    optimizerjoin_sel_sanity_check
    optimizermax_permutations
    optimizermode_force
    optimizermulti_level_push_pred
    optimizernative_full_outer_join
    optimizernew_join_card_computation
    optimizernull_aware_antijoin
    optimizeror_expansion
    optimizerorder_by_elimination_enabled
    optimizerouter_join_to_inner
    optimizerouter_to_anti_enabled
    optimizerpush_down_distinct
    optimizerpush_pred_cost_based
    optimizerrownum_bind_default
    optimizerrownum_pred_based_fkr
    optimizerskip_scan_enabled
    optimizersortmerge_join_inequality
    optimizersqu_bottomup
    optimizerstar_tran_in_with_clause
    optimizersystem_stats_usage
    optimizertable_expansion
    optimizertransitivity_retain
    optimizertry_st_before_jppd
    optimizerundo_cost_change
    optimizerunnest_corr_set_subq
    optimizerunnest_disjunctive_subq
    optimizeruse_cbqt_star_transformation
    optimizeruse_feedback
    orexpand_nvl_predicate
    orderednested_loop
    parallelbroadcast_enabled
    partitionview_enabled
    pivotimplementation_method
    prerewrite_push_pred
    predmove_around
    pushjoin_predicate
    pushjoin_union_view
    pushjoin_union_view2
    pxminus_intersect
    pxpartition_scan_enabled
    pxpwg_enabled
    pxual_serial_input
    queryrewrite_setopgrw_enable
    removeaggr_subquery
    replacevirtual_columns
    resourcemanager_plan
    rightouter_hash_enable
    selfjoinmv_duplicates
    sqlmodel_unfold_forloops
    sqltunecategory_parsed
    subquerypruning_enabled
    subquerypruning_mv_enabled
    tablescan_cost_plus_one
    unionrewrite_for_gs
    unnestsubquery
    usecolumn_stats_for_function

    I just came across a similar case: 1 (just one) of our (RAC-) databases has 130-something underscore-parameters set to non-default values.
    version is still 11.1.0.7 (e.g. not 11gR2).
    All of those hidden parameters seem to be CBO related (list on request).
    Weird is: Only one of our (very similar, supposedly same-config) databases have these hidden parameters set.
    Colleagues justly wonder: Who, When, What has caused these parameters to be expliclty set for this one system?
    Note: we do not have the complete history of this system documented (systems have been managed by 3 different parties already).
    It is quite possible they came in with some patch or upgrade (catupgr?) somewhere between 11.1.0.1 and 11.1.0.7, but a confirmation would be nice.
    Information welcome.
    System info:
    Linux hostname 2.6.18-164.9.1.el5 #1 SMP Wed Dec 9 03:27:37 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    Versions
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    5 rows selected.

  • HT1386 My iOS device (Ipad mini) only appears in iTunes while cable-connected, but does not appear after diconnect the cable. How can I Wifi sync ?

    Hi, My iOS device (Ipad mini) only appears in iTunes while cable-connected, but does not appear after diconnect the cable. How can I Wifi sync ?
    Documents say
    Whenever the computer and the iOS device are on the same network, the iOS device will appear in iTunes, and you can sync it....
    But I can't see my iPad Mini in iTunes.
    And my  Ipad  (Settings, General, iTunes Wifi Sinc)  shows  a message :" Sync will resume when xxx(my PC with iTunes) is available "...
    Both are in the same network,
      Ipad mini is is plugged in to power
    . iTunes is open on the computer
    what can i Do ???

    Hi Skydiver119,  and tks for four interest.
    I have done exactly as you say, but it does not work for me.
    You indicated  " Navigate to the info tab and scroll down. There'll be a check box for 'sync over wifi' or something to that effect. Check that box and sync to affirm your choice."
    I navigated to Summary tab (not Info Tab) and checked "Sync with this ipad over Wi-Fi"
    I disconnect the wire,
    and my iPad disappears from my iTunes screen.
    in my iPad ->Settings -> General -> iTunes Wi-Fi Sync -> says " Sync will resume when (my PC) is available.
    So, I can not sync via wi-fi
    I appreciate if you can help me.

  • E-Rec Reference Code in the Publication tab should not appear after enddate

    hi,
    There is a requirement from the client after the end date of the publication ,the reference code should not be displayed to the candidate in the Candidate page ,presently the same is manually done in the system by changing the status to withdrawn.
    Is there any way by which we can automate the process by change in customising by which the reference code does not appear after the end date
    Please provide a solution if something can be done in the standard setting or do we require any Zworkflow to be developed for the same.
    Regards
    RK

    Hi RK,
    this is nothing the standard supports.
    But I would not use a workflow here. As this is a mass handling workflow is no good idea. This is a task for a customer periodical service. Just build a class implementing the periodical service interface which gets all released publications which have a publication end in the past and status released and change their status using the cl_hrrcf_posting_inst_bl. This should be done in a couple of hours. Add the customizing and the issue is solved.
    A requirement in this context where a customer workflow is quite handy in my opinion is a customer workflow which closes all postings and withdraws released publications when you close the requisition. This reduces the steps a recruiter has to do and ensures that no candidate applies although you are already done with the requisition.
    Kind Regards
    Roman

  • Opening files with Illustrator and photoshop doesn't work, i have to drag the files from finder in to the program. This problem appears after opening 4 a 5 files.

    Opening files with Illustrator and photoshop doesn't work, i have to drag the files from finder in to the program.
    This problem appears after opening 4 a 5 files, rebooting helps another 4 a 5 times and appears again.

    I'd recommend reposting in the Boot Camp forum, that is where the Boot Camp and Windows gurus hang out.
    Good luck.

  • There is always a blue screen appears after the Apple logo during the booting process. And then everything is back to normal. What is this thing? Is there something wrong with my screen or something?

    There is always a blue screen appears after the Apple logo during the booting process. And then everything is back to normal. What is this thing? Is there something wrong with my screen or something?

    Nah - that's just the normal boot process.
    Clinton

  • TS1541 a blue screen appears after a gray screen with the logo and the spinning gear

    start up problem...a blue screen appears after the gray screen and the spinning gear

    Try using Disk Utility to do a Disk Repair, as shown in this link, while booted up on your install disk. You could have some directory corruption. Let us know what errors Disk Repair reports and if DU was able to repair them. This could just be a start in repairs and you may need a better utility to finish the job.
    Then Repair Permissions.
    No need to report any Permissions errors........we all get them.
       DALE

Maybe you are looking for

  • Asset Accounting

    Assets are uploaded on 1st March 2007.  Depreciation Start Date is 1st March 2007.  We have run the depreciation upto October 2007.  Version 4.7.  Fiscal Year variant is K4 (Jan to Dec). Now, the requirement is for around 200 assets - we want to redu

  • How do i get photos from finder to iPhoto

    I copied a bunch of photos from a key into finder.  but I can't get them into iPhoto.  how do I do that?

  • Start up problems after MBP fall

    My MacBook Pro (MacBook Pro 15.3" 2.8 GHz Intel Core 2 Duo, Mid 2009) had a small corner dent after I fell and my padded bag swang and hit the ground. As soon as I got to my office the Mac started fine and worked for a whole day without problems. The

  • IDoc created with status 03 checked via we02, but couldnt find in XI

    Hi all:     Could you please do me a  favor?  implement a idoc to idoc issue. it has been created successfully . as It is found that the idoc created with status of 03 - data dispatched to  port ok (rather than 12 dispatch ok). however, I couldn't fi

  • Concat Operation failing.[Error ORABPEL-10039]: invalid xpath expression

    Hi , I am trying to concat two values which are as mentioned below concat(bpws:getVariableData('paramsVar','/ns7:parameters/ns7:item[ns7:name='ContractNumber']/ns7:value'),bpws:getVariableData('AccumilateEmail','/ns1:AccumilatePLAContracts/ns1:Accumi