Found dump

Hi Abaper,
I have a report to calculate occupancy. Below is my code but when i run this report it ended with dump.
SORT it_estadi BY xhotel_id.
  LOOP AT it_estadi INTO wa_estadi.
    DATA:lv_xocupacion LIKE /ccsht/na_estadi-xocupacion.
    DATA:lv_occ LIKE /ccsht/na_estadi-xocupacion.
    lv_xocupacion = lv_xocupacion + wa_estadi-xocupacion.
     lv_occ = lv_xocupacion / wa_estadi_dummy-tot_habs_hotel * 100.
    AT END OF xfecha_id.
      MOVE  wa_estadi TO wa_estadi_dummy.
      wa_estadi_dummy-xocupacion     = lv_xocupacion.
     wa_estadi_dummy-xocupacion     = lv_occ.
      APPEND wa_estadi_dummy TO it_estadi_dummy.
      CLEAR  wa_estadi_dummy.
      CLEAR lv_xocupacion.
      CLEAR wa_estadi.
      CLEAR lv_occ.
     CLEAR it_linfol_dummy.
    ENDAT.
  ENDLOOP.
Can any one help me in this issue.
Thanks in advance.
Thanks & Regards,
Amit

Hi Amit,
Never declare the variables inside the Loop.
Also while u are subtracting a value(like A-B) just confirm that A is greater than B.
And while dividing a value( like A/B) , just check if the value of field B is not initial.
Please see the corrected code below. And if the pblm persists then debug the code and revert back with the issue.
DATA:lv_xocupacion LIKE /ccsht/na_estadi-xocupacion.
DATA:lv_occ LIKE /ccsht/na_estadi-xocupacion.
SORT it_estadi BY xhotel_id.
LOOP AT it_estadi INTO wa_estadi.
lv_xocupacion = lv_xocupacion + wa_estadi-xocupacion.
If wa_estadi_dummy-tot_habs_hotel IS NOT INITIAL
AND lv_xocupacion IS NOT INITIAL.
lv_occ = ( lv_xocupacion / wa_estadi_dummy-tot_habs_hotel ) * 100.
ENDIF.
AT END OF xfecha_id.
MOVE wa_estadi TO wa_estadi_dummy.
wa_estadi_dummy-xocupacion = lv_xocupacion.
wa_estadi_dummy-xocupacion = lv_occ.
APPEND wa_estadi_dummy TO it_estadi_dummy.
CLEAR wa_estadi_dummy.
CLEAR lv_xocupacion.
CLEAR wa_estadi.
CLEAR lv_occ.
CLEAR it_linfol_dummy.
ENDAT.
ENDLOOP.
Keerthi.
Edited by: Keerthy K on Feb 25, 2009 1:10 PM
Edited by: Keerthy K on Feb 25, 2009 1:10 PM

