Smart forms- how to get the copies of form in other pages as duplicate

hi experts,
i am facing problem in smartforms.
one copy is ready for me.
i have to take that one in 4 pages  as 1st page original,
2nd duplicate, 3rd triplicate, 4th quadriplicate.............
how to get them....
all theremaining data is same ....
Message was edited by:
        dasr r

U can achieve this with the help of NAST table,
in that table field ANZAL is the field for number of copies of the output.
Suppose u have a smartform which will print 3 pages for a Purchase Order,
and u want 4 copies of the same. (totally 3*4 = 12 pages)
U need to handle this in the smart form ifself with the help of ANZAL field, it holds number of copies to be printed on the output device.
if ANZAL = 1
    print 'original'.
elseif ANZAL = 2
    print 'Duplicate'.
elseif ANZAL = 3
    print 'Triplicate'.
elseif ANZAL = 4
   print 'Quadriplicate'.
endif.
or else u can handle the same with CASE ... ENDCASE.
I think, it may solve ur problem.
Regards,
Sujatha.

Similar Messages

  • How to get the source code of an HTML page in Text file Through java?

    How to get the source code of an HTML page in Text file Through java?
    I am coding an application.one module of that application is given below:
    The first part of the application is to connect our application to the existing HTML form.
    This module would make a connection with the HTML page. The HTML page contains the coding for the Form with various elements. The form may be a simple form with one or two fields or a complex one like the form for registering for a new Bank Account or new email account.
    The module will first connect through the HTML page and will fetch the HTML code into a Text File so that the code can be further processed.
    Could any body provide coding hint for that

    You're welcome. How about awarding them duke stars?
    edit: cheers!

  • How to get the return values from a web page

    Hi all :
       how to get the return values from a web page ?  I mean how pass values betwen webflow and web page ?
    thank you very much
    Edited by: jingying Sony on Apr 15, 2010 6:15 AM
    Edited by: jingying Sony on Apr 15, 2010 6:18 AM

    Hi,
    What kind of web page do you have? Do you have possibility to for example make RFCs? Then you could trigger events (with parameters that could "return" the values) and the workflow could react to those events. For example your task can have terminating events.
    Regards,
    Karri

  • How to get the source code of an HTML page in Text file Through J2EE

    How to get the source code of an HTML page in Text file Through J2EE?

    Huh? If you want something like your browser's "view source" command, simply use a URLConnection and read in the data from the URL in question. If the HTML page is instead locally on your machine, use a FileInputStream. There's no magic invovled either way.
    - Saish

  • How to get the values of form valuess

    Hi All,
    Good Morning,
    i create a page with some form valuesss
    that form values are based on view attributes(vo)
    i did some caluculations and store that values in form value variabless at the time of creating a row in table.
    now i want to open that row in edit mode.
    that time all text fields values are getting and displayed in text fieldss.
    but that record form values are not getting.the form values store the null values.
    how can u get the values of form value variables in the edit mode.
    Thanks

    Hi
    ohh ,ok ,then as u said that u r storing twenty values ,thats y i aksed earlier ,are these form values part of tbale ,or as u said 20 values are there ,for these u r creating 20 form values ???.
    My suggestion would be ,u do four calculation and put all your results in a hashmap ,and keep this hash map in to sesion ,using the following method
    pageContext.putTransactionTransientValue("HashMapName",myHashMap);
    and inside the PFR method when u want to display these values ,u can loop through your hashmap and can display these values.
    like this
    HasMap hm=pageContext.getTransactionTransientValue("HashMapName");
    thanx
    Pratap

  • Download acrobat is in windows formant, how to get the mac ver?

    hi, im hopping that someone in here will tell me how to get the acrobat 9 for the mac, the trial verison. All I see is windows format. Please help me.

    It would be good if Adobe could service the Mac platform at the same time (or close) to the PC launches.

  • How to get the view tree from a jsp page

    Hi,
    I would like to get the view tree of a jsp page. The idea is to dynamically include the content of one or more jsf pages into a UIPanel during a "value changed" event.
    So, i could get from an arbitrary page like ...
    <%@ taglib uri="http://java.sun.com/jsf/core"   prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html"   prefix="h" %>
    <h:panelGrid columns="3" width="100%" rowClasses="gridTop">
        <h:outputText value="#{someBean.someValue}"/>
    </h:panelGrid>... the corresponding List of components...
    Any idea?

    Thanks for your answer Jayashri,
    The view tree can be retrieved by this way during the page is parsed, for example with scriptlets <%%>, or once the page has been parsed (the view has been builded and attached to the FacesContext).
    My problem is to get the view tree of a page from another Context.
    The idea is to build a dynamic layout of some pages that represents "views". I can imagine this like the concept of perspectives and views of Eclipse IDE.
    Because of the difficulty to build it with pure JSP (cannot use dynamic ID nor JSTL ForEach), I try to build it into my backing bean and to bind it with a <h:panelGrid/>. By this way, I'm not able to use the <jsp:include/> tag as I usually did to include some content into the view tree.
    Sorry for my english ;)
    - Renaud.

  • How to get the section value into configurator developer page

    Hi,
    I am working on configurator developer, Can I get the section value into the configurator developer page by any setup. If possible means please help me on that.
    Thanks advance,
    Gopi

    I thought the same.Thanks for confirming...I tried with loop approach.but i am unable to get decimal part...
    eg if my values are 12.25 and 123.12....my below code ignores decimal points..i know since i am using Number, it is happening..but could you please let me know how can i get decimal values also..
    OAViewObject vo = (OAViewObject) am.findViewObject("XXXXInvDistributionsVO1");
    vo.first();
    Number grossamount = 0;
    for (int i=0;i< vo.getRowCount();i++) {
    // BigDecimal grossamount1 = new BigDecimal((vo.getRowAtRangeIndex(i).getAttribute("Amount")));
    grossamount = ((oracle.jbo.domain.Number)vo.getRowAtRangeIndex(i).getAttribute("Amount")).intValue();
    System.out.println("grossamount "+grossamount); // it ignores and prints decimal points
    BigDecimal grossamount1 = new BigDecimal(grossamount.intValue());
    System.out.println("grossamount1 "+grossamount1); // it ignores and prints decimal points
    vo.next();
    Thanks
    Raj

  • How to get the parsed HTML from a JSF Page

    Hi,
    I have an application that the user must fill in some data. Later on, it's shown a confirmation page with the user's information. I want to email that confirmation page to the company. The question is: How can I get the result html page as a string from that jsf confirmation page within the application.
    Any help is appreciated,
    Tiago Gaspar.

    I need the exat same page the user is viewing i.e. html filed with the information .

  • How to get the subtotals to only print on page 1 of the report?

    Hello :
    Could someone tell me how to best accomplish this in CR 2008?. Thank you in advance!
    On Page 1 of the report, I only want to print a summary of provider then the total of each procedure type performed at the clinic.
    Here's a sample of the result that I'm looking for:
        Dr. One
         Office visit, new         = 15
         Office Visit, established = 10
         New wellness care         = 18
        Dr. Two
         Office visit, new         = 5
         Office Visit, established = 18
         New wellness care         = 20
        Dr. Three
         Office visit, new         = 15
         Office Visit, established = 10
         New wellness care         = 10
         Established wellness care = 30
    **The 2nd part of this report I was able to get the desired result, but I thought it would be helpful to share this informationl.
    The subsequent pages is grouped by provider, visit date, patient name, date of birth,
    and procedure description. Then subtotal by provider.
    Here's a sample result
        *Dr. One*
         12/1/2009 Patient 1  06/29/1977 Office visit,new
         12/1/2009 Patient 2  5/5/1960  office visit,new
         1/5/2010  Patient 3  8/18/59   Office Visit, established
         1/14/2010 Baby 1     11/1/2009 New wellness care      
        +Total = 4+
        Dr. Two
         09/16/2009 Patient 4 7/19/80   Office visit, new
         10/20/2009 Patient 4 02/02/1986   Office visit, new 
         10/23/2009 Patient 4 06/15/1994   Office visit, new 
         11/11/2009 Patient 4 02/02/1972  Office visit, established
         1/12/2010  Baby Boy 1/1/2008    New wellness care 
         1/12/2010  Baby Girl2 9/21/2009  New wellness care
         1/18/2010  Baby Girl3 8/1/2009  New wellness care
         1/19/2010  Baby Girl4 12/21/2009  New wellness care
        Total = 8

    Copy the date parameters to the sub-report.  In the sub-report criteria use the local parameters to select the date field data.  In the sub-report linking link the main report parameter field(s) to the sub-report parameter fields (not the ?PM-?<parametername> default links).   You may need to also link the data in the sub-report by the Dr. field.
    Good luck,
    Eric

  • How to get the FND user_id from a  OAF page

    Hi,
    I want to get the FND user_id of the user who opened the OAF page from the controller. How can I get this. Also how to see all the attribute names that I use in the controller. I see that I can use paramOAPageContext.getParameter("attribute"). Where can I get the list of all the attribute names?
    Thanks for your help.

    What attribute name was associated to that Button to use in getParameter(?)You have to enter the bean Id, let say the PoHeaderId is a MessageStyleTextInput Bean so have to take its ID from JDev or from front end.
    String value = pageContext.getParameter("BeanID");Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to get the html source for these web page ?

    My code work well for standart page, but I'm unable to get the html source from these page with my vb program :
    http://www.slashdot.org
    http://userfriendly.org
    http://segfault.org
    here my code
    private sub commandgethtml_Click ()
    Inet1.Cancel
    Inet1.Protocol = icHTTP
    Inet1.URL = theURL
    HTMLcode = Inet1.OpenURL(theURL, icString)
    RichTextBox1.Text = HTMLcode
    end sub
    thanks in advance.

    Hello Cyrano,
    This Developer Forum focuses on the National Instruments product "Measurement Studio for Visual Basic" (formerly known as ComponentWorks). Our goal is to help people to better integrate this product into their test, measurement, and automation applications. Your question directly pertains to the Microsoft Internet Transfer Control. I think you would find an increased number of responses that are better focused on your question if you would repost it to a forum that specializes in general VB and internet programming. Good luck!
    Jeremiah Cox
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • How to get the values from form calls in user exit?

    Hi all,
    I am not getting a specific value readily in an user exit.
    ?Can any one tell me how to find what are the fields,tables available in various form calls(visible while debugging) in an user exit.
    For example sapxkl is one ofthe callls...(sapxkl)<table>[] will hold some data.how to find what r the values available for <table>.
    Thanks.
    Edited by: sanjay_ask on Apr 16, 2010 10:43 PM

    HI ,
    Use this line of code
      field-symbols: <l_fs> type any.
      data: l_value type char20.
    Get Plant
      l_value =  '(SAPLCEI0)GV_WERKS'. " Here give the program name and variable name
      assign (l_value) to <l_fs>.
      v_werks = <l_fs>.         " Instead of V_werks use you internal table
    Thanks
    Subhankar

  • How to get the pre-population on modify account page?

    Hi,
    I am working on OIM 11g R2 PS1 and have a following requirement :
    User has to modify his existing email id through a request. User goes to modify account page, where all other fields from process form is hidden and only 'Email Address' field is displayed to the user to modify.
    I have to pre-populate the 'Email Address' attribute with some system generated logic on this modify account page. How to achieve that? (either a system generated dynamic label or system generated logic on the email address attribute itself)
    Any idea? As per my knowledge we cannot have pre-population on modify page, like we have on create page.
    Kindly suggest how to achieve this requirement.
    Thanks,
    Neha Gupta

    Hi,
    Let me explain in this way:
    1) User got some default email address first time, this is not through any request.[e.g [email protected]]
    2) Now the user got married and she wants to change her email address as per her new lastname(through a request).[First name: Neha , Last Name : pqr]
    3) So she will go to the modify account of the resource and will change her email id, here we have to display an oim suggested email address which is available, on modify page, this logic we will generate through java code.
         [oim suggested email address: [email protected]]
    That's why we want only on modify page not on create page, as creation of email address is not requestable.
    Thanks,
    Neha

  • How to get the current date using HTMLB JSP page

    Hi All, I developed an iview with several fields using PDK, I would like to know how can I include for a date field a dynamic value witch in this case is the current date.
    <hbj:inputField
    id="Date"
    type="date"
    maxlength="10"
    showHelp="TRUE"
    required="TRUE"
    value="???"
    />
    Thanks in advance
    Alexis

    Hi Alexis ,
    u can use the setDate("3.12.2003") function to set date for this input field.
    u just change the id = Date , because in jave we have Date class. rename it to another name..
    suppose id = systemDate
    <%
    Format formater = new SimpleDateFormat("dd.MM.yyyy");
    Date syDatum = new Date();
    %>
    then
    put
        systemDate.setDate(formater.format(syDatum));
    this will set the date .....
                        Regards
                        Kishor Gopinathan

Maybe you are looking for

  • How do I upload CDs from my PC to my ipod using the cloud?

    How do I upload CDs from my PC to my ipod using the cloud?

  • TS1702 App Store updates blank

    I have a red "1" on my App Store app, telling me one of my apps needs to be updated. But when I go to the updates it won't show anything, it's just blank. Everything else in the App Store works but I can't see the updates.any suggestions?

  • What is wrong with these PL/SQL codes?

    DECLARE CURSOR C_All_Tables IS select table_name from user_tables where substr(table_name,1,1)='B'; BEGIN For cnt1 in C_All_Tables Loop Declare CURSOR C_EachTable IS select NAME from cnt1.table_name; V_Result varchar2(20); Begin for cnt2 in C_EachTab

  • Remove applications from the list in activities overview in GNOME

    I am looking to edit which applications are listed in the "All Applications" in the activities overview in GNOME, since a lot them are NEVER used, and makes the menu look very messy. Any clues on how to this? I installed the alacarte prog, but it can

  • Dump error of t.codes MR51(top urgent)

    hello, please help me, i am having the problem of findout the error of dump. t.codes is MR51 while execute getting the error of dump, how to find out the error, i can tried ST22 there also i couldnot understand the error, please let me know the proce