Need Information on ISR forms

Hi All,
I came across ISR forms in my organisation and need to give a short presenstaion on it.. Can any one let me know what is it and what are its advantages and dis advantages.. Is SAP still support these forms? Are they replaced by EP? Need your suggestions.
Thanks
Rajeev

Pavan,
  Use two different Webdynpro views and define outbound and inbound plug between these two and share the session data with the component controller. Once the user submits the data validate it with the back end and if it is validated call fire the outbound plug and your second view would display the new adobe form. Hope this would solve your problem. I have designed few applications as I described above. If it doesn't work for you please let me know.
Thanks!
Surya.

Similar Messages

  • Need information about Oracle Forms & Reports server installation

    Hello Friends,
    First of all I am very new user for oracle forums, So please ignore if I posted wrong place.
    We are using Oracle Database 10g and Oracle forms & Reports server 6i version.
    We just purchased oracle forms & reports (currently known as a Oracle Fusion middleware) license.  As per my knowledge latest version doesn't support Oracle 10g database.
    My question is can somebody give me Oracle Database 10g supported Forms & Reports version?
    We are planning to upgrade.
    Help would be really appreciated.
    Thanks & Regards.

    Thanks a lot for prompt response.
    I get my answer from your certification matrix.  I appreciate your response.
    Now second question arise that We are using currently Database version of 10.2.0.1.0.
    And in a certification matrix shows supported version Oracle 10.2.0.4+.
    Now I am bit confused that currently working database supports or not?
    Still i am trying to install on My window 2008 R2 with IIS 7.0.
    Let me check what happens.
    Again Thanks a lot to ccortez and PaulM  for your quick response and help.

  • Error while Requsting fro Service Request ISR form

    Hi,
    I had configured ADS and i'am trying to acess ISR forms from portal but when am trying to acess it is giving an error "<b>com.sap.pcuigp.xssfpm.java.FPMRuntimeException: Work item 000000000000 could not be read</b>"
    Anybody please guide me in this issue.
    With Regards
    Pradeep.B
    <b></b>

    This error occurs due to the following customisaton, Please
    check this :
    Please can you check if the Pernr used
    has correct information like It0105 etc, also the rules are
    correctly defined.
    Webmo feature is activated or no?
    For the Employee, First of all check the Period Work Schedule also
    the Quotas of the pernr needs to maintained in 2006, Please do
    this customisation and it should solve the issue.
    Maintain the absence quota in the IT2006 and then try once.
    Also make sure that the Settings in Webmo and PTARQ etc all is done
    The pernr belongs to the a Rule and have absences defined for him.

  • Need to know what form is attached to a responsibility

    Hi,
    There is a need to know what responsibility in Oracle has access to a given form. All seeded Oracle Reports that I am aware of (Function Security Function Report, Function Security Menu Report, Function Security Navigator Report) require a responsibility be inputted into a parameter in order to run. This is not a feasible option as we have hundreds of responsibilities and we would need to manually review each output for a specific function or form. Does a report or other SQL exist where I do not have to specify a responsibility?
    I have attempted different ways for a custom sql but the difficulty always lies in the exclusions because you need to look in every single menu that has been excluded whether or not a function is attached (need to look at all the submenus). This is difficult because you need to go down the entire menu tree of each excluded menu and I haven't been able to do this.
    Below is the closest I have got for an sql however I am getting 207 results which I know is not correct. I'm wondering if the query when looking at the menu exclusions is not looping at all the menus that are excluded for a given responsbility? Any ideas or suggestions would be greatly appreciated.
    Thanks,
    PJ
    SELECT b.responsibility_name FROM fnd_responsibility_vl b
    /*Get all menus assigned to a responsbility that has a
    specfic function_id based on a form and takes into account function exclusions*/
    WHERE EXISTS (SELECT 1 FROM
    apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE
    form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from
    fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT
    FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND
    frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    /*Do not show any responsibiliy that has a menu in the
    excluded list against the responsbility that has the specified form/function*/
    AND b.end_date IS NULL
    AND NOT EXISTS ( SELECT 1 FROM
    apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type ='M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)

    Hi Hussein,
    Thank you for the reply.
    For note "How to get information related to forms functions, menus and responsibilities for both 11i and R12 (Doc ID 953934.1)":
    The script for "How to retrieve list of responsibilities and associated menus" (SELECT RESPONSIBILITY_NAME, MENU_ID FROM FND_RESPONSIBILITY_VL;) isn't really giving that as it's just the one menu that is associated with that responsibility (and doesn't look at the menu exclusions).
    For note, "How To get List Of Functions Which Are Setup For A Responsibility? (Doc ID 549100.1)":
    I can already get a list of functions on a particular responsbility and even more so I know what menus use a particular function using the following sql:
    SELECT * FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = <form_id>)
    This note does not help because you would need to do it by responsibility and I have hundreds of responsbilities I would need to search which is why the seeded reports I reference above do not work (you need to specify a responsibility at a time).
    I believe these are two links I need to look at to find what menus are associated and unassociated with a responsbility. In fnd_responsibility_vl, there is the main menu_id that says where this repsonsbility gets all of it's menus. This is where I look first in the first part of my query (b.menu_id is this link to the fnd_responsibility_vl table) :
    --Get all menus assigned to a responsbility that has a specfic function_id based on a form and takes into account function exclusions
    WHERE EXISTS (
    SELECT 1 FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    The next link is the "unassociated" link which is the menu exclusions. I'm looking at these exclusions similar to the part above however I don't think it's looking at all of the menus defined in the menu exlusions as my list of responsbilities is more then it should be:
    --Do not show any responsibiliy that has a menu in the excluded list against the responsbility that has the specified form/function
    AND NOT EXISTS (SELECT 1
    FROM apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type = 'M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id
    FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    It needs to be able to look at the menu trees of all of the defined menus that are excluded and find any menu that has that function as defined in the first sql of this post (if it is found in the exclusions then do not show it). However I do not think it is looping through all of the menus defined in the exclusions. Any guidance is greatly appreciated.
    Thanks,
    PJ

  • Need information about retail project

    hi all
    tommorow i had a interview with my client.
    i need information about retail  project.
    like terms and business process overview .
    documentaiton can be sent to:   [email protected]
    points will awarded for sure.
    kiran

    Hi Rama
    Retailing consists of the sale of goods or merchandise, from a fixed location such as a department store or kiosk, in small or individual lots for direct consumption by the purchaser.[1] Retailing may include subordinated services, such as delivery. Purchasers may be individuals or businesses. In commerce, a retailer buys goods or products in large quantities from manufacturers or importers, either directly or through a wholesaler, and then sells smaller quantities to the end-user. Retail establishments are often called shops or stores. Retailers are at the end of the supply chain. Manufacturing marketers see the process of retailing as a necessary part of their overall distribution strategy.
    Shops may be on residential streets, shopping streets with few or no houses, or in a shopping center or mall, but are mostly found in the central business district. Shopping streets may be for pedestrians only. Sometimes a shopping street has a partial or full roof to protect customers from precipitation. Retailers often provided boardwalks in front of their stores to protect customers from the mud. Online retailing, also known as e-commerce is the latest form of non-shop retailing (cf. mail order).
    Shopping generally refers to the act of buying products. Sometimes this is done to obtain necessities such as food and clothing; sometimes it is done as a recreational activity. Recreational shopping often involves window shopping (just looking, not buying) and browsing and does not always result in a purchase.
    Most retailers have employees learn facing, a hyperreal tool used to create the look of a perfectly-stocked store even when it is not.
    Contents [hide]
    1 Retail pricing
    2 Retail Industry
    3 Etymology
    4 Retail types
    5 See also
    6 Notes
    7 References
    [edit] Retail pricing
    The pricing technique used by most retailers is cost-plus pricing. This involves adding a markup amount (or percentage) to the retailers cost. Another common technique is suggested retail pricing. This simply involves charging the amount suggested by the manufacturer and usually printed on the product bize the manufacturer.
    In Western countries, retail prices are often so-called psychological prices or odd prices: a little less than a round number, e.g. $6.95. In Chinese societies, prices are generally either a round number or sometimes a lucky number. This creates price points.
    Often prices are fixed and displayed on signs or labels. Alternatively, there can be price discrimination for a variety of reasons, where the retailer charges higher prices to some customers and lower prices to others. For example, a customer may have to pay more if the seller determines that he or she is willing to. The retailer may conclude this due to the customer's wealth, carelessness, lack of knowledge, or eagerness to buy. Another example is the practice of discounting for youths or students. Price discrimination can lead to a bargaining situation often called haggling, in which the parties negotiate about the price. Economists see this as determining how the transaction's total surplus will be divided into consumer and producer surplus. Neither party has a clear advantage, because of the threat of no sale, in which case the surplus vanishes for both.
    Retailers who are overstocked, or need to raise cash to renew stocks may resort to "Sales", where prices are "marked down", often by advertised percentages - "50% off" for example."Sales" are often held at fixed times of the year, for example January sales, or end-of-season sales, or Blue Cross Sale
    [edit] Retail Industry
    Retail Industry has brought in phenomenal changes in the whole process of production, distribution and consumption of Consumer Goods all over the world. In the present world most of the developed economies are using the Retail Industry as their vital growth instrument. At present, among all the industries of U.S.A the Retail Industry holds the second place in terms of Employment Generation. In fact, the strength of the Retail Industry lies in its ability to generate large volume of employment.
    Not only U.S but also the other developed countries like U.K, Canada, France, Germany are experiencing tremendous growth in their Retail Sectors. This boom in the Global Retail Industry was in many ways accelerated by the Liberalization of Retail Sector.
    Observing this global upward trend of Retail Industry, now the developing countries like India are also planning to tap the enormous potential of the retail sector. Wal-Mart,the world's largest Retailer has been invited to India. Other popular Brands like Pantaloons, Big Bazar, Archies are rapidly increasing their market share in the retail sector. According to a survey, within 5 years, the Indian Retail Industry is expected to generate 10 to 15 million jobs by direct and indirect effects. This huge employment generation can be possible because of the fact that being dependent on the the Retail Sector shares a lot of Forward and Backward Linkages.
    Emergence of a strong Retail Sector can contribute immensely to the economic development of any country. With a dominant retail sector, the farmers and other suppliers can sell their produce directly to the major retail companies and can ensure stable profit. On the other hand, to ensure steady supply of goods, the Retail Companies can inject cash into the production system. This whole process can result into a more efficient production and distribution system for the economy as a whole.
    [edit] Etymology
    Retail comes from the French word retaillier which refers to "cutting off, clip and divide" in terms of tailoring (1365). It first was recorded as a noun with the meaning of a "sale in small quantities" in 1433 (French). Its literal meaning for retail was to "cut off, shred, paring". Like the French, the word retail in both Dutch and German (detailhandel and Einzelhandel respectively) also refer to sale of small quantities or items.[citation needed]
    [edit] Retail types
    According to Jim there are three major types of retailing. The first is the market, a physical location where buyers and sellers converge. Usually this is done in town squares, sidewalks or designated streets and may involve the construction of temporary structures (market stalls). The second form is shop or store trading. Some shops use counter-service, where goods are out of reach of buyers, and must be obtained from the seller. This type of retail is common for small expensive items (e.g. jewelry) and controlled items like medicine and liquor. Self-service, where goods may be handled and examined prior to purchase, has become more common since the Twentieth Century. A third form of retail is virtual retail, where products are ordered via mail, telephone or online without having been examined physically but instead in a catalog, on television or on a website. Sometimes this kind of retailing replicates existing retail types such as online shops or virtual marketplaces such as futurebazaar.com or Amazon.[2].
    Buildings for retail have changed considerably over time. Market halls were constructed in the Middle Ages, which were essentially just covered marketplaces. The first shops in the modern sense used to deal with just one type of article, and usually adjoined the producer (baker, tailor, cobbler). In the nineteenth century, in France, arcades were invented, which were a street of several different shops, roofed over. counters, each dealing with a different kind of article was invented; it was called a department store. One of the novelties of the department store was the introduction of fixed prices, making haggling unnecessary, and browsing more enjoyable. This is commonly considered the birth of consumerism [3]. In cities, these were multi-story buildings which pioneered the escalator.
    In the 1920s the first supermarket opened in the United States, heralding in a new era of retail: self-service. Around the same time the first shopping mall was constructed [4] which incorporated elements from both the arcade and the department store. A mall consists of several department stores linked by arcades (many of whose shops are owned by the same firm under different names). The design was perfected by the Austrian architecht Victor Gruen[5]. All the stores rent their space from the mall owner. By mid-century, most of these were being developed as single enclosed, climate-controlled, projects in suburban areas. The mall has had a considerable impact on the retail structure and urban development in the United States. [6]
    In addition to the enclosed malls, there are also strip malls which are 'outside' malls (in Britain they are called retail parks. These are often comprised of one or more big box stores or superstores.
    Non-traditional exterior of a SuperTarget, JacksonvilleLocal shops can be known as brick and mortar stores in the United States. Many shops are part of a chain: a number of similar shops with the same name selling the same products in different locations. The shops may be owned by one company, or there may be a franchising company that has franchising agreements with the shop owners (see also restaurant chain).
    Some shops sell second-hand goods. Often the public can also sell goods to such shops, sometimes called 'pawn' shops. In other cases, especially in the case of a nonprofit shop, the public donates goods to the shop to be sold (see also thrift store). In give-away shops goods can be taken for free.
    There are also 'consignment' shops, which is where a person can place an item in a store, and if it sells the person gives the shop owner a percentage of the sale price. The advantage of selling an item this way is that the established shop give the item exposure to more potential buyers.
    The term retailer is also applied where a service provider services the needs of a large number of individuals, such as with telephone or electric power.
    IS Retail was original develop to meet specific needs of Retail industry where standard SD/MM cannot.
    - Significant functionality difference are:
    - Store specific features are built into IS Retail where as it is not in
    standard SD/MM.
    - Mass processing of pricing (some of the retail features were
    included as standard SAP as of 4.6)
    - Assortment handling is not in standard SAP
    There are other differences in inventory costing/valuation etc.
    Retail valuation only available in SAP Retail.
    What is known in the trade as the "retail inventory method" or the "retail method" involves valuating stocks at retail, often aggregated at merchandise category or departmental level.
    Both the cost method and the retail method can be used in SAP Retail.
    Actually IS-Retail is a combination of MM and SD plus other funtionalities speacially developed for the retail industry such as:
    Promotions
    Pricing
    Assortments
    Clasification
    Merchandise category
    Seasons
    Is important to mention that all the funtionality of MM and SD is avialable in SAP IS-Retail with some diferences in some transactions:
    Material master data (article in retail) has some diferences.
    Vendor master data.
    Site master data.
    Reward if useful to u

  • Unable to Acess ISR form

    Hi,
       I had configured ADS and now i'am trying to acess <b>Service Request</b> ISR form,when am seeing the preview it is not showing any error and it is not displaying any form,just it is displaying a blankpage.
    Please guide me in this issue.
    With Regards,
    Pradeep.B

    Hi Anto,
        Thanks for your reply,i will goahead.
    I need to ask you one more thing.I had started GP process with an interactive form in Portal and when am uploading a pdf document which is developed through Adobe Life Cycle designer it is giving me an error "<b>Could not retrieve template fields: Wrong document format or adapter mismatch  from adapter</b>"
    will you please guide me in this issue.
    Thanks and Regards
    Pradeep.B

  • Help needed with PCR Interactive Forms.

    Hello,
    We are trying to get a prototype system going to show HR some WebDynpro and Adobe Forms technology. I'm focusing on our PCR's right now. I have fixed one problem by configuring the ABAP WAS in the java visual admin http destinations. I now want to take our ISR's and map them to adobe forms in QISRSCENARIO. I am looking at the available forms and wish to configure.
    - Transfer an Employee out of my Org - ISR_FORM_SPTR - The inactive SPTR form displays the following "The creation of this form has not yet been completed. Therefore, you cannot use the form at this time. The finished form will be available with the next release.SAP AG "
    - Move an Employee to a Vacancy in My Org - ISR_FORM_???? - This may be some old custom development on our part because I'm seeing nothing close in ISR forms.
    - Change an Employee in Current Position - ISR_FORM_SPPD - Displays form after a popup shows soem formcalc errors.
    - Separate an Employee - ISR_FORM_SPSD - Displays form
    - Change Working Time of an Employee - ISR_FORM_SPWT - Displays form after a popup shows soem formcalc errors.
    This is just a prototype so I'm not lookign to mesh all out pcr customizations. I do have some questions though.
    I can't seem to find anything telling me what adobe forms are delivered for a particular version of SAP. We are on ECC5.0.
    Is a form marked inactive simply not delivered? If not how do I activate?
    Basically we'll want to be using adobe forms wherever delivered for ECC50. Any pointers to documentation on what's delivered vs. what I'm seeing in QISRSCENARION would be greatly appreciated as well as any general docs on working with, modifying forms.
    Thanks,
    Doug

    Where to start with scripting:
    http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_basics.pdf
    http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf
    In first doc, check the last chapter for the most illustrative examples.
    You need to be able to get the value of the radio (var help = this.rawValue), use the condition (if (){} else {} )and set the value (this.rawValue = "").
    Otto

  • Information regarding Adobe forms

    Dear Gurus,
    I need some basic information regarding adobe forms to be used in ESS MSS portal for doing some basic actions by managers like hiring/maintenance of data for his subordinates.
    Are there any specific system requirements so that adobe forms display in browser without any problems?  Is there any specific internet browser which works without any problems?
    What time is considered to be best time in which an empty form can be displayed?
    In one line what is the acceptable time for a form to load which is not considered as slow and is it linked with network connections or individual systems of end users?
    Need your kind inputs on this topic........
    Regards,
    kitchlu

    Form works in IE 6, 7, 8  and Firefox
    Make sure you have adobe products above 8.1 (includes all adobe products)
    In Reader -> Edit -> Preference -> Internet - you have setting to display pdf in browser.
    For a small form with limited fields, 5-10 seconds launching time can be achieved.
    Performance depends on number of fields, User events, no of backend calls, number of dropdown boxes, Servce size, Network etc etc. Optimized code is another aspect to look into

  • ISR Form is hanging after converting to ZCI

    Hi experts,
    We are on EP7 ECC 6.0 SP9. We have recently converted few ISR forms (SAP delivered forms for PCR) to ZCI. The form is hanging when clicked on 'Review Form' . Earlier before changing the forms to ZCI at least we used to go to the next screen when clicked on 'Review Form' but now the form is just hanging.
    Did anyone come across this issue?
    Can you please let me know what needs to be done?
    Thanks
    Phani

    Hi Anto,
    I have already installed ACF on my pc but still the Adobe form is hanging. I even changed installed new version of Adobe reader 8.0 (earlier it was 7.0.9) but same result.
    We are currently on EP7 ECC 6.0 SP9. I have adobe reader 7.0.9 version.
    When I revert back the SAP Standard SAP form to 'unknown layout' I could at least go to the next step but when I covert to ZCI, I am facing this problem. Right now I really don't understand the reason .. I am stuck with this.
    Do you have any ideas?
    Thanks
    Phani

  • Needed: overview of all Forms function numbers

    I need an overview of all Forms function numbers to be able to map functionality available in Forms 4.5 to Forms 10g.
    If i look at the *.res file it seems that a number of Forms function numbers are no longer present. For example numbers > 999. Is this correct? Or are they just missing in the res-file?
    For example, in Forms 4.5 it was possible to map a key(combination) to "activate" the ok-button in a LOV or alert. Now, only pressing "enter" or "Alt-O" are possible, but no customisable keys.
    thanks for any info

    There are less Forms function numbers listed in the *.res file available with 10g than in the res file of Forms 4.5.
    Quite a number of key-mappings to activate certain Forms function numbers seem to be no longer available. I was therefore wondering if the list in the 10g res-file is compleet or if some overview of all Forms function numbers is available so i can extend this file myself.
    p.s. i do not mean Forms build-in functions. The Forms Help does not support any information on the Forms function numbers mentioned in the res-file (for details on what these are, see the "description" in the header of the 10g res-file).

  • How to use ISR Forms?

    Hello Gurus,
    We have ECC6.0 and I see in config under "Internet/Intranet Services" SAP has defined various scenarios and provided the forms. We are interested in a few scenarios that have the adobe forms. We have adobe designer 7.0.
    Please tell me how I can activate and use ISR forms. As I see, the "TEST" button next to where the form name is entered for the scenario is disabled.
    Thank you,
    Fred.

    Hi Fred,
    Welcome to ISR/PCR Based Adobe Interactive Forms.
    Well, this link should help you better in understanding and configuring ISR Forms
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/45/37d555771442d7b9d53b2f57b29a77/frameset.htm
    I dont think you can use ECC to test these ISR forms. Well, you can test them from Portal by checking the appropiate scenario's iview. Check out the MSS content to locate the correct iview(say Recruitment Requisition iview). Or you can even create a IView manually also. Do let me know if you require further information.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Need some advice on form element values?

    Hi All,
    I have an issue with the website i am currently developing. Its a e-commerce site for a memorial masons. For each product/memorial there are several elements, drop down menus and text fields to retrieve the information needed, there is also a 'total' that as customers make their choices the amount for each element is added to this total. My problem is, on the two elements 'engraved_designs' and 'sandblasted_designs' i need to calculate that amount into total but also i need to retrieve the code of the design chosen for back office reference. I can't use both the price and code in the 'value' attribute as that will stop the calculation function from working. So how am i to get the amount to calculate at the same time as being able to retrieve the code chosen when submitting the form?
    http://www.milesmemorials.com/product-GH54.html

    Ok sorry i didnt realise that would do that, to have this  '75#P4.2' come up in hidden field is exactly right for what i need. But i think maybe i haven't amended my php file for this properly, this is how it looks -
    <?php
    if(!isset($_POST['submit']))
              //This page should not be accessed directly. Need to submit the form.
              echo "error; you need to submit the form!";
    $name = $_POST['name'];
    $tel = $_POST['tel'];
    $email = $_POST['email'];
    $productCode = $_POST['productCode'];
    $colour2 = $_POST['colour2'];
    $engraving2 = $_POST['engraving2'];
    $font2 = $_POST['font2'];
    $textarea2 = $_POST['textarea2'];
    $engraved_designs2 = $_POST['engraved_designs2'];
    $sandblasted2 = explode('#', $_POST['sandblasted_designs2']);
    $sandblasted_design2 = $sandblasted2[1];
    $grand_total2 = $_POST['grand_total2'];
    $cemetery_name2 = $_POST['cemetery_name2'];
    $cemetery_address2 = $_POST['cemetery_address2'];
    $grave_number2 = $_POST['grave_number2'];
    //Validate first
    if(empty($name)||empty($tel)||empty($email)||empty($colour2)||empty($engraving2)||empty($f ont2)||empty($textarea2)||empty($grand_total2))
        echo "All fields are mandatory!";
        exit;
    if(IsInjected($email))
        echo "Bad email value!";
        exit;
    $email_from = 'milesmemorials.com';//<== update the email address
    $email_subject = "Memorial Proof Request";
    $email_body = "Request from: $name.\n";
    $email_body .= "Email: $email.\n";
    $email_body .= "Tel: $tel.\n";
    $email_body .= "Item number: $productCode.\n";
    $email_body .= "Memorial colour: $colour2.\n";
    $email_body .= "Engraved lettering (per letter): $engraving2.\n";
    $email_body .= "Font style choice: $font2.\n";
    $email_body .= "Memorial wording: $textarea2.\n";
    $email_body .= "State of the art engraved design: $engraved_designs2.\n";
    $email_body .= "Sandblasted design: $sandblasted_designs2.\n";
    $email_body .= "Sandblasted design: $sandblasted2.\n";
    $email_body .= "Total: $grand_total2.\n";
    $email_body .= "Name of cemetery: $cemetery_name2.\n";
    $email_body .= "Address of cemetery: $cemetery_address2.\n";
    $email_body .= "Grave number: $grave_number2.\n";
    $to = "[personal information removed by moderator]";//<== update the email address
    $headers = 'From: '.$email."\r\n".
    $headers = 'Reply-To:'.$email."\r\n";
    //Send the email!
    mail($to,$email_subject,$email_body,$headers);
    //done.  redirect to payment page.
    header('Location: thanks.html');
    // Function to validate against any email injection attempts
    function IsInjected($str)
      $injections = array('(\n+)',
                  '(\r+)',
                  '(\t+)',
                  '(%0A+)',
                  '(%0D+)',
                  '(%08+)',
                  '(%09+)'
      $inject = join('|', $injections);
      $inject = "/$inject/i";
      if(preg_match($inject,$str))
        return true;
      else
        return false;
    ?>

  • Prerequisites for ISR forms

    Hi,
    What is the difference between ADOBE forms and ISR forms?
    I want basic information  and  tutorials for ISR form .
    For ISR forms what are the prerequisites are required?
    I am a ABAPER. I have to develop ISR forms .
    Please guide m.
    Regards,
    Shital

    Hi Sheetal,
    Basically, ISR forms are subset of Adobe forms. Generally ISR forms are used to integrate adobe forms with workfloww in SAP. To minimize the coding efforts for diabling or hiding fields Adobe has already provided standard ISR controls.
    These controls reads data from SPECIAL_DATA, CONTROL_PARAM and accordingly gets disabled and visible.
    Please share youe email ID on which I can send you the cookbook of ISR.
    Regards,
    Amit

  • ISR forms

    Dear all,
         May i know that for ISR forms, is it a must that we need a portal to run these forms? can we used these standard ISR forms in offline mode? ( with no portal implemented , and no MSS ) Thank you.
    Regards,
    Joan

    Hello,
    ESS and MSS scenarios are portal Based applications. You will need portal for these. The forms are delivered for these scenarios. If you want to use such forms outside these scenarios, you will need to develop these as these do not exist in the standard.
    Best regards,
    Dezso
    Edited by: Dezso Pap on Oct 2, 2009 4:34 PM

  • Error in using ISR Forms

    We are trying to use a Standard ISR form for change in cost center ( Scenario SMC2). In case of ISR scenarios, is it mandatory that a workflow is associated with it?
    We have not associated a workflow with the scernario right now, and when we try to see the form we are getting following error:
    http://blade96.wipro.com:50000/IsrForm?SCENARIO=SMC2&MODE=CREATE&NOTIF_NO=
    How the notification number is populated in the above URL.
    TIA,
    Amit

    You can find error messages in help. The messages are described like this (it's Designer 6):
    CGEN-00071 Failed to create Forms API context
    Cause:
    To read and write Oracle Developer Form Builder binary files, the Generator accesses the Form Builder component. However, an error occurred when the Generator attempted to initialize the Form Builder API.
    Action:
    Reinstall the Oracle Developer Form Builder component.
    I hope this will help you.
    Helena

Maybe you are looking for