Issue in FPCOPARA of FI .. please help

Hello all
I am working as ABAP developer , on 4.6C system. We have developed a Print work bench form (PWB) through tcode EFRM , and we use it in FPCOPARA . In the END EXIT in PWB form , i m inserting a single record in Z table.
Now,
(1) When i run the PWB form directly from EFRM for testing , 1 records gets inserted , which is correct.
(2) When i run FPCOPARA , and in the PRINT PARAMETERS i give REAL PRINT option (i.e. printing 1 st time) , the print is generated and 1 record is inserted in Z table , which is also correct.
BUT
(3) when i run FPCOPARA & in PRINT PARAMETERS if i give REPEAT PRINT option (i.e. printing 2nd time onwards) , 7 records gets inserted in Z table which is NOT CORRECT.
I think in REPRINT option , my PWB form is getting called more than 1 time (here 7 times) , which seems difficult to understand.
Please provide help ..Awaiting your valubale inputs on this.
Thanks in advance
Best Regards
Nilesh

Hi Nilesh,
What is the input you are passing for FPCOPARA tcode and what basically is the application it is trigerring.
Basically, when you are giving the real print, only one record might be elligible for printing. Check the entry for table DFKKCOH table. It is for correspondence header/.
Basically, what happens in FPCOPARA is the print event is triggerred and it takes into consideration the records from DFKKCOH table (DFKKCODCLUST - in case of cluster data).
For real print, it just checks only those documents having print date as blank and in reprint, it takes into consideration all the records for which reprint is made.
So, please check, if the input passed on to the FPCOPARA triggerres multiple printing, then for each call of application form, the entry would get updated in the Z table.
Also, check in your case, multiple spools would be getting generated. So, make some modification for the print parameter, so that single spool gets generated and hence the single entry would be updtd for the Z table.
Hope this helps!!
Regards,
Rajesh Popat

