Getting Dump at the time of opening WF

Hi,
we had created workflow WS93600011 in our development server. Till Friday 10.07.2009 it was working fine. We did some small change and activated the workflow. Till that time we were able to open the workflow template. On 13.06.2009 when we tried to open the workflow then it was giving dump, so accordingly we checked is this the problem with only 1 workflow template or all the workflow templates and we found that this is the problem with only 1 workflow template not all. So accordingly we did some analysis and I tried to check whether any SAP OSS Notes needs to be implemented but all the notes are already in place.
Please see below the what dump says...
Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
Except.                     CX_SY_REF_IS_INITIAL
Date and Time          07/20/2009 13:30:44
Short text                                                                               
Access via 'NULL' object reference not possible.
What happened?
    Error in the ABAP Application Program
    The current ABAP program "CL_WFD_TASK_PROXY=============CP" had to be
     terminated because it has
    come across a statement that unfortunately cannot be executed.
What can you do?
    Note down which actions and inputs caused the error.
To process the problem further, contact you SAP system administrator.
Using Transaction ST22 for ABAP Dump Analysis, you can look at and manage termination messages, and you can also keep them for a long time.
Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in procedure "CONSTRUCTOR" "(METHOD)", nor was it propagated by a RAISING clause. Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated. The reason for the exception is: You attempted to use a 'NULL' object reference (points to 'nothing') access a component. An object reference must point to an object (an instance of a class) before it can be used to access components. Either the reference was never set or it was set to 'NULL' using the CLEAR statement.
How to correct the error                                                                               
Probably the only way to eliminate the error is to correct the program.
    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:
    "OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
    "CL_WFD_TASK_PROXY=============CP" or "CL_WFD_TASK_PROXY=============CM001"
    "CONSTRUCTOR"
    If you cannot solve the problem yourself and want to send an error notification to SAP, include the following information:
    1. The description of the current problem (short dump)
       To save the description, choose "System->List->Save->Local File (Unconverted)".
    2. Corresponding system log
       Display the system log by calling transaction SM21. Restrict the time interval to 10 minutes before and five minutes after the short dump. Then choose "System->List->Save->Local File (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP program: The source code of the program In the editor, choose "Utilities->More Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "CONSTRUCTOR" "(METHOD)", or its possible occurrence must be declared in the                  
    RAISING clause of the procedure.                                                              
    To prevent the exception, note the following:                                                 
System environment                                                                               
SAP-Release 701                                                                               
Application server... "ydedb"                                                                 
    Network address...... "9.57.177.109"                                                          
    Operating system..... "AIX"                                                                   
    Release.............. "6.1"                                                                   
    Hardware type........ "00C15EAF4C00"                                                          
    Character length.... 16 Bits                                                                  
    Pointer length....... 64 Bits                                                                 
    Work process number.. 4                                                                       
    Shortdump setting.... "full"                                                                               
Database server... "ydedb"                                                                    
    Database type..... "DB6"                                                                      
    Database name..... "YDE"                                                                      
    Database user ID.. "SAPYDE"                                                                               
Terminal.......... "IBM-BE014934612"                                                                               
Char.set.... "C"                                                                               
SAP kernel....... 701                                                                         
    created (date)... "Mar 30 2009 21:48:51"                                                      
    create on........ "AIX 2 5 00CB5A5B4C00"                                                      
    Database version. "DB6_81 "                                                                               
Patch level. 37                                                                               
Patch text.. " "                                                                               
Database............. "DB6 08.02.*, DB6 09.*"                                                 
    SAP database version. 701                                                                     
    Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"                                                                               
Memory consumption                                                                               
Roll.... 16192                                                                               
EM...... 8379696                                                                               
Heap.... 0                                                                               
Page.... 73728                                                                               
MM Used. 3730104                                                                               
MM Free. 457144                                                                               
User and Transaction                                                                               
Client.............. 210                                                                      
    User................ 013319744                                                                
    Language key........ "E"                                                                      
    Transaction......... "PFTC "                                                                  
    Transactions ID..... "4A62BD9572AD004BE10080000939B16D"                                                                               
