Unsolved  BAPI_ACC_DOCUMENT_POST...problem!!!!

Hi gurus,
I am posting this problem of mine for the third time, but I have got any reply to my previous postings, I don't know wheter the my problem is too difficult or its not an appropriate one to ask. Can someone pleaase reply this time to my problem so that I can proceed into my development, I will really appreciate your efforts.
I am working on an interface where I need to post an accounting document using
f-43 and for this I have identified this bapi 'BAPI_ACC_DOCUMENT_POST', and I have written the following code. everything is working properly but the only problem is, the posting keys I am using are 31 and 40 but when I run my program and look into the document created, it shows me the posting keys as 40 and 50 instead of 31 and 40, can you please tell me how to get rid of this thing .
v_semfile = p_ifname.
refresh it_input_file.
call function 'WS_UPLOAD'
EXPORTING
filename = v_semfile
filetype = 'DAT'
TABLES
data_tab = it_input
EXCEPTIONS
conversion_error = 1
file_open_error = 2
file_read_error = 3
invalid_type = 4
no_batch = 5
unknown_error = 6
invalid_table_width = 7
gui_refuse_filetransfer = 8
customer_error = 9
others = 10.
move:
'RFBU' to documentheader-bus_act,
it_input-doc_date2 to documentheader-doc_date,
it_input-pos_date2 to documentheader-pstng_date,
it_inputdoc_type to documentheader-doc_type,
it_inputbukrs to documentheader-comp_code,
it_input-pos_per to documentheader-fis_period,
it_input-fis_year to documentheader-fisc_year,
it_input-reference to documentheader-ref_doc_no,
it_input-h_text to documentheader-header_txt,
syst-uname to documentheader-username.
if it_input_file-pos_key eq 31.
move:
v_count to glaccount-ITEMNO_ACC,
it_input-glaccount to glaccount-gl_account,
it_input-kostl to glaccount-COSTCENTER,
it_input-prctr to glaccount-PROFIT_CTR,
it_input-bus_area to glaccount-bus_area,
it_input-item_text to glaccount-ITEM_TEXT,
it_input-assignment to glaccount-ALLOC_NMBR.
append glaccount.
move:
v_count to currencyamount-ITEMNO_ACC,
it_input-currency to currencyamount-CURRENCY,
it_input-amount to currencyamount-AMT_DOCCUR .
append currencyamount.
clear: glaccount, currencyamount.
else.
move: v_count to glaccount-ITEMNO_ACC,
it_input-glaccount to glaccount-gl_account,
it_input-kostl to glaccount-COSTCENTER,
it_input-prctr to glaccount-PROFIT_CTR,
it_input-bus_area to glaccount-bus_area,
it_input-item_text to glaccount-ITEM_TEXT,
it_input-assignment to glaccount-ALLOC_NMBR.
append glaccount.
move:
v_count to currencyamount-ITEMNO_ACC,
it_input-currency to currencyamount-CURRENCY.
currencyamount-AMT_DOCCUR = it_input-amount * -1.
append currencyamount.
clear: glaccount, currencyamount.
endif.
CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
EXPORTING
DOCUMENTHEADER = documentheader
IMPORTING
OBJ_TYPE = obj_type
OBJ_KEY = obj_key
OBJ_SYS = obj_sys
TABLES
ACCOUNTGL = glaccount
ACCOUNTPAYABLE = ap
CURRENCYAMOUNT = currencyamount
RETURN = return.
read table return with key type = 'S'.
if syst-subrc eq 0.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
WAIT =
IMPORTING
RETURN = return2.
Thanks
Rajeev....

Rajeev,
for the vendor line you have to add a vendor number and not a G/L account number (SAP will know the G/L behind the vendor and will take care about that). If posting key 31 was specified that is a vendor posting and you need a vendor number for that, so you should go back to functional guys and ask them what kind of posting they want in fact.
Some info about posting keys:
01-09 and 11-19 : customer
21-29 and 31-39 : vendor
40 and 50 : G/L
Come back if you still have questions!
ec

