PDF Proposal, Ala Carte Items, with a Grand Total Automatically Generated

I need to create a proposal containing check boxes so a client can choose projects ala carte and see a grand total for his selections at the bottom.  I am using acrobat x pro.  I am a novice, and don’t even know where to write a javascript, or how to assign a value to the check boxes. Thank you for your help.

Courtney Wilkins,
For future reference, the proper Adobe Forum to post such questions is the
LiveCycle Designer ES forum.
Have a look at the "Purchase Order -- Dynamic Interactive" sample that ships with Designer. You'll find it in the following folder:
{Designer_install_location}\{version}\EN\Samples\Forms\Purchase Order\Dynamic Interactive\Forms
It's a great example of a dynamic table with various sums.
As for the "item number", I'm assuming you mean the row index. If that's the case, then lets say you have a cell in your repeatable table row named "RowIndex" which is a text field. Also assuming you're running Designer 8.0 or later, you would add the following script to the row's IndexChange event (in JavaScript):
RowIndex.rawValue = (this.index + 1) + ".";
For more info, you could try the following posts and comments on my blog:
Calculate Scripts and
Instance Manager Object Reference.
Stefan
Adobe Systems
More answers at
Stefan Cameron on Forms.

Similar Messages

  • First Line item not picked up in Automatically generated PR from Sales Ordr

    Hi,
    I am  creating Third party PO, concevrted from Qutation-SalesOrder -automatic PR to PO.
    In the  Purchase Request which is automatically generated in background skips first line item of SO.
    How to avoid this? This is happening to all PRs in Production server.
    Please try to give solution,
    Thanks & Regards
    Ajay.

    Hi,
    Check the requirement type in sales order.
    If sales order sepecific PR creatation means, Material Strategy group shoud be 26 in MAR view 3 in Material master.
    check the Material master maintained in Plant..
    Check the delvering Plant mention in sales view in material master.
    Thanks,
    Kumar Arcot

  • 2 Shopping Cart items with same item number

    Hi experts,
    We are facing a problem I never heared before : a shopping cart has been created with total of 51 items in SRM but some of them have the same item number in BBP_PD (2 items nr 16, 17...).
    For example, the 2 items nr 16 have a different Guid, only 1 entry in status section (I113 => OK), 2 entries in Partner section (vendor, requester, receiver, ship-to & site => OK), 2 entries in organization section, only 1 entry in item link section, 2 entries in concract section, 2 entries in account assignment section.
    Functionnally, these 2 items are not on the same article (even product categories are different).
    The problem now is that only one of the 2 items has been transfered to the backend, the other item has status "approved" but no "follow-on document created".
    The only thing diffrent from another SC is that this SC has been put on hold before being ordered (status I1009 is inactive).
    I didn't found any note on this problem, we are user SRM5.5 SP6 with classical scenario.
    I heared about a maximum item number in SC but I think in SRM5 there is no limitation, at least not less than 99 items.
    Thanks in advance for your help!
    Best regards,
    Benjamin

    Hi,
    please try to process the Held SB ,backend document will be created. since Creation of Shopping cart is in WEB processing of time take more normally .I think you can create a line item of
    999 line in SB because in backend SAP R/3 it will allow only 999 line items
    G.Ganesh Kumar

  • "To Do" items with deadline dates as an input to iCal

    I like the list of To Do's on the left hand side of the iCal window, but it would be more useful if the To Do items with specific due dates would show up in the calendar on the date the To Do is due to be completed.
    Is there a way for the To Do items with due dates to automatically be posted directly into the calendar on the dates the items are due for completion? If so, how do I do that?
    Appreciate any help or guidance on the organizing of To Do items in general.

    AllegroMac wrote:
    I like the list of To Do's on the left hand side of the iCal window, but it would be more useful if the To Do items with specific due dates would show up in the calendar on the date the To Do is due to be completed.
    Is there a way for the To Do items with due dates to automatically be posted directly into the calendar on the dates the items are due for completion?
    no, there is no way to do that. what you can do is set up alarms for your to dos that send you an email or display a popup around the time they are due.

  • Grand Total on Count Distinct - Crosstab

    Hello
    I use Discoverer 9.0.2.39.01.
    On a crosstab layout: the data point is a count distinct item ,
    I use Grand total at bottom and also Grand total at right.
    Both totals are displayed correct but the cell combining between them is blank.
    The join between the two tables is one to one and I use NVL on the count distinct item. how can I overcome the problem and cuase th blank cell to display the result of both totals?

    I'd just reiterate a couple of things to try.
    1. reverse the join - I realize you mentioned it seems to work for simple total, but this has to be one of the most popular errors
    2. check for NULLs in the data (ie: to_number(NVL(item, '0')), etc.
    If still not working, then logically, what would be causing a count of distinct items not to display (ie: NULL would explain it as I would think the COUNT would screw up with not knowing how to handle a NULL).
    By why count(item) would work and count_distinct(item) wouldn't is an interesting problem.
    Russ

  • Valid Scrypt for Grand Total

    I have created an expanding table, using the following link:
    http://forms.stefcameron.com/2009/02/25/expandable-table-with-totals/
    (instructions shown below)
    However, I have been unsuccessful with the Grand Total value. As shown in the picture below, the rest of the totals show but the Grand Total remains blank. I must include the Installation fee (marked by the check box)
    This is the last step needed to complete my form, I would really appreciate all the help i can receive.
    Thank you!

    Row1[x] (where x is an integer) is the name and subscript for your rows. In the example, Stef (if that's his real name) used Item as the name for his rows. In your form, you are using Row1. So, each row is named Row1[0], Row1[1], Row1[2], etc... Inside of each Row1, you have a text field called "Total." Since you're using formCalc, you are summing the total of those rows using Row1[*].Total. So, if you haven't changed anything else, you should (at the very least) be able to sum the rows in the grand total box using
    $.rawValue = Sum(Row1[*].Total)
    Now, the checkbox is a different story. The checkbox has an "on" value and an "off" value. We can use that in formCalc to more easily add it to the value that we're going to get for the grand total. If you set the "on" value to 300 (I included an illustration of that in my first picture), then you can use the name of the checkbox to get your total. If the checkbox is checked or "on", then the on value (300 in my example) gets added to the total, and if it's unchecked or "off", then the off value (0 in my example) gets added. The checkbox also has to have it's name correct. In my example it's called CheckBox1, in your code you have Installation. So, whatever you named the checkbox needs to go at the end of the formula we're using like so.
    $.rawValue = Sum(Row1[*].Total) + Installation
    If you named your checkbox something else, then you'll need to change the word "Installation" to whatever the checkbox is named. (The name is in the hierarchy tree.)

  • Grand total conditional formatting

    Hi gurus,
    I have a problem with the grand total conditional formatting. The grand total is not conditionally format it as do the other elements of the pivot. I have read other posts on the forum and other sites on the advice of workaround to get the grand total formatted conditionally.
    Like this:
    http://www.clearpeaks.com/blog/oracle-bi-ee-11g/grand-total-conditional-formatting-in-pivot-tables
    or
    http://gerardnico.com/wiki/dat/obiee/answer_xml
    But the answers is in error:
    DXE compiler error. No table 'GTGT' found in DXE. Source name: DxeAPI. XML: None
    Error details
    Codici di errore: YV3KVTDM
    Location: saw.hypercube.dxeApi, saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool.socketrpcserver, saw.threads
    I'm use the version obiee 11.1.1.6.2
    Someone can give me some advice on how to conditionally format the grand total
    Thanks in advance
    Christian

    Hello;
    Im facing exactly the same issue. Did you find any workaround ?
    Thanks in advance
    niko

  • Cross Tab Grand Total Out Of Line When Exporting to Excel Data Only

    Does anyone have a solution to this issue:
    Setting up a cross tab report with a grand-total field at the end of it and exporting to Excel Data Only format, moves the grand total values one column to the right of where the should be.
    eg:
    Company    Month    Revenue    Total
    Acme       200710   1000.00    1000.00
    Indigo     200710   2000.00    2000.00
    Total                          3000.00   3000.00
    Thanx for any input - looks better in fixed font.
    the 2nd 3000.00 appears to the right of the Total column and not under it

    Post Author: swat
    CA Forum: Exporting
    Hi,
    Of what i gather from ur scenario...this is what i did in one of my reports.
    I had to use two subreports and they had to occupy one cell each, in line with other fields.
    To obtain that,all the fields required in the subreport i put them into a text box.Therein restricting the fields to the txt box only...
    Then import that sub-report as it is.
    It worked for me....
    try out...
    All this only if've understood u right...

  • I created a 5x7 postcard document in Word with text boxes and graphics.  When I converted it to PDF, some of the items were missing, even though they were in the boundaries of the page and looked fine on the Word document.  What happened, and how do I fix

    I created a 5x7 postcard document in Word with text boxes and graphics.  When I converted it to PDF, some of the items were missing, even though they were in the boundaries of the page and looked fine on the Word document.  What happened, and how do I fix it?  I'm trying to upload the PDF version to Vistaprint.  Thanks.

    Reader doesn’t create pdf files. You can use Acrobat (ask in that forum) to create pdfs. You can subscribe to the Adobe PDF Pack which has a create pdf functionality (please ask in that forum), or you can use a third party utility such as ghostscript, cutepdf, or Microsoft’s own PDF creation capability. For third party pdf creation you will need to ask in a forum dedicated to that software as fellow users of Reader are unlikely to have the knowledge to help.

  • Delete proposed items with billed quantity 0 in VF01

    Hi,
    We need to delete from the proposed items to invoice the items with billed quantity 0. The lines with this quantity = 0 have not to be showed so we need to delete the items just when the items are proposed. Do you know any way to do that? The user exits we have found, like userexit_fill_vbrk_vbrp, are not usefull because are executed before the append is done to the table XVBRP.
    Thank you,
    Manel

    This should be done in COPY CONTROL. Please sit with your functional counterpart to identify which copy control routine is currently being used. Next, in VOFM, copy this routine to a new routine (new routine # should be between 601 to 900) and adjust your new routine per your requirements.
    Raj

  • Add a new tab with customer fields to shopping cart item

    Hello Experts,
    I wanted some help in adding a new tab to shopping cart items. I went through some posts and found ways of doing it using some spro settings, but there is no way i can handle the field type in this.
    I want a customer field which is a checkbox, how would i add this?
    Moreover if i use spro the tab will by default be called as "Table Extensions" , i want to give it a specific name.
    In case i am adding a new webdynpro component , how would i go ahead with this? what is the name of the fpm config where i need to add my customer webdynpro component?
    So could someone please help me with this requirement.
    Regards,
    cruiser

    Hello,
    Please follow below steps,
    1.  Appending the fields to the structure in Se11 i.e INCL_EEW_PD_ITEM_CST_SC
    x = header, item
    y = PO,SC
    2.  SAP SRM->SRM server-> Cross-Application Basic setting ->extension and field controls->create a  table extension and supply with data->define customer table extension .( ZAINCL_EEW_PD_ITEM_CST_SC)
    3.  Set the visibility of  table extension thru control table extension and their fields and actions
        use configure  visibility of table like item enchancements
    Bus. Object Set Type  : TICUS
    Bus. Object Type         :BUS2121
    Transaction Type        :SHC
    PDO set exist   :X
    4. Configure Control of Fields of Table Extensions
    Bus. Object Set Type : TICUS
    Structure Field Name : Field name
    Bus. Object Type       :BUS2121
    Set Level                   : ITEM
    Field visible: X
    Field Enable: X
    5. Configure control action
    6. Maintain  view /SAPSRM/V_MDFSBC_DEFAULT
    Bus. Object Set Type : TICUS
    Structure Field Name : Field name
    Bus. Object Type       :BUS2121
    Set Level                   : ITEM
    Field visible: X
    Field Enable: X
    Regards,
    Neelima

  • Limit S Cart Page cannot be displayed error after line item with attament

    Dear great supporters.........
    I have an issue with Value Limit shopping cart sir....
    I have seen post on forum.But my issue is little different.Adding multiple limit items fails with error.
    creating Value limit SC with one item with  attachment,after that again iam trying to add one more item,immediately
    Upon this, your are kicked out with error message: 500 SAP Internal Server Error
    ERROR: Buffer table not up to date (termination: RABAX_STATE)
    1) Create first limit item
    2) Add attachment
    3) Create 2nd limit item
    4)Immediately kicked of system.
    Edited by: informationtechnology on Nov 20, 2010 8:46 PM

    Shive...good one..!!
    One thing that you can do if you don't wanna have PPR, is to validate date column in fire action event in CO in process form request, and raise an error if you don't find appropriate format or null , as per your requirement.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Add Item "With Free Description" in shopping cart

    Hello Everyone,
    We have the following requirement in SRM 7.0.
    During creation of a Shopping cart, we use "Add Item with Free description" to add a new item
    When we click "Add Item with Free description" a pop up appears, and in this pop we needs to be updated with a new field called Supplier Product Number which is already available as a standard field in Item Data Tab of shopping cart when we click on Details button.
    Requirement is that, customer wants to enter this Supplier Product Number in this pop up screen along with item details, rather than entering it at item data tab. Could anybody suggest me the steps how to achieve this and also once the Supplier Product Number is entered in the Add Item with free description Pop up screen, it need to be synced and should appear in Item Data tab of shopping cart.
    Regards,
    Venkat

    Hi Venkat,
    This would require modification of the guided application framework view V_SC_DOFC_I_DESCRIBE to add a new field to the Window, please then check the WD ABAP Documentaiton for details on mapping this new field name to the supplier part number in the shopping cart, I would suggest however to simply fill it in after the fact, the pop up is designed to provide the minimum amount of information required to create the shopping cart, as supplier part number is not a required field in SRM, it is not available in this view. See below for details of the modification point:
    Application: /SAPSRM/WDA_L_FPM_GAF
    Web Dynpro Component: /SAPSRM/WDC_DODC_SC_I_DES
    Window Information: IV_L_FPC_POPUP
    View Information: V_SC_DOFC_I_DESCRIBE
    Configuration ID: /SAPSRM/WDCC_SC_I_DES_WIZARD
    Regards
    Jason

  • Shopping cart created with one line item with qty 10  . PR need to be creat

    Hi gurus
    1SC created for  ONE LINE ITEM with QTY  10
    PR need to be created with  10 LINE ITEMS with Qty 1.
    Classic Scanario
    Advise .
    2.Also please let me know  what the batch jobs for  delta  ( user data or HR data) upload. To upload all user changed data synchonization job
    3.Also please let me know what is the batch job for  escalation emails for approvals
    SD

    close not answered

  • I am trying to create a print ready PDF from a word file with unacceptable results.

    I am trying to create a print ready PDF from a word file with unacceptable results.
    The word file has a trim size of 6” x 9”. It has been set to mirror margins with the inner, top and bottom margins set to 0.75”, the outer margin is set to 0.5” and the gutter to 0.14”.
    It doesn’t matter if I create the PDF from inside Word, or open Acrobat Pro 11.0.9 and click Create From File, while the resulting document size is correct and the odd numbered pages reflect the correct margins, the even numbered pages do not. This results in some text near the outer margin, as well as the page numbers being omitted.
    Does anyone know how to correct this?
    I just noticed that some of the odd numbered pages' text is also cropped. Apparently Acrobat is refusing to set side margins to smaller than 1" (@ 3cm).

    I'm away from my printer, so I'll try it later. Even so, the proposed test is irrelevant. I operate a small publishing house and am trying to upload certain novels to Ingram, the largest book distributor in the world. The specifications I've set are the specifications they've asked for. Since they've said that the results I'm obtaining are unacceptable, and since they demand submission in PDF form, this renders Acrobat Pro for Mac completely unacceptable for anyone in the publication industry. As far as I can tell, Adobe has a serious bug here that it needs to fix—and at once.

Maybe you are looking for