Error in Variable in Customer Enhancement

Message  : Error Variable in Customer Enhancement YQVMTD
I need To Create Customer Exit For Variable based on 0P_FPER (Fiscal Year Period).The user has to enter a value for Fiscal year/Period(0P_FPER).If the user is entering Current month(eg:July 2009) then the report should display Previous Month(eg:June 2009) .If user is entering months other than current month (eg: April 2009)  then the report should display April 2009 Data only.
Special Case: If the System Date is Jan 2009(That is if Current Month is Jan 2009) then the report should display Dec 2008 Data.
This is the exit in CMOD for the customer exit variable u2018YQVMTDu2019.  This variable in not ready for input.
DATA :
            curfiscper TYPE /bi0/oifiscper,
      Curperiod(3) TYPE n,
      Curfiscyear(4) TYPE n,
  When u2018YQVMTDu2019.
   IF i_step = 2.
     READ TABLE i_t_var_range WITH KEY
     vnam = '0P_FPER'
     iobjnm = '0FISCPER'
      INTO l_s_var_range.
    if sy-subrc = 0.
         Concatenate sy-datum0(4) '0' sy-datum4(2) into curfiscper.
         If l_s_var_range-low = curfiscper.
            Curperiod = l_s_var_range-low+4(3).
            If Curperiod = '001'.
               Curfiscyear = l_s_var_range-low(4).
               Curfiscyear =  Curfiscyear - 1.
               Concatenate Curfiscyear '012' into l_s_var_range-low .
            Else.
               Curperiod = Curperiod - 1.
               Concatenate l_s_var_range- low(4) curperiod into l_s_var_range-low. 
            EndIf.
          Else.
             l_s_var_range-low = l_s_var_range-low.
         EndIf.
    l_s_range-sign = 'I'.
    l_s_range-opt = ' EQ '.
    APPEND l_s_range TO e_t_range.
    EndIf.
  EndIf.
When i execute the query i am getting the following error:
Error Variable in Customer Enhancement YQVMTD
Diagnosis
This internal error is a deliberate termination, since a program status has arisen, that is not allowed to occur.
The error has arisen for variable YQVMTD in the customer enhancement .
Procedure
Please check your customer enhancement.
Procedure for System Administration
  Notification Number BRAIN 649
Please have a look into this and suggest me whether i need to change anything in the code in the exit.

Hi Rathy,
   Yes I made the change at all places.
When 'YQVMTD'.
IF i_step = 2.
LOOP AT I_T_VAR_range INTO l_s_var_range WHERE vnam = '0P_FPER'.
Concatenate sy-datum0(4) '0' sy-datum4(2) into curfiscper.
If l_s_var_range-low = curfiscper.
Curperiod = l_s_var_range-low+4(3).
If Curperiod = '001'.
Curfiscyear = l_s_var_range-low(4).
Curfiscyear = Curfiscyear - 1.
Concatenate Curfiscyear '012' into l_s_range-low .
Else.
Curperiod = Curperiod - 1.
Concatenate l_s_var_range-low(4) curperiod into l_s_range-low.
EndIf.
Else.
l_s_range-low = l_s_var_range-low.
EndIf.
l_s_range-sign = 'I'.
l_s_range-opt = ' EQ '.
APPEND l_s_range TO e_t_range.
Endloop.
EndIf.

