TIME_OUT error with /sapapo/rtsinput_cube

We are in the process of cutting over to a new
planning area ZPA2 with data from a backup InfoCube
(ZIC21), and the /sapapo/rtsinput_cube program
is failing with a TIME_OUT error.
The overall job finishes with a success message,
although data is only partially loaded in to the
planning area. When you look at the spool, the first
steps are green, then the job times out for the
subsequent steps.
We ran this first with 3 key figures being loaded
from cube to planning area for approx 1/5 of 464000
CVCs for 5 years in monthly buckets only.
This errored with SAPSQL_INVALID_FIELDNAME message as
well as the TIME_OUT error message, and data was
loaded partially in the ZPA2 planning area (only 2
months).
We then reduced the time horizon from 5 years of
months to be only 1 year in months.
This errored with the TIME_OUT error message. Again,
data was partially loaded in to the planning area
(about 7 of the 12 months was loaded).
The prime issue is with the constant time out.
Has anyone any idea how to solve this problem ?

not sure what version you are using but if you are on the latesr versions, its a good idea to use parallel processing - you can find it on the additonal settings tab
you can also set it to copy only the specified period (previously it copied the whole bucket in the planning area to cover the time period)
if you are in versions that dont support this - then you can create parallel jobs that get triggered by an event or use a process chain and run this in parallel. As long as you dont overlap the periods it should be fine
you should also ask your basis team to check the time out set up for the application and get it extended (you can see this in rz11 i think and choosing the correct parameter - would leave it to the basis folks to help in this) Alternately check your processing power and see if you can get it increased

