ABAP MESSAGE_TYPE_X -DUmp Due to Change in hiring process for HK ?

Hi,
I changed the Hiring process , just added new infotype 0105 into the process for HK , after that i got an ABAP  "MESSAGE_TYPE_X" dump when i tried to save PA30 .
See the below Error :
with the key 50002134567880       9999123119712134256206528473C_VBA in
table PA0342. It is possible that the record does not exist. The
following are a few of the possible causes for this:
o   The code in table PA0342 is not correctly specified in the data
    dictionary (SE11). Compare with another PAnnnn table.
o   An infotype may have an additional view infotype for which the
    record is not available. This situation can occur when system
    settings for infotype views (T582V) are changed.
o   Problems with database.
o   There may be other causes.

Try running the report rpu03420 for that pernr. Anyway 0342 is an infotype specific to HongKong.
~Suresh

Similar Messages

  • Hiring Process for US - BP for HR Administrator

    I have a requirement to enable Hiring (US) in EP 7.0. We installed the business package and all the pre requisites are done. When I execute the process, I am able to send the form. But the infotypes are updated.
    We are not integrating e-Recruitment and XI still I want to execute the process as a HR Administrator. Can anyone help me with configuration steps for running this process. The backend is ECC 6.0
    Thanks in Advance
    Rao Kavuri

    Hi,
    Pl check the Business Package structure under the correct BP version in this link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/1d63953fce3566e10000000a11466f/frameset.htm
    Regards
    Srini

  • WM 321 Posting change qa to unres for consignment materials

    How can I realize automatic WM-transfer order / posting change processing for a quality to unrestricted posting (initated via QA11 record usage decision) of a consignment material?
    I am able to realize the automatic posting change / transfer order processing for a non-consigment material (after QA11-usage decision). Therefore I have defined "321 / Posting change, quality" posting change WM/IM customizing.
    To-be-process:
    MIGO Goods receipt posting with reference to PO
    QA11 Usage decision
    LB11 Create Transfer Order / Place stock
    The goal is that the user does not require a special WM-processing also for the consignment material related to Quality Management.
    I am able to create the transfer order (based on posting change 321 quality to unrestricted / consignment) manually via LU04 but I am looking for automatic TO-creation /-confirmation.
    Thank you in advance!

    Please check the following configuration to make sure search strategy is complete for combination Stock Type Q (Quality) and Special Stock K (Consignment):
    Logistics Execution > Warehouse Management > Interfaces > Define Quality Management > Activate QM Interim Storage Type Search
    Example of settings:
    WhN    Op...     TyInd...     Stock Cat.     Special Stock Ind.  QM Control     QM Control Desc.     1 Stor. Type  
    100      E          ABC          Q                   K                            N                    no pop up                 917

  • Hi , MESSAGE_TYPE_X dumps generated in SRM system ...

    Hi all,
    Large no. of  MESSAGE_TYPE_X dumps generated in SRM system ...need solution for this dump.Looking forward for your suggestions...
    Regards,
    prakash

    Hi Kalakatla,
    Check all jobs running and probably ended by error, also check IDOC handling in BD71. The dump says something about token management. Possibly this is something with automatic user/password distribution to various systems. Your system landscape and/or architecture may have changed and something is not maintained accordingly.
    Regards,
    Clemens

  • Dump in VA02 changing conditions / SWEC with VERKBELEG and BUS2032

    Hi,
    Iu2019m Working on SAP 4.6c
    I create a subtype object from BUS2032 to have new events which I have place in Tcode SWEC using VERKBELEG and BUS2032 and my new event on CHANGE mode, additionally I restricted the condition using this field restrictions and the condition editor including the next sentence:
                        &VBAK_LIFSK_OLD&     EQ            &VBAK_LIFSK_NEW&     or
                  &VBAK_LIFSK_OLD&     NE              02     and
                  &VBAK_LIFSK_NEW&     EQ             02         
    This condition is Ok but when I call the Tcode VA02 to change the conditions in one position I got a dump and a popup telling me that the modification was not done, if I check SM13 to see the dump, I can see a conversion error from blank into a number in a SAP program and this is the error.
    I think there's a SAP NOTE to solve this issue but I couldn't find it.
    Any suggestion?
    Thanks a lot
    Felipe.

    Hi Mr Arghadip
    Mysteriously there is a connection between Workflow and this error and thereu2019s a dump generated by this, Iu2019m sending you the dump analysis for you to see, but the most important thing is that I did apply the Workflow u201CNote 570711 - SWEB: Typing when evaluating field restrictionsu201D and the issue was solved.
    Thanks a lot  for your help....
    This is our system: R/3 release 4.6C, Las patch applied SAPKB46C43,
    Dump analisys:
    Function module     RV_MESSAGE_UPDATE                        
    Status              Update was terminated                    
    Report                                                       
    Line                                                         
    Error text                                               
    00 671: ABAP/4 processor: CONVT_NO_NUMBER                    
    ABAP Short Dump (button)
    u2026
    ABAP runtime errors    CONVT_NO_NUMBER        
    What happened?                                                      
    The current ABAP/4 program "SAPLSWEB " had to be terminated because 
    one of the statements could not be executed.   
    Error analysis                                       
    The program attempted to interpret the value " " as a number, but
    since the value contravenes the rules for correct number formats,
    this was not possible.
    CODE ERROR:
    002770   FORM cdpos_convert_value  USING    p_cdpos_value TYPE cdpos-value_new    
    002780                             CHANGING p_value       TYPE any.               
    002790   "                                                                      " 
    002800   "  for conversion of VALUE_OLD and VALUE_NEW, this should be almost the" 
    002810   "  same implementation as LSCD2F01 form EDIT_CDPOS_NEW                 " 
    002820   "                                                                      " 
    002830   *- begin of local data                                                   
    002840     DATA: l_dec                   TYPE i.                                  
    002850     DATA: l_type                  TYPE c.                                  
    002860     DATA: l_float                 type f.                                  
    002870   *- end   of local data                                                   
    002880                                                                            
    002890     DESCRIBE FIELD p_value DECIMALS l_dec TYPE l_type.                     
    002900                                                                            
    002910     CASE l_type.                                                           
    002920       WHEN 'P'.                                                            
    >         l_float = p_cdpos_value.                                           
    002940         IF l_dec > 0.                                                      
    002950           l_float = l_float / ( 10 ** l_dec ).                             
    002960         ENDIF.                                                             
    002970   *     move the value                                                     
    002980         p_value = l_float.                                                 
    002990       WHEN OTHERS.                                                         
    003000   *     move the value                                                     
    003010         p_value = p_cdpos_value.                                           
    003020     ENDCASE.                                                               
    003030                                                                            
    003040   ENDFORM.                    " cdpos_convert_value
    Edited by: FelipeUribe on Apr 23, 2010 6:40 PM

  • Dump error while going for a change mode in MIR4 for parked document

    Hi  All,
    After doing some GR and MIRO for one PO, there was some GR qty was left and I have parked new invoice document in MIRA. If I go for change mode MIR4 for the same parked document it is going to dump error as message type unknown, saying entry is not maintained table TTXD for Tax procedure. This table indicates that Tax jurisdiction, but we are not maintaining the Tax at Jurisdiction level. I found that user has activated calculate tax in MIRA and posted with some amount, here system will not calculate the tax in Tax field because base amount is not there to calculate, so that field shows "zero". For the same parked document in MIR4 I can see some lines which has value 0 in amount & quantity(already cleared GR's for the same PO) and also GR lines.
    Can anyone tell me how can I solve this dump error, I want to delete the parked document in legal way.
    Regards
    Shanu

    Hi Shanu,
    Please extract complete dump error by T code ST22 and take a help of your ABAP Team for an analyse the possible cause of dump and also check the relevant note for resolving this dump error.
    Regards,
    Santosh

  • Getting Short dump due to large amount of data

    Hi experts,
    When we are running RALM_ME_MEASP_FULL_DOWNLOAD_SD  program, every time we are getting Short dump due to large amount of data.
    please suggest how to run this program without short dump.
    Thanks & Regards
    Prashant Gupta

    Hi,
    you do run the wrong APP I guess. The service you are running is for MAM20. If you are interested in MAM30 and MAM25, please use the correct service.
    If you have a look for
    *FULL_DOWNLOAD_SD
    You find them all. Use the ones without the RALM in front - then the timeout should be solved as well. Bside that there is a great guid available that helps as well to solve some issues around server driven replication:
    [MAM SERVER DRIVEN SETUP GUIDE|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/818ac119-0b01-0010-ba8b-b6e3f3490a63?quicklink=index&overridelayout=true]
    Hope that helps to solve yourt issue.
    Regards,
    Oliver

  • I just received my new phone from Verizon, I turned it on and followed direction for set up...now I lost my connection with ATT....How do I get the service back from ATT...not due to change until the 16th

    I just received my new 6 from Verizon by mail.  I was not due to change carriers til the 16th, but I turned on the new phone and did the set up...now I lost ATT.  How do I get the ATT carrier back on my old phone?

    I just received my new 6 from Verizon by mail.  I was not due to change carriers til the 16th, but I turned on the new phone and did the set up...now I lost ATT.  How do I get the ATT carrier back on my old phone?

  • ABAP short dump with "CNTL_ERROR"

    Hi,
    I am getting an ABAP short dump with "CNTL_ERROR" while using an input script. What do I do?
    Thanks,
    Sreekar.

    Hi,
    Newer versions of SAP GUI and R/3 include external controls called as ActiveX (OCXs). ABAP code internally issues some commands to flush and refresh these controls. Since, when using GuiXT and input scripting, these controls are not created, and ABAP dumps. Use keyword "Enable controls" (without quotes on a separate line) in a screen block that has an ActiveX control.
    Example:
    Screen SAPLCOIH.3000
      Enter "/Menu=4,1,5"
    Screen SAPLSP01.0100
      Enter "=No"
    Screen RIPLKO10.1000
      Enable controls
      Set F[Group] "UG"
      Enter "/8"
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • ABAP Short Dump Occurring

    Hi All
    We had do done a DBEXPORT of our R/3 4.6C while doing there was a increment conversion pending and we got error during the export, we finished the conversion and then started the DBEXPORT again and it completed successfully, however after this we are receiving ABAP Short dumps which says DBIF_RSQL_INTERNAL_ERROR, Internal error when accessing table "T179 ". Practically for any new entry we do in database.Kindly suggest how to go about.
    Regards
    Arun

    Hi Micheal
    we had done an incremental conversion  for DBTABLOG table which is forbidden also was not complete,so we completed the conversion and removed a field which was added in the table (this was cause of error),we removed the field and activated teh table and the short dump was resolved.
    Anyway thanks for your reply.
    Arun

  • ABAP short dump error while creating an invoice

    Hi All,
    We are creating a delivery(Unit is EA) for the material for which the Unit Conversion is maintained as 1CS = 48 EA. So while creating a delivery If I maintain the delivered quantity is less than 24, I am not able to create an invoice.It's throwing an ABAP short dump error BCD zerodivide run time error.
    If I deliver greater than or equal to 24, then the invoice is created without any issue
    I have checked if there is any  CMIR record but no record is maintained.
    Can anyone help me out on this?
    Regards,
    Manjunath

    Hi Manju,
         Can you post the dump screen shot, which should contain the source code for that dump.
    Regards,
    Krishna

  • ABAP short dump when loading data into Infocube

    Hello All,
    I am getting an ABAP short dump error when loading data into Infocube. I tried to load data from PSA and ODS.
    I ran the code to compress the Infocube, no improvement still getting the same error.
    Error Analysis:
    A raise statement in the program "SAPLRSDU_PART" raised in the exception.
    Internal Notes:
    The termination occured in the function "ab_i fune" of the SAP Basis system. Specifically in the line 2316 of the module "//bas/620/src/krn/runt/abfunc. C#18".
    The internal operation just processed is "FUNE"
    Advance thanks !!!
    Siv

    Hello Siv,
    try to run program SAP_DROP_EMPTY_FPARTITIONS to display existing partitions. Then compare it to the number of uncompressed requests. Maybe there's a mismatch.
    SAP notes that might help: 385163, 590370
    Regards,
    Marc
    SAP NetWeaver RIG, US BI

  • My Apple ID has been disabled due to changing the credit card, how can I enable it again?

    My Apple ID has been disabled due to changing the credit card, how can I enable it again?

    you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on any iOS devices that you have by tapping on your id in Settings > iTunes & App Store (Settings > Store on iOS 5 and below) and then log back in so as to 'refresh' the account on them
    If that doesn't fix it then contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • HT5834 I received a message saying I must change my iCloud Keychain pass code due to changes in the server. Is this correct? Or is it a scam?

    I received a message saying I must change my iCloud pass code keychain due to changes in the server. Is this a hoax?

    Dang! And if I already did before thinking it might be a scam, what can I do about at this point? I did just reset my password again after realizing it might be a scam, but is that sufficient and is there anything else I should look into to see if any damage was already done? Thanks.

  • AD4J: Unable to start Heap Dump due to OS Error

    When Java 'Heap Dump' is requested, the following message is shown:
    Unable to start Heap Dump due to OS Error.
    Details of the monitored JDK and application server are given below:
    JDK: Sun JDK 1.4.2_08 on Solaris 9
    Application Server: WebLogic 8.1 SP4
    1. What could be the possible cause? No errors are logged in jamserv/logs/error_log. Is there any way to enable detailed logging?
    2. Each time the heap dump is requested, a file of the format heapdump<n> gets created in /tmp (e.g. /tmp/heapdump12.txt). If you see the file, it contains the following:
    a) a line containing summary of the heap usage, and
    b) stack traces of all the threads
    Thanks!

    Wrong Forum?

Maybe you are looking for

  • Items of input fields are disabled

    Hi All, I have created form using Web Dynpro. In this form, I have provided connnectivity with R/3 using RFC. After creation of the form, I noticed that input fields are disabled. Can you please suggest me the possible reason for this. I have mapped 

  • Pakage not available

    Hi, I am using oracle intermedia classes in jsp file.I am importing the package 'oracle.ord.im' or 'oracle.sql' , and when running it is telling that the package is not available. It is accepting java packages. I installed oracle 10g along with inter

  • Relationship between Role id and Task id table name?

    Hi In which table we can find the relationship between Role id and Task id in saphcm Thanks a vibin

  • Css cross browser issue

    i have laid out my template using css, but notice that one of my columns will bump down under another one if the screen is resized in IE (on pc, v.6). can someone take a quick look at my code and css and let me know what i can do to ensure that every

  • Add link to photo on photoshop touch?

    How do you add a hyperlink to a photograph on Photoshop Touch?