Similar Messages

  • BAPI_ACC_DOCUMENT_POST problem in header text(bktxt)

    Hi experts,
               Am using bapi  BAPI_ACC_DOCUMENT_POST for gl upload for t-code f-02. the problem is header text(bktxt) is not uploading in fb03. how to solve this problem??
    Regards,
    Sunita.

    Because BAPI: BAPI_ACC_DOCUMENT_POST will Check BADI with Posting
    1.BADI Information:
    (1)Object Type Name(Interface) is IF_EX_AC_DOCUMENT (T-code: SE24)
    (2)Method: CHANGE_INITIAL & CHANGE_AFTER_CHECK
    2.Reason:
    (1)Once This BADI has been created for any reason,
        BAPI:BAPI_ACC_DOCUMENT_CHECK & BAPI_ACC_DOCUMENT_POST
        will check it for Document Header Text
    (2)If Method: CHANGE_INITIAL & CHANGE_AFTER_CHECK has been created for any reason,
        but Creator return an null Document Header Text, then BAPI will clear Document Header Text
    3.Solution:
    (1)Add source code into Method: CHANGE_INITIAL & CHANGE_AFTER_CHECK,
        please refer to (2) for detail source code below
    (2)
      DATA: wa_header TYPE acchd.
      IF sy-xprog EQ 'SAPLBPFC'.
    *---<SAPLBPFC> is for Posting     with BAPI: BAPI_ACC_DOCUMENT_CHECK
    *---<SAPMSSY1> is for Test(Check) with BAPI: BAPI_ACC_DOCUMENT_POST
        CLEAR wa_header.
        wa_header = im_document-header.
        ex_document-header-bktxt = wa_header-bktxt.
        CLEAR wa_header.
      ENDIF.

  • BAPI_ACC_DOCUMENT_POST - problem with COPA

    Hi all,
    I'm using the function BAPI_ACC_DOCUMENT_POST to post documents like F-02. It's working right, but it's not transfering to CO-PA. I'm trying to fill the table CRITERIA to pass values for proftability segment, but it's not working right for that.
    I was filling CRITERIA for the follow fields, but I receive a error message in return of BAPI that says 'Complete PA structure ... ' :
        CLEAR I_BAPIACKEC9.
        I_BAPIACKEC9-ITEMNO_ACC = p_item.
        I_BAPIACKEC9-FIELDNAME  = 'KNDNR'.
        I_BAPIACKEC9-CHARACTER  = i_report-kunnr.
        APPEND I_BAPIACKEC9.
        CLEAR I_BAPIACKEC9.
        I_BAPIACKEC9-ITEMNO_ACC = p_item.
        I_BAPIACKEC9-FIELDNAME  = 'ARTNR'.
        I_BAPIACKEC9-CHARACTER  = i_report-matnr.
        APPEND I_BAPIACKEC9.
    Could anyone send me an example of the function ( BAPI_ACC_DOCUMENT_POST ) using table CRITERIA to transfer data to COPA ?
    Thanks

    Hi Savitha,
    follow the values in structures to call BAPI:
    HEADER:
    OBJ_TYPE      BKPFF
    OBJ_KEY          $
    OBJ_SYS           CTD600
    BUS_ACT           RFBU
    USERNAME      FERRATRE
    HEADER_TXT     4400000325
    COMP_CODE     7100
    DOC_DATE     20060209
    PSTNG_DATE     20060209
    TRANS_DATE     00000000
    FISC_YEAR     2006
    FIS_PERIOD     08
    DOC_TYPE     GG
    BAPIACKEC9:
    0000000002|ARTNR|000000000000530404             
    0000000002|KNDNR|0000080018                     
    0000000002|SPART|10                             
    0000000002|VKORG|BZ01                           
    0000000002|VTWEG|10                     
    BAPIACGL09:
    ITEMNO_ACC     0000000002
    GL_ACCOUNT     0000040000
    DOC_TYPE     GG
    FIS_PERIOD     08
    FISC_YEAR     2006
    PSTNG_DATE     20060209
    VALUE_DATE     20060209
    CUSTOMER     0000080018
    TAX_CODE     SD
    MATERIAL     000000000000530404
    BAPIACCR09:
    ITEMNO_ACC     0000000001
    CURRENCY     BRL
    AMT_DOCCUR     136.0000
    MESSAGE ERROR FROM BAPI:
    E|RW|609|Error in document: BKPFF $ CTD600       
    E|KF|018|Complete PA transfer structure FI       
    W|KI|350|Profitability segment being derived again

  • Unsolvable USB Problems

    Here are the problems:
    My IPOD Shuffle (the newer generation) will randomly say it has become corrupted. I will have to take it off the dock, put it back on and restore it. This happens daily.
    My wired mighty mouse wont right click unless it is pushed in a 1-molecule specific place on the right side in the middle of the mouse. Apple has sent me 2 different ones, same problem. I took it to the apple store, they say it works, but it doesnt.
    Wired Apple Keyboard wont do the Cntl-Apple-P-R thing to reset the NVRAM or whatever. Called tech support, every button combination has no effect. Tried two different keyboards, same problem. However, a windows-based keyboard works, and so does a windows based mouse with right click.
    When the computer turns off, my external maxtor 200GB drive seems to seek something for about 20 minutes, and eventually my IMAC turns off.
    I have tried changing USB Hubs, from a dynex one to a brand new Belkin 7 port 2.0. I took it to the apple store, they said it had no problems. I cant figure it out, any ideas?

    Did you have this problem before updating to 10.4.10? If not consider downgrading:
    How to Perform an Archive and Install
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Unsolved reserve problem

    we have a material of 1000
    we have two orders one to be delivered today and one after 3 days
    one order is 700(to be delivered today)
    one order is 600(to be delivered after 3 days)
    when i deliver the order of 700 units that has to be delivered today the system says only 100 is available...as it is reserving the quantity....
    but we dont want it to be reserved...what should be done...please help me in this regard

    Hi raghu ram
    i think in your case , availability check is happening that is the reason , it is allocating material qty to customers to whom you raise orders . and confirming the delivery dates also
    To unreserve the stock dont maintain availability check , so in MMR
    maintain availability check as 01 in sales/gen plant view and MRP type as ND
    But as in your case why it is giving only 100qty in the 2nd line item , so please check stock in MMBE
    I hope the problem should be solved
    Reward if useful
    let me knw the status
    Regards
    Srinath
    Edited by: sri nath on Apr 12, 2008 5:17 PM
    Edited by: sri nath on Apr 12, 2008 6:13 PM

  • Unsolved IDE problem

    Posted a thread before and it didnt solve my problem. I'll give it another try.
    Cpu:AmdXP +1800
    Mem:Crucial DDR PC2700 256Mb
    OS:Windows 2000 Server with SP3
    PSU:340W (Dunno brand)
    HDD:
    IDE1 PRI:Seagate 12GB @UDMA Mode4
    IDE1 SLAVE:IBM GXP180 120GB @UDMA Mode5
    IDE2 PRI IBM GXP180 120GB @PIO Mode4
    IDE2 SLAVE IBM GXP180 120GB @PIO Mode4
    Installed latest SiS ide drivers and enabled smartdisk in setup. Im using 80pins cables on both ide.
    I just cant make ide2 run @UDMA Mode5, if i check SiS ideutil it says supported Mode:UDMA Mode5.
    What to do?

    Tried that now, didnt work. Uninstalled drivers for ide2. Did it 2 times and i cant still make ide2 run in UDMA Mode5.
    Suggestions?

  • Problems saving resources in Web Inspector

    Often I want to save images from web inspector. But I'm having a couple of problems.
    1. "Open Image in New Window" does nothing.
    2. "Download Image" saves the image, but names it Unkown and without a file extension.
    Has anyone been able to get either of these features working?
    Safari Version 7.0 (9537.71)

    @Carolyn:
    Yes, I did search before but restricted it to the past month, because I had the feeling that it’s worse now since the update to 5.1.10, but I may be wrong.
    It seems this is an old and unsolved common problem.
    @andy:
    “Top Sites” is hot, but I’ve never used that funny dots without any mouse-over text.
    After deleting (before starting Safari)  it’s restored by a default TopSites.plist, it seems these cookies
    - are only reloaded when viewing the Top Sites (?)
    - are not among my reappearing cookies, I have never seen such a cookie / cache on my system before (e.g. expedia, orbitz, monster, usatoday, disney, craigslist).
    And Top Sites would not explain why the Web Inspector has different infos regarding use of cookies and local storage than Safari’s “Privacy” tab.
    After playing with deleting TopSites.plist, without surfing, suddenly I have ”121 cookies or other data” at Safari’s Privacy tab, nearly all are listed as “Cache” or “Cache, Cookies” but the Web Inspector doesn’t show any of them, only my google.co.uk items.
    ---> Thanks, I’ll send a feedback to Apple.

  • How to solve the error problem

    Hi Devs ...
    I have been learning Adobe Flex and using IDE Flash Builder 4. but Im fasing an unsolve able problem in code given bellow..
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:mx="library://ns.adobe.com/flex/mx" layout="vertical" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <mx:states>
            <mx:State name="details">  /////////Here comes an error saying:-->State overrides may no longer be explicitly declared. The legacy states                                                                     /////syntax has been deprecated.
                <mx:AddChild position="lastChild">
                    <mx:Text text="About Picture" width="200" fontWeight="bold"/>
                </mx:AddChild>
                <mx:AddChild position="lastChild">
                    <mx:Text text="this is the picture of futue of Windows" width="200"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:Image source="assets/att66298.jpg" rollOver="currentState='detail'"/>
    </mx:Application>
    please tell me how to slove this error problem.
    Arshay..

    <!-- incorrect --> 
    <root>
      < myxml label="something" >
    </root>
    <!-- correct -->
    <root>
      <myxml label="something">
    </myxml></root>

  • IPhoto '11 problem downloading pix w/external card reader

    Lately my external card reader won't download pix to iPhoto. The device shows up on the desktop but not within iPhoto so no pictures are downloaded. Bought a new reader (Hoodman), but problem remains. Tried restarts, which sometimes works but now mostly doesn't. This only started happening sporadically a few months ago. The old card reader works just fine on my husband's iMac, so I don't think it's the card reader's fault. Anyone else having these problems? Or have a fix? I've got a bunch of pictures to get into iPhoto and am stymied. I'm on an iMac, Snow Leopard (10.6.8), using iPhoto '11 (v9.2.3).

    Thanks for the suggestion. But after creating that test library you suggested I still don't know how to get back to my original library when I launch iPhoto. Could you please guide me through that? I've never done this before and am nervous about the whereabouts of all those 1000s of pix I have (even tho I'm backed up w/Time Machine).
    By the way, I just noticed a similar discussion about a year ago with the identical problem, numerous reports of the external card driver suddenly not being recognized by iPhoto. Sounds like an unsolved, ongoing problem. Guess I need to file a report with Apple.

  • Adobe Acrobat and InDesign documents print once only

    Hi,
    Printing a 100 page 25 sheet imposed 8.5 x 14 Adobe Acrobat document is limited to only one copy. At the end of the first copy printing; printer stops and requests letter-size paper, for drawer one,
    printer default is set for 8.5 x 14 and first print ran from drawer 2.
    Older CS 2 imposed files, printed from IDCS2 still print multiple copies on HP 4200 duplex. The new Adobe work flow for page imposition yields a pdf file to be printed from Adobe Acrobat.
    OS is 10.5.8 iMac duo core intel.
    Work flow is Adobe InDesign CS5 book > flight test clear > .pdf > open with Acrobat 9.3.2 > impose with Quite Imposing > save imposed pdf > prints only one at a time
    then printer stops and asks for different paper size in different drawer.
    Specifically : Prints one copy means 25 sheets duplex is completed perfectly, starting the next set of 25 sheets (one document copy) is when the printer stops and asks for different paper from different drawer.
    note : Evidence points to the printing control panel of CS 5.
    Older imposed Adobe InDesign CS2 document opened by InDesign CS5 also will only print one document copy of 25 sheets±. Attempting to over-ride the Adobe InDesign CS5 panel for printing by selecting four copies there does not help. In other words, printing an old InDesign file from InDesign CS5 yields the same problem as printing a new InDesign CS5 imposed, saved as pdf and printed from Adobe Acrobat 9.3
    Adobe forums report similar unsolved printing problems with InDesign CS4. I'm going to post this in Snow Lepord as well since my laptop has 10.6.
    Suggestions ?
    Garrett

    Hi kostby,
    I'm sure you completely answered my question, I only checked helpful because my own thick skull is blocking a full appreciation of your brilliant insight.
    Sadly, I'm away from my printer for another couple of weeks, even so, this shouldn't stop me from understanding what you are saying a little better.
    I downloaded and went through the file from HP and it looks to me like the obvious default HP position is one copy. Am I clear in assuming from this, and your explanation, that the CS5 software engineer has overridden my command to print four ? I am making this assumption because the default is for long edge binding and I select short-edge legal-size duplex with legal size being my default size for the printer. Thus, the change in paper size and drawer location remains a mystery.
    I often print four to five copies because that is a convenient stack for my aging cutter, any number greater than one is nice because I can avoid being in the room with the printer and breathing ink dust.
    I am not sure how to send the print job to a file so I can open it with BBEdit and inspect the specific commands, this is very interesting to me. Though I'm at this point without the full skill set to master using this great knowledge. Also, over the years, I've found that I don't fully retain lessons once learned but rarely used, but that's a different and perhaps personal problem.
    Thank you very much,
    Garrett

  • Sticking Safari cookies but they are not there in Web Inspector

    Hi,
    Now I’ve got the Safari 5.1.10 update (OS X 10.6.8) and still have the same problem as with several versions before, I think it’s even worse now:
    When surfing I’m used to “Safari / Reset Safari…” (with all options set to delete but website icons) to start from scratch from time to time.
    This will delete cookies and local cache, too, although it’s not clearly mentioned (?).
    My start page is google.co.uk and checking with the “Privacy” tab I usually see three items from Google.
    I think that would be OK.
    But:
    a) Sometimes there are still cookies / cache from sites that I have visited before,
    and
    b) Sometimes even after Privacy / “Remove All”
    (Cookies.plist is empty and Safari/LocalStorage folder is deleted now)
    and another Safari “Reset” some will return (e.g wikipedia.org, Local Storage, but also cookies from news or amazon or local storage use by apple.com).
    When I check using the Web Inspector / Resources there are no such elements to find, only from Google - but the “Preferences / Privacy” tab seems to know about them and they are back in Cookies.plist and Safari / LocalStorage ???
    c) Sometimes (I know, that’s bad), even when I reset + close Safari, open an other application, start Safari again - bang, several items (often more than before) are listed there but only Google is to be seen in the Web Inspector (screenshot 1).
    d) After closing the Web Inspector and “Remove All” I start the Web Inspector again, just to see e.g. a “cookie folder” from Google but it’s stating “This site has no cookies” (screenshot 2), and there are none in Safari. How would the Web Inspector know about google cookies (or local storage), only to show an empty “folder”?
    I really love Safari, I’d simply like to “flush” it from time to time when surfing.
    1) Is it my misunderstanding of Safari cookies / cache? Or the Web Inspector’s display?
    2) Why only “sometimes” (this point is most annoying)?
    3) How could I dig deeper (but I’m not a techie ! ), or
    4) Is this a known bug since years (Safari and / or Web Inspector), I didn’t find a similar topic here in the forums?
    Thank you for reading this lengthy and probably confusing stuff,
    Sancho

    @Carolyn:
    Yes, I did search before but restricted it to the past month, because I had the feeling that it’s worse now since the update to 5.1.10, but I may be wrong.
    It seems this is an old and unsolved common problem.
    @andy:
    “Top Sites” is hot, but I’ve never used that funny dots without any mouse-over text.
    After deleting (before starting Safari)  it’s restored by a default TopSites.plist, it seems these cookies
    - are only reloaded when viewing the Top Sites (?)
    - are not among my reappearing cookies, I have never seen such a cookie / cache on my system before (e.g. expedia, orbitz, monster, usatoday, disney, craigslist).
    And Top Sites would not explain why the Web Inspector has different infos regarding use of cookies and local storage than Safari’s “Privacy” tab.
    After playing with deleting TopSites.plist, without surfing, suddenly I have ”121 cookies or other data” at Safari’s Privacy tab, nearly all are listed as “Cache” or “Cache, Cookies” but the Web Inspector doesn’t show any of them, only my google.co.uk items.
    ---> Thanks, I’ll send a feedback to Apple.

  • About adobe video rander encoder!!!!

    Hi,everyone
    I have a big question about encoder,it confuse me.
    I want to make a red title on white bakcground,and I use H264 encoder as commonly used.
    The final video seems like the title have a shadow or bevel ,it looks like 3D, but what I want is flat effect.
    Here the screenshot below.
    1.preview in AE,the edge between two colors is clean .
    2.preview of video with quicktime animation,There are some shadows about 1pixel at the edge between two colors.
    3.preview of video with quicktime H264,become worst!
    Is anyone knows how to do? Is it a unsolvable technical problem?Help me pls!!!

    You're running into low color-subsamping and minmal luma contrast. That is, the colors are highly saturated and change abruptly from one hue to another, but the luma values aren't that much different. That is pretty much worst-case for a highly compressed format like H.264.
    Try reducing the saturation of your colors. If the problem is specifically red-on-white, try reducing the saturation of the red and also reducing the brightness of the white. You can also try a slight horizontal blur prior to compression. None of that will eliminate the problem, but may make it a lot more acceptable. You'll be surprised at how much you can desaturate the red with it still looking "bright red" on your final LED display device.
    (Highly saturated, bright red is the worst color there is in terms of artifacts in highly-compressed codecs, although fluorescent orange safety vests and traffic cones may be worse.)

  • Adobe imposed document prints once only

    Hi,
    Printing a 100 page 25 sheet imposed 8.5 x 14 Adobe Acrobat document is limited to only one copy. At the end of the first copy printing; printer stops and requests letter-size paper, for drawer one,
    printer default is set for 8.5 x 14 and first print ran from drawer 2.
    Older CS 2 imposed files, printed from IDCS2 still print multiple copies on HP 4200 duplex. The new Adobe work flow for page imposition yields a pdf file to be printed from Adobe Acrobat.
    OS is 10.5.8 iMac duo core intel.
    Work flow is Adobe InDesign CS5 book > flight test clear > .pdf > open with Acrobat 9.3.2 > impose with Quite Imposing > save imposed pdf > prints only one at a time
    then printer stops and asks for different paper size in different drawer.
    Specifically : Prints one copy means 25 sheets duplex is completed perfectly, starting the next set of 25 sheets (one document copy) is when the printer stops and asks for different paper from different drawer.
    note : Evidence points to the printing control panel of CS 5.
    Older imposed Adobe InDesign CS2 document opened by InDesign CS5 also will only print one document copy of 25 sheets±. Attempting to over-ride the Adobe InDesign CS5 panel for printing by selecting four copies there does not help. In other words, printing an old InDesign file from InDesign CS5 yields the same problem as printing a new InDesign CS5 imposed, saved as pdf and printed from Adobe Acrobat 9.3
    Adobe forums report similar unsolved printing problems with InDesign CS4.
    Suggestions ?
    Garrett

    I'm running 10.6.4 on my laptop and updated all my Adobe software so I could put 10.6 on my iMac, too. The reason I'm posting here is that there does not seem to be an answer for this on the Adobe forums and I hope an experienced Mac user will have encountered it and suggest a solution. The Adobe forum on this subject for CS4 is over 7,000 views and 50 responses with the problem still not solved, now I amexperiencing the same or similar problem on CS5 and hope someone here has a work around.

  • Panel Lights Indicate empty cartridges - but they are not empty!

    I have an HP Officejet Pro K850 printer.  The Magenta and yellow cartridge lights illuminated and I installed new cartridges with 2012 expiration dates.  The lights will not go out and the printer will not print.  I replaced all cartridges with new HP catridges and the magenta and yellow lights remain illuminated no matter what I try.  I have unplugged, turned off, rebooted, re-installed.  Nothing works.  The printer will not print AT ALL while those lights are lit.  Is there anything I can do to get my printer to work?
    Help in Kansas.
    Reeze

    @Carolyn:
    Yes, I did search before but restricted it to the past month, because I had the feeling that it’s worse now since the update to 5.1.10, but I may be wrong.
    It seems this is an old and unsolved common problem.
    @andy:
    “Top Sites” is hot, but I’ve never used that funny dots without any mouse-over text.
    After deleting (before starting Safari)  it’s restored by a default TopSites.plist, it seems these cookies
    - are only reloaded when viewing the Top Sites (?)
    - are not among my reappearing cookies, I have never seen such a cookie / cache on my system before (e.g. expedia, orbitz, monster, usatoday, disney, craigslist).
    And Top Sites would not explain why the Web Inspector has different infos regarding use of cookies and local storage than Safari’s “Privacy” tab.
    After playing with deleting TopSites.plist, without surfing, suddenly I have ”121 cookies or other data” at Safari’s Privacy tab, nearly all are listed as “Cache” or “Cache, Cookies” but the Web Inspector doesn’t show any of them, only my google.co.uk items.
    ---> Thanks, I’ll send a feedback to Apple.

  • I have saved My Google Chrome bookmarks as HTML and want to import them into my mozilla bookmarks, when I go to import HTML it seems to load somthing but when I go back to check my bookmarks in mozilla they are not there. I would like to use mozilla more

    I have saved My Google Chrome bookmarks as HTML and want to import them into my mozilla bookmarks, when I go to import HTML it seems to load something but when I go back to check my bookmarks in mozilla they are not there. I would like to use mozilla more often then Chrome so I need please help keeping my Chrome bookmarks.

    @Carolyn:
    Yes, I did search before but restricted it to the past month, because I had the feeling that it’s worse now since the update to 5.1.10, but I may be wrong.
    It seems this is an old and unsolved common problem.
    @andy:
    “Top Sites” is hot, but I’ve never used that funny dots without any mouse-over text.
    After deleting (before starting Safari)  it’s restored by a default TopSites.plist, it seems these cookies
    - are only reloaded when viewing the Top Sites (?)
    - are not among my reappearing cookies, I have never seen such a cookie / cache on my system before (e.g. expedia, orbitz, monster, usatoday, disney, craigslist).
    And Top Sites would not explain why the Web Inspector has different infos regarding use of cookies and local storage than Safari’s “Privacy” tab.
    After playing with deleting TopSites.plist, without surfing, suddenly I have ”121 cookies or other data” at Safari’s Privacy tab, nearly all are listed as “Cache” or “Cache, Cookies” but the Web Inspector doesn’t show any of them, only my google.co.uk items.
    ---> Thanks, I’ll send a feedback to Apple.

