GET_JOB_RUNTIME_INFO raising an expection NO_RUNTIME_INFO

HI ,
To fetch background job info . i am using the FM GET_JOB_RUNTIME_INFO but it is giving a dump by raising the exception NO_RUNTIME_INFO , Can anyone guide me if this has anything to do with the authorisation of the user who created the job ?

hi,
If program is executed online, the program is not into a job, so there is no runtime info.
If function module call hasn't "exceptions" zone defined, system will give a dump directly.
so write the call, don't miss the exceptions zone, etc
call function 'GET_JOB_RUNTIME_INFO'
    importing
      jobcount        = rs_tbtco-jobcount
      jobname         = rs_tbtco-jobname
      stepcount       = rs_tbtco-stepcount
    exceptions
      no_runtime_info = 1
      others          = 2.
  if sy-subrc is not initial.
    "not a job!
  endif.

Similar Messages

  • Raising an expection in variable exit: exit_saplrrs0_001

    Hi,
    The SAP documetation states:
    I_STEP = 3
    In this call up, you can check the values of the variables. Triggering an exception (RAISE) causes the variable screen to appear once more. Afterwards, I_STEP=2 is also called up again.
    My question, how do I raise an exepction in this function module, there doesn't seem to be any exepctions defined in the interface?
    Regards,
    Ola

    Hi,
    Eg: I have a requirement to restrict the user entry for a variable in report for any date range of 12 months window. In case, user entry is more than 12 months of date range then it should raise a message on report screen.
    CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
              EXPORTING
                I_CLASS  = 'CD'
                I_TYPE   = 'E'
                I_NUMBER = '121'
                I_MSGV1  = 'Enter value for Created On'
             i_msgv2  = '<Message part 2>'
              EXCEPTIONS
                DUMMY    = 0
                OTHERS   = 0.
          RAISE NO_PROCESSING.
    http://help.sap.com/saphelp_nw70/helpdata/EN/1d/ca10d858c2e949ba4a152c44f8128a/content.htm
    How do you use i_step=3 in global variable user exit (EXIT_SAPLRRS0_001)
    RRMS_MESSAGE_HANDLING in I_STEP3 of User Exit
    Regards,
    Suman

  • MERGE statement - Source with duplicate values not raising error ora-30926

    Hi ,
    I'm having a problem with merge that has already been reported in another thread ( Re: MERGE strange behavior ). I created a procedure with a query and have tested inserting two equal values on the Key column to raise the error. But on the first time there i run the Procedure it runs without error, apparently updating with the first row found. On the second time there i run the procedure then Oracle raises the error.
    Above you can see the code to simulate the issue:
    -- creating the table
    create TABLE teste
    ( ID NUMBER NOT NULL , DESCR VARCHAR2 (20 CHAR) , GRUPO VARCHAR2 (30 CHAR) );
    -- inserting the pk in table
    ALTER TABLE Teste
    ADD CONSTRAINT DimTestec_PK PRIMARY KEY ( ID ) ;
    -- inserting records in the table
    insert into teste
    select -2 AS id,'t-2' AS descr,'t-2g' AS grupo from dual
    union all
    select -1 AS id,'t-1' AS descr,'t-1g' AS grupo from dual
    union all
    select 1 AS id,'t1' AS descr,'t1g' AS grupo from Dual
    union all
    select 2 AS id,'t2' AS descr,'t2g' AS grupo from Dual
    union all
    select 3 AS id,'t3' AS descr,'t3g' AS grupo from Dual
    union all
    select 4 AS id,'t4' AS descr,'t4g' AS grupo from Dual
    union all
    select 5 AS id,'t5' AS descr,'t4g' AS grupo from Dual
    --create the procedure to teste the merge
    create or replace procedure mergeteste is
    Begin
    MERGE INTO teste testemerge
    USING ( select -2 AS id,'t-2' AS descr,'t-2g' AS grupo from dual
    union all
    select -1 AS id,'t-1' AS descr,'t-1g' AS grupo from dual
    union all
    select 1 AS id,'t1' AS descr,'t1g' AS grupo from Dual
    union all
    select 2 AS id,'t2' AS descr,'t2g' AS grupo from Dual
    union all
    select 3 AS id,'t3' AS descr,'t3g' AS grupo from Dual
    union all
    select 4 AS id,'t4' AS descr,'t4g' AS grupo from Dual
    union all
    select 5 AS id,'t5' AS descr,'t4g' AS grupo from Dual
    union all
    select 5 AS id,'t6' AS descr,'t6' AS grupo from Dual ) testesource
    ON (testemerge.id = testesource.id)
    WHEN MATCHED THEN
    UPDATE SET testemerge.descr = testesource.descr,
    testemerge.grupo = testesource.grupo
    WHEN NOT MATCHED THEN
    INSERT ( testemerge.id, testemerge.descr, testemerge.grupo )
    VALUES ( testesource.id, testesource.descr, testesource.grupo ) ;
    commit work;
    EXCEPTION
    WHEN OTHERS THEN
    begin
    ROLLBACK;
    dbms_output.put_line(dbms_utility.format_error_stack||dbms_utility.format_error_backtrace);
    end;
    end mergeteste;
    -- the first time you execute the procedure, it runs without error - when it shouldn't run cause there's two id with value 5 on the testesource query.
    -- the second time it raises the expected error.
    Here's the oracle version:
    1 Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    2 PL/SQL Release 11.2.0.3.0 - Production
    3 CORE 11.2.0.3.0 Production
    4 TNS for Linux: Version 11.2.0.3.0 - Production
    5 NLSRTL Version 11.2.0.3.0 - Production
    Thanks in advance.
    Best Regards.
    Renan Ribeiro

    Hi, Renan,
    That sounds like a bug. In Oracle 11.1, I get the error the first time I run the procedure, but in Oracle 11.2, I get the same results you do (that is, no error the first time I run the procedure, error the second time).

  • Error handling in abap proxy

    Hi,
    In my scenario, I have written code in the execute_synchronous method of the abap proxy in ECC. I want to capture all possible errors that might occur here and for all of them i want to capture the message id and the text and send it out. what kind of possible errors/exceptions can occur and how to handle them. My proxy class simply selects data from multiple tables in ECC and returns the same.
    thks

    Hi,
    for outbound proxies the error handling should be done within R3 itself and there is no need to send errors to XI or receiving system for that matter. You would want someone from R3 side to take a note of it.
    For Inbound proxies, you will have to implement the Fault messages
    Fault message types are designed for application-specific errors that occur on the inbound side and that are reported back to the sender or persisted in monitoring.
    ·        In the synchronous case, when an application-specific error occurs on the inbound side, instead of sending a response message back to the sender, the application can send a fault message to handle the error.
    ·        The fault message of the application for an asynchronous ABAP server proxy is persisted for monitoring. In the case asynchronous of Java server proxies, the fault message is part of a negative application acknowledgement (see Acknowledgments).
    Application-specific means that the application on the inbound side triggers the error itself because, for example, the request message did not contain sufficient information.
    For more information on the same.
    http://help.sap.com/saphelp_nw04s/helpdata/en/dd/b7623c6369f454e10000000a114084/frameset.htm
    In your case, since you said that you are selecting data from some tables, the possibility is that an entry is not found in the DB tables you will have to simply populate the fault message data and raise an expection CX_FM. It also depends on what error handling requirements from the Business .
    regards,
    Advait.

  • Itunes 10.6.1 crash for other language

    Before I installed 10.6 and it just crashed continusly, would restore and I kept reinstalling. finaly I decided to go to an older version, what ended up been the perfect solution. Waited for next version where all bugs should be at the most fixed, but for a spanish configured mac, it just doesn't work. It keeps showing the message "this itunes version was unable tu update language, please use de english version" and... WHAM!  it just closes on you and wont open at all... justo got to the previous version again... must I raise my expectations on a 10.6.2 o just pray for a 10.7 or 11???

    does anybody know if there would be any problems keeping 10.5.2 on my snow leopard macbook and runinng the lateset 10 on my Lion macbook.? It seems like new OS's often kill old models so I've kept SL on the. macbook.
    Match doesn't seem to be updating.
      Model Name:          MacBook
      Model Identifier:          MacBook4,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          2 GB
      Bus Speed:          800 MHz

  • DB Adapter Binding Fault Not Working

    Hi,
    I am trying to run the application "InsertWithCatch" bpel sample in 10.1.3.1 and after testing it's always generating the same exception as below for any Database error:
    javax.transaction.RollbackException: Transaction has been marked for rollback:.
    What might the possible reason that binding fault is not getting generated at rutime when I am doing a duplicate row insertion?
    Thanks.

    Hi,
    I have increased the domain Logging level and this is the actual stack trace that is getting generated:
    While trying to do an insert:-
    Caused by: ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    insert failed. Descriptor name: [InsertWithCatch1.Movies]. [Caused by: ORA-00001: unique constraint (SOADEMO.MOVIES_PK1) violated
    Caused by Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.BatchUpdateException: ORA-00001: unique constraint (SOADEMO.MOVIES_PK1) violated
    Error Code: 1.
         at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:369)
         at oracle.tip.adapter.db.exceptions.DBResourceException.outboundWriteException(DBResourceException.java:410)
         at oracle.tip.adapter.db.DBInteraction.executeOutboundWrite(DBInteraction.java:933)
         at oracle.tip.adapter.db.DBInteraction.execute(DBInteraction.java:211)
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:480)
         ... 87 more
    Caused by: Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.BatchUpdateException: ORA-00001: unique constraint (SOADEMO.MOVIES_PK1) violated
    Binding fault raised as expected:-
    <2008-03-19 13:45:18,468> <DEBUG> <default.collaxa.cube.engine> <bpel.insertwithcatch.BPEL_BIN$$BPELC_BpInv2::perform> error thrown
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    While performing a merge:-
    org.collaxa.thirdparty.apache.wsif.WSIFException: file:/D:/soasuiteproduct/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_InsertWithCatch_1.0_4b0c7547e53123fc55dd2a1a4c59a472.tmp/InsertWithCatch1.wsdl [ InsertWithCatch1_ptt::merge(MoviesCollection) ] - WSIF JCA Execute of operation 'merge' failed due to: Could not create/access the TopLink Session.
    This session is used to connect to the datastore. [Caused by: Transaction has been marked for rollback: null]
    ; nested exception is:
         ORABPEL-11622
    Could not create/access the TopLink Session.
    Database adapter runtime platform classname is:-oracle.toplink.platform.database.Oracle9Platform
    What can be the possile fixture to above problem?
    Please advice as I am have to implement the error handling strategy to an actual Case Study implementation.
    Thanks

  • Reg: SXMB_MONI Dump

    Hi All,
    I am getting the below error. In SXMB_MONI first it is failed automatically it Processed successfully. In Development same scenario is working fine.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
    <SAP:Category>XIProtocol</SAP:Category>
    <SAP:Code area="PARSER">ITEM_MISSING</SAP:Code>
    <SAP:P1>Envelope</SAP:P1>
    <SAP:P2 />
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText />
    <SAP:ApplicationFaultMessage namespace="" />
    <SAP:Stack>XML element Envelope missing in SOAP message header (SAP XI Extension)</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    In SXMb_MONI if i click on Inbound Message or Technical routing, it's getting shot dump.
    Short dump Message is : A raise statement in the program SAPLOLEA raised an expection condition "SYSTEM_FAILURE"
    Plese help me...
    Regards,
    Chandra.

    Hi Chandra,
    Are you using SOAP adapter ?
    If yes, check if you have selected the check button "Do not use SOAP Envelop" then Uncheck it.
    (if you are using this setting then you have to send nosoap in your URL else it will through short dump)
    Thanks,
    Sunil Singh

  • Jndi lookup of of object that has been bound remotely

    I want to register in weblogic server jndi tree some remote objects. A one standalone
    application binds these object in server jndi. Another standalone app try to lookup
    and executes some methods - everything works ok.
    The problem is : applications which works internally on server can't lookup these
    object. It's initial context doesn't contains such bindings. What's the difference
    between naming contexts
    inside and outside the server?
    Thank in advance,
    Vladimir.

    Hi JP3O,
    >> But that doesn't help because CurrentExcelWorksheetEventsInstance is not nothing even after all properties give errors. What is a better test or approach I can use?
    In my option, if you refer to the property of the Worksheet object which has been deleted, the error would be raised as expected. I think you could use the try catch statement to deal with this situation. Some key code like below:
    Dim oxl As Excel.Application
    Dim owb As Excel.Workbook
    Dim osheet As Excel.Worksheet
    Dim owbname As String
    oxl = New Excel.Application
    owb = oxl.Workbooks.Open("D:\Test\VSC#\03\Winform\VBWinform\Test.xlsx")
    osheet = owb.Worksheets("sheet1")
    Try
    osheet = owb.Worksheets.Add()
    owb.Close(False)
    owbname = owb.Name
    Catch comex As System.Runtime.InteropServices.COMException
    If comex.ErrorCode = -214682246 Or comex.Message.Contains("Object has been deleted") Then
    ' handle deleted object
    Else
    Throw comex
    End If
    End Try
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • IAS delivers old files.

    Hi,
    I have the following problem:
    We have put several Jar-Files to our iAS and use them inside formsweb.cfg in the archive_jini section. When we update this files the server still delivers the old file, even if i remove the file completely the server keeps delivering me the old file.
    The next thing i tried was stoping the httpserver via enterprise manager... the server still delivers me the files o.O Other urls except our 2 jar files show me an error "No response from Application Web Server". I mean... WTF
    This curiously just applies for some of our files which we download that way, when updating or renaming another jar file, which is placed in the same directory the http server shows the correct behaviour. Stoping the server raises the expected error in a browser.
    But with 2 files out of 7 we have the problem described above and we just dont know what to do against it.
    Thanks for your help,
    regards daniel

    Hi Abhinav,
    These files get placed as a part of the auditing workflow.
    The CMS gathers all events that are enabled to be audited.
    These events are placed in a buffer file - which is the text files you've mentioned.
    The events in these buffers are then picked up in cycles and written to the audit database.
    Ideally once all events in a buffer are written, the file becomes blank / 0 kb in size and eventually removed.
    What is the "auto-clean" period that you've set for ADS clean up?
    Are the buffers older than this period?
    If yes, are they 0kb or non-0kb in size?
    Regards,
    Sid

  • Using nested BEGIN..END Block....

    Hi,
    I am unable to use nested BEGIN..ENF Block.See error defined below
    BEGIN
            BEGIN
                    SELECT xcod_code INTO v_cmpy_xcod_code
                    FROM   ext_code_type
                    WHERE  xcod_code = sdiStruct.cmpy_xcod_code
                    AND    inst_borg_ind = 'B';
            EXCEPTION WHEN NO_DATA_FOUND
            THEN
                 erm := 'CMPY XCOD CODE not found with indicator of B';
                 RAISE err;
            END;
            BEGIN
                    SELECT  borg_num,borg_code INTO v_borg_num,v_borg_code
                    FROM    borg_code
                    WHERE   borg_code  = sdiStruct.cmpy_id
                    AND     xcod_code  = sdiStruct.cmpy_xcod_code;
            EXCEPTION WHEN NO_DATA_FOUND
            THEN
                    erm:= 'No borg num or borg code found for CMPY ID and CMPY XCODE CODE entered.';
                    RAISE err;
            END;
         EXCEPTION
         WHEN err THEN
         RAISE_APPLICATION_ERROR(-20001,erm);
    END;The ERROR I get is this
    LINE/COL ERROR
    113/3    PLS-00103: Encountered the symbol "RAISE" when expecting one of
             the following:
             . ( * @ % & = - + ; < / > at in is mod not rem
             <an exponent (**)> <> or != or ~= >= <= <> and or like
             between ||If I remove the 2nd nested BEGIN..END BLOCK,It works fine.
    Cant I write multiple BEGIN..END BLOCK??

    The error that you are receiving indicates that it happened on line 113 of your code, so you have obviously left out a whole lot. The portion of the code that you posted works fine, as long as you have all of the correspoinding pieces. I don't know if sdistruct is a package or a row of a cursor or what and I don't know your table structure, so I have just made something up, in order to demonstrate below. In the future, it helps if you include things like complete code and table structure and Oracle version.
    scott@ORA92> CREATE TABLE ext_code_type
      2    (xcod_code     NUMBER,
      3       inst_borg_ind VARCHAR2(1))
      4  /
    Table created.
    scott@ORA92> CREATE TABLE borg_code
      2    (borg_num      NUMBER,
      3       borg_code     NUMBER,
      4       xcod_code     NUMBER)
      5  /
    Table created.
    scott@ORA92> CREATE OR REPLACE PACKAGE sdiStruct
      2  AS
      3    cmpy_xcod_code NUMBER := 1;
      4    cmpy_id           NUMBER := 1;
      5  END;
      6  /
    Package created.
    scott@ORA92> SHOW ERRORS
    No errors.
    scott@ORA92> CREATE OR REPLACE PROCEDURE your_proc
      2  AS
      3    v_cmpy_xcod_code ext_code_type.xcod_code%TYPE;
      4    v_borg_num     borg_code.borg_num%TYPE;
      5    v_borg_code     borg_code.borg_code%TYPE;
      6    erm          VARCHAR2(80);
      7    err          EXCEPTION;
      8  BEGIN
      9    BEGIN
    10        SELECT xcod_code
    11        INTO     v_cmpy_xcod_code
    12        FROM     ext_code_type
    13        WHERE     xcod_code = sdiStruct.cmpy_xcod_code
    14        AND     inst_borg_ind = 'B';
    15    EXCEPTION
    16        WHEN NO_DATA_FOUND THEN
    17          erm := 'CMPY XCOD CODE not found with indicator of B';
    18          RAISE err;
    19    END;
    20    --
    21    BEGIN
    22        SELECT  borg_num,borg_code
    23        INTO      v_borg_num,v_borg_code
    24        FROM      borg_code
    25        WHERE      borg_code  = sdiStruct.cmpy_id
    26        AND      xcod_code  = sdiStruct.cmpy_xcod_code;
    27    EXCEPTION
    28        WHEN NO_DATA_FOUND THEN
    29          erm:= 'No borg num or borg code found for CMPY ID and CMPY XCODE CODE entered.';
    30          RAISE err;
    31    END;
    32  EXCEPTION
    33    WHEN err THEN
    34        RAISE_APPLICATION_ERROR(-20001, erm);
    35  END your_proc;
    36  /
    Procedure created.
    scott@ORA92> SHOW ERRORS
    No errors.
    scott@ORA92> EXECUTE your_proc
    BEGIN your_proc; END;
    ERROR at line 1:
    ORA-20001: CMPY XCOD CODE not found with indicator of B
    ORA-06512: at "SCOTT.YOUR_PROC", line 34
    ORA-06512: at line 1
    scott@ORA92> INSERT INTO ext_code_type VALUES (1, 'B')
      2  /
    1 row created.
    scott@ORA92> EXECUTE your_proc
    BEGIN your_proc; END;
    ERROR at line 1:
    ORA-20001: No borg num or borg code found for CMPY ID and CMPY XCODE CODE entered.
    ORA-06512: at "SCOTT.YOUR_PROC", line 34
    ORA-06512: at line 1
    scott@ORA92> INSERT INTO borg_code VALUES (1, 1, 1)
      2  /
    1 row created.
    scott@ORA92> EXECUTE your_proc
    PL/SQL procedure successfully completed.

  • FRM-40735 ORA-1476

    I write code in when-validate-item
    :bottomcost.ctoa := nvl(:grand1,0)/nvl(:exc_rate1,0);
    :bottomcost.ctob := nvl(:grand2,0)/nvl(:exc_rate1,0);
    :bottomcost.ctoc := nvl(:grand3,0)/nvl(:exc_rate1,0);
    when I leave empty exc_rate1 item in form it shows the error.
    FRM-40735 When-Validate-Item trigger raised unhanded expection ORA-01476.
    I know should write here code for returning 0 but i could not understand where i have to start.
    i-e I write
    ---------when-validate-item-----------
    if :exc_rate1 = 0 then
    result :=0
    else
    :bottomcost.ctoa := nvl(:grand1,0)/nvl(:exc_rate1,0);
    :bottomcost.ctob := nvl(:grand2,0)/nvl(:exc_rate1,0);
    :bottomcost.ctoc := nvl(:grand3,0)/nvl(:exc_rate1,0);
         end if;
    it is right?

    this???
    ---------when-validate-item-----------
    if ( NVL(:exc_rate1, 0) = 0 ) then
      result :=0
    else
      :bottomcost.ctoa := nvl(:grand1,0)/:exc_rate1;
      :bottomcost.ctob := nvl(:grand2,0)/:exc_rate1;
      :bottomcost.ctoc := nvl(:grand3,0)/:exc_rate1;
    end if;

  • Please recommend on CF Hosting...

    Dear CF colleagues:
    I have been with IXWebHosting for 3 years now and totally
    satisfied, but my two current webmastering responsibilities force
    me to leave. One site offers many streaming movies; The other is
    more of an application than a website and requires relatively high
    processor demands. The flip side or good side is that traffic is
    realtively low to each (less than 6000 unique visitors for both
    sites combined per month).
    INPUT REQUEST ONE: Which hosting company can you recommend?
    My bidget is limited to US$200/month maximum.
    *** NOTE: I do not dare to manage the server myself (too
    little experience, though I have managed my own PC's for 10+ years
    and CF developer for 4 years).
    INPUT REQUEST TWO: I lean towards true Dedicated Hosting i.o.
    Virtual Private Server, as the true dedicated offers better
    bandwidth and better rendering speed (since my sites will be the
    only ones using the box's bandwidth and processor speed). But this
    viewpoint may be incorrect. I appreciate your thoughts on this.
    Hoping to hear from you. I have been researching the market
    out there for two full days and it is near impossible to draw
    conclusions without recommendations from the in-crowd so to speak.
    Thanks for helping/coaching,
    Hans

    Hello,
    I work in the webhosting industry, for a company that
    specializes in hosting dedicated and colocated servers. I can't
    speak as to the pros and cons of being hosted on a virtual private
    server as we don't host any customers like that, but I do think
    that your concerns about having to compete for server resources
    with other customers unless you're hosted on a dedicated server are
    correct. And if you're a "managed" customer, where you're paying
    your hosting company to manage your server, I truly don't see the
    advantage of going to a virtual private server where you'll have no
    need to ever log in on your own to create sites, install software,
    etc.
    As far as your own dedicated managed server goes, I would
    caution you not to expect very much for $200.00 per month. I
    believe that you could get a dedicated server for that, but with no
    (or a very poor) system administration support, no backups and no
    RAID.
    Others who post to this thread may disagree, but I think you
    need to raise the expectations of what you'll have to pay per month
    to about $350.00 per month. And that would be for a dedicated
    managed, RAIDed system (two hard drives in a hardware RAID1
    configuration), but with no backups.
    Mike

  • ISA Framework: NullPointerException Error

    Hi all,
      When i try to configure the products in the Basket,
    I am reaching a Screen with error saying NullPointerException.
      After searching the SAP Service site, I found a SAP note 677977. This note solves the problem but temporaryly. But i need a permenant Solution to avoid this Strange Error.
    Is anybody has found a permenant Solution for this issue????
    Thanks
    Kam

    Santhosh,
      SAP is using the WORK folder to a maximum capacity of around 8MB. When the level reaches, we are not very sure when this Null Pointer Exception error wil raise.  But this error raises as expected. After applying the said note, I an not facing any problem again until WORK folder reaches around 8MB.
    Thanks
    Kam

  • Just switched to 64bit...

    And it is so much faster! Building things take a much shorter time, and booting/shutting down is much faster. I'm using swfdec for flash. It works with youtube so I'm ok The only problem is installing Compiz without having to install gconf (trying to keep a nice clean KDEmod here ) the PKGBUILDs are not working properly and I'm getting errors. Meh. I can live without it right? I'm really happy with 64bit. I'm never going back to 32. Actually at the beginning, I didn't even know it was 64 bit I've got a Pentium 4 by the way.

    I have an old 32b p4, your post really raises my expectations for the new cpu:s...
    (I can't wait for amd to release the new phenom processors )

  • Raising Event within an Activity Expects that Event to be in Current Proces

    Hi:
    I have a workflow process that is started by a business event. The process has an activity that calls a pl/sql procedure. Within that procedure I raise another event (let's call it event2). When this workflow process runs, it seems that the workflow engine expects event2 to be received by an activity in the currently-running process.
    Question: Is there any way to raise an event without the engine expecting the new event to be received in the currently-running process?
    Hope this makes sense.
    Thanks.

    Hi,
    Instead of raising the event from pl/sql, try creating a new 'event' activity and setting the Event Action to 'Raise'. Drag and drop the new Event into your process and set the Event Details tab.
    Hope this helps,
    Meg Hanson
    [Oracle XML Gateway Consultant|http://xmlgatewayconsultant.com]

Maybe you are looking for