Create form with inside functions

Hello members,
i want to create a simple invoice form which has the adressline in the head, the positions in the middle and a footer with summary lines.
Like an invoice.
I have search several days in all forums, but i haven't found a simple explanation, how to use the printing options with printer friendly pages.
Could anyone help for this ?
I have found to create a report, which can marked with "printing = Yes" and then several tabs opens to modify the paper width and so on.
But how to place some information in the header ?
How to place some information in the footer
How will i get a page break, when the positions are more than one page ?
How it is working with these kind of simple printing forms ?
Thank you for help with a simple "how to" document !
Regards
Frank
Edited by: handwerk.net on 16.12.2010 17:28

To do an invoice you will either need to:
1) Work with XSL-FO to format your output so that FOP/Cocoon can format your output properly
2) Get a copy of BI Publisher, take one of the existing templates and modify the layout to your requirements.
3) Get a copy of pl/pdf, and hand generate your layout..
My suggestion here is BI Publisher, since it has a Word based template editor you can use.. However it is rather pricey.. Less you are hosting with a 3rd part hosting company, I know of one that charges $50 a month to host apex apps and offers BI Publisher..
Thank you,
Tony Miller
Webster, TX
What if you really were stalking a paranoid schizophrenic... Would they know?

Similar Messages

  • Form with Folder Functionality and Tab Pages

    Refering here the original link to increase the visibility:
    Apps Form with Folder Functionality and Tab Pages

    DT1977,
    In your referenced post, you indicate that you are trying to create an "APPS Form". Perhaps, you should post your question to the Enterprise Business Suite (EBS) forums. This forum is for non-EBS Forms questions.
    Craig...

  • Excel import to create forms with pre-populated fileds

    Can/how do I create forms with pre-populated fields from an external data source like Excel?  Example:  I would like to create 100 forms with pre-populated name fields from an Excel document containing 100 names.  

    Hi,
    Sorry, we don't currently support creating forms with pre-filled data.
    Regards,
    Brian

  • Creating forms with dreamweaver

    Hi i'm new to the forum.
    I need help with a certain aspect in creating forms.  The company I work for is running Dreamweaver MX 2004.  We have an online application form that we have create to collect data for people wishing to join our Club.  In one section of the form we ask for peoples vehicle details.  My question is when they choose what type of vehicle they own from the drop down menu I then want the next section of the form to expand to reveal a new section for them to be able to fill in their vehicle description such as Year, Make, Model etc.  We have 7 different vehicle types for them to choose from.  so depedning on which one you choose a different vehicle description will be revealed.
    Can anyone help me with this?  I have seen it done on other website such as insurance companies but I don't know if it can be done through dreamweaver.

    Let me try to answer this on a broader level.
    Prepeare your complete form and make the property visibility as hidden (or display style as none) for the fields you don't want to show.
    Now say you select any option out of vehicle description drop down, for example 'Sedan', then your drop down will have a javascript function call which will be fired onChange event ...something like  onchange=javascript:vehicletype(this.value)
    <select name="test" id="test" onchange="vehicletype()">
              <option value="sedan">Sedan</option>
    and hidden fields example:
    <input type="text" name="sss" id="sss"  style="visibility:hidden" />
    Now in the vehicletype() function check for the value passed.Based on that set the visibilty to visible  for the required form fields inside the function. Following is a small page to show you all. Just save this as a html page and then try.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <title>Stretched Background Image</title>
    <script type="text/javascript">
    function vehicletype(type){
        if (type=='sedan'){
        alert(type);
        document.getElementById('sss').style.visibility='visible';
    </script>
    </head>
    <body>
        <div id="page-background">
          <form id="form1" name="form1" method="post" action="">
            <p>
              <label for="hhh"></label>
              <select name="hhh" id="hhh" onchange="javascript:vehicletype(this.value);">
                <option value="Select">---Select---</option>
                <option value="sedan">sedan</option>
                <option value="coupe">coupe</option>
              </select>
            </p>
            <p>
              <label for="sss"></label>
              <input type="text" name="sss" id="sss"  style="visibility:hidden" />
            </p>
          </form>
    </div>
    </body>
    </html>
    Hope this gives you some idea of what I am tryint to convey.
    Regards,
    Vinay

  • Form with webutil functions. How identify if user is using native internet

    Hello,
    I have one form with some webutil functions. How can i identify if a user is using the form with native internet explorer?
    If a user with jinitiator use the forms, its ok, but when a user use native internet explorer, he gets error orcle.forms.webutil.fileTransfer bean not found. WEBUTIL_FILE_TRANSFER.getMaxTransfer will not work.
    When the user use internet explorer native, I want disable the webutil function before generate a file on the application server and then download to a client machine.
    Im using Forms10g and Forms10gR2.
    Thanks

    do you have two different config-sections for the two modes?
    If so, you could either place a different value for each one in the otherparams-tag and read that at runtime, or use a different env-fiel and set some variable with different values for each config in there and read it via TOOL_ENV.

  • Creating form with user uploaded image (not attachment)

    Is it possible to create a form with a space for user uploaded image?  Not attachment.
    Thank You

    This is not supported by FormsCentral.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Form with inside a TabNavigator with FormItems

    I have a Form that inside has a TabNavigator with differents tabs containing different FormItems, so the form is only one but the various FormItems are subdivided in different tabs.
    The form works good but the FormItems inside the TabNavigator have bad alignment while the FormItems outside the tabs are ok.
    Anyone has any tips to fix it? (code follows)
    <mx:Form defaultButton="{btn}">
         // good align
         <mx:FormItem label="Name">
              <mx:TextInput />
         </mx:FormItem>
         <mx:TabNavigator>
              <mx:VBox label="TAB 1">
                   // bad align
                   <mx:FormItem label="Item in TAB 1" direction="horizontal">
                        <mx:RadioButtonGroup id="rb1" />
                        <mx:RadioButton groupName="rb1" label="N" value="0" />
                        <mx:RadioButton groupName="rb1" label="Y" value="1" />
                   </mx:FormItem>
              </mx:VBox>
              <mx:VBox label="TAB 2">
                   // bad align
                   <mx:FormItem label="Item in TAB 2" direction="horizontal">
                        <mx:RadioButtonGroup id="rb2" />
                        <mx:RadioButton groupName="rb2" label="N" value="0" />
                        <mx:RadioButton groupName="rb2" label="Y" value="1" />
                   </mx:FormItem>
              </mx:VBox>
         </mx:TabNavigator>
         <mx:ControlBar>
              <mx:Button id="btn" /> 
         </mx:ControlBar>
    </mx:Form>

    I've tried inserting textAlign in tabNavigator, formItems and VBoxes but the align of the formItems inside the tabnavigator still on the left. Any suggestion?

  • Create forms with out being logged into planning

    This may appear as a dimb questio. Besides building an xml webform via planning, using an lcm to import the xml, or using the defutilform utility does any know of there is a way to build a web form in excel and import that to planning?
    If you have any information please respond.

    The only way you can import forms from outside planning are building the formats used for the import tools such as LCM or formdef utility, you cannot build a form in excel and send it to planning as there is no way to save the right xml or txt definition from there for the import tools.
    Some users sometimes confuse adhoc forms on a planning or essbase connection with planning forms and therefore think that they have "built a planning form" in excel when setting up adhoc, but this definition only resides in their excel sheet and there is no way to turn this into a fully fledged planning form, they are two different formats of datainput.
    However a user with adhoc designer privileges can create adhoc grids and save these definitions to make them available to others. These adhoc grids will reside on the planning server, but they should not be confused with forms as they do not have the full form functionality such as asociated rules, run on save etc.
    Agnete

  • Create forms with objects embedded (photos, docs, etc)

    Hi gurus,
    I am designing a solution for a client on EH&S, and I am searching for some ideas.
    The solution have 3 stages:
    1- Adding an User Exit at "Acc/Inc Log Entry" (Trx. CBIH82) to upload all the docs related to a specific Entry Log such as PDF, photos, documents, Medical documents, etc.
    2- Create a form for Log Entries that can have all the info of one entry, with all the extra docs uploaded at stage 1 attached, and that can be send by email to the persons responsables to take care of the entries.
    For example, I am thinking that implementing a new tab on the transaction to upload all the documents by type will be easy, but don't know where this files will be stored and how to obtain them.
    For the form, I think that I can use Smartformt, and then convert it to PDF, but don't know how to retrieve all the file uploaded at stage 1, and how can I attach them.
    If someone did some solution like this, no matter is no relative to EH&S will also be a great help.
    Thanks in advanced!

    Howard Pettigrew1 wrote:
    under Safari, Activity shows an error message that starts - 'An SSL error has occurred and a secure connection to docs.google.com can't be made'
    See
    <http://support.apple.com/kb/HT2900>
    The problem is Parental Control's Internet content filter. It blocks all https requests:
    https note: For websites that use SSL encryption (the URL will usually begin with https), the Internet content filter is unable to examine the encrypted content of the page. For this reason, encrypted websites must be explicitly allowed using the Always Allow list. Encrypted websites that are not on the Always Allow list will be blocked by the automatic Internet content filter.
    You need to set it up explicitly to allow it, as described in the Apple KB doc I quoted.

  • How to compile and creat JAR with native function

    Hi there,
    I wrote some native function for J2ME. But it seems like using J2ME wireless Toolkits, we can not compile native function. Is it right?
    Is anyone knowing how to compile and make JAR with J2MEWTK or command line?
    Thanks,
    Merry Christmas!!

    [zack327],
    JNI like or native interfaces APIs is not supported in the CLDC/MID Profile 1.0 specification. If you have J2ME code that includes JNI code, the J2MEWTK tool will not compile successfully for you.
    To package the compiled code to a MIDlet suite .jar file, use the 'Package' command in the J2MEWTK toolkit. It is found on the top menu bar 'Project' option as item on the dropdown list.
    To package the MIDlets into a MIDlet suite .jar file from the command line, you can execute the usual jar file command:
    jar cf MyMIDletSuite.jar Midlet.class
    You will also need to create a MIDlet .jad Application Descriptor file as well.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Need Help creating form with checkboxes

    I am using Acrobat Standar 9, and I am trying to create a form that has a bunch of checkboxes on it.  First off, the PDF that I am workin with (before I try to input form stuff) is a check list that has spots for marking (if it was printed out).  Acrobat will recognize all of those places as spots for a form tool, but it always inserts textboxes.  I want it to insert check boxes.  So far all I can do is delete all of the textboxes that were inserted and manually, one by one, insert check boxes in all of the locations.
    Is there a way to make the wizard input checkboxes instead of text boxes?  If not with the wizard, is there any way to do that?  (I am not familier with programming languages.. fyi)
    thanks

    Thanks for getting back to me. What I have is a pricing page. The feedback form is so we can see who views or is interested in services. We want only people who fill out this form to be able to view it. I have created simple contact forms that are sent to an email and directed to another page. The problem I am having is trying to figure a way to where hopefully if the same person comes back they won't have to fill out the form again. I know if they fill out the form and create a user name/login it could be a possible fix but I am trying to make it simple. I am just starting to learn PHP/XML (which I have copied from another sources) and haven't written my own. Maybe creating a cookie that is checked once the page is loaded? I have no idea how to do that either though... I am a front end "designer" and a lot of this is greek to me.

  • Using Adobe Form with SRM Functionality.

    Hi Friends,
    Our client wants to achieve the total functionality of SRM Purchase Order and Shopping cart through Adobe Form.I would like to know if any of you have come across such a scenario where Adobe Form has been used to replicate SRM purchase Order and Shopping Cart functionality.
    It would be a great help to us if you kindly share your experience of the above scenarios.
    Thanks in advance.
    Best Regards,
    Koushik

    Note 1264423 - Customizing for print forms in SRM 7.0
    Summary
    Symptom
    New functionality/Enhancements provided in SRM 7.0 for print forms is only
    available in the SAP Interactive forms by ADobe and is not available in
    Smartforms delivered by SRM.
    More Terms
    PDF based forms, ADB, Adobe forms, Confirmation, BBP_CONF_ADB, SAP
    Interactive forms by Adobe, Output, SRM-EBP-CA-PRT, SRM-EBP-CGS
    Cause and Prerequisites
    All new enhancements or functionalities are supported only in SAP
    Interactive forms by Adobe which is delivered as part of the SRM 7.0. The
    Smartforms deliverd in previous verions would not have any new enhancements
    from SRM 7.0.
    So it is recommended to use the new SAP interactive forms By Adobe instead
    of the Smartforms for print and output in SRM 7.0.
    Solution
    The customizing required to switch to the new SAP interactive forms by
    Adobe are described avaiable as part of the customization documentation
    againt the IMG entries for Output:
    the documentation and the respecitive customizing can be accesed in the
    following manner:
    Step 1:
    Goto transaction SPRO -> SAP Reference IMG -> SAP Supplier relationship
    Management -> SRM Server -> Cross Application basic settings -> Set output
    Actions and output Format -> Define Actions for Document output.
    maintain the action defentions for all purchasing documents for which the
    new forms are intended to be used in the above mentioned customizing.
    Save the customizing
    Step 2:
    Goto transaction SPRO -> SAP Reference IMG -> SAP Supplier relationship
    Management -> SRM Server -> Cross Application basic settings -> Set output
    Actions and output Format -> Condition-Dependent Document Output.
    maintain the conditions for output for all purchasing documents for which
    the new forms are intended to be used in the above mentioned customizing.
    Save the customizing.
    For more details on each of the above mentioned steps access the
    corresponding documentation againt the respective customizing entry in
    SPRO.
    Release Status: Released for Customer
    Released on: 30.10.2008 11:23:10
    Priority: Recommendations/additional info
    Category: Customizing
    Main Component SRM-EBP-CA-PRT Document Output / Forms
    Valid Releases
    Software Component Release From
    Release
    To Release and Following
    SRM_SERVER 700 700 700
    regards
    Muthu

  • How to create Form with LOV in JDeveloer9i?

    Forms Builder 9i use Data Block Wizard and Layout Wizard to define a form and LOV Wizard to define List of Values from master table.
    How can I define LOV for foreign key of a Base Table using JDeveloper9i?

    Check out the JClient demos at:
    http://otn.oracle.com/products/jdev/viewlets/viewlet.html
    There is one for JClient LOVs which may be useful.
    regards
    Grant Ronald
    JDeveloper Product Management

  • Is it possible to populate readOnly text box(es) on a FIM 2010 R2 RCDC User create form with the details of the logged in user?

    Hello
    I am curious if this can be done. I guess its a Person object I need to fetch, but how can I refer to it?
    What would the XPath look like?
    *HH

    Thankyou for the response. Yes indeed those environment variables are documented, but how to use them is not.
    Very Hard to use. I just wanted to show the Requester information on the User Create and Edit rcdc screens.
    I could only get the UocListView control to work though, but it is sufficient, like so:
            <my:Control my:Name="CurrentUser" my:TypeName="UocListView" my:ExpandArea="true" my:Caption="Requester">
            <my:Properties>
                <my:Property my:Name="ColumnsToDisplay" my:Value="DisplayName,Email,OrganizationalUnit" />
                <my:Property my:Name="EmptyResultText" my:Value="" />
                <my:Property my:Name="PageSize" my:Value="1"/>
                <my:Property my:Name="ShowTitleBar" my:Value="true" />
                <my:Property my:Name="ShowActionBar" my:Value="false" />
                <my:Property my:Name="ShowPreview" my:Value="false" />
                <my:Property my:Name="ShowSearchControl" my:Value="false" />
                <my:Property my:Name="EnableSelection" my:Value="false" />
                <my:Property my:Name="SingleSelection" my:Value="false" />
                <my:Property my:Name="ItemClickBehavior" my:Value="Server" />
                <my:Property my:Name="ListFilter" my:Value="/Person[ObjectID='%LoginID%']" />
            </my:Properties>
            </my:Control>
    This gives me a nice 3 column display of the current Requester's Name, Email and Unit.

  • Form with onchange function

    I want to give option like pay by credit card or check.
    If one select credit card in select option it opens credit card related form inputs/Check than check related form inputs before submiting form.
    I would start like
    <cfform action"" method=""Post>
    <cfselect name="paymenttype" query="test" display="paymenttype" value="paymenttype">
    <option value ="other">Other</>
    </select>
    <cfif form.paymenttype = "Credit Card">
    <cfinput type="Test" name="creditcomp">
    <cfelseif form.paymenttype = "check">
    <cfinput type="text" name="bankinfo">
    </cfif>
    <input type="submit" value="Submit"></cfform>
    I belive I need to use Java script onChange event but I never did Java script before, can any one help me on it?
    I have been using cfcase and submiting form at each and than made session variable to generate appropriate result but now I wanrt to do some change.

    For learning js, I recommend the book, Teach Yourself Javascript in 24 Hours.  It's how I learned.  There are also tutorials on webmonkey.
    For what you are trying to do specifcally, I would put the credit card and bank stuff in separate divs and use js to show and hide them.  Google "javascript show hide"  to find code samples.

Maybe you are looking for

  • How do you change the format of glossary terms?

    I have entered a number of terms in my glossary, along with the definitions. When I preview the book on my iPad, the definitions come up when i touch them, but the box has white text on a white background. How do I change the formatting of the defini

  • Gps maps in E71

    I am trying to use my maps GPS but my phone keeps telling me I'm in Russia when in fact I'm in UAE ( So's the phone ) How do I get it to recognise the place it's living.

  • How to get the class name and field name dynamically

    Hi I have a class (ex: Contract) the fields (ex : a,b,c) .i need to get the class name and field name dynamically ex if( validation file for the field Contract.a){ return contract.a; }else if(validation file for the field Contract.b){ return contract

  • Create another object using the same container generated by a split...

    Hi SapGears! I'm facing a problem about creating an object using a splited container. I split the container A in containers A1 and A2 and create alv in A1 and html in A1. After that, i need to create a toolbar buttons using the class cl_gui_toolbar i

  • Hi need help error 1418

    my ipod says error 1418 i tried to format it in tunes and it stops. the error says 1418. can you guys help me with this> ? can my ipod be fixed? i tried formatting it 3x and same thing comes up error 1418 thanks very much