Program............. "CL_WFD_TASK_PROXY=============CP"                                       
    Screen.............. "SAPLRHWS 1001"                                                          
    Screen line......... 19                                                                       
Information on where terminated                                                                   
    Termination occurred in the ABAP program "CL_WFD_TASK_PROXY=============CP" -                 
     in "CONSTRUCTOR".                                                                               
The main program was "SAPLRHW4 ".                                                                               
In the source code you have the termination point in line 91                                  
    of the (Include) program "CL_WFD_TASK_PROXY=============CM001".                               
    The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in                
    procedure "CONSTRUCTOR" "(METHOD)", but it was neither handled locally nor                    
     declared                                                                               
in the RAISING clause of its signature.                                                                               
The procedure is in program "CL_WFD_TASK_PROXY=============CP "; its source                   
     code begins in line                                                                               
1 of the (Include program "CL_WFD_TASK_PROXY=============CM001 ".                             
Source Code Extract                                                                               
Line  SourceCde                                                                               
61       a_task = l_task.                                                                      
   62     ENDIF.                                                                               
63 *-- load task                                                                               
64     IF in_task IS NOT INITIAL.                                                              
   65       a_task = in_task.                                                                     
   66     ENDIF.                                                                               
67     CALL METHOD deserialize                                                                 
   68       EXPORTING                                                                               
69         in_display          = in_display                                                    
   70       EXCEPTIONS                                                                               
71         task_not_exists     = 1                                                             
   72         task_already_locked = 2                                                             
   73         OTHERS              = 3.                                                            
   74     IF sy-subrc = 2.                                                                        
   75 *---- we couldn't lock in update mode -> create a proxy in display                          
   76 *---- mode                                                                               
77       CALL METHOD deserialize                                                               
   78         EXPORTING                                                                               
79           in_display          = 'X'                                                         
   80         EXCEPTIONS                                                                          
   81           task_not_exists     = 1                                                           
   82           task_already_locked = 2                                                           
   83           OTHERS              = 3.                                                          
   84     ENDIF.                                                                               
85     IF sy-subrc <> 0.                                                                       
   86       RAISE task_not_found.                                                                 
   87     ENDIF.                                                                               
88   ENDIF.                                                                               
89 * create before image on the container                                                      
   90   TRY.                                                                               
>>>>>       CALL METHOD a_container->create_before_image                                          
   92         EXPORTING                                                                               
93           include_extensions = 'X'.                                                         
   94     CATCH cx_swf_cnt_container .                                                            
   95   ENDTRY.                                                                               
96                                                                               
97 ENDMETHOD.                    "constructor                                                  
If any body is having any idea to resolve this issue then please let me know. We are into the last stage of the development.
Thanks in advance for replying this issue.
Best Regards,
Prashant Raichurkar

Hi Rick,
The small change I did into the business object and added those parameter into the task and workflow through binding. And you are right the changed I did was on 10/07 and I am getting dump from 13/07.
Also I already copied to copy the workflow template into another, in the new template everything is blank including workflow container and template. It is as like new template.
Also one thing I want to tell you that I thought to activate previous version so the moment I click on choose version again I got the same dump.
Please let me know if you have any idea to resolve this issue.
Thanks & Regards,
Prashant

Similar Messages

  • Payment budget is getting updated at the time of Invoice

    Hi,
    I have a peculiar problem in Funds Management. As per the client requirement payment has to made in split i.e. 90% and 10% against the invoice amount raised. But, payment budget is getting updated at the time of invoice itself when i use the profile of 00350.
    It is observed that at the time of payment, the payment budget is not getting updated and updating at the time of invoice creation itself. So, when we developed customised report, we had given payment budget filed to know the current month expenditure. But the problem is as per cleint requiremnt, the payment budget has to update at the time of payment but not at the time of invoice creation.
    Please advice me is there any way to solve this problem.
    Thanks & Regards
    Vijaybhaskar

    This is standard; payment budget is updated during the invoice issue. What is done with the payments is 'payment transfer'; it could be either manual (via FMF0) or automatic - depending on your settings in FM. In your reprots you can define to see only 'cleared' invoices in FM, i.e. those, for which the payment transfer has been completed. However, the availability control will be still performed already on invoice phase.
    Hi,
    As suggested by you i have done automatci payment ransfer in OF29 and made value type 54 as stastical and 57 value type for payments.
    As you suggested "In your reprots you can define to see only 'cleared' invoices in FM, i.e. those, for which the payment transfer has been completed.".
    Please expalin where can i look clered invoices in FM, .e. those, for which the payment transfer has been completed."
    Regards,
    vijay

  • How do I get bookmarks on the toolbar to open in the current tab, and not open in a new tab?

    how do I get bookmarks on the toolbar to open in the current tab, and not open in a new tab?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How to get rid of the "time out" when using DAQ AI in the example program

    I try an example file called "AcqVoltageSamples_IntClkDigRef" (Visual C++ .NET). It works great. However, if the program has not recieved the data, it sent out a timeout message. How to get rid of the "time out"? I cannot find anywhere in the code. Is this a property I have to reset somewhere else?
    Thank you,
    Yajai.

    Hello Yajai,
    The example program will use the default value for timeout, 10 seconds. To change this, you will have to set the Stream.Timeout value. I inserted this function into the example and set it equal to -1, and the program will wait indefinitely for the trigger signal without timing out. Please see the attached image to how this was implemented.
    I hope this help. Let me know if you have any further questions.
    Regards,
    Sean C.
    Attachments:
    SetTimeout.bmp ‏2305 KB

  • BADI or BAPI Getting Trigerred at the time of PO approval or Creation

    Hi Gurus,
                   Can Anyone of you just guide me by giving one or more BADIs name that are getting trigerred at the time of PO approval or before Ordered. I am in the nick of the project. Please help urgently.
    Points will be rewarded.
    Thanks in Advance,
    Mohit.

    Hi
    Which SRM version and scenario are you using ?
    In Extended Classic Scenario, the Purchase  order in Back system is created using BADI - BBP_CREATE_PO_BACK (which in turn calls BAPI_PO_CREATE1 in backend system) when the final Approver / Manager approves the particular shopping cart...
    Related useful pointers ->
    Re: BAPI_PO_CREATE1
    Re: DATA VALIDATION INSIDE  BAPI_PO_CREATE / BAPI_PO_CREATE1
    Re: Enable Plan Driven for Classic Scenario
    Do let me know.
    Regards
    - Atul

  • I can get video on airplay anytime but i cannot get audio all the time.  in sound output i select airplay but it only reverts back to internal speakers.  same if i try earbuds.  the only way to fix it is to restart computer.  what do i do to fix it,

    I can get video on airplay anytime but i cannot get audio all the time.  in sound output i select airplay but it only reverts back to internal speakers.  same if i try earbuds.  the only way to fix it is to restart computer.  what do i do to fix it,

    In case anyone has had the same problem as me, I have just managed to fix this by doing the following:
    Switch off Mac
    Switch back on in Safe Mode (Hit power button, then hold Shift key until a loading bar appears at the bottom of the screen).
    Switch off Mac again
    Remove power cord and wait 15 seconds
    Plug power cord back in and hold down the keys alt, cmd, p, r all at the same time until you hear Starting chime for a second time and hopefully your audio will back.

  • Every time i connect my iphone to itunes and trying to do a backup or get the new update it says i have to restore my iphone. and then that doesnt work, i tried to reinstall itunes but it doesnt work. i get this all the time. fix it please.

    Every time i connect my iphone to itunes and trying to do a backup or get the new update it says i have to restore my iphone. and then that doesnt work, i tried to reinstall itunes but it doesnt work. i get this all the time. fix it please.

    iTunes states " There's a problem with your Iphone, please contact apple service center " Also i took my iphone to a local service man and he told me the IMEI code has been corrupted and there's nothing that can be done about it. Please help, if you have any solution.
    Thank you

  • Asset is getting capitalized at the time down payment to vendor for AssetPO

    Dear All,
    I am working on one scenario in which asset is getting capitalized at the time of down payment to vendor.
    I have created on Asset PO and i am doing downpayment to vendor against this Asset PO using F-48. Now it works fine and also this downpayment appear in that Asset PO also but i have only one problem when i have done with this downpayment, Asset is capitalized on down payment amount actually it should capitalized only when the actual goods received i.e at the time MIGO.
    Kindly let me know how to solve this issue. I dont want asset capitalized at the time of down payment.
    Thanks in advance.
    Marmik Shah

    This topic is already old but we had the same requirement. The asset should not be posted to during the down payment with F-48 but only during the good receipt.
    OSS note 310368 provides the solution for this. In short:
    - implement the corrections if needed
    - suppress the fields asset number/subnumber in the field group of the account allocated to the special G\L indicator "A - Down payment on current assets" (transaction OBC4)
    - change error message F5 378 to warning (transaction OBA5)
    After this, the down payment is only posting to the vendor and e.g. a bank account and the asset is only posted to during the goods receipt. Any additional AA customizing regarding account assignment for down payments is in this case also not needed.

  • WHT on Advance payment is getting reversed at the time of Payment

    Hi,
    WHT on advance payment is getting reversed at the time of payment.
    The configuration is as follows:
    1)  "No Central Invoice" Option is selected in WHT type for payment posting
    2) TDS base is manually entering at the time of Invoice after deducting the Advance amount.
    3) WHT codes are not entered (deleated at the time of Invoice posting)  at the time of Invoice entry.
    Could you please let me know what to do for not reversing the WHT on advance payment at the time of Payment of Invoie.
    Example: 
    1) Advance paid 5000    TDS deduted 113
    2) Invoice is 10,000, TDS is deducted only on 5000 (i.e. 113 Rs again) after deduting the advance payment
    3) Advance is adjusted against the invice using F-54.
    4) TDS on Rs.5000 advance payment is getting reversed at the time of F-53 payment of balance amount.
    Advance thanks for your help
    Regards
    Koteswara Rao Padarti

    Hi KRP,
    The alternative ways for avoiding reversal of TDS related to advance payment is as follows:
    1) select central inv prop radio button at the time of creating tax type for payment posting.
    2)Adv payment vide F-48
    3) Invioce posting vide FB60/F-43.In withholding tax screen update the base amount as net of advance.
    4) while making payment vide F-53 select the Special GL  indicator A for clearing the advance.
    5) While creating remittance challan vide J1INCERT select all the document number i.e. doc no pertaining to adv payment as well as inv posting.
    6) Update bank challan vide J1INBANK.
    7) Print withholding tax certificate vide J1INCERT.
    I do hope you will be able to overcome your problem.
    with best wishes
    Monoj

  • Please, I hd not paid my adobe plain, so, it´s canceled ... ok ... but just on few days I paid. My payments, today is OK, bur, all the time I opened my sotwares, I receive messages talking about I have, only, few days to use my softwares ... like "You hav

    Please, I hd not paid my adobe plain, so, it´s canceled ... ok ... but just on few days I paid. My payments, today is OK, bur, all the time I opened my sotwares, I receive messages talking about I have, only, few days to use my softwares ... like "You have 02 days to expire your Adobe CC" ... I try reload my computer  ... and many others ways to resolve this case, but I didn´t have successul ... Someone help me? Tks!

    You had purchased CC on 01/24/14 which was cancelled & then you again purchased CC 9/7/14, the error message that you are recieving is due to the cancellation as the server is trying to remind you, please log out & log back in of the CC desktop app to activate the new cc . The issue should be resolved.
    You have 20 GB of space allocated indicating you have active CC.
    Regards
    Rajshree

  • Email will get fired at the time of cancelling Excise Invoice

    Hi Experts,
    I have a requirement in tcode J1IH (Cancel Excise Invoice). The requirement is that when an excise invoice is cancelled email will get fired to a concerned id with the Invoice data in PDF format as attachment and will notify that the excise invoice has got cancelled. The email will get triggered at the time of saving a document in J1IH(Cancel Excise Invoice).
    I have searched for user-exit but there exist no exits for this tcode. Is there any badi which can fulfill this requirement?
    can anyone suggest me the process ?
    Regards,
    SURYA
    Edited by: suryabasu on Jul 29, 2011 9:35 AM

    In Dialogue program SAPMJ1IIN , with in screen 150 insert one module u201C XXXXXXXXu201D Using modification operation and code for the  module XXXXXXXX using include u201CYYYYYYYYYu201D, so that this will execute after Excise invoice saved.
    Try this I think this will work for cancel also.

  • My iphone  gets overheated all the time, what's wrong????

    My iphone gets overheated all the time. Tips? Solutions?

    Hello User99999999999010
    If you are having issues with your iPhone getting hot, the article below will give you some insight on the matter. Also check to make sure you do not have any apps running in the background that could cause the phone to run even when the iPhone is asleep.
    iOS devices: Keeping device within acceptable operating temperatures
    http://support.apple.com/kb/ht2101
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • My daughter and granddaughter both have the same model iPhone.  I can text my granddaughter but when I try to text my daughter I get the message that she is not registered at iMessage, but I know that she is and gets texts all the time. What do I need to

    My daughter and granddaughter have the same model iPhone.  I can go messages and text my granddaughters phone from my ipad2, but when I try to text my daughter I get the message that she is not registered with I message, but she is registered and gets texts all the time.  What do we need to do?

    Pattypegr wrote:
    The blue bubble will not turn on on the iPad when I try to message her on her I phone.  She has IMessage turned on.
    What blue bubble are you trying to turn on? If you mean that the Send button will not work, go to Settings>Messages>Show Subject Field>Off. Make sure that is set to off.
    If you send an iMessage, the texts between the devices appear in a blue bubble.
    iMessages only work between iOS devices and they are different than the standard text messages that any cell phone can send to another cell phone.

  • I install new hard drive 500gb and i still have 400gb available but my macbook run very slow getting rainbow all the time on screen

    i have install new hard drive 500gb and i still have 400gb available but my macbook run very slow getting rainbow all the time on screen.
    need help

    First boot into recovery and select Disk Utility>First Aid and repair the disk.
    If there is no improvement, perform a Safe Boot:
    http://support.apple.com/kb/ht1
    If there is an improvement, then third party applications are probably the cause of the problem.
    Ciao.

  • I have an ipod touch,does not have EDGE or 3g or 4g or anything. my parents would not let me get 4g at the time but now they are considering it. i would like to know if i can get 4g on my ipod without getting a new one.how much is wifi per minute it is on

    i have an ipod touch,does not have EDGE or 3g or 4g or anything. my parents would not let me get 4g at the time but now they are considering it. i would like to know if i can get 4g on my ipod without getting a new one.how much is wifi per minute it is on. i really need to know.

    DavidBenJeshuah wrote:
    apple wont give me a new phone cause I broke the screen and I replaced it my self.
    Correct. When you did that, you voided all warranty/support, & forfeited the right to an out of warranty replacement.
    There was nothing wrong with the screen I bought,
    And, exactly, how do you know that? Since Apple DOES NOT sell iPhone parts, there is no official source for genuine parts. Thus, many on the market are counterfeit & produce nothing but problems.
    Good luck.

Maybe you are looking for

  • Iweb,fetch,existing web site

    Hi and thanks in advance! I currently have a web site dianabeads.com, which I edit and update through parallel desk top and windows xp and front page. I am trying to figure out how to do it with iweb and fetch so I can get windows off of my mac, I ha

  • Apple... Could you at least try to do something?

    Ok Apple... Theres been people going on about this aswell as I. Yes the UPDATES! THEY DONT WORK! Not the Auto updater, not the manual ones on ur page that you consitently tell us to turn to when the auto doenst work. And also the update downloaded vi

  • Supressing sections when you're in the drill-down

    I'm sure I'm overlooking something simple, but I am a Newbie to Crystal, so please forgive my ignorance. I want to be able to supress a Page Header, Group Footer, and Report Footer when the user goes to the drilldown screen. The drilldown option is w

  • Close Button

    I have a question about that little x box in the upper right corner of the window. How do you have it bring up a JOptionPane.showConfirmDialog asking if you want to quit??? I know how to quit and everything, I just don't know what the event is when t

  • Owner information from Device ID when creating provisioning profile

    Hi, Is it possible to get information about the owner of the iPhone whose Device ID is added while creating provisioning profile for ad-hoc distribution? All the best, Saad