ODS Problem - Could not forcefully set the status of the request

Hello GURUS!
  We encountered an error while activating an ods object:
<i>"Request REQU_41H61CY8SUS7IX4787ARFXLOM (activation request ODSR_41I8ZUA35YKRALSBFPBB0GWZQ) is marked as incorrect for data package 000000 (DP 0 is the entry for the entire request, which is the only one to remain in the control table after successful activation)."</i>
We tried to forcefully set the status to <b>green</b> as what we normally do when this happens but it still stays <b>red</b>.
Need your help on this!
Thanks,
Jeffrey

Hello JeFFreY,
how r u ?
You can delete that failed request, then check the PSA for errors, if errors are there delete the PSA data.
Carry on a new data load with the option in the Scheduling screen -> PROCESSING tab as ONLY PSA. Now check the data for the errors and change it if error exists. Then give context menu on the request and select Start the Update Immediately. Now see in the ODS. what happens ?
Best Regards....
Sankar Kumar

Similar Messages

  • ReportSDKPrinterException: Printer name could not be set

    I am working on testing a web application with BOE XI V 3.1.  I have the database and RAS machines setup.  I have been working on changing my app to printing through the RAS.  I have print preview and export working, but am running into issues printing to a printer.
    On the RAS which is on a virtual machine, I have a printer setup as a local printer to a tcpip port so the VM can access a printer on our network.  But when I call the clientDoc.getPrintOutputController().printReport(printOptions); I get the error message ReportSDKPrinterException: Printer name could not be set.
    I have also on the side been testing using a small jsp modified from a working print preview.
    Here is the jsp:
    <%@ page contentType="text/html; charset=utf-8" %>
    <%@
       page import="com.crystaldecisions.sdk.occa.report.application.*,
      com.crystaldecisions.sdk.occa.report.data.*,
      com.crystaldecisions.sdk.occa.report.document.*,
      com.crystaldecisions.sdk.occa.report.lib.*,
      com.crystaldecisions.report.web.viewer.*"
    %>
    <html>
    <head>
    <title>Print Report</title>
    </head>
    <body>
    <%@ include file="AlwaysRequiredSteps_UnmanagedRAS.jsp"%>
    <%
      // Populate parameters
      clientDoc.getDataDefController().getParameterFieldController().setCurrentValue("", "TAB_ID", "Configuration");
      clientDoc.getDataDefController().getParameterFieldController().setCurrentValue("", "LOGO_LOCATION", "d:\\reports\\images\\highjump.gif");
      PrintReportOptions printOptions = new PrintReportOptions();
      printOptions.setPrinterName("Dell");
      clientDoc.getPrintOutputController().printReport(printOptions);
      clientDoc.close();
    %>
    </body>
    </html>
    The code from AlwaysRequiredSteps_UnmanagedRAS.jsp is:
    <%
    // This file contains the required steps to open an unmanaged report from a file path accessible to the RAS Server.
    // Modify this path to the location of the report on your system.
    String path = "rassdk://C:\\reports\\ReportList.rpt";
    // Create a new Report Application Session.
    ReportAppSession ra = new ReportAppSession();
    // Create a RAS service.
    ra.createService("com.crystaldecisions.sdk.occa.report.application.ReportClientDocument");
    // Set the RAS server to be used for the service.
    ra.setReportAppServer("10.192.183.196:1566");
    // Initialize RAS.
    ra.initialize();
    // Create the ReportClientDocument object.
    ReportClientDocument clientDoc = new ReportClientDocument();
    // Set the RAS server to be used.
    clientDoc.setReportAppServer(ra.getReportAppServer());
    // Open the report, and set the open type to Read Only.
    clientDoc.open(path, OpenReportOptions._openAsReadOnly);
    %>
    The result I get from running this is:
    HTTP Status 500 - An exception occurred processing JSP page /PrintReport.jsp at line 28
    type Exception report
    message An exception occurred processing JSP page /PrintReport.jsp at line 28
    description The server encountered an internal error that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: An exception occurred processing JSP page /PrintReport.jsp at line 28
    25:   PrintReportOptions printOptions = new PrintReportOptions();
    26:   printOptions.setPrinterName("DELL");
    27:  
    28:   clientDoc.getPrintOutputController().printReport(printOptions);
    29:
    30:   clientDoc.close();
    31: %>
    Stacktrace:
      org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:568)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:455)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    javax.servlet.ServletException: com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException: Printer name could not be set: DELL---- Error code:-2147215357 Error code name:internal
      org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:916)
      org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:845)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:133)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException: Printer name could not be set: DELL---- Error code:-2147215357 Error code name:internal
      com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException.throwReportSDKPrinterException(Unknown Source)
      com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:120)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterNotFoundException: Printer name could not be set: DELL---- Error code:-2147215365 Error code name:printerNotFoundError
      com.businessobjects.crystalreports.printer.bean.a.try(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.setPrinterName(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
      sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      java.lang.reflect.Method.invoke(Method.java:597)
      com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:120)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    java.awt.print.PrinterException: No printer named "DELL" could be found.
      com.businessobjects.crystalreports.viewer.core.f$a.a(Unknown Source)
      com.businessobjects.crystalreports.viewer.core.f.a(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.a.try(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.setPrinterName(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
      sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      java.lang.reflect.Method.invoke(Method.java:597)
      com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:120)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    note The full stack trace of the root cause is available in the Apache Tomcat/7.0.53 logs.
    Apache Tomcat/7.0.53
    I would really appreciate any help in figuring out how to print to the RAS.
    Thanks in advance.

    Hi Jason,
    Could you please let us know the complete Business Objects version with Service Pack and Fix Pack?
    Actually the issue you are facing was identified as a bug and was fixed in Business Objects Enterprise XI 3.1 FixPack 2.2.
    Please go through the SAP Note: 1417374 - Error "Printer name could not be set" when printing using the RAS SDK.
    Hope this helps.
    Regards,
    Rajarsh

  • Sales Document Delta Load Error - Status procedure could not be set

    Hello,
    I am getting the following error message during the sales document delta loads. It errors out in SMQ2 with this message - "Error in Validation (Details: transaction SMW01)"
    In SMW01, I get this message:
    <b>The status procedure CRMORD_I could not be set from item category XXX</b>.
    Message no. CRM_ORDERADM_I503
    Diagnosis
    Possible causes are:
    1. The system administrator has not assigned the status profile CRMORD_I to the object type.
    2. Initial statuses that should be set in the status profile CRMORD_I cannot be set at present.
    3. The current user RFCUSER does not have the authorization to set application statuses.
    Detailed error messages can be found in the following error log for status management.
    System response
    The status profile is not set in the document.
    Procedure
    Set the status profile in Customizing so that these cases do not occur.
    This status profile has been assigned to the item category mentioned and the RFCUSER has full authorization (SAP_ALL)
    Do any of you know what else could be the problem here?
    Thanks,
    MAX

    Dear All,
    I met similar error before, it happens when you change the item category in ECC but there is a status profile assigned to the item
    category in CRM with an active status set.
    In CRM, when the item category is changed, the system can only change (or delete) the status profile if there is no user status set for this item. So for example, if there is already a status set for an item (Say, E0001 'Open' is active) in CRM, so a change of the user status profile is impossible. If you need to change the item type, then you have to make sure that there is no active user status in the item.
    Please see note [1113116] point 2. This is a restriction in CRM. If you try to make the same changes directly in CRM you will also get the same error.
    It is not allowed to change the item category if the document has been saved and the status profile of the new item category is different from the old one.
    That is the reason why the error occurs when the data reaches CRM frm ECC.
    In order to prevent that there are sysfails in the inbound queue you can implement note [1438966] - after this is implemented you will not have the queues failing but you will get the error message in the sales order in CRM.
    You should ensure that the configuration for alternative item categories is R/3 is the same as in CRM and in this case all the alternative item categories should have no status profile or all the same status profile configured.
    I hope this could be helpful.
    Best regards,
    Maggie

  • Error: The password could not be set.

    When I create a user as an OD administrator, the new user cannot reset passwords for typical users.
    If the new administrator attempts to do so, they receive the following message: "The password could not be set. An unexpected error of type -14120 occurred. All other settings were saved."
    Other administrators which were previously created are able to reset passwords, and the new administrators have identical priveleges and group memberships.
    Initially, I thought the database may be corrupt, but I observed that the new administrators can use Workgroup Manager to reset their own password.
    Does anyone have any ideas?
    Thanks.

    I found that the administrators with the problems would be plagued with the inability to reset passwords if they belonged to any group except OD Administrators and Administrators. So I don't consider the problem resolved. Also, I found the following thread which suggests that this issue is symptomatic of a much larger OS problem:
    http://discussions.apple.com/thread.jspa?threadID=1205369&tstart=0

  • Status profile  could not be set according to transaction type

    Hello,
    Error Status profile 'ZXXXXXXX' could not be set according to transaction type 'ZYYYYYY'.
    Possible causes are:
    1. Status profile 'ZXXXXXXX' has not been assigned to object type COH by the system administrator.
    2. Initial statuses can be set in status profile 'ZXXXXXXX', which cannot be set using the current document attachment.
    3. The current user XXXXXXX does not have the authorization to set an application status.
    Though i have assigned Object type COH . and the user has the autherization. Pls Help.

    Hi ,
    Please check you have assigned status profie to object type that is using this status profile. Ex. If you are assigning status profile to campaigns , you also need to check mark object type campaign under allowed objects types.
    Nitin

  • I sent in my iPod nano to the replacement program about two weeks back. However, I checked the status of the repair and it still says it has not been received yet. Is there any way to follow up on where the nano could be? I sent it via FedEx.

    I sent in my iPod nano to the replacement program about two weeks back. However, I checked the status of the repair and it still says it has not been received yet. However, my boyfriend sent in his the same time I did and his repair status says repair being diagnosed. I still have the "receipt" of the package when they first sent it to me. I sent it via FedEx. Is there any way to follow up on where the nano could be or maybe find out if I can still get a replacement even though my nano might be lost in transit?

    I sent it via FedEx. 
    Call FedEx.  They will be able to track their own packages.  They will let you know if your iPod Nano was delivered and to who!

  • When i connect my ipad2 to iTune, it show "iTunes could not check for an update to the carrier settings for your iPad. An unknown error occured (1651)". What should i do to solve this problem? My iTune version is 10.1.4.10 and my ipad is 4.3.5.

    When i connect my ipad2 to iTune, it show "iTunes could not check for an update to the carrier settings for your iPad. An unknown error occured (1651)". What should i do to solve this problem? My iTune version is 10.1.4.10 and my ipad is 4.3.5.

    If you have iOS 7.1 then you must be a developer, so you should be posting in the developer forums : https://devforums.apple.com/index.jspa

  • I am having the  problem . it says it shouldnt take more than 3 minutes then i get this message Could not activate iphone. i have taken the sim card out and put it back in even then its of no use. if any one out there can help us it would be very nice

    i am having the  problem in my 3gs iphone. it says it shouldnt take more than 3 minutes then i get this message Could not activate iphone.
    i have taken the sim card out and put it back in even then its of no use.
    if any one out there can help us it would be very nice of them. thank you for your time.

    I can not get to iPhone screen, so no way to get to Settings. That is the problem. When I connect phone to iTunes I get screen asking to insert SIN card. On the phone I'm getting Cinfigure screen asking Launguage , Country or Region, Wi-Fi, ( I can connect to my home wi-fi), and last screen "Activating your iPhone". After two minutes of waiting IM getting message: Your iPhone could not be activated because the activation server in temporary unavailable. try connecting to iTunes or try later or contat apple.com/support.
    Like I mention, I went to Bell as well Rogers store and tried to insert active SIM card with no results.
    Yes, my friend unlock the phone to use with Rogers but I don't know where

  • The EURO currency table (EWUCURRS) could not be set up.

    Hi,
    When I create a PO while using AED as currency, I get message
    Pricing/euro: Attention: Euro Customizing not maintained
    Message no. VH777
    Diagnosis
    The EURO currency table (EWUCURRS) could not be set up.
    Procedure
    Check EURO Customizing (see OSS note 91481 and 135661).
    I went through the notes but could not really understand what's exactly required to be done.As it mentions several notes in one note.Also these notes talks about older versions.
    I am using ECC 6.0
    I am getting this error only sometimes.May be when  am not using European currencies.
    What is this message basically and what needs to be done exactly.
    Note talks about many things in one thing like maintaining EURO/EURX so on and so forth.
    According to me the note confuses a lot than helping.
    Can anyone suggest what is to be done and what is the severity of this message ?
    Thanks in advence
    regards,
    manOO

    Hi
    Check T code- EWCF (Confirmation of EURO currency customization)
    Thanks
    Ansuman

  • HT201304 I can't purchase any. I'm buying gems in-game. There always a message saying 'Your Purchase Could Not Be Completed.' What's the problem? I have $100.63 credits. I can't use them. I just change my name in my apple id. Can anyone help me?

    Help me! I can't purchase any. I'm buying gems in-game. There always a message saying 'Your Purchase Could Not Be Completed.' What's the problem? I have $100.63 credits. I can't use them. I just change my name in my apple id. Can anyone help me?

    It's still the same message. Your Purchase Could Not Be Completed. For Assistance, Contact iTunes support at www.apple.com/support/itunes/ww/.

  • This is an error from my HP scanner. How can I fix the problem? An error has occurred saving the file because it could not be written to. Check the properties for the file to make sure it is not read-only.

    I recently uploaded the Maverick operating system. I wanted to scan some things on my HP Printer/Scanner and could not . This is the error message I received: An  error has occurred saving the file because it could not be written to.   Check the properties for the file to make sure it is not read-only. I am a novice with the computer and have no one to help. I hope someone knows an easy fix.
    Thank you

    This worked for me:
    "Although it is not a 'fix' for the HP issue, I did find a workaround that helped me. In the Preferences Panel in MacOS X you can pull up the Printer/Scanner preferences and scan directly from OS X. I'd not known of this prior to posting here and it worked like a charm."
    "Of course, HP should still update their software, but it's good to know that Apple has it covered for them."
    I found it here:
    http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/MAVERICKS-WONT-SCAN-HP-C3 09A/td-p/3052105

  • Lock in lock manager could not be set - long text

    Hi Experts,
    We have a issue with the 124002 ID request for the ODS ZSDOD005 (request number REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX).
    It has green status, but if you open the monitor, the status is red.
    If you search for more detail,  you can see the following message:
    “Lock in lock manager could not be set -> long text”
    The error refers to a lock in lock manager
    Lock in lock manager could not be set -> long text
    Message no. RSENQ009
    Diagnosis
    The lock in the lock manager could not be set.
    An attempt is being made to set the lock in include LRSENQF00 in the form set_enqueue.
    The lock table is table RSENQ_PROT_ENQ.
    An attempt was made to lock the following object:
    User/Object  = BWREMOTE/ZSDOD005
    Object_typ/Action = ODS/UPD_ODS
    Subobject  = REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX
    SubSubObject = 000001
    This problem affects subsequent loads.
    The InfoPackage ZPAK_6K641H103XV0MTRBAV9Q788IS loads data to three ODS ZSDOD001, ZSDOD003 and ZSDOD005.
    None of the other ODS generated InfoPackage for 09.25.2013.
    Our BASIS support team couldn’t see locks that impact in the procedure.
    The InfoPackage ZPAK_6K641H103XV0MTRBAV9Q788IS is part of the Process Chain ZCP01 - Ventas (SD) Transaccional
    If we tried to repeat the step we had obtained the following message:
    02.10.2013 16:44:04 Job started
    02.10.2013 16:44:04 Step 001 started (program RSPROCESS, variant &0000000032648, user ID BWREMOTE)
    02.10.2013 16:44:04 Start process LOADING ZPAK_6K641H103XV0MTRBAV9Q788IS in run 7PZGWSRZS6GJGB093B9W72U5H of chain ZCP01
    02.10.2013 16:44:04 Delta request REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX is incorrect in the monitor
    02.10.2013 16:44:04 A repeat needs to be requested
    02.10.2013 16:44:04 Data target ZSDOD005 still includes delta request REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX
    02.10.2013 16:44:04 If the repeat is now loaded, then after the load
    02.10.2013 16:44:04 there could be duplicate data in the data targets
    02.10.2013 16:44:04 Request the repeat?
    02.10.2013 16:44:04 Last delta incorrect. A repeat must be requested. This is not possible.
    02.10.2013 16:44:05 Performing check and potential update for status control table
    02.10.2013 16:44:05 Could not set request REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX in DTA ZSDOD005 to red; terminated with error 5
    02.10.2013 16:44:05 Job finished
    This issue prevents subsequent loads of data.
    It is abnormal that there is a green external status and a red one internal.
    Could you, please check why are we having this lock error?
    What are the steps to follow to avoid losing information or having it duplicated in this case?
    Thanks,
    Kiran

    Hi,
    Make sure the DSO is not changed mode when u r trying perform your activity in production system.
    if the DSO is in change mode..it will be locked for further activities to be happend on it unless again it comes back to active status.
    if it locked..you can see all the locked Objects in SM12 Tcode and proceed accordingly.
    hope this is clear for you.
    Regards
    Ramsunder.

  • ITunes could not synch calendars to iPhone because the iPhone disconnected

    Started getting an error message during iPhone synch about two weeks ago: "iTunes could not synch calendars to iPhone because the iPhone disconnected"
    - Am synching to my Outlook calendar on a system running Windows 7
    - Everything else (contacts, podcasts, audiobooks, etc.) synchs just fine
    - Tried totally resetting the iPhone and restoring the firmware
    - Tried deleting the backups, preferences and resetting synch history
    - Tried forcing a rewrite/replacement of the calendar database using iTunes
    Nothing sems to work...still get the same message about not synching the calendar due to the iPhone disconnecting, but of course, it really hasn't disconnected since I can get it to immediately synch anything else.
    Any ideas out there? Thanks...

    Thanks midwestcraft. I had this problem and your answer solved it for me.
    Thought this further info may be of use to some who wants more historic dates in their calendar.
    I had "do not sync events older than" unchecked and the input field set to "0". When I changed it to 180, it worked perfectly. I've found that I can increase this number to "545" - anything higher causes the error. This seems to coincide with some strange multiple-entry events in my calendar.
    Don't know if this will be a clue for somebody to fix the issue.

  • Unable to start Photoshop CS6 - could not open a scratch file because the file is locked (Windows)

    When I first installed Adobe Photoshop CS6 I was unable to run Photoshop or Bridge CS6.  Photoshop would give me an error about "could not open a scratch file because the file is locked.  If I ran either of these programs as an administrator they would run without issue, this led me to believe that there was a permission issue somewhere.  After some digging I found out the both Bridge and Photoshop try to create a temp file (similiar to Photoshop Temp2777223910092) on the c:\ drive of the computer.  In my case the user that I was logged in with did not have access to write to the root of the C:\ drive.  Note that you run the program as the administrator and change the scratch disk location as that changes the preference for the administrator user and not the user that you are currently logged in as.
    To get around this issue I first had to give the user that I was logged on with write permissions to the root of the C:\ drive.  Next try and run Photoshop, you will get an error another error about the scratch disk and about and invalid or missing setting file.  To correct this you need to have run Photoshop as an administrator, next you can go to Users\Admin\AppData\Roaming\Adobe\Adobe Photoshop CS6\Adobe Photoshop CS6 Settings and copy Adobe Photoshop CS6 Prefs and/or Adobe Photoshop X64 CS6 Prefs to Users\<your logged in username>\AppData\Roaming\Adobe\Adobe Photoshop CS6\Adobe Photoshop CS6 Settings.
    Photoshop and bridge should now start up with no issues.
    I hope that this can help others out there as this caused me a great deal of frustration when upgrading to CS6.

    station_two wrote:
    OK, here comes the explanation of what the scratch disk does and why it's optimal to have it on a physically separate internal drive (not partition!) other than your boot drive
    I probably shouldn't say anything since it could complicate this thread, but the rules of thumb can be different under special circumstances when SSD is involved.
    IF you have a LOT of empty space on your SSD-based system drive, then Photoshop can actually work great with it's scratch setting pointed at the system drive.  This is because a) SSD transfers are much faster than spinning hard drives and b) there's no seek time, so simultaneous transfers to/from scratch and swap files aren't devastating to performance, and you can see a net gain because of the increased I/O throughput over what's possible using a separate spinning drive for scratch.
    But if you don't have a huge amount of free space (hundreds of GB) on the system SSD, it's definitely better to use a separate drive, as station_two has said.
    Also, up to about a year or so ago, you had to try to severely limit write activity to your SSD drive, since you could actually wear them out by repeated high data write activity.  That's pretty much a non-issue now with the advent of things like the SandForce in-drive controller that does wear-leveling inside the drive.  Modern drives will last 10 years or more in normal typical use, without special consideration.
    As it turns out, making a RAID array of SSDs is a great way to boost performance across the board, have bunches of free space, and ensure even the heaviest usage doesn't shorten the drive life.  I have done so, creating a 2 TB system drive C: made from 4 SSDs and Photoshop's swap file (and pretty much everything else) pointed to C:.  This system flies, and I can barely tell when Photoshop and/or Windows "goes virtual" and starts using its scratch/swap files heavily.  I don't even notice Photoshop auto-saves.
    Sorry for the SSD diversion.
    Back on topic: 
    Pretty much everyone who's successfully using a computer - Mac and PC users alike - comes to realize after a while that the task of integrating things on their computers and making everything work falls on THEM, not the developers of applications like Adobe.  Some applications pose unique challenges, but to think you can just throw up your hands and try to make it someone else's problem when something goes wrong simply isn't a viable strategy.  Maybe that's how things should be, but it's not how it is.
    For those of you struggling to get Photoshop to run properly, bear in mind that it's on you to get things working.  It works for most folks.  It could be a configuration or setup choice you've made that may need revisiting, or some kind of restorative activity that you need to do, or even something very minor like clearing your Photoshop preferences, but it may well take your learning new things and doing things you didn't think you'd have to do to get back to where you can edit photos.  It's no one's problem but your own.
    So let us here on the forum help you - when we say to do something, try it.  We're not here to jerk you around; we're users just like you who have already found the ways to make things work, and we'd like to help you do the same.
    -Noel

  • Auto Approval EBP Purchase Order is not updating the status at the header

    Hi There ,
    We are facing an issue in EBP auto approval PO ,
    The process level schema is set to Auto Approval  (Standard 9CBUS2201_EX01_55)
    During the PO creation , the standard schema is triggered and it gets approved .
    The status of the PO in the Approval Tab is showing as Approved .
    But in the docuemnt level the status is still Awaiting Approval .
    While checking in SWI1 we came to know that an error has happened in the Task TS40007972
    and the Guid ID of SRM Purchase is initial that has made the status(EV_STATUS) as initial .
    The ERROR is from the below class & method.
    Class: /SAPSRM/CL_WF_PROCESS_MGR_SBWF
    Method:GET_PROCESS_DECISION_STATUS
    Can anyone suggest to overcome this issue .It will be very usefull if anyone could suggest debugging possibility if any .
    Regards,
    Arun.

    Have you tried notes?
    1625513 - Workflow without approval is Awaiting approval status
    1724251 - Workflow log error: CREATE_DECISION_SETS cannot be executed

Maybe you are looking for