Maybe you are looking for

  • Delete original file (from camera)

    Hi all, I use iPhoto and Photoshop on my Mac for different purposes: iPhoto for family events and travel that I won't be doing much (if any) editing to, and Photoshop (Elements 7) for my hobby photography pictures. I got on Photoshop this morning to

  • How can I disable remote access connection window ?

    When I try to connect (via TCP/IP) with a VI in another PC (in my local network) it appears the remote access connection window. How can I disable this (programmatically if possible) ? A big thanks for your answers. Linus

  • How do I transfer Game Center id to a new apple id (created for family sharing for a child) in iOS 8?

    I just created a new Apple ID for my son (under 13 so could not have an account until new), as part of the new family sharing option in iOS 8.0.2, and I want to transfer the Game Center account he was using to the new Apple ID. I see in Settings > Ga

  • Disk utility - repair permissions keeps reporting same issues

    my machine has been unstable for a while, and i thought it was time to repair permissions. normally, after being run a couple of times, there are no more to be repaired. however, this time, the same 35 lines of permissions being changed are displayed

  • Photoshop CS4 quits unexpectedly

    Hi, Please this issue is really freezing out our daily activities. I have a Mac in my office which has got a configuration as below, We are using PS CS4  on it since 2009 until couple of days back when it first popped up with an error report saying P