Adobe form -- multiple copies issue

Hi experts,
using VF03, when i print adobe form with multiple copies automaitically spool is generated with 2 copies.
but my problem is in the first copy price value at the bottom of the page is displayed, but the same price value in the second spool is displayed as ZERO.
my adobe form has a custom driver program.
how to go ahead with this issue.
Regards,
Jayant.

sounds like the custom driver program is processing the form twice with data clear values occurring between the two executions.  Are you sure the program sends once with a copy counter set to 2?

Similar Messages

  • Adobe forms multiple print issue

    Hi All,
    I am new to ADOBE forms and my development involves generating prints of the same form with different data on it in one go. Now everythign is working fine except for the print preview bit. I want to disable print preview and dialog. I have passed all necessary parameters for FP_JOB_OPEN  but that is not providing desired results. Could anyone please advice me on how to fix this issue?
    Regards,
    Renjith

    Hello Renjith,
    Please try the below code. It should work.
    DATA : ls_params TYPE sfpoutputparams.
    ls_params-dest = <dummy printer maintain in your table TSP03 like 'LP01'>.
    ls_params-nopreview = 'X'.
    ls_params-nodialog = 'X'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
         ie_outputparams = ls_params
    EXCEPTIONS
         cancel = 1
         usage_error = 2
         system_error = 3
         internal_error = 4
         OTHERS = 5.
    Reward point if it solve your issue.
    Thanks and Regards,
    Gopi

  • Adobe forms-multiple pages display problem

    Hi All,
      I had a query regarding the display of multiple pages in adobe 5.5 version.
    I had data which suits in more than one page in adobe.But its displaying only the data in the first page.And it is displaying the empty second page also,but with no data.So any suggestions to solve this issue???

    Hi,
    version  5.5.1.280? It is version of Adobe Reader? If yes then you can't use this version for viewing of adobe forms (note 834573 - SAP Interactive Forms by Adobe: Acrobat/Reader version).
    Another suggestion: Is subform of your first Body Page flowed (tab Object->Subform, propertie Content)? If not then content of this Body Page can't dynamically grow.
    Check subforms of your Body Pages, especially tab Object->Pagination.
    Regards
    Michal

  • Problem with adobe forms multiple pages

    Hi
    can someone help me how to get multiple pages in adobe forms in case the item lines exceeds the page capacity?
    Thanks

    It should not be much of a problem. Here is a detailed solution to your problem:
    In your context , create a node MasterNode of cardinality 1...1 and singleton set to true. Bind this to the dataSource property of the InteractiveFormElement.
    Inside this MasterNode create a node Data of cardinality 0...n and singleton set to false. Keep all of your payslip attributes inside this node.
    In your interactive form element , in the Body Page create a subform of Type Flow Content and Flow Direction Table .Check the chechbox  for Allow Page Breaks within Context . Inside this subform create another subform of Type Flow Content and Flow Direction Western Text . Uncheck the checkbox for Allow Page Breaks within Context . Put all of your pay slip UI elements inside this subform and bind them with the attributes under the node Data. Also tick the property of the inner subform under the section Object->Subform that says Repeat Subform for each Data Item
    In your view controller coding area , create an element of the node Data for each employee record and populate it with values for the particular employee . 
    Add all of the elements that you created into an ArrayList and bind this ArrayList to the node Data. Now your form is ready for n number of employees.
    Put this sort of coding in your view controller coding:
    IDataElement objData = null;
    ArrayList arlData = null;
    int intNumberOfEmployees=0;
    try
            arlData = new ArrayList();
            intNumberOfEmployees = //Get size of your model node that returns employee info
            if(intNumberOfEmployees>0)
                    for(int i=0;i<intNumberOfEmployees;i++)
                            objData  = wdContext.createDataElement();
                            objData.setName("//Value fetched from backend here");//Eg:wdContext.nodeEmployeeInfo.getEmployeeInfoElementAt(i).getname()
                            //Similarly set all of the values
                            arlData.add(objData);
            wdContext.nodeData.bind(arlData);
    Hope this helps you...

  • Calling Webservice from Adobe form - Webservice URL  Issue

    Dear Friends,
      I have developed a webservice and calling it from an Adobe form. I have downloaded the WSDL file from tcode SOAMANAGER. When I create a data connection from the Adobe form  I use this WSDL file and the form elements gets created automatically and I drag and drop them into the form. The issue is when I click on the Submit(Execute) button the Webservice URL is always pointed to the client from where the file was downloaded and its hard-coded ( for example if i download the wsdl file from client 300 then the URL would be http://<location>/sap/bc/srt/rfc/sap/z_web_getmat/300/z_web_getmat/z_web_getmat). So if i execute the form from client 200 its not working. How to make this URL dynamic so that the webservice gets executed from the client from where this form is called. Please advice.
    Regards
    Sapient

    Hi,
    You have to handle it in your form on submit button calling the web service:
    Write below java script code at submit event to change the URL at run time:
    var tempsoapAddress = xfa.connectionSet.DataConnection.getElement("soapAddress").value;
    var tempwsdladdress = xfa.connectionSet.DataConnection.getElement("wsdlAddress").value;
    var ServerPath = body.systemConfig.system.rawValue;
    var client = <Get Client from a data attribute>
    var Soap_PreServerPort =  "http://";
    var Soap_PostServerPort =  "/sap/bc/soap/rfc?sap-client=";
    var SoapAddress = Soap_PreServerPort + ServerPath + Soap_PostServerPort + client ;
    var Wsdl_PreServerPort =  "http://";
    var Wsdl_PostServerPort1 =  "/sap/bc/soap/wsdl11?services=ZBAPI_PO_CREATE2&amp;sap-client=";
    var wsdlAddress =  Wsdl_PreServerPort + ServerPath + Wsdl_PostServerPort1 + client ;
    xfa.connectionSet.DataConnection.getElement("soapAddress").value = SoapAddress;
    xfa.connectionSet.DataConnection.getElement("wsdlAddress").value = wsdlAddress;
    xfa.connectionSet.DataConnection.execute(0);
    xfa.connectionSet.DataConnection.getElement("soapAddress").value = tempsoapAddress;
    xfa.connectionSet.DataConnection.getElement("wsdlAddress").value = tempwsdladdress;
    xfa.connectionSet.DataConnection = null;
    Change the variable wsdlAddress as per your requirement. The above code is just a sample.
    For getting the client pass it in a datasource variable attribute at time of downloading the form. At time of submit get the value of that variable and use it to form the url.
    Regards,
    Vaibhav

  • PU19 - Adobe form Tax rates ISSUE

    When the tax reporter is executed for a tax authority, tax rate is displayed in the ADOBE form. Where as our business needs the change in the current tax rate value. The associated tax type for the respective ADOBE form is not maintained either in BTXRATE table or T5UTX table.So,Please help me out where I can change the tax rate when tax type is not maintained in BTXRATE or T5UTX.
    Regards,
    Kamala

    Hello Kamala,
    The SUI use the values maintained by your payroll and populate the PCL4 cluster to generate the report, if want to change the
    rates of this employee, you should do a manual entry in Tax Reporter, you need to click on the menu item utilities and then select manual entries. If you would like more information on manual entries, you can refer to the year end guide for Tax Reporter available on service.sap.com/hrusa.
    Cheers ,
    Jaime

  • ADOBE FORM-static-called multiple times - data on different pages

    Hi Experts,
    I am calling an adobe form multiple times for each employee inside a loop.
    The layout is less than half the page.
    For each employee inside the loop when calling the ADOBE form it is triggering a new page.
    I want to continue the printing in the same page.
    Is this possible? Please advice.

    That is bc ADF life cicle... Is always executing 2 times...

  • Multiple copies of music on iPad, and some songs play as a different song

    Hi,
    I've been having this weird problem that I have been looking into for many times and never have found a straight answer. 
    I've been finding that I have multiple copies of the same song on my Music (built-in) app on the iPad 2.  I don't know why it's been doing this.  Yesterday, I finally got a chance to restore my iPad 2.  After the restore, the same problem consisted.  Not only has that been happening, but I also have been having another weird problem with the music app too.  I have a song that I want to play , but it ends up playing a different song.   For example,  choose the song "we are the champions" or some song, and then it plays a different song like "We will rock you" or some other song. (it's not these songs, I don't have them in my library.  They are just examples) but it keeps the name.  So when the iPad "says" it's playing "we are the champions" it is actually playing "we will rock you" or any other song.
    Sorry if I haven't made this clear enough.  I tried the best I could.  I have never had this problem until I updated to iOS 5.  I am currently running iOS 5.0.1
    Is there any way I can fix this problem I have been having?  I already tried the restore.  I don't know what else to do.

    I'm not sure about the playing a different song when you choose a nother, but I Just figured out the multiple copies issue.I had been having the same problem and realize that some of the songs in that album were marked as "part of a compilation." SO i went to each individual song in that album and unchecked the box (when you go to th e"get info" screen) Hope that helps.

  • Adobe PDF for Goods Issue / Stock

    Hi All,
    I've been looking thru the list of available Adobe Forms in SFP, and there are a few for purchasing (MEDRUCK etc) and some for issuing and receipting. I haven't  been able to locate any around the inventory control area.
    It is easy to use adobe forms for Purchase Orders (assigned in Define Message Types for Purchase Order) however it is not clear in configuration where to assign an adobe form for receipts / issues and inventory.
    Has anyone had any luck using adobe forms for these functions or is everyone still using smartforms? Does SAP even support adobe forms for Goods Issues / receipt and pyhsical inventory documents?
    Kind Regards,

    Nomally,  PDF forms are supported for only External documents , since IM related documents are for the companys internal purpose i guess there isnt an option given for PDF forms for them . But there are standard programs which you can use to convert any Spool to PDF  SE38: RSTXPDFT4  .
    Or you can install PDF printer , and get any output in PDF format directly from SAP.
    Or you need your abaper to use OTF in the Print program to gte an outpurt in PDF.

  • Numeric Field in Adobe Form

    Hi,
    I'm trying to display a numeric field in an Adobe Form. The issue is that the decimal part of the the field  is getting truncated when I view the Adobe Form in Print Preview.
    The numeric field is of the form -6,213.19. In the form the value appears as -6,213.1 . I'm not able to understand why this value is getting truncated. I've tried all the numeric and decimal patters available but with no luck.
    Could you please help me to resolve this issue.
    Thanks,
    Sandeep.

    Hi
           You dont specify any patterns. You just simply drag and drop the Numeric field on the layout and then right click on the field
    go to Pallets -> Object -> Value tab -> here you specify your value  -6,213.19.->In Binding tab -> Data format as Float. and then check the priview in PDF its printing the same as -6,213.19.
    Try this once. It will work i checked it . Its working
    Thanks
    Sriiiiiiii(Srikanth)

  • Multiple copies in Adobe form with different header text

    Hi All,
    I have created Adobe form for Invoice and now my requirement is when we create an invoice it should generate 4 copies with different texts like original copy, duplicate copy and triplicate copy.
    I know its possible in samrtforms using the copy window and maintaing text there.Is it possible in adobe form , if yes how can we achieve this.
    Regards
    Lalit

    Are you using a custom driver program?
    If yes, then loop the function module with the number of copies you have.
    the copy name should be a variable which should be passed to the form in the loop change the value of the copy control accordingly.
    Please let me know, if you see any issues.
    Thanks,
    Rakesh

  • How could Adobe Form handle multiple Include Text

    Hi all,
    In abap program, I have declared a global structure *t166k and pass it to adobe form. However, the the passing parameter *t166k need to based on the looping xt166k as shown below. If this is the case, how could I handle such multiple include text?
    Thanks in advance.
        loop at xt166k where tdid ne 'F17'.
          move xt166k to t166k.
          case t166k-tdobject.
            when 'EKKO'.
              t166k-txnam(10)   = ekko-ebeln.
            when 'LFA1'.
              t166k-txnam(10)   = ekko-lifnr.
            when 'LFM1'.
              t166k-txnam(10)   = ekko-lifnr.
              t166k-txnam+10(4) = ekko-ekorg.
          endcase.
          perform get_header_text.
        endloop.
    form get_header_text.
      if t166u-druvo = '1'.
        *t166k = t166k.
    endform.                    " GET_HEADER_TEXT
    In Adobe Form
    General     
    Name     GV_HEADER_TEXT
    Description     Header Text
    Status     Inactive
    Text     
    Text Type     Include Text
    Include Text     
    Text Name     T166K-TXNAM
    Text Object     T166K-TDOBJECT
    Text ID     T166K-TDID
    Text Language     FORM_LANGU

    Are you using a custom driver program?
    If yes, then loop the function module with the number of copies you have.
    the copy name should be a variable which should be passed to the form in the loop change the value of the copy control accordingly.
    Please let me know, if you see any issues.
    Thanks,
    Rakesh

  • Best practice in working with Adobe forms in multiple languages

    We have to provide access to some Adobe Interactive Forms in both English and French, some of them from Web Dynpro application(s), some of them as callable objects from Guided Procedures.
    1- We know for sure that we can have two copies of each form, one in English and one in French but that implies duplicating the FormCalc and Javascript code behind. 
    2- Another way if to modify in javascript all labels, captions using some javascript i.e. If lang = "E" then "My label" else "Mon étiquette" . It would work but it is not very efficient.
    Is someone here has experience with this type of situation and would be willing to share his experience with me?
    Thanks in advance,

    Hi Benoit,
    For Adobe Forms in multiple language you can use include text solution also . Within this solution you need to add a language parameter in your interface and then retrieve the include text in the language value ( not current language ) . Personnaly i used a lot this solution with Smartforms text .
    Also i used dictionnary text for text linked with data dictionnary element . For this there is standard function module in SAP .
    Anothers way is in the SFP editor you can translate your form as in SAPSCRIPT .
    Hope this help you
    Regard.
    PS : if necessary i can send you a sample form with smartform/Dictionnary text solution.

  • Rearrange pages when printing adobe form with multiple master pages

    Hello!
    Good day to you all.
    I have an issue in regards with printing my adobe form with multiple Master pages. I have 4 master pages:
    1st master page: a
    2nd master page: b
    3rd master page: c
    4th master page: d
    all with different headers and footers all having the same contents (items). I don't have issue with one page content (it just prints 4 pages with different headers and footers). The issue comes out once the items exceed 1 page.
    What happens is that the preview/print shows (example: 3-page item)
    a1-a2-a3-b1-b2-b3-c1-c2-c3-d1-d2-d3.
    What i need is to print these such that all 1st pages of the 4 master page to be printed first, then all the 2nd pages, then all 3rd pages. Please see below:
    a1-b1-c1-d1-a2-b2-c2-d2-a3-b3-c3-d3
    This is because we will be using carbonless copy paper during printing and it's possible that it would be printed on batch jobs. Please suggest ways to do this.
    Thanks a lot in advance!
    Best Regards,
    abap_peer_dangs

    Hi,
    Is that requirement of multiple pages as groups only at the time of print or at print preview also...?
    Can you have a Print button on this screen or you should be using the Abobe toolbar's Print button..?
    Well if this on a click of a button in the form and the requirement is only at the time of print and not on print prieview I can have a JS script which does this...
    Let me know if this suffice, I can try with a local file and send you the script.
    @ Chris: I didn't understand what do you mean by reported, I was eager to hear and learn a solution from you may be a new approach which I am not aware of ...?
    Cheers,
    Sai.

  • Call for adobe form is going for dump for multiple users

    hi,
    i am calling an adobe form in a program i.e. for multiple users. now my problem is.....
    3 people are using same tcode to generate the adobe form output for different data. but when they click at a time on the button to generate the adobe output, then adobe form is coming for only one user and it is going for dump for other users.
    and this dump is coming because of exception "CX_FP_API_INTERNAL" in funtion module FP_FUNCTION_MODULE_NAME which i am using to get the function module name of the adobe form in my program.
    can u please give me some solution to rectify this issue....

    That's nothing!
    An engineer and I contacted Adobe technical support by phone to ensure the PC I was having custom built was configured to its optimum. They advised XP64 as the best operating environment. After that discussion we had to completely revise procurement, etc to get the bits and compatible XP64 compatible software, putting the build project back a few weeks as well, Imagine how I laughed when I found out on one of these forums that XP64 is the worst choice and totally unsupported by CS4!
    I have written to Shantanu Narayen, Adobe CEO and didn't even get an acknowledgement I raised this last week on the Adobe stand at BVE and was told they'd get someone to contact me asap but guess what, niet...! To be fair there has been one Adobe executive that recognises the problem and the damage poor customer support is causing the company; he has been as helpful as he can. Unfortunately, it seems the overall Adobe culture at the top is "get the money and run". If your problem goes beyond what's already on their web pages, tough luck!
    Regards,
    Graham

Maybe you are looking for

  • Adobe illustrator cs6 has stopped working

    adobe illustrator cs6 has stopped working  please give me solution for this error

  • How to scroll at the bottom using scroll pane

    i am having a label in which i have added a scroll pane. dynamically i will add some text to the label. the scroll bar should move to the buttom after addition of text so that the new text added should be visible. please provide me a solution.

  • ITunes crashing caused by differen versions in Library/Receipts..??

    I am also encountering FREQUENT crashes of iTunes while using different functions.... In response to one of the people posting a message I noticed that I have 2 different versions of iTunes in my Library/Receipts folder-an old iTunes.pkg version 4.8

  • RAID 1 on a 770-C45

    I've got a 770-C45 with an Athlon II X3 435 and 4MB of 1333mhz DDR3 ram and Windows 7 installed on a SATA drive. I've added two 1.5TB SATA drives and tried everything that I can think of to set up RAID1 for data without success. Is there a guide anyw

  • BPEL process retired after OAS restart

    Hi, We are experiencing a strange problem with BPEL process manager. Sometimes when we restart OAS, several BPEL processes are retired. Any idea why? Thanks in advance, Steven