Syntax error. SAP 3.1 version - ECC6

Friends,
Following statement given syntaxt error in ECC6.
It is working fine in SAP 3.1.
I need to copy the code from SAP 3.1 to ECC6.
     DO VARYING l_char FROM l_text2+99
                                    NEXT l_text2+98.
Please help me in this regard ASAP.
Thanks in advance.

I was able to get the following to work:
DO 100 TIMES VARYING l_char FROM l_text99(1) NEXT l_text98(1) RANGE l_text.
ENDDO.
I had to add the "100 TIMES" or the loop continued beyond the range of the variable and short-dumped.
Hope this helps,
Mark S.

Similar Messages

  • MaxDB instance error sap netweaver trial version 7.0

    I installed sap netweaver trial version 7.0 in e drive which has got 60 GB.netweaver and sap logon front end installed and max db also installed suscessfully
    when configuring maxdb database i.e adding new instance  the following error appears.
    <b>-4 database instance not found</b>

    Yes, I have done it already. There's one tmp license that I cannot delete, and a row with my new license that I have delete, install new one, success message but does not work.
    I have tried to install a new period license before ending the previous one... I guess it could have influenced. Nevertheless I will try it again.

  • What is this syntax error?

    The standard SAP program SAPDBZDF giving error in ECC6.0 version in line 211:Field "%_GET" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement . . .
    The line declared is 
    IF B0SG-XASGL <> 'X' AND %_GET+10(1) <> ' '.
    What is the %_GET? how to eliminate the error?
    This code doesn't give syntax error in 4.0B version.
    If it is standard SAP report, please help me.

    Hi,
    this rather looks like some kind of inactive query, infostructure or other generated stuff.
    As already mentioned: Our system knows
    SAPDBDDF                                   Logical Database SAPDBDDF
    SAPDBIDF                                   Real Estate Logical Database
    SAPDBKDF                                   Logical Database SAPDBKDF
    SAPDBMDF                                   FM Master Data Mass Selection
    SAPDBSDF                                   SAPDBSDF Logical Database
    SAPDBVDF
    If you copied one of the standard logical databases to customer name space SAPDBZDF: I did this and I found OSS notes guiding through additional necessary process.
    Regards,
    Clemens

  • IDOC Syntax Error E0072 with status 26 after upgrade to ECC6.0

    Hi
    We have upgraded SAP R/3 from 4.6C to ECC6.0. After upgrade, when we create PO and output EDI, we are seeing this IDOC syntax error E0072 for Mandatory Segment E1EDK01. In 4.6C it was working fine with no issues, only after upgrade this problem started. It says E1EDK01 is missing which is mandatory. We are using basic type ORDERS01 with no extensions. When we see WE30 it looks fine, WE20 settings looks fine.
    Order of the segments got scrambled in upgraded version. First segment is E1EDP19001, this is supposed to be under E1EDP01 segment. There are two E1EDP19001 segments created but there were no sub segments to E1EDP01.
    Any help in this regard is highly appreciated.
    Thanks
    Pandiri

    User Exit activation and fixing the issue in user exit fixed this issue.

  • Syntax error after upgrade to ECC6

    Hi,
    I have customized infotype and BAPI in SAP 4.6. After upgade to ECC6, my Infotype is working fine, but my BAPI give this error : 
    The following syntax error was found in the program SAPLZBAPI_HR :
    "INCLUDE report "%_HR9000" not found."
    If I goto SE38 to recreate %_HR9000, SAP not allow me to continue and appear message "Do not use any special character".
    May I know how to resolve this problem ?
    Thanks a million.
    Regards,
    Eric

    Hi,
    In the ECC6.0 version, it seems that one of the INCLUDE that was generated for that infotype in 4.6 C ending.. with words....HR9000 was not transported or not found for that infotype. Please check all the includes..
    In SE38 you can enter the characters like %, so that error  is coming
    % means LIKE PATTERN ....HR9000 .
    Hope you understood.
    Regards,
    ANJI

  • Requirement to check the syntax error of Customize SAP Objects in existing landscape.

    Hi All,
    I have two requirements which are a s follows :
    1 )    Check the syntax error of customize SAP Objects in existing landscape except using the Tools which are already given by SAP( Example : Code           Inspector , Extended Syntax Check etc.). I have to create a program to fulfill this requirement.
    2 )    In case of SAP Upgrade is it possible to know the syntax error in advance that the existing source code will not work in the upgrade version?
      Please help me out to solve my issues. Thanks in advance.

    Dear Abhishek,
    For the code inspector, the syntax check and the extended syntax check, you can define a set of objects to be teste thru SCI:
    Go to SCI
    In the block 'Object Set', you can create a set. For ths, you have to give it a name, select with the icon left of the textbox if this is a global (for all users) or a local set and click the create Icon.
    in the next field, you can define which objects ... are part of the object set.
    When using SCII to execute the code inspector, you can specify this set instead of a transport(s) or programming objects.
    To run only the syntax check and or the extend syntax check, you can specify a check variant in SCI (third screen block) which contains only those tests or you can in SCII uncheck all tests except those 2.
    Regards,
    Hans

  • Syntax error in standard include RKEB090F in ECC6

    Hi,
    I have one issue with this include program RKEB090F. This program is being used in one of the custom program while checking this program we are getting syntax error field P_USEDB is unknown.
    When I compared 4.7 and ECC 6 version, the code contains in 4.7 version is
          FORM INITIALIZATION_EXIT                                      *
    FORM INITIALIZATION_EXIT.
    ENDFORM.
    but in ECC 6 the code contains
          FORM INITIALIZATION_EXIT                                      *
    FORM INITIALIZATION_EXIT.
       if rkb1d-smode = '7'.
         CALL FUNCTION 'AS_DATASOURCE_INIT'
           EXPORTING
             I_REPORT                   = 'KE30'
             I_REPORTTYPE               = 'TR'
           IMPORTING
             E_USE_DATABASE             = P_USEDB
             E_USE_ARCHIVE              = P_USEAR
             E_USE_INFOSYS              = P_USEAS
             E_ARCHOBJ                  = P_OBJECT
             ET_ARCH_SEL                = SO_FILES[].
         G_RKB2A-OBJECT = P_OBJECT.
         G_RKB2A-USEDB = P_USEDB.
         G_RKB2A-USEAR = P_USEAR.
         G_RKB2A-USEAS = P_USEAS.
         G_RKB2A-SO_FILES = SO_FILES[].
         PERFORM HANDLE_DATASOURCE USING 'EX'.
       endif.
    ENDFORM.
    due to this code I am getting the syntax errors. How can we know how this code is added.
    Please let me know if you get any inputs.
    Regards,
    Jyothi CH.

    Hi Guys,
    I am having the same syntax error with this include RKEB090F and the Field P_USERB, but instead the program is a SAP Program. I have been trying to archive a table and I keep getting this error for different G* programs. I regenerate one, the other one gives error. I tried regenerating all of them and I still got this error.
    Error in the ABAP Application Program
    The current ABAP program "SAPLKYP4_UC" had to be terminated because it h
    come across a statement that unfortunately cannot be executed
    The following syntax error occurred in program "GPC6ZZ9KJ35AEXCXNZFQDJG3
    in include "RKEB090F " in
    line 17:
    "Field "P_USEDB" is unknown. It is neither in one of the specified tabl"
    "es nor defined by a "DATA" statement. ."
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    PLEASE HELP
    --Thanks in Advance,
    Fiyaz

  • Syntax error in F110 while making proposal,upgraded from 4.7ee to ECC6.0

    Hi,
    We have upgraded the SAP from 4.7ee to ECC6.0.We are facing post upgradation issues.
    While executing proposal in Trx.code F110(APP),it is going to ABAP dump,throughing a syntax error FILL_PAYGR_FROM_BSEC.
    Please guide me to solve this issue.
    Regards,
    Nageswar Rao J

    I suggest to open an OSS call for that issue (component  FI-AP-AP-B).
    Markus

  • SYNTAX_ERROR unable to log in to SAP system Syntax error in program "SAPMSE

    hi SAP Experts,
    I have applied Basis patch 12 and I scheduled the background.  Backgroud job was terminated. System became slow. Then I stopped the server and restarted.  Now, I am unable to log in to SAP GUI by entering Username and Password and getting syntax error.
    Syntax error in program "SAPMSEM1".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program '????????????????????????????"
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occured in program "SAPMSEM1" in include
    "CL_SALV_FORM_ELEMET==========CU" in
    line 13:
    "the type "IF_SALV_FORM_CONFIG" is unknown."
    The include has been created and last changed by:
    Created by: "SAP "
    Last Changed by: "SAP "
    I am unable to access any transction code.
    Please help me..
    Thanks in advance...
    Raju

    hi,
    Thanks for your response.
    i haven't take any back up.  can u pls tell me step by step procedure to implement the SP with TP.
    your answer will be helpful..
    Regards
    Raju

  • Source code has syntax error in SAP PI7.1 Mapping Test

    HI All,
    IN SAP P7.1  created simple two data types, message types and Message Mapping with only 2 fields. While testing the mapping in Message Mapping it is giving the error as
    Source text of object Message Mapping: MM_Source_to_Target | http://abc.com has syntax errors:
    Source code has syntax error:
    I am able to activate the Datatypes and Message Types but not able to activate the Messge mapping.
    Please if any body faced the same problem please give the solution.
    One more thing is I am able to test the Message Mapping available in BASIS 7.1 Software Component objects. It is executing successfully...
    but otherthan this SWC it not working success fully.....
    Regards
    Sridhar Goli

    Hi David,
    please check the default trace. It may contain the entry:
    Error in compiling : java.io.IOException: Not enough space
    If that's the case, maybe there's too little space for the swap file/device.
    You should ensure that at least 2X (preferably 3X) of Heap (-Xmx) is configured as real swap
    Hope that helps.
    Regards,
    Gábor Klauzer

  • Syntax error in standard SAP program.

    Can someone help me. I'm getting the following error while executing
    "Include /sapboq/bos_lbos01top, No component exists with the name /sapboq/mitem. Check the program SAPLBOS01"
    Error in the ABAP Application Program
    The current ABAP program "BS01_SALESORDER_GETDETAIL=====FT" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "SAPLBOS01 " in include
    "/SAPBOQ/BOS_LBOS01TOP " in
    line 9:
    "No component exists with the name "/SAPBOQ/MITEM". ."
    Edited by: nithinrayal on Jul 12, 2010 9:54 PM

    Hi,
    Go to txn SE38 and display program "BS01_SALESORDER_GETDETAIL=====FT". Then do a syntax check. It should tell you what is the error.
    I guess its some support pack that is missing. Try contacting SAP for this.
    Regards
    Prasenjit

  • Syntax error in SAP-standard program

    Hi experts,
    i am facing syntax error in sap standard program.how i can solve that error .
    Error in include LFKPZTOP  and errro is at line 70.
    please help me ASAP.
    Thanx & Rgds
    Zeba

    Hello Zeba,
    go to include LFKPZTOP and check in line 70.
    if you are not able  to solve that.
    post the same line, so that we can understand what is error.
    as of my checking the error is "iban is already defined in the include structure bus0bk ,
    but i think it dosn't effect your programing.
    Regards!
    Edited by: Prasanth M on Feb 10, 2009 5:04 PM

  • Code working fine in Enterprise version giving syntax error in Rel 4.6C

    Hello All,
    <b>Consider the following piece of code.</b>
    FORM fill_itabs  TABLES   p_t_table
                                            p_t_table_dummy.      
    Internal table to be used for dynamic where condition
      DATA: lt_wherecond TYPE STANDARD TABLE OF ty_wherecond,
    Structure for dynamic where condition
                ls_wherecond TYPE ty_wherecond.
      p_t_table_dummy[] = p_t_table[].
      REFRESH lt_wherecond[].
      CLEAR   ls_wherecond.
      ls_wherecond-data = 'kunnr = p_t_table_dummy-kunnr'.
      APPEND ls_wherecond TO lt_wherecond.
      SELECT kunnr INTO TABLE gt_kunnr
          FROM kna1
          FOR ALL ENTRIES IN p_t_table_dummy
          WHERE (lt_wherecond).
    ENDFORM.
    This is working fine in Enterprise version, but when I am trying the same in Rel 4.6C, I am getting a syntax error at the Select statement which states,
    "The WHERE condition does not refer to the FOR ALL ENTRIES table.-"
    Could anyone please suggest how to avoid this error?
    Regards
    Indrajit

    Hi Chemmam,
    yes, that will be a version problem. The general rule says, always use the NWDS corresponding to your server, and the main reason are the differences within the webdynpro implementation.
    So if you have a 6.40 with SP13 for example, use NWDS 2.0.13 as the base of your deployment.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance! This also holds for: /thread/80658 [original link is broken]

  • SAP Netweaver Trial version error at stage 4

    Hello,
    I tried to install the SAP Netweaver trail version on my system, all the steps I followed are as per instructions. BUt I am getting into this error message, please let me know if someone can help me.
    Creating node $(DIR_TRANS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    vasu\sapmnt\ with type DIRECTORY: can't create parent node..
    Thanks in Advance, Vish
    ERROR      2006-09-11 17:47:44
               CJSlibModule::writeError_impl()
    CJS-30129  Creating node $(DIR_TRANS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    vasu\sapmnt\ with type DIRECTORY: can't create parent node..
    ERROR      2006-09-11 17:47:44
               CJSlibModule::writeError_impl()
    CJS-30129  Creating node $(DIR_TRANS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    vasu\sapmnt\ with type DIRECTORY: can't create parent node..
    ERROR      2006-09-11 17:47:44 [iaxxgenimp.cpp:653]
               showDialog()
    FCO-00011  The step createSystemDirectories with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_System|ind|ind|ind|ind|6|0|createSystemDirectories was executed with status ERROR .
    INFO       2006-09-11 17:48:18 [iaxxgenimp.cpp:692]
               showDialog()
    An error occured and the user decided to rety the current step: "|NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_System|ind|ind|ind|ind|6|0|createSystemDirectories".

    Hi,
    I am having the same problem when installing SAP NW 2004s (Database Instance). Did you solve this problem?
    ERROR      2006-10-18 10:09:48 [iaxxgenimp.cpp:736]
               showDialog() FCO-00011  The step createSystemDirectories with step key |NW_Java_DB|ind|ind|ind|ind|0|0|NW_System|ind|ind|ind|ind|6|0|createSystemDirectories was executed with status ERROR .
    tks.
    Daniel Silva

  • Error with ABAP in SAP HANA studio  Version: 1.80.3

    Hi,
    Am using SAP HANA studio Version: 1.80.3 and have got the ABAP perspective in here.
    I am able to connect to the SAP ABAP system via the studio, however when I open the folder, am not able to open the ABAP system folder and see objects.. on expanding the system node, I see nothing!.
    I am able to connect to this same system with HANA Studio Version: 1.0.70.
    Can you please suggest what might be wrong?
    Regards
    Sudarshan
    On a related note, when I click on the "Check for Updates" button, I get a PROXY authentication required error. Is there a way to configure the proxy authentication details in HANA studio version 1.80.3?

    PFA the screen prints of the errors and the version

Maybe you are looking for

  • [Solved] xf86-video-Intel-2.99.912-1 breaks xorg

    After the update yesterday of the this driver my xorg does not start anymore. I reverted to xf86-video-Intel-2.99.911-2 and the problem went away. Can someone please shed some light on this. Below is the output of Xorg.0.log. [ 1261.238] X.Org X Serv

  • Problems with rsh in solaris 8

    I have tried to execute a command with "rsh", like a "prstat", and it works but if I execute a "snoop" command, I see that the machine that runs the command(rsh) lost information. There is packets from TCP that has been return (in some occasions part

  • New to arch with a tiny problem of xorg.......

    Hi there, I just installed the lovely archlinux in my PC,and everything is OK except the xorg.I could successfully start X without the xorg.conf file ,while I failed to start that with a xorg.conf file created from the Xorg.0.log file as the wiki sta

  • Segment Type

    Hi all, A data extract consists of sequence of data segments. Data segments are characterized by segment type and segment Data. The following segment types are available: 01     file Header 02     Segment directory 03     Meta data 04     Selection c

  • Multiple 300 Class assignments to a given matl

    Experts, In VC, can we have multiple classes of class type 300 assigned to a given matl? I see that SAP allows it, however, from a functioning perspective, I'm thinking how this would work. Master data set up thru transactional data creation, I'm won