Similar Messages

  • Problems found during the EXPORT to specified keyin table.

    Hi
    I am getting this error in sending iDOC system( We have iDOC-XI-iDOC Scenario.) I tried to reregister the queues but still nothing is passing thru XI.
    Thanks,
    Manish

    Acutally I am getting this DUMP in ST22.
    <i><b>ShrtText                                                                                |
    Problems found during the EXPORT to specified key in table.
    What happened?
    Error in ABAP application program.
    The current ABAP program "CL_XMS_PERSIST================CP" had to be
    terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    The table " " does not contain any data records with the specified key.
    The system called the internal SAP database interface because it
    expected to find such a key.
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "EXPORT_TABLE_UPDATE_CONFLICT" C
    "CL_XMS_PERSIST================CP" or "CL_XMS_PERSIST================CM00W"
    "INSERT_MSG_ALL"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    Information on where terminated
    The termination occurred in the ABAP program "CL_XMS_PERSIST================CP"
    in "INSERT_MSG_ALL".
    The main program was "SAPMSSY1 ".
    The termination occurred in line 302 of the source code of the (Include)
    program "CL_XMS_PERSIST================CM00W"
    of the source code of program "CL_XMS_PERSIST================CM00W" (when
    calling the editor 3020).
    Source Code Extract
    Line
    SourceCde
    272
    IF lv_switch_mode = 2.
    273
    IF export_to_db_optimized = co_true.
    274
    CALL FUNCTION 'SXMB_EXPORT_TO_DB'
    275
    EXPORTING
    276
    iv_kind        = 'P'
    277
    it_prop        = lt_prop
    278
    iv_switch_mode = lv_switch_mode
    279
    iv_msgguid     = clustkey-msgguid
    280
    iv_pid         = clustkey-pid
    281
    iv_vers        = clustkey-vers.
    282
    ELSE.
    283
    EXPORT lt_prop FROM lt_prop
    284
    TO DATABASE sxmsclup2(is) FROM wa_clup ID clustkey.
    285
    ENDIF.
    286
    ELSE.
    287
    IF export_to_db_optimized = co_true.
    288
    CALL FUNCTION 'SXMB_EXPORT_TO_DB'
    289
    EXPORTING
    290
    iv_kind        = 'P'
    291
    it_prop        = lt_prop
    292
    iv_switch_mode = lv_switch_mode
    293
    iv_msgguid     = clustkey-msgguid
    294
    iv_pid         = clustkey-pid
    295
    iv_vers        = clustkey-vers.
    296
    ELSE.
    297
    EXPORT lt_prop FROM lt_prop
    298
    TO DATABASE sxmsclup(is) FROM wa_clup ID clustkey.
    299
    ENDIF.
    300
    ENDIF.
    301
    >>>>>
    IF sy-subrc <> 0.                                         "#EC *
    303
       m_syserr_raise 'PERSIST' 'MSGGUID_EXISTING'
    304
                      clustkey-msgguid clustkey-pid
    305
                      clustkey-vers ''.
    306
    lv_p1 = clustkey-msgguid.
    307
    lv_p2 = clustkey-pid.
    308
    lv_p3 = clustkey-vers.
    309
    310
    RAISE EXCEPTION TYPE cx_xms_syserr_persist
    311
    EXPORTING id = cx_xms_syserr_persist=>co_id_msgvers_existing
    312
    p1 = lv_p1
    313
    p2 = lv_p2
    314
    p3 = lv_p3.
    315
    316
    ENDIF.
    317
    318
    319
    320
    table SXMSPRES (resources)
    321
    table SXMSPXRES (X-resources)
    Internal notes
    The termination occurred in the function "expOutDb" of the SAP
    Basis System, specifically in line 3748 of the module
    "//bas/640_REL/src/krn/runt/abexpo.c#8".
    The internal operation just processed is "cmpr".
    The internal session was started at 20060724051049.
    Internal call code.........: " "
    Key..................: " "
    It is very likely that a constellation similar to the following applies:
    Process 1:                               Process 2:
    UPDATE x.   ==> NOT_FOUND
    UPDATE x. ==> NOT_FOUND
    INSERT x.   ==> ok
    INSERT x. ==> DUPLICATE KEY
    DELETE x.   ==> ok
    UPDATE x. ==> NOT FOUND
    + DUMP
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    [0] DoStack2 ( 0x105a4f7c0, 0x0, 0x2d1b000, 0x100000000, 0x1, 0x0 ), at 0x100471a60
    [1] CTrcStack2 ( 0x105a4f7c0, 0x0, 0x100000000, 0x2d1ac00, 0x2, 0x102d1ada4 ), at 0x100471610
    [2] __1cQrabax_CStackSave6F_v_ ( 0x10303b400, 0x303b400, 0x103874d10, 0x101fcfce8, 0x100000000, 0x
    [3] ab_rabax ( 0x1, 0x2d1ac00, 0x0, 0x100000000, 0x3873800, 0x100000000 ), at 0x100a7fa04
    [4] __1cIexpOutDb6FppCpLLInJEXPO_MODE__i_ ( 0x2, 0xe82, 0xffffffffffffffff, 0x101f97a90, 0x2, 0x38
    [5] __1cTwrite_data_compress6FkpnICONNE_WR_C_i_ ( 0xffffffff7fffb038, 0x1070, 0x1000, 0x10095fa9c,
    [6] __1cMab_connwrite6FIIpHIpFp0pIppnHAB_DATA_ppv_ipFppCpLLInJEXPO_MODE__i_i_ ( 0x0, 0x4, 0x10302a
    [7] __1cLexpo_export6F_v_ ( 0x0, 0x960000, 0x95f800, 0x0, 0x103847980, 0x1 ), at 0x10095aa20
    [8] __1cIab_jexpo6F_v_ ( 0x0, 0x5b52800, 0xd0, 0x100000000, 0x1, 0x0 ), at 0x100952df4
    [9] __1cIab_extri6F_i_ ( 0x100000000, 0x5a37800, 0x2f0, 0x1, 0x0, 0x5e ), at 0x10068ccf8
    </b></i>

  • Getting dump like LIST_TOO_MANY_LPROS

    Hi Friends,
    I have created a Dialogue program with 6 subscreens with 3 normal screens.
    after doing some processing from Subscreen and to navigate to other screens , I am using Call screen.
    The leave to screen XXX is throwing error.
    If i use call screen statement often , it is throwing error like LIST_TOO_MANY_LPROS.
    Can you please help me with different alternate ways to handle this situation.
    When calling screens from Subscreens.
    Thanks,
    Gokul

    The specified item was not found.
    dump [LIST_TOO_MANY_LPROS|http://sap.ittoolbox.com/groups/technical-functional/sap-dev/dump-list_too_many_lpros-363302]

  • Express document 'Update was terminated' in vf02

    Hi Gurus,
    I am getting Express document 'Update was terminated' error while triggerring customized
    output type in vf02.
    i found dump in st22 and describes as below.
    Error analysis :
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    -  SUBMIT
    Pls kindly suggest me what could be the reason

    Hi Sheshikanth,
    you have an exit in the update section of the transaction VF02 calling one of those statements (CALL...). This is prohibited.
    Go to SM13 and follow the error. You will find the code that is causing your problem.
    regards,
    Edgar

  • Mail filter in iMS 5.2?

    In older versions of iMS you used to be able to configure UBE filters via a gui. Now how is it done? All we want to do is a simple server filter to scan Subject: line of messages and if a specific tag is found, dump that mail.

    I have a related problem. I guess this is mostly a sieve filter syntax question...
    I need to single out messages for a specific user but I am catching other unintended users in the process. Example:
    imta.filter:
    require "reject";
    if header : contains "To" "domain.com" {
    if header :contains "From" "[email protected]" {
    discard;
    Based on my filter above I am catching [email protected] but I am also catching [email protected], [email protected], etc.
    If I insert a space before the info (" [email protected]"), then the filter doesn't catch emails from [email protected] I am using Sun Messaging Server 5.2
    Any ideas?
    Thanks!

  • Multiple email account?

    I have one (1) .mac subscription.
    I have created 5 email accounts/names.
    The problem is the mailbox names all get the same emails. I thought I was setting up seperate private email accounts. not so.
    So how do I delete these extras? I have tried dragging to trash from my email and it does not work. I have tied going to mobile me online.
    Help

    MobileMe mail allows you to create 5 aliases: these are simply extra addresses which, as you have found, dump incoming mail into the main inbox. However they are useful in giving you extra addresses to publish which can be easily changed, as opposed to your main address.
    You can add or delete aliases by loggin in at http://me.com, going to the Mail pane if you aren't there already, and clicking on the button in the toolbar with the cogwheel and the down arrow ; select 'Preferences' and in the pane which opens click the 'Aliases' button.
    You can disable an alias by unchecking the box on the left, or delete it by clicking the 'x' button on the right.
    If you want entirely separate email addresses you will have to set up separate Mobileme accounts, or upgrade to a Family Pack; or go to an outside provider such as GMail or Yahoo.

  • Dump : Table not found in oracle database

    Hi,
    I am doing a program regarding analysis of tables belonging to archiving objects.In my program i am calling a RFC function module . 'DB02_ORA_TABLE_INDEX_ANALYSIS . But it is giving the dump for native sql statement .
    --- Oracle block size ----------------------------------------------
      exec sql.
        select value from v$parameter where name like 'db_block_size%'
               into :block_size
      endexec.
    Dump is table not found in database.
    Could please let me know what setting i am missing...
    Thanks in advance.....
    Sudhakar

    Hi,
    the view V$PARAMETER must be accessed through  SAP/Oracle Database Monitor lets you view the active Oracle database parameters and the contents of the init.ora file.
    Alternatively, you can use transaction st04.  You need to apply SAP Note 706927 before using the database monitor.
    Hope this information is help to you.
    Regards,
    José

  • Loaded dump from 12.5.4 to 15.7, Error 622 & Tables/Views not found

    Hi all,
    I am getting desperate trying to fix that issue. I had to import a dump from an ASE 12.5.4 into a new database on an ASE 15.7. I therefore enabled the compatibility mode server-wide and then proceeded to the load which seems to have performed correctly. The database seems well imported, and I can access most of the tables/views/procedures (from my C# application), but a procedure is giving me troubles.
    I am getting this error while executing a given procedure :
    Error: 622, Severity: 20, State: 1
    Opentable was passed a varno of 52. Object 'temp worktable' in database 'tempdb' already has that session descriptor in use. This occured while opening object id -1245236 in database id 2.
    I realised this was caused by a view which is used in this procedure but which is weird is that the error is not thrown when running the SQL code itself, out of the procedure context.
    I am using Toad for Sybase as a client, and realised I cannot access the data tab of the concerned view, Toad gives me the same error. So I cannot execute this view while it performs without any trouble on  the original server (production server which runs ASE 12.5.4).
    I also realised, when trying to execute some pieces of the query individually that I get warnings about unfound tables (and that I should use sp_help to fix the problem). Although, the tables actually exists and I can access their data.
    I have tried so many things and still cannot fix this problem. I've used 'upgrade_object', 'sp_recompile' on all tables, 'dbcc reindex' on all tables.
    Would you have any idea where the problem could come from? Thank you very much

    Thank you for your reply.
    Good to know that enabling compatibility mode before or after loading the load doesn't have any effect.
    I didn't drop/recreate all the SP and views but I can tell you I recreated a similar view and it causes the same issue.
    I had a look at your link yes. I have run 'dbcc upgrade_object' several times already, on the view and the procedures calling the view, and it won't solve anything.
    I've seen a similar post about the problem I have when executing the code itself of the view in a "normal" adhoc query (errors saying the tables are not found) : SAP Sybase Forums - ASE - Backup and Recovery - PRoblem after restore - Object does not exist.
    Could it be the same problem for me?
    Although I've tried splitting the SQL query and executing the parts individually and it works without any trouble. Problem is when the 2 parts of the view are put together. It may be something that was possible with ASE 12.5.4 but not with 15.7 and that compatiblity mode doesn't solve. My view consists of an union a two selects where both have left joins, case when then else, not in and a final group by (adding an order by doesn't help, as I tried).
    PS : I don't have access to the production server where the dump is actually from (but I could if it is really necessary)

  • Dump: Component not found

    Hello all,
    I have a strange error in my Web Dynpro application. It dumps with the message "Component ID_00010003000700080011 not found". I can reproduce this error, but I don't know why it happens, because it dumps only on test machine, not on development machine. I thought it's a missing transport request, but I have released all requests to test machine.
    Dump anlaysis (ST22) is not very helpflull, it says the error is "CX_WDR_RT_EXCEPTION", not very much else. I searched in SAP notes, but no luck either.
    Has anybody an idea, how such an error with component IDs can happen?
    Best regards and TIA, Matthias

    Hi Volker,
    I solved the problem with lots of debugging. At the end it seemed that the problem was in a RFC-function by another project, they solved this error. So it was no ABAP or WD4A problem, as I thought at the beginning.
    Regards, Matthias
    PS: I always give reward points to the helpful answers...

  • JCO RFC provider: Server function not found, short dump

    Hi all,
    I'm trying to use the JCO RFC provider service of NW04s (SP15) together with an ABAP 4.6C system. I've followed all the documentation that I could find, but couldn't get it to work yet. This is what I've done so far:
    Using SM59 I've had a destination APP_JK1 created for me on the R/3 system. AFAIK it's set up correctly and marked as a "registered server", connection tests were successful.
    On the portal, I've created a RFC portal destination using my R/3 credentials and successfully tested it. Then I created an entry in the RFC provider service, using the correct values for system, id & gateway, and let it point to my RFC destination for the repository connection. The program ID is also APP_JK1.
    Next, I created a stateless session bean which is part of an EAR, gave it a JNDI name of "RFCTEST" and added a method like this:
        * @ejb.interface-method view-type="both"
        * @param function called function
       public void processFunction(com.sap.mw.jco.JCO.Function function) {
          JCO.ParameterList input  = function.getImportParameterList();
          String query = input.getString("I_STRING_SEARCH");
          JCO.ParameterList output = function.getExportParameterList();
          output.setValue(query, "ECHOTEXT");
    (The project uses xdoclet for the creation of J2EE stuff)
    In application-j2ee-engine.xml located in the META-INF directory of my EAR, I've added:
    <reference reference-type="hard">
         <reference-target provider-name="sap.com" target-type="library">com.sap.mw.jco</reference-target>
    </reference>
    The application deploys without errors, and besides from my RFC connection works as expected. In the JNDI registry view of VisualAdmin I see the corresponding entry: "rfcaccessejb/RFCTEST" is a local reference to my stateless session bean.
    On ABAP, I have a tiny little program that calls my function, mainly looking like this:
    CALL FUNCTION 'RFCTEST' DESTINATION 'APP_JK1'
      EXPORTING
        I_STRING_SEARCH = query
      IMPORTING
        ECHOTEXT = t1.
    Unfortunately, it short dumps immediately. The error message is:
    JCO.Server could not find server function 'RFCTEST'
    I'm lost. What could be wrong? Any help is greatly appreciated. Kind regards,
    Christian Aust

    Hello Perry song,
    You got the short dump bcoz, there is no perform by the name you provided in the program,
    for example. consider there are 2 programs.
    Program 1 :
    REPORT  ZPGM1.
    *Calling a perform SNAME1 , the code of perform is written in ZPGM2.
    perform sname1 IN PROGRAM ZPGM2.
    Program 2 :
    REPORT  ZPGM2.
    perform sname1 .
    Form SNAME1 .
    write : 'Text in form SNAME1' .
    endform.                    " SNAME1
    (here SNAME1 is found and it works perfectly )
    Change in Program 1 :
    REPORT  ZPGM1.
    *Calling perform DELTA ,
    perform DELTA IN PROGRAM ZPGM2 IF FOUND.
    Now the perform statement will search for perform " DELTA " in ZPGM2 , but there is no perform by name DELTA , so here we need to mention the condition " IF FOUND "  , so now by mentioning the condition " IF FOUND " in perform statement ,  if the perform DELTA is not found then it wont go to DUMP.
    If condition " IF FOUND "  is not mentioned in perform statement like
    perform DELTA IN PROGRAM ZPGM2 . ( This gives DUMP )
    just type " IF FOUND " when u r calling a perform from other program ( i guess this will solve the problem ).
    Hope it might be helpfull,
    Regards ,
    Aby
    Edited by: abhi on Nov 6, 2008 10:14 AM

  • Dump-A newer version of data type "ZMNFLOCK" was found than one required

    Hi,
    I am getting dump in program when there is a select query on ZMNFLOCK table.
    Error analsys is given as
    Error analysis                                                                               
    The data type "ZMNFLOCK" was loaded from the database during the program run.                 
        However, a type of a newer version than the one requried was found here.   
    What could be the problem? my BASIS person says this is somewhere related to ABAP.
    should i Adjust & Activate database by going to SE14 for ZMNFLOCK table.
    Also noted that error is random in nature and its not coming everytime.

    Hi,
    There could be an issue with in the table, As Dataelement or domain related to any field in table may have changed, And that field is not getting used aal the time, That's why Dump is coming randomly.
    The best possible solution is to Activate and adjust database table through SE14, This will update table with all the updated versions.
    Thanks
    Saurabh Siwach

  • CAUFVD gets initialized result in dump with error Production ord not found

    Hi All,
    We want to make change of start date and end date of a production order via CO02 (Production order change). Based on these changes we want to update an existing a Purchasing Planned Order  Start Dt and Finsih Dt (MD12) 
    We are using Enhancement component (PPCO0007) : Exit when saving production order
    Within this exit we are using BAPI_PALNNEDORDER_CHANGE  to update some other purchasing  planned order dates.
    The BAPI_PALNNEDORDER_CHANGE  is executing succesfully however the production order structure (CAUFVD)  gets initialized resulting in dump with error Production order not found
    How can we update and save a purchased planned order and also the  production order
    Barada
    Edited by: barada satapathy on Dec 8, 2010 9:14 AM

    Hi Max,
    Thanks for the reply...
    The error details are as below:
    Dump gets generated via program : (SAPLCOBT).
    Exception condition ORDER_NOT_FOUND raised.
    include = LCOBPU16.
    Row No: = 21.
    Module Type = (Function)
    Module Name = CO_BT_ORDER_DET_TEMP
    We also give brief details on what is happening:
    My exit calls from Standard (LCOZVU01) :
    CALL CUSTOMER-FUNCTION '001'
               EXPORTING
                    header_imp = caufvd
               IMPORTING
                    header_exp = caufvd_tmp
                    no_update  = answer.
    *     Check if update of header necessary and allowed
          IF caufvd-aufnr EQ caufvd_tmp-aufnr AND
             caufvd       NE caufvd_tmp.
            PERFORM caufv_upd(saplcobh) USING caufvd_tmp.
          ENDIF
    When BAPI for planned order is executed within the exit, the structure (caufvd) values are found refreshed. This structure is further updating the production order.

  • Duplicate record found short dump, if routed through PSA

    Hi Experts,
    I am getting these errors extracting the master data for 0ACTIVITY
    1 duplicate record found. 1991 recordings used in table /BI0/XACTIVITY
    1 duplicate record found. 1991 recordings used in table /BI0/PACTIVITY
    2 duplicate record found. 2100 recordings used in table /BI0/XACTIVITY
    2 duplicate record found. 2100 recordings used in table /BI0/PACTIVITY.
    If I extract via PSA with the option to ingnore duplicate records, I am getting a short dump
    ShrtText                                            
        An SQL error occurred when accessing a table.   
    How to correct the error                                                             
         Database error text........: "ORA-14400: inserted partition key does not map to  
          any partition"                                                                  
    What is  causing errors in my extraction ?
    thanks
    D Bret

    Go to RSRV .Go to All Elementary Tests -->PSA Tables -->Consistency Between PSA Partitions and SAP Administration Information## ..and correct the error...

  • Setup sol-8 reboots (dump device not found)

    i have a pIII intel system and im trying to setup sol 8 on it. it detects the hardware but when it gets to the interactive and jumpstart and i select either of the two, the system gives a brief message, no dump device found, rebooting and reboots. it does this on and on. i saw similar problems like this that had been logged since lkast year, and there has been no answer to them, does that mean that there is no solution to this.?

    Hi Thon,
    I would be happy to assist if needed in English. Please let me know what is your model number and your current operating system? Here is a link that will help you find out your model.
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Dump:Function module "/GRCPI/GRIA_SPM_SYNC" not found

    Hello Experts,
    When executing EAM Master Data Synch from GRC system, a short dump results with the description "/GRCPI/GRIA_SPM_SYNC" in Plugin system ( Basis 640 ).Plugin system is at latest patch level ( GRCPINW SP12 ).we found that no function module available in plugin system.Could you please suggest or recommend any fix ? your help is much appreciated.
    Regards,
    Rajan

    Rajan,
    I connected GRC 10.0 to Plugin system which is on Basis 640. But gettign similar ABAP dum as you"
    The function module "/GRCPI/GRIA_SPM_SYNC" was called, but cannot be found in the Function Library". I Already implemented following SAP notes:
    0001941542 CALL_FUNCTION_NOT_FOUND dumps on running EAM Sync job or FF
    0002062450 EAM function modules are missing in 640 and 620 releases
    How did you resolve this issue?

Maybe you are looking for

  • Ipod wont let me download or update apps

    I have a 5th generation ipod touch but now for some reason wont let me download apps or update apps. At first I thought the apps that wont update gliched my ipod so I deleted those apps but still nothing. This started after I got iOS 8.0.2, before it

  • How do I make my iPhone connect to my Mac and sync my apps from my phone to my computer?

    I recently switched my iPhone account to a new  computer, and I can't figure out how to make my computer recognize my apps on my phone. I have a new email that i use for my iTunes stuff and it works, but on my phone it doesn't recognize the new email

  • For a laptop for LR image loading on trips - is 1366x768 screen enough and HDD size?

    I have big pc and big screens for editing at home, but for travel am looking for a laptop for loading images on the road and basic LR sorting and tagging while away. 2 questions to get your experiences, forum regulars, about my direction: 1. 1tb HDD

  • Rounding value for purchase order quantity

    Hi Guru , i need help for logic LOT SIZE MRP. In particolar i need of use the parameters of rounding for create the planned order multiple of the value. Example for a requirement of 3800 pz whit a value rounding of 500 i  vould want that the system c

  • Performance issues in million records table

    I Have a scenario wherein have some 20 tables each with a million and more records. [ Historical ] On an average I do add 1500 - 2500 records a day... i.e would add a million records every year on an average Am looking for archival solutions for thes