Spool was not generated

Hi to all
In development server we are able to print the things with same setting in quality and production no print comes error
print was not generated

Hi,
This is a little bit to few information. Is there long text for it? Does it happens for all devices or only for one? Were you able to prepare spool and output request and problem arise during printing or does it happen earlier?
In general I think that this is not the best forum for this question.
Best Regards
Marcin Cholewczuk

Similar Messages

  • Afer background job finished, spool was not generated

    hi all
    Afer background job finished, spool was not generated but all background jobs is not
    soem background jobs was created spool.
    even if same user and same backgorund job, sometime generated spool or not.
    how can I solve??
    thanks

    Hi,
    Spool will be generated only spool specification wil be defined for that job.
    Select the job go to steps spool specification you can see the device assigned to it.
    Regards
    Ashok

  • Background job spool is not generated

    Hi Guys,
    I am facing the problem with when i execute the program in background,spool is not generated.
    if execute it in foreground output is displaying.
    Please help me on this issue.
    Thanks,
    Bala

    Hi soumya,
    after call transaction i have used write statement and submit the report in the BDC program.
    BDC report is displaying the IM52 update budget orders in the output of the report.
    Thanks,
    Bala

  • Printer spooler is not generated while output command

    Dear All,
    I am facing problem in  where the printer is installed in that system .when the user is giving print the
    Printer spooler is not generated while output command successfully  coming in sap
    Please suggest how to sol
    Regard
    Kumar

    Hello,
    Not very strong with Linux, but i think that, maybe you need to set a graphic emulator to compile ?
    Francois

  • Update programme was not generated

    Hi,
    We have a situation where we are planning the Activity in CRM System and this data will be written to the transactional Cubes in SEM.
    The Problem is in the Activity if we change the plan end date while saving the Activity the Cube update programme was not generated in the Transactional Cube as result we have in the CRM online value for a particular period and in the Transactional Cube we have the same value for different Cubes ultimately in the report different periodicity.
    We cannot save the Activity agian as the Activity already in the Executed status and conditions flown to R/3 and also Actuals spent  for the same amount.
    Can anyone suggest how to make the data consistent in CRM online and in the TCubes

    Thanks for the posts.  We do plan to recapture the updates rules and will try to transport again (prod is not changeable).  Was just curious if anyone else had seen this problem.  It is just very odd that you can actually see the code via "Display Start Routine" in the update rules view, but the generated program does not contain the changes.  Actually, I am not surprised since the generated program version is older than the last change to the active rules and the generate program step is not executed in transport application.  Just don't understand why this happened.  Thanks for the comments so far.

  • Spool is not generating for deleted line item in PO.

    Hi Experts,
    A PO which was created in SRM pushed into SAP environment and when it was created initially spool was generated and user was able to take the print out. But if he delete a linte item no spool is created and message log was saying there is print relevent changes exists. I could the the change updated linte item change history of that PO.
    I tried replicating the scenario in test environment but I have not come across this situation. Please help if any one worked on similar problem.
    Thanks in advance,

    Hi Experts,
    Any suggestions.
    Regards,

  • Spool request not generated in smartforms printing

    Hii all,
            I have smartform, which was printing properly in QA server and few days back when i tried to get print from Production Server, it is not generating spool request. and in QA also it is not having same as on date.
    is there anythng to check from ABAP side or there is a problem of Basis.?
    kindly give soln for points .
    - Maharshi

    hi Maharshi,
    Gimme some what clear picture abt ur problem.
    What exactly the problem in QA server.
    I mean when it is working properly and when it is not?
    and what Function Modules u have used ..?
    and i wanna know is there any other print forms are working or not. if the other are working, it is not BASIS problem.
    Regards,
    Naveen

  • Accounting Document was not generated

    Hi Friends,
    While doing Post goods issue, Material document was created but system does not create accounting document.
    One sales order having two items (10&20)
    Both iteams having same material
    In case of items number 10(system generate accounting document)
    In case of Item number 20(System does not generate accounting document)
    What could be the reason..
    Please help me....
    Thanks
    NPR

    Hi,
    Open the billing document number generated using t.code VF02 or VF03. Then from the menu bar choose Environment and choose Account determination analysis revenue account. From there you will see where the correction will be made.
    But possible reasons for the error are account 1. account assignment group is not tagged in sales area data in the customer master 2. account assignment group is not tagged in the material master.
    Try also releasing the document by clicking on release to accounting icon (green flag)
    Thanks.
    Rachelle

  • Spooling request not generated

    hi gurus
    i am facing a problem in po output, for my one document type spool request is not generated but for other document type spool request is generated . But i can do it maunally for same document type please help me in this issue ..
    regards
    Edited by: usmfarhan on Dec 16, 2008 12:53 PM

    Hi
    Tcode MN05 u2013 KEYcombinatin u2013 F8 u2013 communication Select print immediately
    Switch for printing immediately. Printing is immediate if this switch is set. Otherwise the output is held in the spool.
    Raju

  • Spool is not generating.

    Hi everyone,
    I am scheduling a report in background and tracking it in SM37 then Job finishes with no spool.
    So may I know what are the potential reasons behind it.
    Is it Users Id related as spools are generating perfectly for some User Id's.
    Or is there a problem in printer settings.
    Your quick response is highly  appreciated in order to trouble shoot it.
    Thanks.
    Sudhanshu

    Hi,
    Check out the following code sample to create spool withing program.
    data: loc_dest like pri_params-pdest .
      clear : wf_listname , loc_dest , wf_listtext .
      move: 'List name' to   wf_listname .
      move: 'List header text' to   wf_listtext .
    select single spld into usr01-spld from usr01 where bname eq sy-uname .
      if sy-subrc eq 0 .
        move: usr01-spld to loc_dest .
      endif .
      call function 'GET_PRINT_PARAMETERS'
           exporting
                destination    = loc_dest
                copies         = wf_copies
                list_name      = wf_listname
                list_text      = wf_listtext
                immediately    = ' '
                release        = ' '
                new_list_id    = 'X'
                expiration     = wf_days
                line_size      = 200
                line_count     = 65
                layout         = 'X_65_200'
                sap_cover_page = 'X'
                receiver       = 'SAP*'
                department     = ''
                no_dialog      = 'X'
           importing
                out_parameters = wf_params
                valid          = wf_valid.
      if wf_valid <> space.
        new-page print on parameters wf_params no dialog.
        perform write_summary .
        new-page print off.
      endif .
    within the write_summary do a normal write operation.
    loop at <itab> .
    write:/
    endloop .
    Thanks.

  • New Spool Request not generating

    Dear All,
    I have seen print preview of one PO and taken print which has created a spool request.
    Another PO also I have seen the preview and taken print, but it has added to previous spool request as second page.
    My problem is I need to generate new spool request for each PO. Where do I need to do setting for this. Pls guide.
    Rgds
    Srini

    Hi Srinivasan,
    In the print program, try setting the parameter TDNEWID  to  'X'.
    Following link can help you ..
    Stop the combining of spool request to an existing one

  • Spool request not generated in SP01

    Dear Experts,
    I try to print the invoice and later check the Spool request in SPO1 i didn't find any spool request generated there
    what would be the issues and how i will fix it ??
    thanks

    Dear All Friends,
    Thanks a lot for your replies.
    I found below part which solve my issue.
    Goto VF02/03 >> Issue output >> Print options >>>> Tick mark for release after output here remove the tick mark you will see the spool request generated other wise immediately spool request will delete becaues of that tick mark.

  • Spool no. not generating for the same shipement number

    Hi,
    I am working on shipment related forms. When i give the print of one shipment no., all the forms are going to one spool number. But my problem is when i take the same shipment number from second time onwards then all the forms are getting appended to the same spool number instead of creating a new spool number.
    For example my shipment no.:- 1277489 contains 8 pages, when i take the same shipment no. for second time all the 8 pages getting appended and total 16 pages are going to that same spoll no. For third time 24 pages and 4th time 32 pages and so on... in the same spool request.
    I have debugged the driver program, but i din't get any solution for that. So can any one suggest me of how to resolve this issue.
    Thanks & Regards,
    Ramana

    Hi,
    After selecting the print option, the print pop window appears. In that select the option New Spool Request.
    Then give the print, it will come on new page.
    You can also pass this option in the print program also. Pass TDNEWID = 'X' in parameter OUTPUT_OPTIONS.
    Regards,
    Vinod

  • Not Generating Spool for my user id

    Initially when i run the transaction CO02 and printing the production order, spool was generating properly. so in next day due to some issues i changed the print program or adobe form then spool was not generating to my user id only, if i print with any other user id i am able to see the spool , so what is the problem for my user id, could any one help in this scenario.

    Hi,
    Adding to Ashwin's point there can be another possibility, go to tcode SU3 and in Defeaults tab check and compare the Spool control Section between your login and the other user login.
    Check if the check box 'Output immediatly' is selected or not.

  • Background job not generating spool

    Hi all,
          I am calling a report from another report. The called report will display the final output list.
    Here, the called report will be executed in background.
    here the job is completing but the spool is not generated.

    Hi,
    It seems that the final internal table which has the output data is empty & hence write statements are not executed ( assuming all the write statements are inside a loop).
    Place one write statement outside loop like
    write :/ 'Following is the result :'.
    & check whether spool is generated. If yes, then the problem is of empty internal table.
    You can select the job in SM37 & type JDBG in command prompt to debug a background job.
    Debug & check the issue.
    Best regards,
    Prashant

Maybe you are looking for

  • HT4314 Have apple got any plans to allow iPhones sharing an apple Id to have separate Game Center accounts

    Have apple got any plans to allow iPhones sharing an apple Id to have separate Game Center accounts

  • Database insertion problem

    Hello, I was wondering how to solve a problem at inserting new rows in a mysql database. I have a table named employees and one named addresses. In order to link an address to an employee I use an address_id at the employee table. Though, the address

  • Found a 4S

    First off I found this iPhone 4S I did not steal it, or I would not posting here. On one of my many trips to Asia at a restaurant in Bangkok in the seat cushion I found an iPhone 4s, I am a regular customer and know the owner asked him if anyone aske

  • Print with Preview: Screen option

    Might be a bit obscure but this is a question about the screen option in print with preview. For the purposes of photoetching (transferring a half tone positive image onto a metal plate through the use of photosensitve film for the purposes of fine a

  • Backing file running before or after jsp

    Hello, The documentation about backing files said :"All backing files are executed before and after the JSP is called". When the backing file runs is there anyway to know if it is running before the jsp is called or if it is running after the jsp has