How to setup a purchase discount on my web form?

How to setup a purchase discount on my web form? I use adobe form central and my wix web page only allow me to insert ready host form URL.

Hi,
  I believe you want to embed a form on your web page.  Please take a look at this link, http://forums.adobe.com/docs/DOC-1991 and see if it works with your web page.  I am not familiar with wix websites tools, but if after trying it out with the instructions on how to embed the form, and does not work, maybe you can provide the FormsCentral web form URL on your web page.  Your end users visit your web page, click on the web form URL link and the form will open in a new browser.
To get the FormsCentral web form URL, open the form, go to Distribute Tab / Web Form sub-tab and select "Copy Link", then paste the link on your web html page.
If you want to set up your form to work with PayPal for payment transaction, please see this link: http://forums.adobe.com/docs/DOC-1632
Hope this helps,
Thanks,
Lucia

Similar Messages

  • Discount codes for web forms

    Question:
    I have been using two web forms to allow access to a secure zone. Of them, one is for the trial user access and another is for the paid user access.
    The problem is: Can I use discount codes for the secure zone access? I can't see the way of integrating eCommerce discount codes with web forms.
    Answer:
    Discount codes don't actually work with secure zone access since you have to accept payment through web forms. However, I hired an outside developer to write some code for me, which I don't mind sharing:
    Put this in the Head of your document:
    <script type="text/javascript">
    function refreshAmountToCharge() {
    var frm = document.forms[0];
    var defaultAmountToCharge = 100;
    var couponCode = "ABC123"; // A tribute to Michael Jackson...
    var percentOff = 50;
    var couponCode2 = "DISCOUNT2";
    var percentOff2 = 67;
    var couponCode3 = "DISCOUNT3";
    var percentOff3 = 99;
    var couponCode4 = "DISCOUNT4";
    var percentOff4 = 75;
    /* Fixed amount coupon c*/
    var fixedCouponCode1 = "FIXED1";
    var fixedAmount1 = 20.00;
    var fixedCouponCode2 = "FIXED2";
    var fixedAmount2 = 6.00;
    var fixedCouponCode3 = "FIXED3";
    var fixedAmount3 = 7.00;
    var amountToCharge = defaultAmountToCharge.toFixed(2);
    if (frm.couponCode.value.toUpperCase() == couponCode)
      amountToCharge = (defaultAmountToCharge - (defaultAmountToCharge * percentOff / 100)).toFixed(2);
    else if (frm.couponCode.value.toUpperCase() == couponCode2)
      amountToCharge = (defaultAmountToCharge - (defaultAmountToCharge * percentOff2 / 100)).toFixed(2);
    else if (frm.couponCode.value.toUpperCase() == couponCode3)
      amountToCharge = (defaultAmountToCharge - (defaultAmountToCharge * percentOff3 / 100)).toFixed(2);
    else if (frm.couponCode.value.toUpperCase() == couponCode4)
      amountToCharge = (defaultAmountToCharge - (defaultAmountToCharge * percentOff4 / 100)).toFixed(2);
    else if (frm.couponCode.value.toUpperCase() == fixedCouponCode1)
      amountToCharge = (defaultAmountToCharge - fixedAmount1).toFixed(2);
    else if (frm.couponCode.value.toUpperCase() == fixedCouponCode2)
      amountToCharge = (defaultAmountToCharge - fixedAmount2).toFixed(2);
    else if (frm.couponCode.value.toUpperCase() == fixedCouponCode3)
      amountToCharge = (defaultAmountToCharge - fixedAmount3).toFixed(2);
    frm.Amount.value = amountToCharge;
    // ----------- End Coupon Code Javascript ---------------------
    </script>
    Then, you'll need a Coupon Code field in your form:
    <div class="item">
        <label for="couponCode">Coupon Code</label><br />
        <input type="text" name="couponCode" id="couponCode" class="cat_textbox" />
        <a href="javascript:refreshAmountToCharge()">Update</a>
    </div>
    That's it. Let me know if you have any questions. You can set multiple codes, either percentage based or fixed amount. Experiment with it to make sure it works as expected.

    This is great Mario! Thanks so much for sharing. It works very well.
    One thing I want to add is a validation for the coupon update action. If the coupon is no longer valid or entered incorrectly, a message would be great, because the person might no even notice the fact that the amount did not change even though they think they entered a valid discount code.
    Sean

  • How to setup initial purchase prices in item master.

    How can I setup my purchase prices for the items which I have not purchased yet? I am running MRP wizard to get the purchase recommendations when I convert them to purchase orders or even on the recommendation list the prices are coming up zero. I do not want to setup price list since the prices are keep changing. Please note that this is only for the items which we have not purchased yet. Seems it works okay as soon as we do inventory transactions (goods rec or inventory rec).
    Please let me know if anyone has come across to this situation.
    Tkx

    That is right.  Nothing changed. The only differences are more transactions recorded. All zeroed out themselves.  I have done it couple of times.
    You can check the item posting history and got two postings such as +1 and -1. That is all.

  • How to send a receipt when using a web form for payment

    I have a site on which people sign up for classes (events) through a web form. I have set this up using a custom form in which the Amount field is populated using javascript, depending on which class they select from a drop down.
    Is there a way to send the client a receipt for the transaction? Would this be done within BC or would it be done within the payment gateway? (Authorize.net, in this case)
    Thanks for any help.

    Hi - I have a similar problem. I found I can send a receipt using sendinvoice=true&amp in the form action, but it uses the default invoice layout and shows GST to be $0, when it should be 10% of the class(event) fee. I can't modify the invoice as it is setup just right for out products, which are purchased through shopping cart. Any ideas on ow to work around this? Any thoughts would be very appreciated.

  • How to change/set the browser title from web forms (XP platform with SP2)

    I am running Form9i, I have set the browser windows title from Web Forms dynamically by using following method. However, when my PC has changed to XP, the function seems not work. Does anybody have same problem and how to solve it? Any suggestions would be appreciated.
    Add the Javascript code to your baseHTML file. For example,
    if you are using the basejini.htm:
    <HEAD><TITLE>%pageTitle%</TITLE>
    <script language="javascript1.2" type="text/javascript1.2">
    function Change(a) {    document.title=a;    } </script>
    </HEAD>
    In web Forms , call the javascript function with WEB.SHOW_DOCUMENT built.
    For Example the following code set the browser title with username . web.show_document('javascript:Change('||'"'|| get_application_property(USERNAME)||'"'||')','_self');
    Best Regards,
    Bowie

    Dear Frank,
    Thanks for your reply. Can you tell me in detail which built-in function in Webutil can set value in browser title ?
    Btw, is it possible for me to set parameter "separateFrame=True" in formsweb.cfg and set the form window title by using SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,TITLE,v_msg_string)?
    Best Regards,
    Bowie

  • How to configure standard report concurrent program in web forms.

    I have developed new custom report using reports6i, and defined a concurrent program registered into AOL and assigned to a request group. I tested the report runs fine from form based applications. But user wants to run this new report from web forms(Incentive Compensation). I have no idea how to create a concurrent program link in the Incentive compensation module web forms.
    Is there any document to configure oracle report concurrent program into web forms?
    or guyz please send me the steps (screen shots) to add custom report concurrent program to web forms?
    Please help guyz...I'm new to web forms......
    Thanks in advance
    Naveen
    [email protected]

    Naveen,
    On some event on the page (like a button submit) you can call a PLSQL API with parameters which can further submit your concurrent Request.
    If you want to see the Report output in Apps, it can be done directly. Otherwise if you want to see the value in the Self Service Page itself, then you can extend the oracle.apps.fnd.cp.request.server.RequestSummaryVO for your case.
    Thanks
    Sumit

  • How to setup VoIP/Ipsec on SRP527W using web gateway

    I'm trying to setup a IPSec tunnel and VoIP for the Cisco SRP527W-K9-G5 but all I find are examples using the cisco ios which this model doesn't support. I'm using the web interface to the router and there is no examples to follow.
    There is no manual, the online help is not very helpful either.
    I've tried going to the "Voice" tab but could not figure out where to put the SIP or the phone number.
    And is there any examples, manual or anything that shows how to create a ipsec tunnel using the srp527w's web interface?

    Hey,
    Thanks a ton for posting this out here. I am sure it will be helpful for people trying this out.
    Regards,
    Prapanch

  • How to setup and use connection pool in Web AS 7.0?

    Hello SDN!
    I'm developing a Web Dynpro Java application on SAP Web AS 7.0 My app using a couple of DAO classes as model instead of EJBs. These classes perform direct requests to database using JDBC drivers.
    I've read that many of web-servers use their own connection pools. So I want to know:
    1) how I can setup connection pool in SAP Web AS ?
    2) how I can call this pool in my application?
    Could you please give me some examples?
    Regards, Lev.

    hi lev,
    check this document for jco pools
    http://www.winfobase.de/lehre/lv_materialien.nsf/intern01/FB09D79A41930E34C125709F0046180C/$FILE/Tips&Tricks_JCo_Programming.pdf
    ravindra

  • How to setup e-mail account without deleting web mail server

    When I delete e-mail on i-phone, it delete web mail server mail also.    
    I like to keep these web mail server mail.
    Like old i-phone 4 was not delete web mail server mail, even I delete i-phone mail.
    Please tell me how to set up e-mail on i-phone.
    Thank you

    I had things set up that way and it worked fine. However, last week on my iPhone, my bellsouth.com account kept coming up with "the POP server is not responding," but the account worked on my Macs and my iPad. I deleted the account and added it again. Now it seems to be an IMAP account (the POP server still does not respond). When I access the "advanced" tap in the setings, when I click "Deleted Mailbox" under "Mailbox Behaviors" it appears to show an option to leave mail in the server inbox but the word "Inbox" is in grey and not clickable. Has ATT changed its servers?

  • How to get server hostname and port from web form

    Hi All,
    I need to find out server hostname and port number
    from 9i form.
    That is if the form was called via:
    http://myserver.com:1234/f90servlet?form=test,
    i would like to call some
    GET_XXX_PROPERTY(SERVER_HOSTNAME) that would return
    myserver.com
    and
    GET_XXX_PROPERTY(SERVER_PORT) that would return
    1234
    or alternatively
    GET_XXX_PROPERTY(SERVER_URL) that would return
    complete URL, so that i can parse it myself.
    Does anything like this exist? If not,would be
    possible to get that information from any Java
    function via java importer?
    BR,
    Robert
    BR,
    Robert

    Robert,
    I'd add the code as a Java Bean in Forms and get this information from the Forms request URL.
    Add the following bean to a Canvas and make it a size of 1x1 pixel so taht it appears hidden
    import java.applet.Applet;
    import java.net.URL;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VBean;
    public class FrmRequestInfo extends VBean
    public static final ID pGetPort = ID.registerProperty("GET_PORT");
    public static final ID pGetHost = ID.registerProperty("GET_HOST");
    public static final ID pGetProtocol = ID.registerProperty("GET_PROTOCOL");
    private String _host;
    private String _port;
    private String _protocol;
    private URL FormsURL;
    Applet m_applet;
    /*Forms settings*/
    IHandler m_handler;
    public FrmRequestInfo()
    public final void init (IHandler handler)
    super.init(handler);
    m_handler = handler;
    // get the forms applet handler
    m_applet = m_handler.getApplet();
    // initialize cookie domain to the same domain that runs Forms
    // Services
    FormsURL = m_applet.getDocumentBase();
    _host = FormsURL.getHost();
    _port = new Integer(FormsURL.getPort()).toString();
    _protocol = FormsURL.getProtocol();
    public Object getProperty(ID p0)
    if (p0 == pGetHost)
    return _host;
    else if (p0 == pGetPort)
    return _port;
    else if (p0 == pGetProtocol)
    return _protocol;
    else
    return super.getProperty(p0);
    To get the port number you call
    VarcharVariable_Port := get_custom_property('beanblock.beanname',1,'GET_PORT');
    for the hostname
    VarcharVariable_Host:= get_custom_property('beanblock.beanname',1,'GET_HOST');
    Frank
    Ps.: just wrote the bean on the fly, without testing - but I am positive that it works as similar functionality works for me in other beans.

  • How to fix a security warning on a web form?

    hi, I have added a new form which I have modified, and it is coming up with a security warning (see attached screenshot)
    Is there any reason why this is happening and is there anything I can do to make it secure?
    Form is here:
    (www.eastsidestudios.com.au > book now > view cart > checkout)
    The checkout form is the one that has the security warning.
    This is the code on the form:
    <div class="checkOut">
    <h3>CHECKOUT</h3>
    <h5>* These fields are required</h5>
    <form action="http://www.eastsidestudios.com.au/FormProcessv2.aspx?WebFormID=42582&OID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={module_cid}" enctype="multipart/form-data" onsubmit="return checkWholeForm73108(this)" method="post" name="catwebformform73108">
        <table width="600" cellspacing="0" cellpadding="2" border="0" class="webform">
            <tbody>
                <tr>
                    <td colspan="3">
                    <table width="600" cellspacing="0" cellpadding="2" border="0" class="webform">
                        <tbody>
                            <tr>
                                <td colspan="3"><label for="Title">Title</label>
                                <br />
                                <select class="cat_dropdown_smaller" id="Title" name="Title">
                                <option value="436503">MISS</option>
                                <option selected="selected" value="436500">MR</option>
                                <option value="436501">MRS</option>
                                <option value="436502">MS</option>
                                </select></td>
                            </tr>
                            <tr>
                                <td colspan="2"><label for="FirstName">Parent First Name <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="FirstName" name="FirstName" /></td>
                                <td colspan="2"><label for="LastName">Parent Last Name <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="LastName" name="LastName" /></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="EmailAddress">Email Address <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="EmailAddress" name="EmailAddress" /></td>
                            </tr>
                            <tr>
                                <td style="width: 188px;"><label for="HomeAddress">Home Address <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="500" class="cat_textbox" id="HomeAddress" name="HomeAddress" /></td>
                                <td colspan="3"><label for="HomeCity">Suburb <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="HomeCity" name="HomeCity" /></td>
                                <td colspan="3" style="width: 172px;"><label for="HomeZip">Zipcode/Postcode <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="HomeZip" name="HomeZip" /></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="HomePhone">Home Phone Number <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="HomePhone" name="HomePhone" /></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="CellPhone">Cell Phone Number <span class="req">*</span></label>
                                <br />
                                <input type="text" maxlength="255" class="cat_textbox" id="CellPhone" name="CellPhone" /></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label>Payment Method <span class="req">*</span></label>
                                <br />
                                <input type="radio" value="5" id="PaymentMethodType_5" name="PaymentMethodType" />
                                PayPal<br />
                                </td>
                            </tr>
                            <tr>
                                <td><label for="CAT_Custom_259470">Child 1 Name <span class="req">*</span></label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259470" name="CAT_Custom_259470" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259481">Date of Birth Child 1 <span class="req">*</span></label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259481" name="CAT_Custom_259481" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259484">T-Shirt Size - Child 1 (holiday camp only)</label>
                                <br />
                                <select class="cat_dropdown" id="CAT_Custom_259484" name="CAT_Custom_259484">
                                <option value=" ">-- Please select --</option>
                                <option value="XS">XS</option>
                                <option value="S">S</option>
                                <option value="M">M</option>
                                <option value="L">L</option>
                                </select></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td><label for="CAT_Custom_259475">Child 2 Name</label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259475" name="CAT_Custom_259475" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259482">Date of Birth Child 2</label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259482" name="CAT_Custom_259482" maxlength="1024" /></td>
                                <td colspan="3"><label for="CAT_Custom_259485">T-Shirt Size - Child 2 (holiday camp only)</label>
                                <br />
                                <select class="cat_dropdown" id="CAT_Custom_259485" name="CAT_Custom_259485">
                                <option value=" ">-- Please select --</option>
                                <option value="XS">XS</option>
                                <option value="S">S</option>
                                <option value="M">M</option>
                                <option value="L">L</option>
                                <option value="XL">XL</option>
                                </select></td>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="CAT_Custom_259472">School</label>
                                <br />
                                <input type="text" class="cat_textbox" id="CAT_Custom_259472" name="CAT_Custom_259472" maxlength="1024" /></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label>I hereby give permission for my child to attend Eastside Studios and I understand that my child will be supervised for the duration of the class camp and/or aftercare hours only. (Aftercare hours only available during holiday camps) <span class="req">*</span></label>
                                <br />
                                <input type="radio" value="Yes" id="CAT_Custom_259476_0" name="CAT_Custom_259476" checked="checked" />
                                Yes</td>
                            </tr>
                            <tr>
                                <td colspan="3"><label for="CAT_Custom_259473">Does your child have any condition/illnesses/allergies that we need to be aware of?</label>
                                <br />
                                <textarea onkeydown="if(this.value.length&gt;=1024)this.value=this.value.substring(0,1023);" class="cat_listbox" rows="4" cols="10" id="CAT_Custom_259473" name="CAT_Custom_259473"></textarea></td>
                            </tr>
                            <tr>
                                <td colspan="3"><label>I give permission for my child to be photographed during the class and understand these photos may be used exclusively for Eastside Studios advertising material. <span class="req">*</span></label>
                                <br />
                                <input type="checkbox" value="Yes" id="CAT_Custom_259474_0" name="CAT_Custom_259474" />
                                Yes<br />
                                <input type="checkbox" value="No" id="CAT_Custom_259474_1" name="CAT_Custom_259474" />
                                No</td>
                            </tr>
                            <tr>
                                <td colspan="3"><input type="checkbox" name="CampaignList_29296" />
                                Subscribe to: Eastside Studios Database</td>
                            </tr>
                            <tr>
                                <td colspan="3"><input type="submit" id="catwebformbutton" value="Submit" class="cat_button" /></td>
                            </tr>
                        </tbody>
                    </table>
                    </td>
                </tr>
            </tbody>
        </table>
        <script type="text/javascript" src="http://www.eastsidestudios.com.au/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount73108 = 0;function checkWholeForm73108(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.HomeAddress) why += isEmpty(theForm.HomeAddress.value, "Home Address"); if (theForm.HomeCity) why += isEmpty(theForm.HomeCity.value, "Home City"); if (theForm.HomeState) why += isEmpty(theForm.HomeState.value, "Home State"); if (theForm.HomeZip) why += isEmpty(theForm.HomeZip.value, "Home Zipcode"); if (theForm.HomeCountry) why += checkDropdown(theForm.HomeCountry.value, "Home Country"); if (theForm.HomePhone) why += isEmpty(theForm.HomePhone.value, "Home Phone Number"); if (theForm.CellPhone) why += isEmpty(theForm.CellPhone.value, "Cell Phone Number"); if (theForm.PaymentMethodType) why += checkSelected(theForm.PaymentMethodType, "Payment Method");if (theForm.CAT_Custom_259470) why += isEmpty(theForm.CAT_Custom_259470.value, "Child 1 Name");if (theForm.CAT_Custom_259481) why += isEmpty(theForm.CAT_Custom_259481.value, "Date of Birth Child 1");if (theForm.CAT_Custom_259476) why += checkSelected(theForm.CAT_Custom_259476, "I hereby give permission for my child to attend Eastside Studios and I understand that my child will be supervised for the duration of the class camp and/or aftercare hours only. (Aftercare hours only available during holiday camps)");if (theForm.CAT_Custom_259474) why += checkSelected(theForm.CAT_Custom_259474, "I give permission for my child to be photographed during the class and understand these photos may be used exclusively for Eastside Studios advertising material.");if(why != ""){alert(why);return false;}if(submitcount73108 == 0){submitcount73108++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    </div>

    The problem is in <form action="http://www.eastsidestudios.com.au/FormProcessv2.aspx?WebFormID=42582&O ID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={mo dule_cid}"
    You have to remove http://www.eastsidestudios.com.au from the action URL and make it relative:
    <form action="/FormProcessv2.aspx?WebFormID=42582&O ID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={mo dule_cid}"
    Cheers,
    -mario

  • How do we customize the default CKEditor for Web Form Editor in UCM 10gR3?

    Our customers are using the Web Form Editor for some WYSIWYG changes. The form has too many options and they would like to limit what the users can do. We have attempted to make changes to the following files to customize the CKEditor for Web Form Editor and cannot see our changes reflected after saving/restarting Content Server.
    Instance\weblayout\webform\ckeditor\config.js
    Instance\weblayout\resources\wcm\3rdparty\fckeditor\fckconfig.js
    Instance\custom\FCKEditor\webform\ckeditor\config.js
    To test a simple change we tried adding the following to change the toolbar options.
    CKEDITOR.editorConfig = function( config )
    config.toolbar = 'MyToolbar';
    config.toolbar_MyToolbar =
    ['NewPage','Preview'],
    ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'],
    ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
    ['Image','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
    ['Styles','Format'],
    ['Bold','Italic','Strike'],
    ['NumberedList','BulletedList','-','Outdent','Indent'],
    ['Link','Unlink','Anchor'],
    ['Maximize','-','About']
    There isn't much standard documentation on this out of the box feature and I've searched Oracle Support with no luck.
    Content Server 10gR3 (10.1.3.5.1)
    FCKEditor 2010_12_18 ($Rev: 90491 $) br-10g-10.1.3.5-release
    CS10gR35UpdateBundle 2011_02_08 (build 93)
    Thanks,
    Angela

    Posting the answer:
    You need to make the changes to the webforms component inside the ~\custom\FormEditor\templates\fe_config.js file. Then propagate your changes using the Administration > Actions > Publish layout files page.
    One more quick question - where do we limit the Styles, Fonts, Sizes, Colors?
    in the same file we added lines similar to the following to limit the fonts,
    styles....
    CKEDITOR.config.font_names = 'Arial;Times New Roman;Verdana';
    CKEDITOR.config.fontSize_sizes = '16/16px;24/24px;48/48px;';

  • How to generate power point slides from web forms?

    Hello,
    Anybody know how to generate power point slides from the web forms. the data will in the database just like how we generate a report, just like that is there any way we can generate power point slides? if so could you please provide information please. Any examples are appreciated...
    Thanks so much....

    Hi,
    i have never tried it but in
    this link you can see the it should be possible with the
    powerpoint viewer.
    Regards,
    Markus

  • How to setup a release strategy for store generated purchase order

    Hi there,
    Does anybody know how to setup a release strategy for store/plant generated purchase order? I have a request from our client, but I never cross this before. Please help and let me know the step with every single detail.
    Greatly thank for your help.
    Kind Regards,
    2tea

    Please go thru the below Release Procedure and check whether you have maintained all the settings properly.
    PO RELEASE STRATEGY
    The release code is a two-character ID allowing a person to release (clear, or approve) a requisition or an external purchasing document. The release codes is basically controlled via a system of authorizations (authorization object M_EINK_FRG).
    Use SE12, structure CEKKO to check all the fields available for controlling the Purchase Order.
    e.g. If the total value for the Purchase Order exceeds 10,000, release strategy 01 is assigned to the Purchase Order. There is only one characteristic created in this example. For controlling the Purchase Order type, create characteristic for CEKKO-BSTYP and the value NB.
    CT04 - Create Characteristic e.g. NETVALUE
    Click Additional data Table name CEKKO Field name GNETW and press enter
    (for currency dependent field, you are prompt to enter the currency which the system then converts the currency of the Purchasing document into this currency)
    In the Basic data (X refers to tick),
    X Mutliple values
    X Interval values
    In the Value data, in the Char. value column, type >10000 and press enter
    Save your data
    CL02 - Class
    Class - Create REL_PUR
    Class type - 032
    Click Create
    Description - Release Procedure for Purchase Order
    In the Same Classification section, click Check with error
    In the Char. (characteristic) tab, type NETVALUE to assign your characteristics to the class
    OMGS - Define Release Procedure for Purchase Order Type
    Release Group - New entries
    Rel.group Rel. Object Class Description
    02 REL_PUR Rel. Strategy for PO
    Release codes - New entries
    Grp Code
    02 01
    Release indicators
    Release indicators Release Description
    0 Blocked
    1 X Release
    Release Strategy
    Release group 02
    Rel.strategy 01
    Release codes 01
    Release status 01
    Classification Choose your check values
    OMGSCK - Check Release Strategies
    (make sure there are no error messages)
    Once the Purchase Order is not release, buyers will not be able to print the Purchase Order.
    Goods Receipts will be shown with Message no. ME 390 - Purchasing document XXXXXXX not yet released.
    In 4.6c, Purchase Order with Release Strategy have a tabs at the end of the Header. This allowed the buyers to check the release status of the Purchase Order.
    The person with the release authorization have to use ME28 to release the Purchase Order.
    Regards,
    Ashok

  • How to setup and install FMS on AWS after purchase?

    After cpompleteing the purchace of FMS hosted on AWS I did not recieve any instructionb email on how to setup this application on an existing instance or better yet create a new instance dedicated to the FMS.I got as far as generating the key after purchase , however when I click go to app.... the link simply takes me to the Adobe / Amazon promo page for hosted FMS.
    Can anyone help????
    Thank You!
    A howto would be great!

    I just came across your answer to OKB Mr. sabretooth04, or HP expert!!! OKB, necessarily does not mean zero space left on a hard drive.  Indeed 99% of times, it means that the software that One is trying to download, is outdated and is not compatible with the system that one is running. Thus the hard drive refuses to download the current software for its running program.  And can only be resolved via the software producer.  Meaning; one needs to contact the software company to find out if there are any new patches that can accomodate the download to become compatible with the running program.

Maybe you are looking for

  • How do I get the Interval to keep from repeating after it's used once?

    How do I get the Interval to keep from repeating after it's used once? Because I tried clearInterval but I couldn't get it working. When my code looks like this, with ClearInterval, it refuses to execute my action, which is to change scenes after a s

  • Updating customer master using billing

    Hi , Let let me tell the business scenario if you purchase something in supermarket, lifestyle etc based on the amount u buy (say 2000,3000) they will give u points say for 2000 - 5 points for 3000 - 10 points so the first field is card type ie - mas

  • Printing the 3d image on my stage

    Hi Guys, can anyone help. I have a 3d file at the centre of my stage. I would like to be able to print the image that is shown in the file without printing the whole stage. I have created a print button on the stage and I have tried using the script:

  • Latest record

    Hi All In a report i have the following set of records: DISTRICT     SUB_DISTRICT     REC_TIMESTAMP ‚Ö WAYNE     ˜ÖLA SUB     12/29/2009 16:20 GREENFIELD     TIPTON SUB     12/30/2009 8:13 GREENFIELD     TIPTON SUB     12/30/2009 9:05 GREENFIELD     

  • Increase height of panelTabbed component

    hi, I wanted to increase the height of panelTabbed component using css. what is d class that i have to use ?