"cannot submit to background processing" while converting

Post Author: PAyalon
CA Forum: .NET
Hi.
In my web application I export reports to PDF, it's works fine on dev server, but throws exeption on IIS:
"Error in File C:\WINDOWS\TEMP\temp_0d804620-e578-40f0-947e-7bd11af7e3a4.rpt: The request could not be submitted for background processing."
I gave already all permissions to IIS_WPG and ASP.Net user but it still do not work.
On my develop machine (win Xp) both servers work fine.
My be I have a problem with license, course my test machine is server with 2 processors?

Thanks, after a looooong night of re-installing
back from DVD to 10.4, then up to 10.43,
then re-installing FCP 4 and DVDSP 3, and doing all patches, both my Compressor 1.21 works great as before, and I got my printer settings back.
An added bonus: 10.4 dumped my "processor" control panel, but A.Pack is working fine now, with BOTH processors! I guess with Tiger, you
no longer need to utilize the "turning off of one processor fix" for A.Pack?

Similar Messages

  • Background processes while starting the R/3 system

    hi all
    I have IDES R/3 4.7 installed in my hard disk,
    and when i start the background processes normally the status has to be Wait , yes.
    But these days when i started the processes, i'm getting the statuses as "Ended"  with all the 12 background processes,
    and i can't be able to get into the login screen.
    can anyone tell how to get the processes states to wait and yes state.
    Thanks

    Have a look at the dev_-traces located in /usr/sap/work directory. You should pay special attention to dev_w0 and dev_ms, and then look through the other dev_w files.
    I guess, there you will find a hint leading you to the cuase of the issue

  • SUBMIT and BACKGROUND Processing

    Dear ABAPers,
           I have created the BDC Program.I want to run this in Background job.
    I want to call this program using SUBMIT Statement.How to do this.I
    Thanks & Regards,
    Ashok.

    HI,
    REPORT zzreport1.
    DATA text TYPE c LENGTH 10.
    SELECTION-SCREEN BEGIN OF SCREEN 1100.
    SELECT-OPTIONS: selcrit1 FOR text,
    selcrit2 FOR text.
    SELECTION-SCREEN END OF SCREEN 1100.
    Calling program
    REPORT zzreport2.
    DATA: text TYPE c LENGTH 10,
    rspar_tab TYPE TABLE OF rsparams,
    rspar_line LIKE LINE OF rspar_tab,
    range_tab LIKE RANGE OF text,
    range_line LIKE LINE OF range_tab.
    rspar_line-selname = 'SELCRIT1'.
    rspar_line-kind = 'S'.
    rspar_line-sign = 'I'.
    rspar_line-option = 'EQ'.
    rspar_line-low = 'ABAP'.
    APPEND rspar_line TO rspar_tab.
    range_line-sign = 'E'.
    range_line-option = 'EQ'.
    range_line-low = 'H'.
    APPEND range_line TO range_tab.
    range_line-sign = 'E'.
    range_line-option = 'EQ'.
    range_line-low = 'K'.
    APPEND range_line TO range_tab.
    SUBMIT report1 USING SELECTION-SCREEN '1100'
    WITH SELECTION-TABLE rspar_tab
    WITH selcrit2 BETWEEN 'H' AND 'K'
    WITH selcrit2 IN range_tab
    AND RETURN.

  • "Cannot Connect to Background Process"

    Ever since we upgraded our system to a new MacPro, I've been getting this message when I try and export via compressor. I've uninstalled Final Cut Studio, and reinstalled the whole thing again...still not working. Right now we're running Mac OS 10.5.2, Final Cut Pro 5.1.4, and Compressor 2.3.
    Any ideas how I can combat this and get Compressor back up and running?
    thanks
    Aaron

    Hi Aaron,
    Something you might find interesting to read:
    http://docs.info.apple.com/article.html?artnum=93234
    http://www.scottsimmons.tv/blog/2008/01/11/compressor-hatred-resolved/
    g.

  • BACKGROUND PROCESSING, REPORT NOT LOADING, "OBJECT NOT SET TO INSTANCE..."

    Post Author: thecoffeemachine
    CA Forum: .NET
    I already posted this message in other Web sites, but I am almost getting crazy here and I need help:
    HI:
    The Web application I am testing was having several issues related to loading Crystal Reports. It was fixed and I do not know which of the 1000 things I did to fix it; but now it began, again, to have the same behavior after I had a conflict with another Web site that was in the same server.
    The thing is that I had another virtual directory where resided a copy of the same Web app. for testing purposes/working with the Visual Studio. The reports were loading all fine, very fast, all perfect... And suddenly the assemblies of one Web site and the other began to "blend" together and..... well the same behaviors appeared again. I tried to copy the last stable backup and rebuild the Web app... but it did not work.
    At the very first time that one requests the report, it shows without problem. At the second time it shows an error message related to "cannot submit to background processing", and sometimes "object not set to an instance.." ... and on the third time it just never shows up and the app. becomes unresponsive. I have to close the window and request the Web site again in another browser window. If I wish to see the report again I have to wait for hours until it shows it.
    I am using Visual Studio 2003 and the Crystal Report version that was shipped with that Visual Studio version. I am working with Windows Server 2003 and SQL Server 2000. Below is the VB code:
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load             Me.SqlConnection1.Open()
           Me.SqlSelectCommand1.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandReferences.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandTextbook.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandObjectives.Parameters("@CourseCode").Value = Request.QueryString("CD")         Me.SqlSelectCommandTopicData.Parameters("@CourseCode").Value = Request.QueryString("CD") Me.SqlSelectCommandCourseOutcomes.Parameters("@CourseCode").Value = Request.QueryString("CD")
            Me.SqlDataAdapterMainData.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseSyllabusData")         Me.SqlDataAdapterReferences.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseReferenceData")         Me.SqlDataAdapterTextBook.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseTextbookData")         Me.SqlDataAdapterObjectives.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseObjectivesData")         Me.SqlDataAdapterTopicData.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseTopicData")
    Me.SqlDataAdapterCourseOutcomes.Fill(Me.DtsSyllabusCompleteData1, "procWebSelectCourseOutcomes")
            Dim myExportOptions As CrystalDecisions.Shared.ExportOptions         Dim myDiskFileOptions As CrystalDecisions.Shared.DiskFileDestinationOptions         Dim myExportFile As String         Dim myReport As New ABETFormat         myReport.SetDataSource(Me.DtsSyllabusCompleteData1)
            myExportFile = "C:UNTempPDF" & Session.SessionID.ToString & ".pdf"         myDiskFileOptions = New CrystalDecisions.Shared.DiskFileDestinationOptions         myDiskFileOptions.DiskFileName = myExportFile         myExportOptions = myReport.ExportOptions
            With myExportOptions             .DestinationOptions = myDiskFileOptions             .ExportDestinationType = .ExportDestinationType.DiskFile             .ExportFormatType = .ExportFormatType.PortableDocFormat         End With
            myReport.Export()
            Response.ClearContent()         Response.ClearHeaders()         Response.ContentType = "application/pdf"
            Response.WriteFile(myExportFile)         Response.Flush()         Response.Close()         System.IO.File.Delete(myExportFile)         Me.SqlConnection1.Close()
        End Sub
    I already have tried moving the Crystal Reports dll´s to the bin directory. ..... I have tried calling the Garbage Collector at page unload...I also have checked, inside the report, that the database is "up to date"... ... recycling the worker process of the IIS... etc...
    I see that, in debbuging mode inside the Visual Studio, when the page loads the debbuging window shows a message notifying that the symbols related to the Crystal Reports dll's could not be loaded.
    Should I need to modify the default properties of the database? I checked "database is case insensitive", "use indexes or server for speed".. I have tried checking and unchecking the box "performing grouping on server"
    Oh by the way, my report has about 4 subreports in it. Each report loaded shows 1 or 2 pages.
    ANY HELP WILL BE EXTREMELY APPRECIATED....
    MMS

    See  [Crystal Reports For Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23&overridelayout=true] article, page 107 and on for details on how to use Crystal reports in session.
    Ludek

  • Cannot submit batch?  Try this

    If you are like me, and ready to put a gun to your head over Apple Compressor's "Cannot connect to background process" BUG, then here is something you can try. It's insane to have to do this, but if like me you REALLY NEED to be able to export to Compressor from Final Cut (my reference movie was 100GB and taking two days to encode, and then not even correctly), here is what is working for me:
    1) Restart the machine with the ethernet cable unplugged. (Why, I don't know, but it has been the only way I can get Compressor standalone to work).
    2) Run Compressor by itself and start compressing a "Decoy" movie, something short that you don't really want to compress. If you are lucky, this may work.
    3) Start Final Cut and Export To Compressor the real project you want to compress. Since the Batch Monitor is already running, it will connect! If you are lucky!
    4) You can delete the test movie job in the Batch monitor window and it will start on your real project.
    5) Reconnect the ethernet cable.
    I know it is a hassle but if you have tried the thousands of suggestions out there with no success, this isn't as bad as those are.
    Bob

    The content - whether looping or transitions or whatever has nothing to do with the size of the output file. What codec are you using? 30 GB per hour seems a lot. Are you using uncompressed? Was your source uncompressed?.
    As to the ethernet - I meant when it wouldn't let you connect to background processes. But if you're not running compressor 2, I don't think you have clusters.
    Are you exporting to Compressor from FCP? If you do a non-self contained QT, how big is that? What happens if you submit that to compressor directly.
    Finally (probably should have been Firstly), why are you using Compressor? If you're going to DVDSP, just take the non-selfcontained QT and put that into DVDSP, let it handle the compressing/muxing. What version of DVDSP do you have?
    Patrick
    EDIT: Wait a minute - you're saying that the non-self contained (reference) movie is 100GB?!?!? That would imply a HUGE amount of un-rendered material (this must be rendered and placed in the "reference" quicktime). If you have un-rendered material, you should render it BEFORE exporting.

  • Launch a background process

    Hi!
    In my web application when a certain button is pressed i need to launch a invisible background process while i continue using the application
    What do you recommend me to do this?
    Thanks!
    T.

    Couple of ways you can do this.
    1 - Have the background process implement the interface Runnable. Start a new thread for this process. You can keep a reference to it in session if you want to monitor it.
    2 - In a J2EE environment, send a JMS message to trigger a process.
    Either of these will let control return to your servlet immediately, and you can return a response of "job started, check back later" to the user.

  • Submit Report (Regarding Background Processing)

    Hi Guru's,
    I want help regarding Background Processing.
    I have developed a program which is running fine in forground but in Background mode no values are comming.
    All values are becomig Zero.
    Plz help.
    *--- Submit Report for 'COGI' (Postprocessing of Error Records from Automatic Goods Movements)
      SUBMIT coruaffw USING SELECTION-SCREEN '1000'
                      WITH  r_cumul = 'X'
                      EXPORTING LIST TO MEMORY
                    AND RETURN.
    *---- Get the List
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = it_list_tab
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc = 0.
    *--- Convert to Ascii
        CALL FUNCTION 'LIST_TO_ASCI'
          TABLES
            listobject         = it_list_tab
            listasci           = it_asci_tab
          EXCEPTIONS
            empty_list         = 1
            list_index_invalid = 2
            OTHERS             = 3.
        IF sy-subrc <> 0.
    *      MESSAGE i000 WITH 'Problem in converting LIST to ASCII'.
        ENDIF.
        DESCRIBE TABLE it_asci_tab LINES w_cogi.
        w_cogi = w_cogi - 5.
      CALL FUNCTION 'LIST_FREE_MEMORY'
        TABLES
          listobject = it_list_tab.

    Hi Arbind,
                  You have used return you need to add the addition with.Try this way hope it works
    SUBMIT zreport EXPORTING LIST TO MEMORY
                    AND RETURN
                    WITH P_1 = P_1
                    WITH P_2 = P_2
                    WITH P_3 = P_3
                    WITH S_4  IN S_4
                    WITH S_5 IN S_5
                    WITH S_6 IN S_6.

  • Error for the fact table while processing the cube - attribute key cannot be found when processing

    Please help as I am new to SSAS and this is urgent requirement. This is a MOLAP cube and below is the error that I am receiving when processing the cube. The cube is set to Prrocess Full. Several similar errors are popped up for various dimensions.
    "Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'Fact_Table', Column: 'ID', Value: '1'. The attribute is 'Id'. Errors in the OLAP storage engine: The attribute key was converted to an unknown member because
    the attribute key was not found. Attribute Id of Dimension: 17 - Ves - PoC Cont from Database: DB, Cube: IPNCube, Measure Group: iSrvy, Partition: Partition1, Record: 1."
    Thanks in advance.

    Thanks for the recommendations David.
    It will be really great if you can clear some of my doubts:
    To my information, all the dimensions need to be processed first and then the fact table will be processed.
    So if the ID's are not present in the dimension tables, then it should not be present in the Fact table either.
    Here we found null values in the dimension table and the ID's were present in the Fact table. What might be the reasons causing such situation?
    Also how frequently the cube needs to be processed? Currently the ETL which processes the cube, is scheduled in a SQL Job Agent on hourly basis everyday. 
    Is there any possibilty that the cube might be under processing state and the SQL job for the next run getting executed trying to access and process the cube while it was still processing?

  • Cannot start background process DTPR_13362_

    Hi ,
        Whenever DTP  is executed  in the Dev Server,it throws an error.
    Error  msg: Cannot start background process DTPR_13362_1 26.09.2011 14:17:44 1 Min. 50 Sec.
    while checking the message in the monitor screen the cursor is at this function.
    CALL METHOD cl_rsbm_log_step=>raise_step_failed_callstack
    Please let me know what needs to be done here so that DTP processed sucessfully.
    This is urgently required..thanks..
    Regards,
    Kalim.

    Hi
    Check how many parallel processes are defined for this DTP.
    display the DTP in RSA --> in menu bar click on "goto" --> "settings for batch manager"
    In the next screen you will get the number of processes assigned to this DTP.
    When you are running this DTP, check these many background processes are available in your system.
    If you want you can decrease this number9by default it will be 3)
    Regards,
    Venkatesh

  • "Error occurred while converting the file 'song name'. The required disk cannot be found"

    Hi, I saw this issue in an archived discussion, and I just had the same problem, but figured out how to resolve it.
    I think this error is a result of:
    A) downloading a new version of iTunes, and;
    B) storing my iTunes library on an external hard drive.
    Because when the new version of iTunes was downloaded, I found that the destination folder for my iTunes music was no longer selected. Therefore, I was getting the error message: "Error occurred while converting the file 'song name'. The required disk cannot be found" when I tried to import CDs.
    To fix: go to:
    iTunes>Preferences>Advanced
    and specify your destination folder for your music.
    Just wanted to share!

    Thank you so much! I was in the same situation (iTunes library stored on external hard disk). Strangely, iTunes knew where my music was stored (i.e. if I clicked a song it would link to the library location and play with no problems). But in the "Advanced" settings, the location of my iTunes Library was blank. So I just pointed to the correct location and now everything is working OK! Thanks again.

  • Error occurred while converting the file "song name" the required folder cannot be found

    In ITunes 12, while trying to import from CDs I keep getting this message "error occurred while converting the file "song name". The required folder cannot be found". It will import 2 or 3 or 5 songs and then this message. I have tried multiple CDs, a few seem to work fine, but most don't import completely.

    I think I found out why this happens. I am using an external hard drive, not sure if this is relevant, but I believe so. I went into iTunes and deleted the songs, and asked that they be deleted from the library as well. Got same message when I tried to re-import. Went on to the external hard drive, where library is located, and none of the songs had been deleted. Deleted the songs, as well as the albums folder, re-imported, no problems. Hope that helps.

  • Sharepoint 2010, InfoPath 2010 with Custom Workflow. Error Message: InfoPath cannot submit the form. An error occured while form was submitted...

    I have created an InfoPath form that submits to a Sharepoint library with custom workflow attached. The workflow is initiated when the user submits the form. An email is sent to the supervisor who clicks the "Encoded Absolute URL" and approved
    the form via the emailed form. Then, based on certain criteria the form is either emailed to the VP or the workflow is complete. The VP is sent an email and clicks the "Encoded Absolute URL" and sumbits the form via the emailed form. This is
    how I would like it to work. The reality is, the form submits and is emailed to the supervisor and the supervisor is able to approve but when the form is sumbitted I get an error. The error is "InfoPath cannot submit the form. An error occured while
    this form was being submitted. The form cannot be submitted to the following location: <URL> The file <URL> is checked out for editing by <me> The operation completed successfully." The operation did not complete successfully and it
    is not checked out. I have read in previous posts that the file is locked. Since I am in the testing faze of the project there is no one else using the form. I have waited 24 hours and the lock has not been released. Please help!!! My deadline is growing short.

    I ran into your post while having a similar issue.  I don't have a 'full' fix for you, but I noticed at least in our case if you made sure you opened the Infopath form through the browser instead of the client Infopath program (use the drop-down menu
    and open in browser) the error doesn't occur.  Hope that helps some....

  • Receive message after importing serveral songs from CD into iTunes (latest ver 11.1.5.5)... "Error occurred while converting the file 'songname'.  The required folder cannot be found."  CD/DVD ROM is no longer recognized until restart.

    Consistently receive the following message after importing serveral songs from CD into iTunes (latest ver 11.1.5.5)...
    "Error occurred while converting the file 'songname'.  The required folder cannot be found." 
    CD/DVD ROM is no longer recognized until computer is restarted.

    I have the same problem.  I recently moved my music from a Vista PC to a new Laptop with an external CD drive. It will copy one song from the CD and it will show in the Music file and then I get the message ' Error importing a CD - Folder not found'.  I must unplug the CD drive and plug it back in.  I have seen no fix for this problem.

  • Itunes wont inport anythig it show listings but comes up with error ocurred while converting (song title ) the required file cannot be found using windows 8

    itunes wont inport anythig it show listings but comes up with error ocurred while converting (song title ) the required file cannot be found using windows 8

    iTunes cannot convert protected WMA tracks. There may also be problems if it can't get full access permissions. What exactly are you trying to do when the error occurs?
    tt2

Maybe you are looking for