Similar Messages

  • Power up Issue macbook Pro A1175? (please help)

    I turn on the power and the chime sounds but the screen stays black and there is no hard drive activity. The indicater light on the front of the computer lights up: the light thats on the button that opens the laptop.
    The light on the battery also turns on but there is no HDD lighting up and no activity. This issue started this morning as last night I turned off the Macbook pro to shut it down and it powered off correctly. Before I shut it down the programs that were running on it was Photo shop, Safari, Itunes - Itunes was playing some music but it was on pause for several hours, and Furcadia. I shut them all down closing each application individually and then shut down the book pro. it's a 15 inch mac book pro. S/N W872904NXAH
    M/N A1175
    Can anyone please help me? I don't remember what version the Leopard version I have but I think it was somewhere between 10.5.1 - 10.5.6.
    Tech support want to charge me like 50 dollars just to get advise on what to do.,,, I tell you.... It's a rip off... My girlfriend's father is going to send me the disc to get it fix prolly .. i has leopard on this disc..
    Any advise..? I could use some Keys or tips to try and test this laptop to see if any problems might be OS related...
    if there is any alternitives id like to know. my gf really needs this laptop back as she needs it for college.,, Id hate to have to send it in to apple.. it would take weeks ,,, she doesnt have weeks and she needs her data now.
    Also is it possible to hook up the hard drive in the laptop to another computer running Leopard? Or is it possible to use Linux Kabuntu to use DDR Rescue the data or extract it?
    The hard drive is not responding to anything and someone told my GF that it might be a hard drive related issue.

    I am adding a other piece of information that any viewer must see: I have checked out the help areas of the macbook pro and I tried to find step guides in the Resetting the PMU for IBook or MacBook models here is the link:
    http://support.apple.com/kb/HT1431?viewlocale=en_US
    when I try to find my model it is not listed there nore anywere else on step guides to reset the PMU I have already reseted the VRAM and such but still to no avail it has failed to resolve my issue does anyone know how to reset the PMU On a Powerbook Pro A1175? Its a 15 inch that came out 2007 of June 5th. Mid year 07.
    I found my specs and here it is :
    http://support.apple.com/kb/SP17
    I can't find instructions on to do these steps,, So please if any techs out there more experienced in Mac OSes I would greatly appretiate the help.
    Sincerly,
    Brickstin.

  • SSD issue, intel x18-M G2, please help!

    Hi,
    I got two intel x18-m G2 SSDs, but either of them couldn't be installed win7 os.
    is it booklet 3G doesn't support this style SSD?
    Please help.
    Thank you.
    Kind Regard.

    I did it as you say
    clone the system to SSD
    And replace it into booklet. then start boot with external usb win system installer
    I hv tried to either install new system or recover the system.
    But the fundamental issue. My booklet could not recongized my SDD ....even on bios.
    Do i going on the right track to install???
    Tks for help
    ceroberts75 wrote:
    sz2903 wrote:
    i follow all steps and turn of trim on win 7.
    after reboot my bios still not reconize my intel x18 drive
    pls help me how to let my sdd shown on.bios
    tks
    i wrote in the post just before you posted this NOT to play with the trim.
    yes it is easy to do it,  but now yuou will need to reduplicate your old hdd to your ssd and start over.
    you will only get the blue screen...and nothing you can do about it.   i spent hours trying to prove that wrong and 20 minutes just reduplicating the drive, reinstalling it, and up i was.

  • Issue with Bean.. Please Help..

    Hi All,
    I have created a 2 Portal DC Projects (" A") and ("B").
    I am getting a Bean (Ex:->"ModuleBean") in Project "A" and then I am setting this Bean in a Session Variable using :
    ModuleBean mBean=getBeanData(x,y,z);
    HttpSession PageSession = request.getServletRequest().getSession();
    PageSession.setAttribute("DataBean",mBean);
    Then I am iterating the Data from Session Value using,
    session.getAttribute("DataBean") and iterating the Data from the Bean in the JSP of the Project "A". Then I am getting the data in JSP without any problem.
    In the above JSP, I have a link, on Click of this Link it will Navigate to another Project"B" having JSP DynPageComponent("CompB") . Here I want to get the same Bean Data from the Session.
    I did like below.
    HttpSession BPageSession= request.getServletRequest().getSession();
    ModuleBean bCompBean=null;
    bCompBean=(ModuleBean)BPageSession.getAttribute("DataBean");
    Note: The Same Variable Name I used in Project "A" to store the Bean Data. Please refer the code lines given above.(PageSession.setAttribute("DataBean",mBean);)
    When I print the Value of bCompBean--It is giving a Bean Object of type "ModuleBean"  (com.qp.erlc.modules.util.ModuleBean@1a7a4a4f) .
    But Now the ISSUE is:
    When I take some Value like bCompBean.getTitle(), then it is giving a java.lang.ClassCastException.
    Can anyone tell me how to resolve this Issue.???
    I already tried as below also in Project B to get the Value from Session.
    Object bObj=null;
    bObj=(Object) BPageSession.getAttribute("DataBean");
    ModuleBean bCompBean=null;
    bCompBean=(ModuleBean)bObj;
    When I print this is also giving a Bean Object of type "ModuleBean"
    (com.qp.erlc.modules.util.ModuleBean@1a7a4a4f) .
    But here also If get some Value using getterMethod , this way also giving the same java.lang.ClassCastException.
    Please Help me in solving this Issue...
    Thanks&Regards||
    Ashok Kumar M.

    Hi,
    i am also facing same problem.. Please help me if u resloved this issue?
    Regards,
    Satya

  • FLASH ISSUE WITH MY SITE! PLEASE HELP!

    I've uploaded a test site to see how it would look and it seems there is a problem with line spacing or something??!! Flash is not my strong point so I would love some help PLEASE!!! When I view the site running off my laptop (offline) it runs fine, everything is in order. Yet online the spacing issue occurs. Its a problem because the site is fitted into a rectangle type layout that is centered in the screen, because of the spacing issue the text rolls down past the border of the rectangle and even goes out of view towards the bottom of the browser. The flash site pulls the info for the gallery and text for the main sites pages from two xml files.
    PLEASE HELP I'M DESPERATE!!!
    Big thanks!!!

    From the screenshot: Is the spacing problem the space between the bold line of text and the regular text below it?
    When you import text from an .xml file, the literal text is usually put into a variable, then that variable is used to populate the dynamic textfield with that text. The htmlText that I was referring to is the text in the .xml file. You mentioned a break tag, so I'm assuming that you are using html formatting on the text in the .xml file. If this is true, then the problem is most likely in the way that the text is organized in the .xml file. Flash sees carriage returns and spacing differently than most current browsers. It works more like older versions of IE in that it incorrectly adds vertical space to text in seeminly random ways.
    For instance, if you have text set up like this:
    Line one of the text.
    <br>
    Line two of the text.
    Flash will see this as three carriage returns, not two. You may need to re-write the text like this:
    Line one of the text. <br> Line two of the text.
    Without seeing the layout of all of the files for your movie, I can't really tell where the problem might be with the loading errors. I usually put my external files in folders that are in the same folder as the Flash movie so that the relative path is short and simple.

  • Resource Conflict – Serial Bus Controller & PCI Bus Issues - Cannot Load Windows 7 - PLEASE HELP!

    Anyone have any ideas about a remedy?  I am ready to toss it and purchase another.   THANKS! HP Pavilion Notebook,  dv9827clAMD Turion 64 x 2, Bios F.34Windows 7, SP 1  (Upgraded from OEM Vista SP2) PROBLEM:   This morning my system has a blank illuminated screen.  Upon power-on, the system eventually goes to the blank screen.  Can get to BIOS functions, but beyond that it will not load Windows 7.  System was working with Windows 7 prior to this issue.  No recent changes or updates made to this system.   Stationary - No physical abuse.  Five (5) years old.   Upon power-on, the screen gives PF keys, which enable me to enter the BIOS:          F1 – System Information > Clock still has correct date and time.          F2 – Startup Check  -> Both HD and RAM OK          F9 – Change Boot Device Order -> Can change device order, but it still won’t boot or respond to a System Recovery DVD in a USB DVD.  ( Notebook DVD stopped working before this problem happened.)          F10 -  Enter Setup          F11 – System Recovery – Two choices, but <enter> and arrow keys do not work.  (They DO work with other F-selections, but not with F-11 menu)                    (1) Continue with System Resume                     (2) Delete Restoration Data and Proceed to System Boot OTHER OBSERVATION:  When access PF1, I get the BIOS.  If I exit and save with PF10, I get a brief flash of error messages, then it goes back to the PF-selections and eventually to the blank screen.  Here are the error messages:Bios Version F.34ERRORResource Conflict – Serial Bus Controller on MotherboardBus 02  Device 05  Function 00ERRORResource Conflict – PCI on MotherboardBus 02  Device 05  Function 01ERRORResource Conflict – PCI on MotherboardBus 02  Device 05  Function 02ERRORResource Conflict – PCI on MotherboardBus 02  Device 05  Function 03ERRORResource Conflict – PCI on MotherboardBus 02  Device 05  Function 04 OTHER ACTION:  Tried a hard reset = Removed battery, held down power key about a minute, but no effect.  The data part of the HD is ok.  I can remove the hard drive and put it in an enclosure, then access the data with another computer.

    Hi!
    I have exactly the same problem on my HP dv6750, but I can't find an answer that really help me to solve it.
    Well, this post shows the description of my problem, so, I don't want this question dies.
    If somebody have the solution, please, help me to bring my laptop back to life again.
    Thanks 

  • Major DNS issue with my Partner Site PLEASE HELP...

    As a a business catalyst partner my partner site is completely down and all my corporate emails have been erased.  I built a new partner site using a business catalyst template and when I uploaded the new site to my partner site there were major conflicts with the default site-wide template and the files that I am unable to erase via FTP on the partner portal so the new template never fully worked. 
    So I moved on to Plan B - which was to open a new site as a "customer" under my own business catalyst account.  Uploaded the files and the site worked, now when I tried to take my partner account domain name and transfer it to my newly created customer account I ran into a second even larger issue.  It tells me the domain name already exists (as my partner domain) - please delete all files and try again (see screen shot for details.).
    It will not allow me to erase the partner account under my partner portal as the "Delete Site" feature is not there for my partner portal (see screenshots for example).
    Please help me straighten out this mess as my business site is completely down and all my corporate emails have been completely erased. 

    I actually had the exact same problem. If you are a premium partner and rebranded unfotunately the domain name can't be moved because your customer sites are tied to that domain name.
    So the only option is to create a new domain for your site. It sucks I know, but I can see why it has to be that way.
    If you have not rebranded, then contacting support might be able to change that for you.

  • Adobe Reader for Android issue.... Please help!

    When I open certain pdf files on my HTC Evo they open appear completely blank. Does this have something to do with security settings? If so how to I fix it? I am able to open these files just fine on my pc! This is so frustrating. Please help.

    Use the forum 'Adobe Reader for Android'.

  • Issues with Adobe Revel subscription PLEASE HELP

    I received an email 9 days ago that said my adobe revel premium subscription has been paid for. I am unable to upload my photos. Please help, this happened last month as well.

    Carly,
    I addressed this on another thread and sent you an email as well.  You should be set for now, though please also respond to my email.
    Thanks,
    Peter

  • Major issue in brightness- Iphone 4 please help

    In order to preserve battery, I turned the brightness all the way down on my iphone 4. Instead of being able to dimly see something, I can't see anything; the screen is completely black. My mac also can't pick up my phone while it's connected, so I can't back it up. Please help!

    Have you Rebooted your iPhone? (Home & On/Off button)
    Try turning it completely Off..wait a minute or so then restart..

  • Issues installing key frame caddy, please help.

    hi everyone, i`ve been wrestling with extension manager trying to install keyframe caddy for flash cc pro, it keeps asking me to install flash player, i did install it but it only install in browser. i really don`t know what`s the issue or what to do, any help would be very appreciated.

    Hi there,
    Can you tell me what version of Flash you are using by clicking "About Flash" in your "Flash" menu?
    You can also try installing an older, free version of Keyframe Caddy (1.2.1). https://creative.adobe.com/addons/products/569#.VE_b0YvF_Zg
    We have also released a new bug free version of Keyframe Caddy Pro for CC and CC 2014 (1.0.5) https://creative.adobe.com/addons/patches/5166
    Let us know if this helps. If you have any further issues, feel free to message us at [email protected]
    Thanks,
    -Catie

  • Issues with canvas crop. Please help!!

    I shot some video using a Canon D5. It plays fine in Quicktime and everything. But when I put it in Final Cut, it looks fine in the viewer, but is cropped really small in the canvas. Plenty of people have explained how to crop in the canvas, but what about how to uncrop??!! I want to see and work with the full frame! I know there must be some easy solution to this -- someone please help! Also, I am using Final Cut 5.1.4

    The D5 shoots AVCHD. You need to convert that so you can edit it.
    In FCP 5.1.4, your best choices are Apple Intermediate Codec or DVC PRO HD.
    >it looks fine in the viewer, but is cropped really small in the canvas.
    Your Sequence settings in FCP do not match the codec and pixel dimensions of the source footage.

  • Username and password issue in SAP GUI logon-Please help

    Hello,
    Usually I download the tx.sap file from my work system it downloads and opens the main screen directly.( password is disabled for us). Now when I connect from home(home system through VPN) ,i can download tx.sap file from my company's SAP web portal ,but when I open the same through SAP GUI on my system it pops up a password screen- the issue is my employee ID is already populated in the username tab, but when I provide my domain password (i tried all my passwords),it throws an error -you do not require a password, now when i try without a password it shows fill in all required entry fields. Please assist.

    If you enter just the username, the network is not sure which "AD Domain" to contact tp authenticate you as a user. So you need to specify the domain name in any of the below 2 formats. Give it a try.
    Format 1 - [email protected]
    Format 2 - DOMAIN\UserName
    Hope this helps.

  • Could not connect to internet even when my cellular data is ON. Have tried the steps mentioned in "trouble shooting cellular data" but still the same issue exists. Can anyone please help me out

    I am unable to connect to internet on My iphone 5. I have turned on Cellular data and also 3G but still could not connect.
    I have also tried the steps mentioned for touble shooting cellular data, restarted my phone, turned on airplane mode and turned off. removed my sim and inserted back. Still internet connection in not getting connected.
    Please can anyone help me out from this issue.
    Regards,
    Josh

    Do you have voice service?  If you have voice service but just no cellular data service, I would suggest calling your carrier as you may just have an improperly provisioned account with them, or a bum SIM card.

  • Issue With Receiving Calls. PLEASE HELP!!!!

    For the past couple of months both lines on my account have been experiencing issues. Randomly, when someone attempts to call one of the 2 lines (me or my wife), they receive the "Thank you for calling Verizon Wireless. The number you have reached has been changed, disconnected, or no longer in service." They then have to call back (sometimes multiple times before they can get through). I experience it when I call from my mobile to my wife's phone as well. It is become quite a pain and VZW has been NO help at all!!! They claim I am in a marginal service area. There are multiple problems with that statement.
    1. I am in a great service area and I always have full service.
    2. The problem does not always occur in my home service area!!!
    The rep then changed her mind and said it must be equipment, however my wife has been through 3 different phones within the past couple of months.
    She then recommended I changed carriers!!!!! This really upset me as I have Verizon service for everything (VZW and FiOS).
    Can someone please recommend any kind of solution????

    jnd1020 wrote:
    For the past couple of months both lines on my account have been experiencing issues. Randomly, when someone attempts to call one of the 2 lines (me or my wife), they receive the "Thank you for calling Verizon Wireless. The number you have reached has been changed, disconnected, or no longer in service." They then have to call back (sometimes multiple times before they can get through). I experience it when I call from my mobile to my wife's phone as well. It is become quite a pain and VZW has been NO help at all!!! They claim I am in a marginal service area. There are multiple problems with that statement.
    1. I am in a great service area and I always have full service.
    2. The problem does not always occur in my home service area!!!
    The rep then changed her mind and said it must be equipment, however my wife has been through 3 different phones within the past couple of months.
    She then recommended I changed carriers!!!!! This really upset me as I have Verizon service for everything (VZW and FiOS).
    Can someone please recommend any kind of solution????
    First, you really should consider calling another representative and report your disatisfaction with that prior rep. Advising you to switch carriers was in poor taste. They are trained quite thoroughly to assist customers to the fullest and not advise leaving VZW. Secondly, if the issue has transcended the device in that it has happened through multiple esn changes (your wife has been through 3, you wrote), then it obviously is not the device. Next, if you are experiencing intermittent issues with this in an area that otherwise works fine, it probably has nothing to do with the service coverage; if the coverage was a problem, you either would be unable to make a call at all, would have multiple dropped calls, or would experience an increasingly degraded call quality. This tells me that it has to do with the phone's connection to the network, which an over-the-air program attempt might resolve (*228, option number 1 - you could even possibly get away with option number 2) like the prior individual explained above. The likelihood is that you are going to need to file a trouble ticket with your lines, which can only be done through technical support after going through the initial level of troubleshooting through customer care. You really should call them again, with this knowledge backing you up.

  • Urgent :- Issue with OC4J component startup - Please help.

    Hello Oracle Gurus,
    We are facing a very strange problem with the startup of OC4J home and the component is not starting up.
    The application server we are using is Oracle 10G 9.0.4.
    Please could you guide me as to what could be wrong so that we could resolve this problem ?
    Thanks and Regards,
    Ramanan.
    We checked up the logs and we found the following errors -
    "06/05/09 14:38:19 Start process
    06/05/09 14:38:24 Warning: Error reading transaction-log file (/u01/gcube1/oracle/j2ee/home/persistence/home_default_island_1/transaction.state) for recovery: premature end of file
    06/05/09 14:38:24 Forced or abrupt (crash etc) server shutdown detected, starting recovery process...
    06/05/09 14:38:24 Recovery completed, 0 connections committed and 0 rolled back...
    06/05/09 14:51:03 Start process
    06/05/09 14:51:12 Warning: Error reading transaction-log file (/u01/gcube1/oracle/j2ee/home/persistence/home_default_island_1/transaction.state) for recovery: premature end of file
    06/05/09 14:51:12 Forced or abrupt (crash etc) server shutdown detected, starting recovery process...
    06/05/09 14:51:12 Recovery completed, 0 connections committed and 0 rolled back...
    06/05/09 14:56:11 Start process
    06/05/09 14:56:17 Warning: Error reading transaction-log file (/u01/gcube1/oracle/j2ee/home/persistence/home_default_island_1/transaction.state) for recovery: premature end of file
    06/05/09 14:56:17 Forced or abrupt (crash etc) server shutdown detected, starting recovery process...
    06/05/09 14:56:17 Recovery completed, 0 connections committed and 0 rolled back..."

    Hello Deepak,
    Thanks very much for your prompt reply to my problem.
    I tried to do what you mentioned in your reply to me, but still could nt manage to get the OC4J component up and running. We suspect that it may be some installation issue and we are blowing up the existing installation to make a fresh one on a new machine.
    Will keep your suggestions in mind , they really help me out and am learning :-)
    Have a great day and thanks once again !
    Best Regards,
    Ramanan.

Maybe you are looking for