Similar Messages

  • Getting a bad bind variable error while compiling a custom form in R12

    Hi,
    I am getting a bad bind variable error while compiling a custom form.
    I tried setting the forms_path variable and I am still getting the error. Can anyone please suggest what can be done?
    DECLARE
    BEGIN
    IF :parameter.p_line_ship_to = 'T'
    THEN
    IF :SYSTEM.cursor_item = 'LINE.SHIP_TO'
    THEN
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    oe_lines.ship_to ('WHEN-VALIDATE-ITEM');
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    END IF;
    :parameter.p_line_ship_to := 'F';
    END IF;
    END;
    I am getting this error:
    Bad bind variable 'parameter.p_line_ship_to'

    The Parameter is not defined in the form.. But, this form is already been compiled and deployed.. I have to make some changes to the form and tried to compile it, when i am getting this error. Is it possible that the parameter would be defined in some other form or can this error be due to some other reasons?
    Thanks in Advance.

  • Customer enhancements

    what is the differance between customer enhancements, user exits and customer exits

    User Exits: These are provided only SD module .
    They are Empty subroutines with naming like USEREXIT_.
    We need to have Access key to implement them.
    Customer Exits: These are enhancement techniques.
    There are defined in SMOD and implemented in CMOD.
    Types of Customer exits: Function exit, Screen Exit, Menu exit.
    User Exit and Customer Exit are same ,but SAP Exit and Customer exit are different...
    Customer Exit,
    Enables you to determine values for variables by means of Functional Module exit.The function module used is EXIT_SAPLRRSO_001.
    Create a project in CMOD by selecting the SAP Enhancement RSR00001 and assign this to the enhanced proj and activate it.
    Customer Exit
    SAP creates customer exits for specific programs, screens, and menus within standard applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    If you want to enhance the functionality of your SAP System, you should take advantage of the exits available in standard applications. There are two main reasons why you should use exits rather than modifying SAP software yourself. Add-ons attached to exits have the advantage that:
    They do not affect standard SAP source code
    When you add new functionality to your SAP System using SAP’s exits, you do not alter the source code of standard SAP programs in any way. The code and screens you create are encapsulated as separate objects. These customer objects are linked to standard applications, but exist separately from SAP’s standard software package.
    They do not affect software updates
    When you add new functionality to your SAP System using SAP’s exits, your objects (called customer objects) must adhere to strict naming conventions. When it comes time to upgrade a to a new software release, customer objects’ names ensure that they will not be affected by any changes or new additions to the standard software package.
    Customer exits are not available for all programs and screens found in the SAP System. You can only use customer exits if they already exist in the SAP System. You find find more information about locating applications with pre-defined exits in Locating Applications that have Exits
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/ca10d858c2e949ba4a152c44f8128a/frameset.htm
    SAP EXIT:this processing type contained in variables that are delivered with SAP BW business content.
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/ca10d858c2e949ba4a152c44f8128a/frameset.htm
    User Exits: allow you to add additional functions to the SAP standard.
    Programs with user exits contain subroutine calls at certain points in their syntax that are identified by the prefix USEREXIT. The actual user exits are located in an include that has been assigned to a module pool. This is where customers can include any changes (enhancements) that they want to make to the system. These includes are always processed during program flow.
    Advantage: In principle, customers can modify anything they want that is found in the include (tables, structures, and so forth).
    Disadvantage: SAP cannot check the individual enhancements themselves which often leads to errors in the enhancement process.
    Reward points if useful.

  • Custom Enhancement for IT207

    Hello Gurus!
    This is my first post so bear with me.  I am trying to update IT207 for Maryland (MD) counties using a custom enhancement in HRPAD00INFTYDB.  This is called when an employee changes the MD county in their Permanent Address in ESS.  I've done the same thing for IT210 using FM HR_ECM_INSERT_INFOTYPE with success, but when I use the same FM to update IT207 I get an error.
    ST22 Info                                                                               
    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 "ADD_MESSAGES" "(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.                                                                    
    The program reads IT207 using FM HR_ECM_READ_INFOTYPE, loops at lt_p0207, updates the begda and taxar (Residence Tax Area), then runs FM HR_ECM_INSERT_INFOTYPE to create the new record.  This produces a dump (details above). The message that is being added is from message class PG, 204, and is only a warning. 
    If I only update the taxar (not the dates) the IT207 record is updated with the incorrect dates.
    I am running FMs HR_ECM_INITIALIZE_BUFFER and HR_ECM_ENQUEUE_PERNR prior to reading IT207.
    I have done extensive debugging of the enhancement ... I can manually skip the date check and it works fine.  After a number of debugging sessions, the update works fine ... but only until I log out and re log in.
    Any ideas on how to fix so that ADD_MESSAGES is not called?
    Thanks!
    Carl

    My issue has been solved!
    I had previously declared the message handler as:
            DATA:  lo_msg_handler TYPE REF TO if_hrpa_message_handler.
    The enhancement activate ok until a message was passed.  I found by changing the message handler to:
            DATA:  lo_msg_handler TYPE REF TO CL_HRPA_MESSAGE_LIST.
    If I didn't want to output the messages I could have declared it as:
            DATA:  lo_msg_handler TYPE REF TO CL_HRPA_DUMMY_MESSAGE_HANDLER.
    Next I instantiated the message handler:
           CREATE OBJECT lo_msg_handler.
    This was followed by my existing code:
          Initialize buffer
                    CALL FUNCTION 'HR_ECM_INITIALIZE_BUFFER'
                      EXPORTING
                        message_handler = lo_msg_handler.
          Enqueue Pernr (fixes context issue)
                    CALL FUNCTION 'HR_ECM_ENQUEUE_PERNR'
                      EXPORTING
                        pernr           = <new_p0006>-pernr
                        message_handler = lo_msg_handler
                      IMPORTING
                        is_ok           = lv_is_ok.
    I hope this might help others.

  • How to use the bind variable in custom.pll

    Hi,
    How to use the bind variable in custom.pll.Its through error.
    any one gem me.
    very urgent.
    M.Soundrapandian.

    Hello,
    Please, ask this kind of questions in the e-business forum.
    Francois

  • Error while adding a custom field with Input help via AET

    Hi All,
    I need to add two custom field under Service orders at Item level in component BT140I_SRVP.
    One field is required to have the input search help f4 and autopopulates the second field
    I am able to add one field(not requiring help) successfully through AET .
    I have created one Zsearch_help in se11 and its successfully running  and Autopopulating seocnd field while I am testing it
    While adding second field through AET,I need to enter following details as -
    field label,search relevant ,serach help etc.
    When I type the name of my 'Zsearch_help' against field search help it gives me following error
    'Search help is not compatible'.
    Secondly,not getting getter and setter methods for the attrributes in BTAdminI.
    Last,please tell me if i create zhelp and activate it,would it automatically appear in the list on AETwhile assiging it to input field?
    Please help me out.Kindly be detailed as I am new to SAP CRM.
    Thanks,
    Shivani

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • Error in Variable Substitution

    Dear All,
    Result Payload:
    <ns1:MT_Level1 xmlns:ns1="http://test.com">
    <Header>
      <Separator>,</Separator>
    </Header>
      <Detail>
      <FileNumber>30</FileNumber>
      <LinkToNextLevel />
      <Expansion1>0</Expansion1>
      <Expansion2>0</Expansion2>
      <Expansion3>0</Expansion3>
      <Expansion4>0</Expansion4>
      </Detail>
    <Detail>
      <FileNumber>30</FileNumber>
      <LinkToNextLevel />
      <Expansion1>0</Expansion1>
      <Expansion2>0</Expansion2>
      <Expansion3>0</Expansion3>
      <Expansion4>0</Expansion4>
      </Detail>
      <FileNode>
      <FileName>test.txt</FileName>
      </FileNode>
      </ns1:MT_Level1>
    I want to use "File Name" in the "File Node" node for my variable substitution.
    In the configuration:
    File Name Scheme = %filename%
    Variable = filename
    reference = payload: Messages, 1, Message, 1, MT_Level1, 1, FileNode, 1, FileName, 1
    Note: I'm using multimapping (1 to N).
    File Name path is /ns0:Messages/ns0:Message2/ns1:MT_Level1/FileNode/FileName ( from right click in the file name --> copy path).
    I got following error:
    "Attempt to process file failed with com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: filename"
    Please advise!
    Best Regards,
    Victor.

    Dear All,
    My problem is solved!
    The issue is because I don't put the interface mappings sequence as the same sequence as the message mappings sequence. Hence the structure name that i put in the variable substitution all are not match with the structure name in the payload even though all have the file name element.
    So what i did is i have to reorder the sequence of my message mappings to be the same sequence as the interface mappings sequence.
    Thanks for all that trying to help!
    Appreciated it guys.
    BTW, for the variable reference it's correct that i no need to put message and message2 as the reference.
    payload:MT_Level1,1,FileNode,1,FileName,1 will do.
    Best Regards,
    Victor.

  • Error with variable substitution..

    Hi
    I am getting following error message for variable substitution
    *Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: date_stamp: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: date_stamp
      <?xml version="1.0" encoding="UTF-8" ?>
    - <I813_EModMCS_IB_MT>
    - <Records>
      <ModMod>111</ModMod>
      <DesModdcr>222</DesModdcr>
    - <Date_Stamp>
      <Date_Stamp>20080338</Date_Stamp>
      </Date_Stamp>
      </Records>
      </I813_EModMCS_IB_MT>
    date_stamp             payload:I813_EModMCS_IB_MT,1,Records,2,Date_Stamp,3,Date_Stamp,1
    Would appriciate if you can correct the variable substitution...
    Regards

    To reference the element that is in bold in the example, the following expression is used: payload:root,1,e1,1,e2,2
    The parser searches for the first occurrence of the root element at the first level. It then searches for the first occurrence of e1 at the second level and for the second occurrence of e2 at the third level. The content of the last element (u201CExample Valueu201D) is set as the value for a specified variable.
    <?xml version="1.0" encoding="UTF-8" ?>
    <root>
      <dummy>
         <e1>
            <e2>Data_1</e2>
            <f/>
            <g attr="abc">text</g>
            <e2>Data_2</e2>
         </e1>
      </dummy>
      <e1>
         <e2>illegal/value</e2>
         <f/>
         <g attr="abc">text</g>
         <e2 attr="fghij">Example Value</e2>
      </e1>
    </root>
    Edited by: Progirl Progirl on Jul 17, 2008 8:04 AM

  • Error when reassigning a custom task process

    Hello!
    I have an error when reassigning a custom task process.
    That is what I see at the workflow history: Task assigned to xxx was delegated by xxx. Coments: xxx
    However in the second line of the history an error is shown with the following information:
    Event type: error
    User ID: System account
    Description: An error has occurred in nameofthetask
    No new task is created for the user who the task was reassigned to.
    Any help would be appreciated

    Hi,
    From the error message, I
    guess that you come across an OOTB Approval
    Workflow.
    When you define your workflow, there is a section "Enable content Approval Workflow Activities", where you can check "Update the approval status after the workflow is completed (use
    this workflow to control content approval)". If you check this option, and you do not have content approval enabled on the library level, you get the system account error message. If you do not check it, everything works fine.
    Or you can go to the document library settings and go to Versioning Settings Page, set "Require content approval for submitted items to?" to yes and everything should be fine.
    Refer to  the following blogs about the similar issue:
    http://mossnwss.blogspot.com/2008/10/workflow-error-system-account-error-has.html
    https://sharepointtechs.wordpress.com/2011/11/18/workflow-error-an-error-has-occurred-in-approval/
    Besides, here is a similar post, you can use as a reference:
    https://social.msdn.microsoft.com/Forums/en-US/fff5ee1f-904b-4a95-989f-c5a079cdf666/workflow-error-system-account-an-error-has-occured-after-workflow-completed-moss-2007?forum=sharepointcustomizationlegacy
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • IS-RETAIL: How to update custom enhancement field using BAPI?

    Hi gurus,
    Like ECC BAPI: BAPI_MATERIAL_SAVEDATA,
    This BAPI(BAPI_MATERIAL_MAINTAINDATA_RT) is specific for IS-RETAIL to create and update material master data.
    But now If I append one custom field "ZFIELD" to end of table MARA, my question is how to update this custom enhancement field(ZFIELD) using BAPI(BAPI_MATERIAL_MAINTAINDATA_RT)
    Thanks in advance!

    Hi DongHai,
    I suggest you create your own BAPI. Just copy the codes in BAPI_MATERIAL_MAINTAINDATA_RT and add your custom fields. If you want to append the data of the custom field in table MARA, first, you have to create a structure table then goto SE11, type MARA and display. Click the APPEND STRUCTURE then choose the structure that you've created. Hope this will help.
    Rewards if useful
    Regards,
    Mark

  • ReferenceError: Error #1065: Variable flash.media::VideoCodec is not defined

    Hi
    I seem to get thisexception fired when launching my flex project from debug optoon.
    ReferenceError: Error #1065: Variable flash.media::VideoCodec is not defined.
    I have created a version of flex 4.5.1 with folder 11.0 in player folder. This has the latest flash player global swc renamed as playerglobal.swc. All is well when compiling, but when running i seem to that exception.
    Also my compiler settinsg are set to 11.0.1
    What is going wrong ??

    Hi,
    SoundCodec class is defined in Player 10. Are you using the
    player 10 afcs swc ? If so, you need to change Require Flash Player
    Version unser Project->Properties->Flex Compiler in Flex
    Builder and put that to 10.0.0 and also make sure that your browser
    has player 10 and you Flex SDK also supports player 10.
    And if you are using afcs 9 swc , then put 9.0.124 or
    something in the Require Flash Player Version and that should fix
    the problem
    Thanks
    Hironmay Basu

  • ReferenceError: Error #1065: Variable is not defined.

    Hi people.
    Whatever I do (seems like) I end up with the following
    message in Flash CS3:
    "ReferenceError: Error #1065: Variable is not defined."
    I have no clue to what causes it, and therefor I cannot seem
    to fix it. I've been trying to look for answers online, but all I
    got out of that was to declare my classes as public, which I
    already had done.
    Even a very simple class that runs a trace command from its'
    constructor method won't work. It even gives me this message even
    though I don't have any variables or trace commands or anything.
    This is really annoying, so please help me out :)
    A

    Some code sample would help - and remember classes must be
    contained within
    packages in CS3.
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Swf-version can be specified when using SDK 3.6? [ Error #1065: Variable JSON is not defined ]

    I've been using playerglobal.swc of flash player 11 and SDK 3.6.
    ReferenceError: Error #1065: Variable JSON is not defined
    can be solved by setting -swf-version to 13. (http://forums.adobe.com/message/3933620#3933620)
    However, swf-version is not available in SDK 3.6.
    Can native JSON be used?
    Otherwise, can com.adobe.serialization.json.JSON be used without name conflict?
    JSON (from ...\flex_sdk_3.6\frameworks\libs\player\11\playerglobal.swc(JSON))
    com.adobe.serialization.json:JSON (from ...\as3corelib.swc(com/adobe/serialization/json/JSON))

    anyone know the answer to this?
    how are we supposed to use the new player features with using the 3.x SDK?

  • Please help! ReferenceError: Error #1065: Variable tracker is not defined.

    Hi guys im tearing my hair out over this, sorry if its an extreme noob question but i know its quite a common problem and im sure someone on here must be able to help.
    After debugging my project here is the error message -
    ReferenceError: Error #1065: Variable tracker is not defined.
              at CustomsConnect/buttonClick()[C:\Users\LiamT\Desktop\plz\CustomsConnect\CustomsConnect.as: 443]
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at shell::Button/buttonClick()[C:\Users\LiamT\Desktop\plz\CustomsConnect\shell\Button.as:47]
    Please let me know if you can point me in the right direction here -  the problem has come about as I have inherited a .fla that has been set up on another machine. If you need me to post any of the code that its referring to above let me know.
    Thanks in advance for any help that you can offer me.

    CustomsConnect is the designated document class.    Tracker is relating to my google analytics tracker as far as I can see it is already defined and perhaps this line of code could be something to do with the problem
    Line 77:   private var tracker: GATracker;
    Do you want me to post up the rest of the code?
    thankyou so much Ned for taking the time out to help me with this.
    Many thanks  
    Liam

  • Exception fault: ReferenceError: Error #1065: Variable ::_fileSystemType is not defined. - ?

    Hi! I'm stuck with debugging our AIR Application since it does crash very hard. After days of tracking down at least one point where the app crashes on AIR 3.5, 3.7 and AIR 3.8 beta (you see - I tried...).
    AIR 3.5 finally reports this console output:
    ScrollerTouch.onTargetMouseDown()-F true // A
    ScrollerTouch.onTargetMouseDown()-I // B
    targetV [object ScrollPane] // C
    CRASH! // D
    Exception fault: ReferenceError: Error #1065: Variable ::_fileSystemType is not defined.
              at global/trace()[int:49]
              at de.superclass.control::ScrollerTouch/onTargetMouseDown()[/path/to/.../ScrollerTouch.as:381]
              at de.superclass.control::ScrollerTouch/onTargetMouseDown()
    The code snipped:
    trace("ScrollerTouch.onTargetMouseDown()-F", _scrollHorizontal ); // A
      switch ( _scrollPolicyVertical )
      case ScrollPolicy.ON:
      trace("ScrollerTouch.onTargetMouseDown()-G");
      _scrollVertical = true;
                                            break;
      case ScrollPolicy.OFF:
      trace("ScrollerTouch.onTargetMouseDown()-H");
      _scrollVertical = false;
                                            break;
      case ScrollPolicy.AUTO:
      trace("ScrollerTouch.onTargetMouseDown()-I"); // B
      default:
                                                      trace( "targetV", targetV ); // C
                                                      try
                                                                trace( "targetV.height", targetV.height );
                                                      catch( e: Error )
                                                                trace( "CRASH!" ); // D
                                                      _scrollVertical = Boolean( targetV.height < targetV.contentHeight ); // line 381
      trace( "targetV.xxx" );
                                                      trace( "targetV.contentHeight", targetV.contentHeight );
    return;
    So accessing targetV.height somehow crashes very hard (app quits) but I have no clue at all. Actually, this code worked for a long time...
    So please, what is ::_fileSystemType ?

    I changed the code again but the app keeps crashing. This is what XCode-Console says:
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Formulating crash report for process APP_NAME[1191]
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
    Jul  4 21:25:48 iRad-3 com.apple.launchd[1] (UIKitApplication:APP_NAME_SPACE[0x469][1191]) <Warning>: (UIKitApplication:APP_NAME_SPACE[0x469]) Job appears to have crashed: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: Application 'UIKitApplication:APP_NAME_SPACE[0x469]' exited abnormally with signal 11: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/APP_NAME_2013-07-04-212547_iRad-3.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Builtin profile: container (sandbox)
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Container: /private/var/mobile/Applications/CDA04278-5D34-4609-BE71-D66FB16794C1 (sandbox)
    Jul  4 21:25:56 iRad-3 kernel[0] <Debug>: launchd[1208] Builtin profile: PasteBoard (sandbox)
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: updates deferred for too long
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: timed out fence 2685b
    And here's the Crash Log:
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Formulating crash report for process APP_NAME[1191]
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
    Jul  4 21:25:48 iRad-3 com.apple.launchd[1] (UIKitApplication:APP_NAME_SPACE[0x469][1191]) <Warning>: (UIKitApplication:APP_NAME_SPACE[0x469]) Job appears to have crashed: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: Application 'UIKitApplication:APP_NAME_SPACE[0x469]' exited abnormally with signal 11: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/APP_NAME_2013-07-04-212547_iRad-3.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Builtin profile: container (sandbox)
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Container: /private/var/mobile/Applications/CDA04278-5D34-4609-BE71-D66FB16794C1 (sandbox)
    Jul  4 21:25:56 iRad-3 kernel[0] <Debug>: launchd[1208] Builtin profile: PasteBoard (sandbox)
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: updates deferred for too long
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: timed out fence 2685b
    And here's the Crash Log:
    Incident Identifier: 17615510-16A5-43B9-B8A5-2ED2C5A2EEBA
    CrashReporter Key:   3f85661334bfff23c2d4128bc63674d30647c15b
    Hardware Model:      iPad3,3
    Process:         APP_NAME [1191]
    Path:            /var/mobile/Applications/CDA04278-5D34-4609-BE71-D66FB16794C1/APP_NAME.app/APP_NAME
    Identifier:      APP_NAME
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2013-07-04 21:25:47.935 +0200
    OS Version:      iOS 6.1.3 (10B329)
    Report Version:  104
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x4095e008
    Crashed Thread:  0
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:
    0   APP_NAME        0x008c71c8 0x1000 + 9200072
    1   APP_NAME        0x005284ac 0x1000 + 5403820
    2   APP_NAME        0x007b5edc 0x1000 + 8081116
    3   APP_NAME        0x00002928 0x1000 + 6440
    4   APP_NAME        0x0045f128 0x1000 + 4579624
    5   APP_NAME        0x0045f5f8 0x1000 + 4580856
    6   APP_NAME        0x0045eeb4 0x1000 + 4578996
    7   APP_NAME        0x0045eab4 0x1000 + 4577972
    8   APP_NAME        0x003d98d8 0x1000 + 4032728
    9   APP_NAME        0x003c59c0 0x1000 + 3951040
    10  APP_NAME        0x00443d24 0x1000 + 4468004
    11  APP_NAME        0x009d5448 0x1000 + 10306632
    12  APP_NAME        0x009d509c 0x1000 + 10305692
    13  APP_NAME        0x009d4ad0 0x1000 + 10304208
    14  APP_NAME        0x009d6618 0x1000 + 10311192
    15  APP_NAME        0x00cf4d40 0x1000 + 13581632
    16  APP_NAME        0x00a5f418 0x1000 + 10871832
    17  APP_NAME        0x008d810c 0x1000 + 9269516
    18  APP_NAME        0x009b45ac 0x1000 + 10171820
    19  APP_NAME        0x009b5140 0x1000 + 10174784
    20  UIKit                         0x347ff51e -[UIWindow _sendTouchesForEvent:] + 314
    21  UIKit                         0x347ec7fc -[UIApplication sendEvent:] + 376
    22  UIKit                         0x347ec116 _UIApplicationHandleEvent + 6150
    23  GraphicsServices              0x364e05a0 _PurpleEventCallback + 588
    24  GraphicsServices              0x364e01ce PurpleEventCallback + 30
    25  CoreFoundation                0x329b9170 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 32
    26  CoreFoundation                0x329b9112 __CFRunLoopDoSource1 + 134
    27  CoreFoundation                0x329b7f94 __CFRunLoopRun + 1380
    28  CoreFoundation                0x3292aeb8 CFRunLoopRunSpecific + 352
    29  CoreFoundation                0x3292ad44 CFRunLoopRunInMode + 100
    30  GraphicsServices              0x364df2e6 GSEventRunModal + 70
    31  UIKit                         0x348402fc UIApplicationMain + 1116
    32  APP_NAME        0x008f5c0c 0x1000 + 9391116
    33  APP_NAME        0x00d2b0e0 0x1000 + 13803744
    Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 1:
    0   libsystem_kernel.dylib        0x3ad76648 kevent64 + 24
    1   libdispatch.dylib             0x3aca6974 _dispatch_mgr_invoke + 792
    2   libdispatch.dylib             0x3aca6654 _dispatch_mgr_thread$VARIANT$mp + 32
    Thread 2 name:  WebThread
    Thread 2:
    0   libsystem_kernel.dylib        0x3ad75eb4 mach_msg_trap + 20
    1   libsystem_kernel.dylib        0x3ad76048 mach_msg + 36
    2   CoreFoundation                0x329b9040 __CFRunLoopServiceMachPort + 124
    3   CoreFoundation                0x329b7d9e __CFRunLoopRun + 878
    4   CoreFoundation                0x3292aeb8 CFRunLoopRunSpecific + 352
    5   CoreFoundation                0x3292ad44 CFRunLoopRunInMode + 100
    6   WebCore                       0x3891a500 RunWebThread(void*) + 440
    7   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    8   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 3:
    0   libsystem_kernel.dylib        0x3ad75eb4 mach_msg_trap + 20
    1   libsystem_kernel.dylib        0x3ad76048 mach_msg + 36
    2   APP_NAME        0x00480b04 0x1000 + 4717316
    3   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    4   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 4:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d2a _pthread_cond_wait + 642
    2   libsystem_c.dylib             0x3ace1f14 pthread_cond_wait + 36
    3   APP_NAME        0x00a33ad4 0x1000 + 10693332
    4   APP_NAME        0x0097d9e0 0x1000 + 9947616
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 5:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d2a _pthread_cond_wait + 642
    2   libsystem_c.dylib             0x3ace1f14 pthread_cond_wait + 36
    3   APP_NAME        0x00a33ad4 0x1000 + 10693332
    4   APP_NAME        0x0097d9e0 0x1000 + 9947616
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 6:
    0   libsystem_kernel.dylib        0x3ad866a4 __semwait_signal + 24
    1   libsystem_c.dylib             0x3ace43ce nanosleep + 138
    2   APP_NAME        0x00a33724 0x1000 + 10692388
    3   APP_NAME        0x00913638 0x1000 + 9512504
    4   APP_NAME        0x009135d8 0x1000 + 9512408
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 7:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d2a _pthread_cond_wait + 642
    2   libsystem_c.dylib             0x3acd7aa0 pthread_cond_timedwait + 40
    3   APP_NAME        0x00a33b54 0x1000 + 10693460
    4   APP_NAME        0x000a7254 0x1000 + 680532
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 8:
    0   libsystem_kernel.dylib        0x3ad866a4 __semwait_signal + 24
    1   libsystem_c.dylib             0x3ace43ce nanosleep + 138
    2   APP_NAME        0x00a33724 0x1000 + 10692388
    3   APP_NAME        0x008caff0 0x1000 + 9215984
    4   APP_NAME        0x008cae08 0x1000 + 9215496
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 9 name:  com.apple.NSURLConnectionLoader
    Thread 9:
    0   libsystem_kernel.dylib        0x3ad75eb4 mach_msg_trap + 20
    1   libsystem_kernel.dylib        0x3ad76048 mach_msg + 36
    2   CoreFoundation                0x329b9040 __CFRunLoopServiceMachPort + 124
    3   CoreFoundation                0x329b7d9e __CFRunLoopRun + 878
    4   CoreFoundation                0x3292aeb8 CFRunLoopRunSpecific + 352
    5   CoreFoundation                0x3292ad44 CFRunLoopRunInMode + 100
    6   Foundation                    0x332773d0 +[NSURLConnection(Loader) _resourceLoadLoop:] + 304
    7   Foundation                    0x332fae80 __NSThread__main__ + 968
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 10 name:  com.apple.CFSocket.private
    Thread 10:
    0   libsystem_kernel.dylib        0x3ad86594 __select + 20
    1   CoreFoundation                0x329bd1f2 __CFSocketManager + 674
    2   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    3   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 11:
    0   libsystem_kernel.dylib        0x3ad86d98 __workq_kernreturn + 8
    1   libsystem_c.dylib             0x3acd4cf6 _pthread_workq_return + 14
    2   libsystem_c.dylib             0x3acd4a12 _pthread_wqthread + 362
    3   libsystem_c.dylib             0x3acd48a0 start_wqthread + 4
    Thread 12:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d68 _pthread_cond_wait + 704
    2   libsystem_c.dylib             0x3aceb080 pthread_cond_timedwait_relative_np + 12
    3   APP_NAME        0x00a7e558 0x1000 + 10999128
    4   APP_NAME        0x00a7e200 0x1000 + 10998272
    5   APP_NAME        0x00a7e0f8 0x1000 + 10998008
    6   APP_NAME        0x00a33938 0x1000 + 10692920
    7   APP_NAME        0x00a3398c 0x1000 + 10693004
    8   APP_NAME        0x00a336b8 0x1000 + 10692280
    9   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    10  libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 13:
    0   libsystem_kernel.dylib        0x3ad86d98 __workq_kernreturn + 8
    1   libsystem_c.dylib             0x3acd4cf6 _pthread_workq_return + 14
    2   libsystem_c.dylib             0x3acd4a12 _pthread_wqthread + 362
    3   libsystem_c.dylib             0x3acd48a0 start_wqthread + 4
    Thread 0 crashed with ARM Thread State (32-bit):
        r0: 0x4095e000    r1: 0x2fdfdf58      r2: 0x0052844c      r3: 0x2fdfdf1c
        r4: 0x00000221    r5: 0x084d8060      r6: 0x2fdfdf14      r7: 0x2fdfdf88
        r8: 0x2fdfdf20    r9: 0x000003fe     r10: 0x4095e000     r11: 0x00000000
        ip: 0x000002fc    sp: 0x2fdfdf10      lr: 0x005284b0      pc: 0x008c71c8
      cpsr: 0x20000010
    This immediately occurs when I touch and move a little on a specific display object which listens to Mouse-Events DOWN, MOVE to drag it's contents. I think it has something to do with the event system or so. But I'm absolutely blind I guess.
    What could I do?

Maybe you are looking for

  • Present instances in the order they are called

    I created this template for teachers to create assessment items. When they click the Add Question Set button, they get a set of buttons for each type of  question. Right now, regardless of what order they click the buttons, the instances of the quest

  • How to place a List Object  in JSF?(non column wise)

    I have a list of Objects (A;B;C;D;...) I want to show them like A B C D E F G.......... not A B C D How can I realize this? I thought of dataTable, but in dataTable each Object occupies a row. I want to have several objects of a list in one line. Is

  • When I start Firefox two copies come up

    When I start the program two copies appear instead of the one I would like. The 2nd one doesn't have my tabs but does have bookmarks. I'd like to have one copy come up.

  • No matching authentication protocol- JDBC

    Hi Experts, we have JDBC interface...recently one of our partner have  upgraded its version of Oracle to higher one  (12C) from Oracle 9... because of which the messages are failing in PI system saying" ORA-28040 –No matching authentication protocol"

  • Oracle Project Costing R12

    Hi I'm looking for some document that explain what's the difference between Oracle Project Costing R11 and R12, someone can help me , please ? Regards Elissa Edited by: user8652480 on 17-may-2013 13:20