Urgent! - Problem during Conversion of SAP datadictionary table...

Hello All,
When using "Database utility" on a custom table we have encountered a hard error.
Request "Adjust" - Error in step 2 - see object log and analysis
The object log shows:
Begin step ZTABLE-STEP2:                         
sql:                                                      
RENAME "ZTABLE" TO "QCMZTABLE"             
ORA-26563: renaming this table is not allowed             
DDL time(___1): ........31 milliseconds                   
The SQL statement was not executed                        
Renaming of table ZTABLE to ZTABLE failed
Error in step ZTABLE-STEP2
Could any of you advice on what might be the problem is. Now the table could not be converted as it comes till the adjustment step and fails with ORA-26563

Utilities -> Database object -> Check shows
  Database object for ZTABLE is consistent  
.... Here it goes on to list the fields of the db table, datatype, length etc ..............
  Fields: Consistent with the runtime object  
  Indexes: Consistent with DDIC  
.... Here it goes on to show that indexes are on db......
Also check and display runtime object shows that the object is consistent.
I am not able to understand one thing here, why is it trying to rename the table during Adjust step?
Any more suggestions please

Similar Messages

  • Urgent problem: grouping by fields of internal table

    Hi friend,
    i have a urgent problem and i hope that you can help me out:
    i have an internal table containing data, and i sorted it by 3 fields.
    now what i want to do is kind of grouping that means that all the lines that are the same should be written into another internal table like this:
    A
    A
    B
    B
    B
    C
    D
    would give me:
    A                       1
    A                       1
    B                       2
    B                       2
    B                       2
    C                       3
    D                       4
    How could i do this ( especially avoiding nested loops ? ) Is there a handy trick to do this efficiently ?
    thank you, i will give points immediately,
    Clemens

    Hello,
    The field position is important for the fields that are using in the control break statements..Also SORT internal table is required.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb381a358411d1829f0000e829fbfe/content.htm
    DATA: BEGIN OF ITAB OCCURS 0,
    MATNR TYPE MATNR,
    WERKS TYPE WERKS_D,
    VALUE TYPE NETPR,
    END OF ITAB.
    ITAB-MATNR = 'ABC'.
    ITAB-WERKS = '0100'.
    ITAB-VALUE = '10.00'.
    APPEND ITAB.
    ITAB-MATNR = '1ABC'.
    ITAB-WERKS = '0100'.
    ITAB-VALUE = '10.00'.
    APPEND ITAB.
    SORT ITAB BY MATNR WERKS.
    LOOP AT ITAB.
    AT FIRST.
      WRITE : 'AT FIRST'.
    ENDAT.
    AT NEW MATNR.
      WRITE : 'AT NEW MATERIAL NUMBER'.
    ENDAT.
    AT END OF MATNR.
      SUM.
      WRITE: / ITAB-MATNR, 'MATERIAL TOTAL - ', ITAB-VALUE.
    ENDAT.
    AT END OF WERKS.
      SUM.
      WRITE: / ITAB-WERKS, 'PLANT TOTAL - ', ITAB-VALUE.
    ENDAT.
    AT LAST.
      WRITE : 'AT LAST'.
    ENDAT.
    ENDLOOP.
    Regards,
    Deepu.K

  • URGENT:Problem in a mapping with 8 tables in JOIN and using the DEDUP op.

    I have an urgent problem with a mapping: I must load data from 8 source tables (joined togheter) in a target table.
    Some data from 1 of the 8 tables have to be deduplicated, so I created a sort of staging table where I inserted the "cleaned" data, I mean, the deduplicated ones.
    I made it to make all the process faster.
    Then, I joined the 8 tabled, writing the join conditions in the operator properties, and connected the outputs into the fields of the target table.
    But..it does not work because this kind of mapping create a cartesian product.
    Then, I tried again with another mapping builted up in this way: after the joiner operator, I used the Match-Merge Operator and I load all data into a staging table exactly alike the target one, except for the PK (because it is a sequence). Then, I load the data from this staging table into the target one, and, of course, I connect to the target table also the sequence (the primary key). The first loading works fine (and load all the data as I expected).
    For the next loadings,I scheduled a pre-mapping process that truncate the staging table and re-load the new data.
    But..it does not work. I mean, It doesn't update the data previously loaded (or inser the new ones), but only insert the data, not considering the PK.
    So, my questions are as follow:
    1) Why loading the data directly from the joiner operator into the fact table doesn't work? Why does it generate a cartesian product??
    2) The "escamotage" to use the Match-Merge operator is correct? I have to admit that I didn't understand very well the behaviour of this operator...
    3) And, most of all, HOW CAN I LOAD MY DATA? I cannot find a way out....

    First of all, thanks for the answer!
    Yes, I inserted the proper join condition and in fact I saw that when WB generates the script it considers my join but, instead of using the fields in a single select statement, it builts up many sub-selects. Furthermore, it seems as it doesn't evaluate properly the fields coming from the source tables where I inserted the deduplicated data...I mean, the problems seems not to be the join condition, but the data not correctly deduplicated..

  • Problems during installation of SAP NetWeaver 7.01 - ABAP Trial Version

    Anyone who has successfully installed this trail version?HELP HERE
    Please come up with some problems you faced during installation and the way you rectified those problems 
    For e.g:
    Problem:
    'Partner' 127.0.0.1: sapdp00 'not reached WSAECONNREFUSED: Conection refused. "
    Solution:
    Points not a constraint for the right answer.Please provide the solution guys.

    Since the trial version is very sensitive regarding other software on the same system, I loaded it onto a clean installation of Windows Server 2003 within Microsoft Virtual PC. No installation problems ever since!
    It should be enough to provide the virtual machine with 0.5 GB of memory, but you'd better spare 2 or 3 GB for that...
    (This also has the nice side effect that it's reachable from the complete home network )

  • Problem during conversion

    Hi,
         In the attached VI,Iam giving temperature input from a string array,then converting it to binary and again converting to a decimal inorder to display in the thermometer.But while running it is giving incorrect values.what to do with this VI??
    Thanks as kudos only
    Attachments:
    Hex to Binary 64 bit (LV 8+).vi ‏10 KB

    Hi Danil,
    again you created a new thread instead of sticking with the original one. I think I recommended more than once to not create double posts. All you do is creating irritated users as others don't know the origins of your VI examples. DON'T CREATE DOUBLE POSTS!!!
    You also didn't learn to write good questions: "My VI works fine when Iam entering numbers below 10(Ah)"
    What does not work?
    Which results are wrong/unexpected?
    Which results do you expect?
    Can't you give good examples?
    Your VI also works for "numbers" greater than 10, for instance "10" (hex) gets converted to 16 (decimal).
    The VI is limited to U8 values (00 to FF in hex), which allows 0 to 255 in decimal...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • SAP database tables - Column statistics not found for table in DB02 - During import, inconsistent tables were found - Some open conversion requests still exist in the ABAP dictionary.

    Hi Experts,
    I'm implementing SAP note 1990492 which requires manual implementation. Implementation includes modifying standard tables (i.e. append
    the structure FIEU_S_APP_H to table FIEUD_FIDOC_H). After this I've adjusted the table in SE14 (Database Utility). I've done checks in SE14 and it shows the table is consistent.
    But during DB02 -> Space folder -> Single table analysis -> Input table name -> Indexes tab -> Upon clicking statistics, there is a warning "Column statistics not found for table".
    Our basis team is implementing an Add-On in the development system related to RWD Context Sensitive Help. They cannot proceed due to the following inconsistencies found in the table.
    Screenshot error from the activity:
    Screenshot from DB02:
    I'm an ABAP developer and have no other ideas on what to do. Thanks in Advanced.

    Hi All,
    We were able to fix the issue through the following:
    1. Call transaction
    SE14.
    2. Enter the name of
    the table and choose "Edit".
    3. Choose
    "Indexes".
    4. Select the index
    and choose "Choose (F2)".
    5. If you choose
    "Activate and adjust", the system creates the index again and it is
    consistent.
    6. Check the object
    log of this activation.
    7. If an error
    occurs, eliminate the cause and reactivate the index.

  • SAP R/3 4.7 EX 2 SR1 - IDES (Unicode), Problem during DB load

    Dear Experts,
    Details of the system:
    Solaris 10, Oracle 9.2.0.7.
    R/3 Enterprise 4.7 X 2 SR1 - IDES (Unicode)
    Please help me in solving this problem. I have received this error during DB load Phase 25/37. Errors are related to code page conversion failed.
    Message from SAPCLUST.log:
    myCluster (3.5.Imp): 1329: inconsistent field count detected.
    myCluster (3.5.Imp): 1332: nametab says field count (TDESCR) is 305.
    myCluster (3.5.Imp): 1335: alternate nametab says field count (TDESCR) is 311.
    myCluster (3.5.Imp): 1130: unable to retrieve nametab info for logic table BSEG      .
    myCluster (3.5.Imp): 7305: unable to retrieve nametab info for logic table BSEG      .
    myCluster (3.5.Imp): 2090: failed to convert cluster data of cluster item.
    myCluster: RFBLG      *800**0001**0100000000**1995*
    myCluster (3.5.Imp): 319: error during conversion of cluster item.
    myCluster (3.5.Imp): 322: affected physical table is RFBLG.
    (CNV) ERROR: code page conversion failed
                 rc = 2
    ^M
    .--============--
    .^M
    |                              RSCP - Error                            |^M
    | Error from:             Codepage handling (RSCP)                     |^M
    | code:   64  RSCPECALL    Illegal mixture of procedure calls.         |^M
    | Table UMGSETTING of no interest in Unicode system                    |^M
    | module: rscpexcc no:   12 line:   673                    T100: TS007 |^M
    | TSL01: CQ3  p3: UMGSETTING  p4: &                                    |^M
    |----
    |^M
    | Some OS information, which may or may not belong to this error:      |^M
    | errno    17  File exists                                             |^M
    `----
    '^M
    (DB) INFO: disconnected from DB
    Message from SAPPOOL.log:
    failed to read short nametab of table T2200                          (rc=32)conversion failed for row 5836 of table T184L      VARKEY = \343\2
    40\260\343\200\260\343\200\260\343\200\261\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342
    \200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\342\200\240\3
    42\200\240
    (CNV) ERROR: code page conversion failed
                 rc = 2
    ^M
    .--============--
    .^M
    |                              RSCP - Error                            |^M
    | Error from:             Codepage handling (RSCP)                     |^M
    | code:   64  RSCPECALL    Illegal mixture of procedure calls.         |^M
    | Table UMGSETTING of no interest in Unicode system                    |^M
    | module: rscpexcc no:   12 line:   673                    T100: TS007 |^M
    | TSL01: CQ3  p3: UMGSETTING  p4: &                                    |^M
    |----
    |^M
    | Some OS information, which may or may not belong to this error:      |^M
    | errno    17  File exists                                             |^M
    `----
    '^M
    (DB) INFO: disconnected from DB
    /sapmnt/S01/exe/R3load: job finished with 1 error(s)
    /sapmnt/S01/exe/R3load: END OF LOG: 20071123101328
    Thanks for your attention
    Rgds,
    Fausto

    This process can't be done in Unicode. Has to be done in Non-UC.

  • MDMP Unicode Conversion problem during ECC upgrade

    hi Experts,
    I met a problem when upgrade from 4.6c to ecc 6.
    in 4.6c, some key users made some chinese written entries in table field while he/she was logon as English, so, the language field in this entry is "EN" although the actual language was written by chinese, after upgrade to ECC6, we found the chinese words became messy code, maybe it was due to the chinese were encoded by english codepage during conversion, my question is, how can I avoid this? I really don't want this happen in our PRD upgrade.
    The second question is: if a field contains both chinese and english, then, which language should it be assigned? english or chinese? I'm afraid if we assign this word as "EN" in vocabulary, then, after upgrade, the chinese part will be messy code.
    Thank you for your kind suggestions.
    Freshman

    Hi,
    you can either use transaction SUMG (manually) to repair the entries ( you have to add the according table - please check unicode conversion guide for details) or you need to change the language key in the table to Chinese if you want the Unicode conversion to convert the data correctly.
    To your second question: If the English texts are restricted to US7ASCII characters ("normal" English without special characters) those texts containing Chinese and English words can (and must !)  be assigned to ZH, as US7ASCII characters are included in the Chinese code page.
    Best regards,
    Nilsn Buerckel

  • Problem during installation of Integration (SAP BO 2007) with CLUSTER

    I've a problem during the installation of SAP BO Integration version 2007 SP00 PL15.
    The InstallShield Wizard make a test to connection to SQL Server database SBO-COMMON and the test have a negative result:
    "Unable to connect to database; verify database server name and that database is started".
    I've alredy installed the integration without problem on a normal server, but this problem is on a cluster.
    More information of the system are:
    - Windows enterprise 2003 SP1 (2 server cluster fail over)
    - SQL Server 2005 SP2 (cluster)
    It seems that it can't find the SQL on the cluster.
    Thanks and help me!

    dear Teun,
    Is important to know well SQL Server 2005.
    Go to Programs->MS SQL Server 2005-> Configuration tools-> SQL Server Configuration Manager.
    Into the window, select: SQL Server 2005 Network Configuration -> Protocols for MSSQLSERVER > TCP/IP
    Here, you must set the IP address of your server (Ex. 192.168.0.55), not Dynamics Address.
    In the "all" instance, specify the Dynamic port 1433.
    Now, you can install Integration without problems (is not necessary set the node name in tha installation wizard, because the system is not able to select it)
    Regards
    Flavio

  • Encounter a problem during upgrade sap r/3 4.7 to ecc6

    Hi expert:
    i encounter a problem during upgrade sap r/3 4.7 to ecc6
    in START_SHDI_FIRST step.
    here is the error msg~
    MSSCRESPDEFN.LOG
    Msg 2812, Level 16, State 62, Server Jack, Line 6
    Could not find stored procedure 'dbo.sap_upg_getrelease'.
    setuser
    i checked MS SQL DB and found out that i only got 'erp.sap_upg_getrelease' but not dbo owner.
    can any one tell me how to solve this problem?~
    thanks.
    Regards
    Jack Lee

    It's the kernel for the shadow the correct?.
    Regards,
    Alfredo.

  • Problem in hierarchy with sap table

    One problem regarding tree hierarchy  with the sap bi table example zmaterial  which is  having  3 fields which should show as node and there data as sub node suggest me , how to do it I have look around the example but there are of simple node with string concept none of them is of sap table

    Hi Sarfaraz,
    Go throgh these example programs.
    WDR_TEST_TREE
    WDT_TREE_TABLE_BY_KEY
    and also go throgh this blog.
    Dynamic Tree in ABAP WebDynpro
    also check this wiki
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdabap/organization%2bhierarchy%2bin%2btree%2bstructure%2bas%2bf4%2bhelp
    Edited by: suman kumar chinnam on Oct 17, 2008 10:04 AM

  • How to find which SAP R3 table are read during SAP R3 extractor execution ?

    Hi Colleagues,
    I would like to know which sap r3 table are read during the execution of a sap r3 extractor ?
    1. I execute 2lis_03_bf extractor
    2- I select debug mode
    3. I put a break-point statement at abap command : select
    I just see the program going to technical table, mara table and user exit from.
    I am sure that this extractor read also MBEW table but I did not found it during the execution of the debug mode.
    Can someone help me ? What should I do to see from which table the extractor 2lis_03_bf extractor is retrieving data ?
    Thanks !

    HI Hanson,
    You maynot directly hit the source table when you debug a LO Extractor, as you should be aware that the data
    is read as below in case of a LO datasources ,
    INIT or FULL load --> from Setup tables
    Delta                    --> from the delta queue
    Also finding the Source table fora LO extractor is simple as you check the EC pool and understand that , check the
    below blog for more details
    /people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins
    But you can try with any other BI content extractor, for examle if you take a 0FI_AP_4
    you find the table BSIK and BSAK are being read using FM
    Regards,
    Sathya

  • Problem during SAP Solution Manager Migration - create secure store

    Hi all,
    I have a problem during a migration of my SAP SOLUTION MANAGEER from Linux ORACLE to AIX 6.1 ORACLE 10.2.0.4
    Release SOLUTION MANAGER 4.0 KERNEL 700
    I have done the export of the database and now i start with the import.
    SAPINST stopped at Create Secure Store phase and this is the log of SercureStoreCreate.log file.
    Unhandled exception
    Type=Segmentation error vmState=0x00000000
    J9Generic_Signal_Number=00000004 Signal_Number=0000000b Error_Value=00000000 Signal_Code=00000033
    Handler1=09001000A1271B80 Handler2=09001000A1269C20
    R0=0000000000000000 R1=0FFFFFFFFFFFD460 R2=0000000000000010 R3=0000000000000010
    R4=000000000000000B R5=09000000089B70A0 R6=0000000111BBE829 R7=0000000000000018
    R8=0000000111C23D58 R9=000000003A470000 R10=0000000111B99CB8 R11=09000000089CD638
    R12=0900000008970594 R13=000000011000D0C0 R14=0000000111BBE7B8 R15=0000000110096400
    R16=00000001110EC8B0 R17=0000000111C23FD8 R18=09001000A12753A8 R19=0000000000000013
    R20=0000000111C23FB8 R21=0000000111BBE848 R22=0000000110096480 R23=0000000000000000
    R24=0000000000000000 R25=0000000110001098 R26=0000000110096400 R27=0000000110016870
    R28=0000000000000000 R29=07000000001DD260 R30=000000000000000B R31=0000000000000010
    IAR=09000000089CD638 LR=00000001108BB6C0 MSR=A00000000000D032 CTR=09000000089CD638
    CR=4222422420000004 FPSCR=8202200000000000 XER=2000000482022000
    FPR0 3fe8000000000000 (f: 0.000000, d: 7.500000e-01)
    FPR1 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR2 3fe8000000000000 (f: 0.000000, d: 7.500000e-01)
    FPR3 4530000000000000 (f: 0.000000, d: 1.934281e+25)
    FPR4 4330000000400000 (f: 4194304.000000, d: 4.503600e+15)
    FPR5 4330000000000000 (f: 0.000000, d: 4.503600e+15)
    FPR6 3fb9999999999999 (f: 2576980480.000000, d: 1.000000e-01)
    FPR7 3c63333333333333 (f: 858993472.000000, d: 8.326673e-18)
    FPR8 0000000082024000 (f: 2181185536.000000, d: 1.077649e-314)
    FPR9 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR10 4330000000000000 (f: 0.000000, d: 4.503600e+15)
    FPR11 4077f00000000000 (f: 0.000000, d: 3.830000e+02)
    FPR12 3fe8000000000000 (f: 0.000000, d: 7.500000e-01)
    FPR13 4071f40000000000 (f: 0.000000, d: 2.872500e+02)
    FPR14 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR15 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR16 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR17 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR18 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR19 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR20 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR21 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR22 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR23 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR24 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR25 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR26 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR27 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR28 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR29 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR30 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR31 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    Module=/usr/java14_64/jre/bin/libj9jit23.so
    Module_base_address=0900000008998000
    Target=2_30_20070530_12820_BHdSMr (AIX 6.1)
    CPU=ppc64 (4 logical CPUs) (0x80000000 RAM)
    JVMDUMP006I Processing Dump Event "gpf", detail "" - Please Wait.
    JVMDUMP007I JVM Requesting System Dump using '/tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/core.20110907.081216.6947032.dmp'
    JVMDUMP010I System Dump written to /tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/core.20110907.081216.6947032.dmp
    JVMDUMP007I JVM Requesting Snap Dump using '/tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/Snap0002.20110907.081216.6947032.trc'
    JVMDUMP010I Snap Dump written to /tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/Snap0002.20110907.081216.6947032.trc
    JVMDUMP007I JVM Requesting Java Dump using '/tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/javacore.20110907.081216.6947032.txt'
    JVMDUMP010I Java Dump written to /tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/javacore.20110907.081216.6947032.txt
    JVMDUMP013I Processed Dump Event "gpf", detail "".
    Could please help me for finishing the migration?
    Thanks in advance
    Andrea

    Hi,
    this is the a part of sapinst.log:
    ERROR 2011-09-07 10:12:18.24
    FCO-00011  The step createSecureStore with step key |NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_SecureStore|ind|ind|ind|ind|8|0|createSecureStore was executed with status ERROR ( Last error reported by the step :Cannot create the secure store. SOLUTION: See output of log file SecureStoreCreate.log:
    Unhandled exception
    Type=Segmentation error vmState=0x00000000
    J9Generic_Signal_Number=00000004 Signal_Number=0000000b Error_Value=00000000 Signal_Code=00000033
    Handler1=09001000A1271B80 Handler2=09001000A1269C20
    R0=0000000000000000 R1=0FFFFFFFFFFFD460 R2=0000000000000010 R3=0000000000000010
    R4=000000000000000B R5=09000000089B70A0 R6=0000000111BBE829 R7=0000000000000018
    R8=0000000111C23D58 R9=000000003A470000 R10=0000000111B99CB8 R11=09000000089CD638
    R12=0900000008970594 R13=000000011000D0C0 R14=0000000111BBE7B8 R15=0000000110096400
    R16=00000001110EC8B0 R17=0000000111C23FD8 R18=09001000A12753A8 R19=0000000000000013
    R20=0000000111C23FB8 R21=0000000111BBE848 R22=0000000110096480 R23=0000000000000000
    R24=0000000000000000 R25=0000000110001098 R26=0000000110096400 R27=0000000110016870
    R28=0000000000000000 R29=07000000001DD260 R30=000000000000000B R31=0000000000000010
    IAR=09000000089CD638 LR=00000001108BB6C0 MSR=A00000000000D032 CTR=09000000089CD638
    CR=4222422420000004 FPSCR=8202200000000000 XER=2000000482022000
    FPR0 3fe8000000000000 (f: 0.000000, d: 7.500000e-01)
    FPR1 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR2 3fe8000000000000 (f: 0.000000, d: 7.500000e-01)
    FPR3 4530000000000000 (f: 0.000000, d: 1.934281e+25)
    FPR4 4330000000400000 (f: 4194304.000000, d: 4.503600e+15)
    FPR5 4330000000000000 (f: 0.000000, d: 4.503600e+15)
    FPR6 3fb9999999999999 (f: 2576980480.000000, d: 1.000000e-01)
    FPR7 3c63333333333333 (f: 858993472.000000, d: 8.326673e-18)
    FPR8 0000000082024000 (f: 2181185536.000000, d: 1.077649e-314)
    FPR9 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR10 4330000000000000 (f: 0.000000, d: 4.503600e+15)
    FPR11 4077f00000000000 (f: 0.000000, d: 3.830000e+02)
    FPR12 3fe8000000000000 (f: 0.000000, d: 7.500000e-01)
    FPR13 4071f40000000000 (f: 0.000000, d: 2.872500e+02)
    FPR14 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR15 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR16 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR17 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR18 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR19 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR20 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR21 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR22 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR23 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR24 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR25 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR26 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR27 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR28 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR29 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR30 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    FPR31 0000000000000000 (f: 0.000000, d: 0.000000e+00)
    Module=/usr/java14_64/jre/bin/libj9jit23.so
    Module_base_address=0900000008998000
    Target=2_30_20070530_12820_BHdSMr (AIX 6.1)
    CPU=ppc64 (4 logical CPUs) (0x80000000 RAM)
    JVMDUMP006I Processing Dump Event "gpf", detail "" - Please Wait.
    JVMDUMP007I JVM Requesting System Dump using '/tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/core.20110907.081216.6947032.dmp'
    JVMDUMP010I System Dump written to /tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/core.20110907.081216.6947032.dmp
    JVMDUMP007I JVM Requesting Snap Dump using '/tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/Snap0002.20110907.081216.6947032.trc'
    JVMDUMP010I Snap Dump written to /tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/Snap0002.20110907.081216.6947032.trc
    JVMDUMP007I JVM Requesting Java Dump using '/tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/javacore.20110907.081216.6947032.txt'
    JVMDUMP010I Java Dump written to /tmp/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/CENTRAL/AS/javacore.20110907.081216.6947032.txt
    JVMDUMP013I Processed Dump Event "gpf", detail ""..).
    Thanks
    Andrea

  • Problem in conversion routine in CGPL_PROJECT and CPGL TEXT Tables

    Hi experts...
         I have a requirement in Project planning module for audit monitor report...
    Based on the External ID (is nothing but a CAPA Number)in CGPL_PROJECT i need to display description(CAPA Description) from CPGL_TEXT Table..
    But there is a One conversion routine in CPGL_TEXT Table i.e   CONVERSION_EXIT_CGPLP_INPUT
    here input is COR-08-0000000291( CAPA number) and i am getting output as 48D9ED5BE8430069E10080000A8C681D.
    In CPGL_TEXT table fields are GUID , TEXT_GUID,TEXT1.....
    If i give the guid as COR-08-0000000291 out put is
            GUID                                                         TEXT_GUID                                                   TEXT
    48D9ED5BE8430069E1008000          48D9ED81E8430069E10080000A8C681D     CAPA - Review of Requests
    1) IF we compare GUID value here and conversion out put last 8 digits are missing.....(coz  in domain of that field len  gth and conversion lenght are difff)
    2) IF we compare TEXT_GUID and conversion out put  both values are entirely diff .....
      In select query how can i get text Value......
    Can any body please solve me out........
    Regards,
    Praveena.

    solved

  • RFC connection problem during SRM - R/3 integration

    Hi,
    Our environment is SRM 5.5 server with 2 R/3 backend systems. One of the R/3 systems is in another country. We happen to have RFC problems during the communication between the SRM and R/3 server.
    Below you can find the SM21 log related to an operation on SRM server. What might be the reason for this problem? Does anyone know the solution?
    Many thanks
    Details Page 2 Line 26 System Log: Local Analysis of sapsrmt                  1
    Time
    Type
    Nr
    Clt
    User
    TCode
    Grp
    N
    Text
    10:24:58
    DIA
    000
    013
    EMREK
    R4
    9
    Communication error, CPIC return code 020, SAP return code 223
    Communication error, CPIC return code 020, SAP return code 223
    Details
    Recording at local and central time........................ 07.12.2006 10:24:58
    Task......
    Process
    User......
    Terminal
    Session
    TCode
    Program
    Cl
    Problem cl
    Package
    91342
    Dialog work process No. 000
    EMREK
    XXXXXXXX
    2
    K
    SAP Web AS Problem
    STSK
    Further details for this message type
    Module nam
    Line
    Error text
    Caller....
    Reason/cal
    thxxhead
    7192
    020223
    ThRecei
    CPIC-Er
    Documentation for system log message R4 9 :
    A CPIC function has failed.  The conversation ID and CPIC function are
    specified in the system log entries.  Use the conversion ID to find more
    detailed information about the error in the system log for the SAP
    gateway.
    Meaning of the SAP return codes:
    1) Gateway errors:
    221,,Error in CPIC-SS
    222,,Storage bottleneck
    223,,Network read error
    224,,Network write error
    225,,Invalid request
    226,,No connection yet
    227,,Gateway process terminated
    228,,Shared-Memory problem(read)
    229,,Shared Memory problem(write)
    230,,No free LU
    231,,No free gateway process
    232,,Error when starting gateway proc.
    233,,Incorrect communication type
    234,,Connection setup failed
    235,,Error in comm. table
    236,,No connection to gateway
    237,,Connection to gateway closed
    238,,Error in GW command (write)
    239,,Error in GW comm.   (read)
    240,,Invalid length
    241,,Invalid environment
    242,,Timeout
    243,,Error setting up SAP connection
    244,,Partner has closed connection
    245,,Storage overflow
    246,,Incorrect APPC header version
    247,,APPC server not started
    248,,Error accessing TXCOM
    249,,Comm. table is full
    630,,Invalid mode no. received
    631,,Max.no. of gateways reached
    632,,No LU specified
    633,,Max.no. of clients reached
    634,,Invalid TP name
    635,,fork failed
    636,,Invalid NI handle
    637,,rexec failed
    638,,TP start failed
    639,,NiDgSend failed
    640,,Internal error
    664,,Gateway host is unknown
    665,,Gateway service unknown
    666,,NI error
    667,,exec failed
    668,,R/2 restarted
    669,,Symb. destination too long
    670,,No more side-info entries
    672 ,,Logon to NetWeaver failed
    673 ,,IMS Error Purging
    674 ,,Timeout for registered programs
    676 ,,TP not registered
    677 ,,Timeout for registered programs
    678 ,,TP is registered
    679 ,,TP is not registered
    720 ,,Security breach of registered programs
    721 ,,SNC deactivated
    722 ,,SNC required
    723 ,,SNC name not defined
    724 ,,Default SNC name not permitted
    725 ,,Protocol does not support SNC
    726 ,,No local SAP System
    727 ,,SNC required
    728 ,,Conversation ID not found
    729 ,,SNS must do the communication
    730 ,,Start of external programs deactivated
    731 ,,Gateway shut down
    732 ,,No external programs
    733 ,,Conversation ID does not match
    734 ,,Net conversation error
    735 ,,Monitor is not active
    736 ,,Conv-ID is not unique
    Errors in the CPIC Interface:
    450 ,,No storage
    451,,No side-info entry
    452,,TP-START failed
    453,,No initialization
    454,,"getlu" failed
    455,,"signal" failed
    456,,Timeout during conn. setup
    457,,CMALLC failed
    458,,CMSEND failed
    459,,Prepare-To-Receive failed
    460,,"mc_flush" failed
    461,,CMRCV failed
    462,,Argument missing
    463,,"get_allocate" failed
    464,,CMDEAL failed
    465,,TP-END failed
    466,,Max.no.of conv. reached
    467,,"snaopen" failed
    468,,"snactl" failed
    469,,No flush in IBM environment
    470,,"snaclse" failed
    471,,Status error
    472,,No side-info entry
    473,,No conversation
    474,,Connection closed manually
    475,,Connection closed automatically
    476,,No partner found
    477,,Confirm failed
    478,,Confirmed failed
    479,,GWHOST not in side-info entry
    480,,GWSERV not in side-info e.
    481,,PROTOCOL not in side-info entry
    482,,LU not in side-info e.
    483,,TP not in side-info entry
    484,,No conn.to gateway
    485,,gethostname failed
    486,,SAP_CMACCP not executed
    487,,Program not in argument list
    488,,Host not in argument list
    489,,Service not in argument list
    490,,Conv-ID not in argument list
    491,,Invalid parameter
    492,,LU62CVCT failed
    493,,LU62ATTCH failed
    494,,No CONV table
    495,,Incorrect conv.table
    496,,Invalid conv modification
    497,,NiHostToAddr failed
    498,,NiAddrToHost failed
    499,,Read operation tab.THOST failed
    500 ,,No side info file exists
    501 ,,CMRCV failed
    Technical details
    File
    Offset
    RecFm
    System log type
    Grp
    N
    variable message data
    6
    245700
    m
    Error (Function,Module,Row)
    R4
    9
    020223                                ThReceiCPIC-Erthxxhead7192

    Hi,
    It will be very difficult to solve without being on the customer site and having all information.
    Right now, the error code is network error...
    Kind regards,
    Yann

Maybe you are looking for