Similar Messages

  • BI 7.01 BEx report/workbok Time_Out Errors

    Hi,
    Our BEx reports/workbooks are failing with time_out error's. Below are the time_out error details: BEx workbooks are executed through VB Script.
    Some days they run fine and some days they time_out.
    The program "CL_RSDRH_HIER_CACHE===========CP" has exceeded the maximum
    permitted runtime without
    interruption and has therefore been terminated.
    Programs with long runtime should generally be started as background
    jobs. If this is not possible, you can increase the system profile
    parameter "rdisp/max_wprun_time".
    Depending on the cause of the error, you may have to take one of the
    following measures:
    - Endless loop: Correct program;
    - Dataset resulting from database access is too large:
    Instead of "SELECT * ... ENDSELECT", use "SELECT * INTO internal table
    (for example);
    - Database has unsuitable index: Check index generation.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "TIME_OUT" " "
    "CL_RSDRH_HIER_CACHE===========CP" or "CL_RSDRH_HIER_CACHE===========CM00D"
    "ADD_MEM"
    Other time_out error's as below:
    1) The program "SAPLRSDRC_SPLIT" has exceeded the maximum permitted runtime
    without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLRSDRC_SPLIT" - in "SELAGGR_GET2".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 1101
    of the (Include) program "LRSDRC_SPLITF01".
    2) The program "CL_RSDRH_HIER_CACHE===========CP" has exceeded the maximum
    permitted runtime without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "CL_RSDRH_HIER_CACHE===========CP" -
    in "CHECK".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 80
    of the (Include) program "CL_RSDRH_HIER_CACHE===========CM001".
    3) The program "SAPLRSDRC_SPLIT" has exceeded the maximum permitted runtime
    without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLRSDRC_SPLIT" - in
    "SELDR_TO_AGGROBJ".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 214
    of the (Include) program "LRSDRC_SPLITF01".
    4) The program "SAPLSENA" has exceeded the maximum permitted runtime without
    interruption and has therefore been terminated.
    Termination occurred in the ABAP program "SAPLSENA" - in "FLUSH_PACKAGE".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 229
    of the (Include) program "LSENAF01".
    Recently we have increased the parameter "rdisp/max_wprun_time" from 5400 to  7200 Seconds.
    Pl. advise.

    Hello,
    I think this is quite easy.
    Execute the report SAP_DROP_TMP_TABLES (via SE38 transaction) and the issue should be solved.
    For more details, see notes 698280 and 1139396.
    Let me know if persist.
    Best Regards,
    Edward John

  • Getting time_out Error in report bcos of SQL Statement!

    Hi Experts,
    I am getting Time_out error  in my big program because of Select statement.I have checked in SQL Trace AND  fuond the message
    "SQL0104N  An unexpected token "vakey" was found following "umh
      kschl".  Expected tokens may include:  ",".  SQLSTATE=42601"
    I have given the following code and SQL statement where the error is getting occured.Please help.
    TYPES: BEGIN OF ty_vakey1,
               vakey TYPE vakey,
             END OF ty_vakey1,
             ty_t_vakey1 TYPE HASHED TABLE OF ty_vakey1 WITH UNIQUE KEY vakey.
      DATA: ih_vakey1 TYPE ty_t_vakey1,
            wa_vakey1 TYPE ty_vakey1,
            wa_vakey  TYPE ty_vakey.
      LOOP AT i_vakey INTO wa_vakey.
        wa_vakey1-vakey = wa_vakey-vakey.
        COLLECT wa_vakey1 INTO ih_vakey1.
        CLEAR wa_vakey1.
      ENDLOOP.
      IF ih_vakey1 IS NOT INITIAL.
    Here it is required to select the Key field and so cannot be used in Where condition
        SELECT knumh                                             "Condition record number
               kschl                                             "Pricing conditions
               vakey                                             "Variable Key
               datab                                             "Valid-From Date
               datbi                                             "Valid To Date
               FROM konh
               INTO TABLE i_konh
               FOR ALL ENTRIES IN ih_vakey1
               WHERE vakey EQ ih_vakey1-vakey .           "#EC CI_NOFIELD
    Here #EC CI_NOFIELD is used because the key field of the table konh ( ie knumh)
    is to be selected and so is not used in the WHERE condition above
        IF sy-subrc NE c_0.
    No data found for specified criteria
          MESSAGE i036.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Thanks&Regards,
    Sarkar

    Check if i_konh definition matches the fields in the SELECT statement.
    Also, since you're not using the primary key when selecting from KONH table, such program by design is going to run forever and may time out eventually. Usually KONH is a very large table. Not sure what's the purpose of this program, but I'm pretty sure there must be some other way to program this. There are actually some standard FMs that read the conditions.
    A secondary index might help, but only as a last resort.

  • ASN Reference document number is invalid error with SA

    Hi~
    We have ASN creation error with SA(Scheduling Agreement).
    Portal Menu : Delivery-Receipts and Requirements-Due List for purchasing document(Supplier)
    1. Select SA(Scheduling Agreement) line
    2. Click 'Create ASN '
    3. After enter ship from location, ASN number, Error occur
       "ASN ASN-1112, item 000001: Reference document number is invalid "
    When we execute with PO, there are no error.
    But with SA, there are always error.
    Bestregards,
    SKY

    Hi SKY
    Please make sure the external procurement releationship (SA) exists in the below transaction
    /n/sapapo/pwbsrc1 between source and destination locations. i.e shipfrom and ship to
    Also make sure that the external procurement relation ship is referenced in the transportation lane /n/sapapo/tl1
    Select your product -specific transportation lane- go to detail screen
    There you can find external procurement releationship, maintain the data
    Please enhance your master data acoringly. Afterwards you can select reference doc nomber as well as item number with the value help in the ASN creation screen. By that the reported error msg should not appear anymore.
    Or Switch off PURCH_REF_MANDATORY validation check
    i suggest you follow first method and complete the master data setup
    Best Regards
    Vinod

  • Due to huge data TIME_OUT Error

    Hi All
    Can anybody help me out from TIME_OUT error
    I have declared types as per table FAGLFLEXA field sequence
    Before checking the for all entries with table FAGLFLEXA, i was deleted duplicate entries from table BSAS
    after deleted the duplicate records in BSAS table contains 3500000 records, because of this reason it goes to TIME_OUT error
    Can you please suggest the solution to resolve this TIME_OUT error
    Thanks in Advance
    Sekhar
    Moderator message: one thread only per issue, please.
    Edited by: Thomas Zloch on Feb 1, 2012

    Hi,
    1. Run your program in background and check it in sm37, whether it processed or not.
    2. Do performance tuning on select statements , nested loops, non-primary keys,......
    3. go to RZ11  -
    provide  ' rdisp/max_wprun_time '   -
    display and then check the process time, increase the process time by clicking on change button   like( ex: 600  to  1200)
    and also check with  ' abap/timeout '
    Edited by: Parupelly on Feb 1, 2012 3:30 PM
    Edited by: Parupelly on Feb 1, 2012 3:30 PM

  • CIF Error - FM /SAPAPO/CIF_PROD_INBOUND not found

    Hi Experts,
    I am configuring CIF on a fresh ECC & APO system, I have made the required configurations, but when i am trying to CIF the Location-Product, it failed
    The blocked queue gave the termination message with :-
    Function Module / SAPAPO/CIF_PROD_INBOUND not found  &
    Function Module / SAPAPO/CIF_GEN_EVENT not found
    When I checked the result on the APO side, to my surprise, I am able to see the Locations getting created but no product.
    Please suggest.
    Regards
    Manu

    Manu,
    You can suppose anything you wish.  Better, though, to actually find out.  The userid I am talking about is the userid found in your ERP-to-SCM RFC connection, which is determined by YOUR company.  I cannot say if the userid is RFCUSER since I have no access to your system.
    So, in ERP, SM59 > select ABAP connections > select the RFC connection used to connect to your SCM system.  Under the Logon & Security tab will be the name of the Userid that core interface will be using to 'talk' to SCM.  Write down this userid.
    Now log onto SCM, and do SU01 on that userid.  Review his authorizations. It is OK to assign SAP_ALL to this userid for development purposes as a temporary measure.  Probably a good idea to make him 'dialogue' as well until all of your interface debugging is done.
    In order to determine errors with interface, refer to the logs in SCM.  In SCM, SLG1 > Object CIF, everything else all asterisks, select a suitable date range.  If you see no logs, you probably need to turn on logging  /SAPAPO/C4
    I strongly recommend that you thoroughly read the 2 documents I posted earlier.  If this is your first try at connecting an ERP to an SCM system,  the time will be well spent.
    Best Regards,
    DB49

  • Install is giving an error with code 24

    Hi,
    An app that I would like to use requires Adobe AIR.
    I already have tried to install it from Playstore, but unfortunately without success.
    I have tried this 6-7 time and also with different gmail accounts.
    It downloads fine, however install is giving an error with code 24.
    My device is Asus MeMo Pad fhd 10 with Android 4.3
    How can I overcome this issue?
    I don’t care if it is not “officially supported”, it is OK for me if it works most of the time.
    Thanks in advance!
    Tofig

    Hi Senthil / JK,
    Is your issue resolved.
    I have similar issue but error text is
    COM error 38 when deleting a manufacturing order
        Message no. /SAPAPO/SNPOPT250
    Do you have any idea about it?
    Please reply
    Regards
    Samir

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • Odd Error with decode function in Order By Clause

    I am trying to compile a procedure and can't get around an error with a dynamic order by that doesn't make much sense to me. I can repoduce the error with a plain select statment in sql plus so I can rule out a declaration error. Here is an example with 2 numeric columns and a date column.
    select task_id, display_date, remark_id from task_list
    where task_id > 1000
    order by decode('Task_ID', 'Task_ID',Task_ID, 'Display_Date', Display_Date, 'Remark_ID',Remark_ID)
    returns the error:
    select task_id, display_date, remark_id from task_list
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected NUMBER got DATE
    I'm not sure why this error is occuring, because it doesn't even hit the Display_Date field in the Decode statment. If I take the Display_date out of the statement, it runs properly. If I change Display_Date to To_Char(Display_Date) it also runs fine, but the sorting is incorrect. Also I'm running 9.2, and do not want to use dynamic sql to build my query. Any Ideas out there as to the cause of this error?

    I did find a workaround to this issue by breaking the decode statment into three separate statement, but I still think that the way it is written above should work, and may be a bug, or an error that I don't understand fully.
    The Order by was rewritten like this:
    order by decode(pSort, 'Task_ID',Task_ID), decode(pSort, 'Display_Date', Display_Date),
    decode(pSort, 'Remark_ID',Remark_ID);
    Thanks

  • XML Publisher Error with reports published in XML publisher

    Hi All,
    I am geting the following error with a report published using XML Publisher
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the resource specified. Error processing resource 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.d...
    How can i Rectify this?

    Hi Ark,
    In order to generate a report using xml publisher. we need the following.
    1. XML Data
    2. Template file (RTF/PDF/..)
    XML data will not be created by the template file.
    We will be required to create XML data. One of the easiest way to create xml output is using the RDF. We can change the rdf output type in the concurrent program to XML.
    Once the xml and the template is available, "XML Report Publisher" will be able to generate the output in the required format.
    Thanks,
    K.Nataraja Suthan,

  • Graphic problems/errors with Mainstage 3 and MBP (15'' 2011)

    Hi,
    I bought Mainstage 3 for my MBP (15'' 2011).
    When i click con "perform" i get graphic errors.
    I have the same issue with the old Mainstage version since Mountain Lion.
    Also a fresh installation didn't help.
    I think i'm not the only one with this issue!
    I don't know how to report a bug?
    Perhaps someone can help me.
    (and  I'm probably not the only one (see feedback in Apple Store) If you also have this problem, please add a comment with your configuration (Hardware, Software))
    /forgotten ebi
    So, here an example how it looks like when i click on "perform":

    Same configuration,same problem. BUT I found a workaround.
    Mainstage has this error with the AMD video card and/or a second monitor connected.
    With a little app (http://gfx.io)  it's possible to really force the MBPro to use the Intel Graphics card.
    This will work only with the internal screen, not with a second screen connected.
    And sometimes you need to restart, to really make the Intel video card free.
    This works fine...In the meantime of a fix.

  • Error with an infoset in BI

    HI BI gurus,
    we have a problem with an infoset.
    We create an infoset in RSA1 linked to a cube and a DSO.
    We activate it in english without problems and I can create a query with no errors (with a english logon).
    If I try to create a query in italian language the query designer show mw this error: " unexpected error - RCF_SYSTEM_FAILURE. You must restart the query designer."
    Do you have any idea how to fix and solve this problem? We try to activete the infoset in Italian but the error remains.
    Thanks for any help.
    SB

    Hi,
    is italien installed as a language in your system?
    Siggi

  • I am trying to download my photos from my iphone to my mac-iphoto. It keeps trying but about halfway through it says there is an error with a photo therefore it wont download any of my pictures or videos.  It wont tell me which picture is the issue.

    I took a lot of pictures and video on my recent trip to Ireland.  Now I am trying to download the photos and videos from my iphone to my mac - iphoto.  I have tried 3 times and each time (at a different point) I get a message telling me that there was an error with one of my photos and it wont load the pictures.  Help!!

    Try using Image Capture to download to a folder on the Desktop.  If there's a damaged file on the iPhone that's preventing the download you can isolate it with Image Capture and then delete it from the iPhone.

  • Plug-in errors and dependency errors with a CAF app in DS in NW CE 7.1

    I am learining to build CAF apps in Developer Studio in NW CE 7.1.  Here are my steps and the errors I am getting:
    Open Developer Studio
    Switch to the CA perspective
    File->New->Project
    Choose Development Component under Development Infrastructure
    Press Next
    Choose Composite Application under sap.com
    Choose MyComponents[demo.sap.com] under 'Local Development'
    Vendor: demo.sap.com
    Name: carpool
    Caption: Car Pool
    Language: American English
    Domain: SAP-xApps
    Support Component: CAF-APP (typed in, not chosen)
    Press Finish
    The following error appears:
    Status ERROR
    Plugin : com.sap.ide.metamodel.core.services.eclipse
    code=0
    Internal error
       Plugin name: Metamodel Core
       Internal error  : com.sap.ide.metamodel.core.services.eclipse
       Class      : com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker
       Method     : computeIdeJarProperties
       Message    : C:\Program Files\SAP\IDE\CE\eclipse\E:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.dictionary.services_10.0.0.070821165456\lib\com.sap.dictionary.services_api.jar (The filename, directory name, or volume label syntax is incorrect)
       Exception  : java.io.FileNotFoundException: C:\Program Files\SAP\IDE\CE\eclipse\E:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.dictionary.services_10.0.0.070821165456\lib\com.sap.dictionary.services_api.jar (The filename, directory name, or volume label syntax is incorrect)
    java.io.FileNotFoundException: C:\Program Files\SAP\IDE\CE\eclipse\E:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.dictionary.services_10.0.0.070821165456\lib\com.sap.dictionary.services_api.jar (The filename, directory name, or volume label syntax is incorrect)
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:203)
    at java.util.jar.JarFile.<init>(JarFile.java:132)
    at java.util.jar.JarFile.<init>(JarFile.java:70)
    at com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker.computeIdeJarProperties(ArchiveVersionChecker.java:296)
    at com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker.doFullCheck(ArchiveVersionChecker.java:214)
    at com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker.checkProject(ArchiveVersionChecker.java:125)
    at com.sap.ide.mmservices.core.eclipse.generation.GenerationServiceEclipse.checkArchiveVersions(GenerationServiceEclipse.java:110)
    at com.sap.dictionary.tools.generation.eclipse.GenerationBuilder.checkArchiveVersions(GenerationBuilder.java:335)
    at com.sap.dictionary.tools.generation.eclipse.GenerationBuilder.build(GenerationBuilder.java:85)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:624)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:166)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:197)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:246)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
    at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:302)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:334)
    at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:137)
    at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:235)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    I do not think I missed anything installing NW CE 7.1, but this error makes me think that some plug-in was erroneously left out of the install. 
    Incidentally, I can continue onward and build an app (this is obviously a tutorial), but when I try to deploy I get the following error:
    The deployment of the archive failed with an exception!
    ([ERROR CODE DPL.DCAPI.1027]) DependenciesResolvingException.
    Reason:[ERROR CODE DPL.DC.3033] An unresolved dependencies error
    occurred while sorting the deployment batch items regarding the
    dependencies.;nested exception is:
    com.sap.engine.services.dc.cm.deploy.sdu_deps_resolver.UnresolvedDepen
    denciesException:[ERROR CODE DPL.DC.3437]Unresolved dependencies
    found for the following deployment items:
    1. Component: name:'carpool~ear',vendor:'my.company',location:
    'localDevelopment',version:'20080501110329',software type: 'J2EE',
    dependencies:'[name:'cafruntimeear',vendor:'sap.com',name:
    'cafcoreear',vendor:'sap.com']
    Unresolved dependency:
    name:'cafruntimeear',vendor:'sap.com'          (not found in the admitted
    batch items and the repository)
    Unresolved dependency:
    name:'cafcoreear',vendor:'sap.com'          (not found in the admitted
    batch items and the repository)
    Please check the error log for further informations.
    Again, this looks like I am missing some components.
    Any assistance is greatly appreciated.
    TB

    Further developments:  As you may note from the error message, DS is looking for com.sap.ide.metamodel.core.services.eclipse in both the C: and the E: drive at the same time.  In fact, this file exists in the E: drive subdirectory listed, so I obviously have an error with two drive designations being concatenated.  Does anyone know how I can change the lookup directory for this dependency (or any dependency)? 
    Thanks,
    TB

  • PeopleSoft XML Publisher report error with java.io.FileNotFoundException

    Hi,
    I have created two reports using XML Publisher in Peoplesoft Financials. The two reports are not related and they were submitted for processing separately. The first report completes without any issues. The second report results in error with the following message:
    09.11.17 ..(CIS_POTRPT.XML_FILE.Step03) (PeopleCode)
    [012309_091118154][oracle.apps.xdo.template.FOProcessor][EXCEPTION] IOException is occurred in FOProcessor.setData(String) with 'files/cis_potrpt.xml'.
    [012309_091118500][oracle.apps.xdo.template.FOProcessor][EXCEPTION] java.io.FileNotFoundException: files/cis_potrpt.xml (A file or directory in the path name does not exist.)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java(Compiled Code))
         at java.io.FileInputStream.<init>(FileInputStream.java:89)
         at oracle.apps.xdo.template.FOProcessor.getInputStream(FOProcessor.java:1316)
         at oracle.apps.xdo.template.FOProcessor.getXMLInput(FOProcessor.java:1100)
         at oracle.apps.xdo.template.FOProcessor.setData(FOProcessor.java:372)
         at com.peoplesoft.pt.xmlpublisher.PTFOProcessor.generateOutput(PTFOProcessor.java:53)
    2009-01-23-09.11.18.000418 AePcdExecutePeopleCode [174] Exception logged: RC=100.
    Error generating report output: (235,2309) PSXP_RPTDEFNMANAGER.ReportDefn.OnExecute Name:ProcessReport PCPC:51552 Statement:1153
    Called from:CIS_POTRPT.XML_FILE.GBL.default.1900-01-01.Step03.OnExecute Statement:8
    2009-01-23-09.11.18.000617 DoStepActions [1797] Exception logged: RC=100.
    Process 598607 ABENDED at Step CIS_POTRPT.XML_FILE.Step03 (PeopleCode) -- RC = 24 (108,524)
    In the process monitor detail > view log/trace page, the xml file is accessible so the file was generated to a valid directory.
    The weird thing is I was able to run this report without any issues few weeks ago although another user also ran into same error. The PeopleCode step that has been identified is essentially same in the two reports. I checked the app server and the directory does exist as well as the xml files for the two reports. The problem does not occur in test environment, just in production. Any help would be appreciated.

    We encounter the same problem. Did you get the answer for this issue? Thanks in advance.

Maybe you are looking for

  • SSO between BW and Sharepoint

    Hi, We have a situation where we want to establish SSO between SAP BW (3.5 with out java stack running on UNIX machine) and MS Sharepoint server. Can you kindly let me know what could be the best solution and any documentation? I've looked at various

  • Lenovo Yoga 2 13 (NOT Pro) Review

    A few things (and please note that I am no techno geek). But I want to include things that helped me: - If you do searches online, and even talk to customer service reps, here and at stores, they tend to get the Yoga 2 Pro mixed up with the Yoga 2 13

  • GS60 won't detect all the external devices anymore and D drive disppeared

    Help!!! I just bought a msi gs60 six months ago. The laptop can't detect any flash drives or external storage devices anymore, but was able to read from smartphone. Also, more importantly, the computer has lost its second hard drive, which was 800 gb

  • Connecting Ethernet device directly to Verizon fios main box.

    I'm trying to connect a home security system via cat5 to the Internet. The security system is mounted to the wall in my garage next to the Fios box. Is it possible to activate the Ethernet port in the customer access panel inside the Fios box so I ca

  • How to change the screen time on 2330c.....

    is there any option to change the screen time from center to a top end.....? Solved! Go to Solution.