The work area "IT_ITAB" is not long enough

I created a interna table IT_ITAB with OCCURS 0, But it's giving error as
<i><b>The work area "IT_ITAB" is not long enough</b></i>.
So pls send the correct syntax to solve the error....

<i><b>data : it_data like standard table of  mara occurs 0 with header line.</b></i>
Above syntax is not working...its giving error as "OCCURS 0 is not expected".
I have one more dought...In the report I am providing some of the fields from my own database table.
1. Can I provide the fields when using the WITH HEADER LINE concept.?
2.Can I avoid BEGIN OF after "DATA :"?
3.Pls tell me the exact use of STANDARD key word.
4.What is the memory sys assigning dynamically when using OCCURS 0?
5.What is the syntax to increase the memory?

Similar Messages

  • Work area "itab" is not long enough

    Hi All,
    Here am facing a trouble with internal tables.
    I need an internal table for processing. I declared a table type refering to an structure. The program is throwing me an error "Work area "itab" is not long enough. "
    Can anyone telme what's wrong with the code?
    Thanks,
    Anjum.

    Hi Nasarat,
    if you look at carefully you definitions of tables
    TYPES: BEGIN OF tbl,
    rc_n TYPE c,
    rec_n(2) TYPE n,
    END OF tbl.
    DATA: itab_org type tbl1 occurs 0 with header line,
    itab_rc type tbl1.
    your DATA statement referes ITAB_ORG to a Type tbl1 which does not  exist in your TYPES statement.
    your DATA statement refers to ITAB_ORG is not a internal table but a WORK Area as you have declared it as ITAB_ORG type tbl1.
    If you want to declare and internal table ITAB_ORG - decalre it as
    Data:ITAB_Org type standard table of tbl.
    and define a explicit work area
    DATA: wa_org type tbl.
    Never use Occurs 0 and Header line as it coccupies lots of memories and your programs may dump in future . So please avoid occurs 0 and header line and instead decalre an explicit WORK AREA.
    Similary declaration for internal table ITAB_RC it should be
    DATA: ITAB_RC type standard table of tbl,
              WA_RC type tbl.
    then after these declarations when you do a SELECT statement it should be
    SELECT rc_n rec_n into ITAB_ORG from<DB table>.
    The fields as declared in types should be called in the same sequence as you have defined above OR use INTO CORRESPONDING-FIELDS OF ITAB_ORG.
    Hope this reolves your query and was useful.
    if yes please do reward suitably
    Thanks
    Venugopal

  • Work area it_input is not long enough

    Hi,
    when am trying to check this one it is saying that it_input is not long enough.
    tables: lfa1.
    types: begin of t_input,
           lifnr type lifnr,
           end of t_input.
    data: it_input type standard table of t_input.
    data: wa_input type t_input.
    select * from lfa1 into table it_input where lifnr = lfa1-lifnr.
    write:/ lfa1-lifnr.

    hi,
    As you are using statement in which select *  wil get all the fields in the lfa1 table into your internal table, but  you are taking wa_input sturcture type t_input which is having only one field so u are getting error work are is no longer enough.
    so u use like this
    select lifnr from lfa1 into table it_input where lifnr = lfa1-lifnr.
    loop at it_input into wa_input.
    write : / wa_input-lifnr.
    endloop.
    hope this helpful
    regards
    dilip

  • The work area itab is not enough

    HI all,
    i have written the following code to print data from yemptab
    But i'm gettin an error saying that "the work are itab is not enough ". can anyone please guide me here. i'm a fresher in abap.
    REPORT  YEMPDETAILS.
    TABLES: YEMPTAB.
    DATA:  BEGIN OF ITAB OCCURS 20,
              EMPNO TYPE YEMPTAB-EMPNO,
              EMPNAME TYPE YEMPTAB-EMPNAME,
              EMPCITY TYPE YEMPTAB-EMPCITY,
           END OF ITAB.
    SELECT * FROM YEMPTAB INTO TABLE ITAB.
    LOOP AT ITAB.
      WRITE: /
        ITAB-EMPNO,ITAB-EMPNAME, ITAB-EMPCITY.
    ENDLOOP.
    Edited by: user2487 on Jul 2, 2010 12:29 PM

    Hi,
    Use TYPES and Workarea.
    types : begin of ty,
           EMPNO TYPE YEMPTAB-EMPNO,
           EMPNAME TYPE YEMPTAB-EMPNAME,
           EMPCITY TYPE YEMPTAB-EMPCITY,     
         end of ty.
    DATA: itab type standard table of ty,
          wa type ty.
    SELECT * FROM YEMPTAB INTO TABLE ITAB.
    LOOP AT ITAB into wa.
    WRITE: /
    wa-EMPNO,wa-EMPNAME, wa-EMPCITY.
    ENDLOOP.
    Regards
    Vinod

  • HT1665 I just purchassed a Lightning adapter for my iPhone 5.  My car came with the normal iphone 4 connector.  I have a protective cover on my phone but now the connector will not work as the lightning connecting tong is not long enough to make contact.

    Lightning adapter will not work with iPhone 5 protective cover

    Your case designer should have done their homework .
    They would have full details of the iPhone and its accessories
    assuming they are a developer status

  • Internal table - work area not long enough

    Subject changed by moderator.  Please try to use a more meaningful subject in future
    The work area "ITAB" is not long enough. how to solve this problem.
    Edited by: Matt on Nov 14, 2008 10:20 AM

    please check the order of the fields you are passing to your internal table.
    Their can be many  possible cases .
    a)
    internal table has less number of fields and u are passing more fields.
    b)
    suppose Itab has field Vbeln and it`s length is 10 and u are passing filed having length
    12.
    Please check that.
    Regards
    Neha

  • ERROR: work area not long enough

    Hello experts,
    I have a submit event in which I was declaring one work area named "ls_data".
    I have a DDIC structure ZNEWEMP999_S.
    I wrote,
    DATA ls_data type ZNEWEMP999_S.
    It's giving an error "The work area "LS_DATA" is not long enough.long enough".
    Can any one suggest me how to resolve it.
    Regards,
    JAVED.

    Try this....
    SELECT *
       INTO <b>CORRESPONDING FIELDS OF</b>
                    TABLE itaBTWO      
                        FROM ZDOLTARC03
           WHERE SEARCHFLD EQ WAONE-SEARCHFLD
                          ORDER BY SEARCHFLD.
    Regards,
    Rich Heilman

  • The import parameter of a RFC FM is not long enough

    Hii
    I have a standard FM and one of the import parameter field is not long enough for. 
    Instead of copying the RFC FM please advise how can i change the FIELD TYPE?
    What is the most appropriate solution

    If it is a standard FM, it will have it's import parameters type with reference to Data Dictionary. So, if this parameter is not long enough for YOU (or better said, for the value you want to assign to it), there is nothing you can do about it.
    For example when creating a business partner, with a Last name of more than 40 characters, you will not be able to store this name in SAP anyway, since in SAP the last name is typed as CHAR40.

  • Clip for trailer won't load, regardless of the size the error message keeps popping up, "That clip is not long enough. Choose a longer clip for this part of the trailer."

    Clip for trailer won't load, regardless of the size the error message keeps popping up, "That clip is not long enough. Choose a longer clip for this part of the trailer."

    I got it out!
    Here is how.
    None of the Apple-suggested ways worked. However, before totally giving up I started Roxio Popcorn and pressed the big eject button on it. It came out effortlessly!
    So, I thought "Weird..."
    I put the CD back in and reproduced my original problem. I got it out just as easily using Roxio Popcorn Eject feature.
    So, I then thought "Maybe it is the disk?" There is nothing wrong with the disk as far as I can tell. It is perfectly round, has a smooth label-side surface. It is not even a label, it is a standard software install disk you buy in stores.
    I inserted a different disk. The mini mounted it, I browsed it, and then ejected it by dragging it to trash. Worked fine.
    I tried a few other disks.
    The drive seems to work fine.
    Maybe that CD is cursed, I dunno. I tried that disk in my PowerBook and it works fine there.
    Who knows ?
    I am still backing up my hard drive as I type this message in case I need to take it to the store.

  • Work area or table not referenced statically in the program

    Hi Friends,
    When i make extended syntax check for my program, i am getting error as this work area or table not referenced statically in the program .
    How can i overcome that .
    Please give solution nfor this .
    Thanx.
    Title was edited by:
            Alvaro Tejada Galindo

    While Rich has already provided you the right solution, I think you are concerned about this error only because of your "Project Standards" - which says no EPC errors.
    So delete the work area or field from your data definitions if you think that it is not being used.
    If you think it being used dynamically put a comment of " #EC NEEDED next to it. The error will now be hidden.
    Regards,
    Srihari

  • Problem the workarea xyz is not long enough

    hi all ,
                I was debugging my code in update task .
    Suddenly my program has started giving error "the workarea xyz is not long enough"
    at statement :
    MODIFY zsdabc FROM TABLE xyz.
    Plz help .
    Thanks .

    MODIFY zsdabc FROM TABLE xyz.
    The structure of XYZ is not the same (length, no. of columns, column-definition) as ZSDABC.  Is XYZ defined as 'type ZSDABC'?  Don't forget your client/mandt field (and to populate it) if it exists in ZSDABC.

  • G'day, i am trying to type into an adobe document using the typewriter function. However everytime after i type the text vanishes. It is almost as if the text is white and vanishes into the background. However this is not the case as the works are not vis

    G'day,
    I need some help, i am trying to type into an adobe document using the typewriter function.
    However every time after i type the text vanishes. It is almost as if the text is white and vanishes into the background.
    This is not the case as the works are not visible regardless of the background color.
    The text box remains available and can be edited if clicked on, also if i double click on it the typed words become visible and editable, however once i close the box i cannot see them on the screen.
    I would appreciate any help i can get, i cant seem to do anything using properties or view.
    Thanks 
    Tiernan

    Hi Sara,
    See response to your questions below:
    1.     Are you running into this issue in a specific PDF, or in all of them?
    A.     All of them
    2.     What version of Acrobat are you using (and, are you on Mac OS or Windows?).
    A.     Using Acrobat 10.0\Acrobat on Windows
    3.     If you look at the text properties on the Tools panel (under Format), what color is the text swatch?
    A.     Test swatch for the text is black
    4.     What happens if you change the text color?
    A.     Nothing.
    I look forward to hearing back from you.

  • The work area (or internal table) "IT_ZLE_LAGERPLANUNG" is not flat,

    ***Data declaration
    TYPES : BEGIN OF t_zle_lagerplanung,
               SEl,                               "stores which row user has selected
               kdauf TYPE zle_lagerplanung-kdauf,
               kdpos TYPE zle_lagerplanung-kdpos,
               etenr TYPE zle_lagerplanung-etenr,
               papiermaschine TYPE zle_lagerplanung-papiermaschine,
               runnr TYPE zle_lagerplanung-runnr,
               prio  TYPE zle_lagerplanung-prio,
               werk TYPE zle_lagerplanung-werk,
               durchmesser TYPE zle_lagerplanung-durchmesser,
               breite TYPE zle_lagerplanung-breite,
               anzle TYPE zle_lagerplanung-anzle,
             occupied TYPE zle_lagerplanung-text30,
             free TYPE zle_lagerplanung-text30,
               lgpla TYPE zle_lagerplanung-lgpla,
               lgtyp  TYPE zle_lagerplanung-lgtyp,
               art TYPE zle_lagerplanung-art,
               anzhoehe TYPE zle_lagerplanung-anzle,
             zindicator TYPE zle_lagerplanung-text30,
               fa TYPE zle_lagerplanung-fa,
               field_style  TYPE lvc_t_styl, "FOR DISABLE
    END OF t_zle_lagerplanung.
    I am getting the data in internal table by using thiis select statement.
      SELECT kdauf kdpos etenr papiermaschine runnr prio werk durchmesser breite
             anzle lgpla lgtyp art anzhoehe fa
        FROM zle_lagerplanung INTO CORRESPONDING FIELDS OF TABLE it_zle_lagerplanung
       WHERE kdauf IN s_kdauf
    "     AND kdpos = p_kdpos
          AND KDPOS IN s_kdpos
         AND werk = p_werks.
    But while updating the particular field in ztable using this statement
          UPDATE zle_lagerplanung from table it_zle_lagerplanung.
    it is giving syntax error
    "The work area (or internal table) "IT_ZLE_LAGERPLANUNG" is not flat, or
    contains reference or internal tables as components. components.
    components. components. components."
    Could any one help me out how to resolve this problem....
    Thanks in advance

    Hi Shyamal,
    lvc_s_styl is a structure so you will get the same error.
    for your select and update statement you dont need field "field_style".
    regards
    rea

  • "The Specified Network name is no longer enough"

    Hi,
    We have our (Windows Server 2008 R2) file server in remote location. I have a Linux server in my location...and I am using Windows 7 Pro 64-Bit.
    we have Firewall to Firewall(Both are Sonicwall) VPN enabled between remote site and our location.
    I have a Samba Share in my Linux server. I mapped this share as "P"drive in my Windows 7 PC.
    While I am copying files from "File server" to local "P" drive....{ I am using xcopy command to copy the files: xcopy "\\fileserver\criss\" "P:\criss\" /Y}..it copies for few seconds and then it says " The specified
    network name is no longer enough". some times it copies for long time and then says the same error.
    I was able to do this till last week...Some how suddenly its not working...I automated this using Task Scheduler...it worked for 2 months without any issues.
    Everything works fine in my Windows XP PC. (Clearly it seems to be an issue with windows 7)
    Please help me with this.

    Kdhara wrote:
    M able to copy the files from server to local C, and able to copy to
    samba server.....However somehow, when I try to access the fileserver
    using RUN command (Eg:\\fileserver <file://\\fileserver>) sometimes
    it works fine and sometimes it wont connect and says "The Specified
    Network name is no longer available"....I observerd the both ways
    around 1-2 Hours ....
    So you do not have the issue, that a filecopy operation aborts in the
    middle of the operation as you said in your root-post, but that you
    sometimes cannot access your W2008R2 server via UNC-path?
    In this situation I'd first check, that you do not have any
    offline-files defined for that server (- because you need to be
    patient, if using this feature, as it takes awhile for this feature to
    detect changes in connectivity).
    Further as you are using Netbios name resolution and accessing a server
    in another subnet do you have a valid WINS-server, which has an entry
    for your W2008R2 server, configured on your Win7 PC - or do you have a
    correct entry in the LMHOSTS file for your W2008R2 server?
    But generally speaking it is quite normal for Netbios name resolution
    to fail for quite some time if the Master Browser service in your
    subnet changes due to a change of network topology like shutting down a
    computer or starting up a computer, etc. . If you don't need the
    browsing capabilities, which netbios delivers, it is much more reliable
    and quicker to use DNS as name resolution for Windows networks, too.
    Wolfgang

  • Err: workarea is not long enough...

    Hi all,
    Please solve this problem.......
    Used this Statement in FM....
    INSERT zdsd_hh_rahd FROM TABLE lt_rahd_delete.
    Where 'zdsd_hh_rahd' is a Transp. Table with 25 fields.
    'lt_rahd_delete' is declared as:
    DATA: lt_rahd_delete        TYPE /dsd/hh_rahd_s_tt.
    '/dsd/hh_rahd_s_tt' is a Table Type. 
    Has Line Type as: '/DSD/HH_RAHD_S',
    Key Defination as: Key component.
    '/DSD/HH_RAHD_S' is a Structure refering to Table '/DSD/HH_RAHD'.
    '/DSD/HH_RAHD' and 'zdsd_hh_rahd' hase the same fields.
    But i am with an Error saying that:
    Workarea 'lt_rahd_delete' is not long enough...
    Edited by: CHELIKANI KUMAR on Dec 20, 2007 5:50 PM

    Use INSERT zdsd_hh_rahd FROM TABLE lt_rahd_delete ACCEPTING DUPLICATE KEYS.
    Work area wa should always be declared in the ABAP Dictionary with respect to the database table or the view so Declare
    Data:lt_rahd_delete  type zdsd_hh_rahd occurs 0.
    Pls Let me know the Status.
    Kanagaraja L
    Edited by: Kanagaraja  Lokanathan on Dec 20, 2007 1:07 PM

Maybe you are looking for

  • Crystal Reports Dynamic Parameters with SAP Business One

    Okay, I've got this very strange issue with dynamic parameters in Crystal Reports connected to SAP Business One. Let's start with the software versions: - Crystal Reports 12.3.0.601 - SAP Business One 8.8 (8.80.231) SP: 00 PL: 13 - Windows XP SP3 (SB

  • SharePoint 2010 migration - web part gallery shows "This item is no longer available ... Click OK to refresh page

    This error IS on the WEB PART GALLERY itself.  I have dealt with it on other libraries by deleting the listview web part and adding a dataview web part.  However, if you try to add a dataview web part the web part gallery  the gallery is not availabl

  • Print in Black only

    I have a full cartridge of black ink. I am out of one of the colors. Can I print in black only or do I need to replace the color cartridge in order for my printer to work?

  • Aperture image rotation

    HI, I am new to macs and aperture and usually use photoshop. Can anyone tell me how to rotate a picture by anything other than 90 degrees? I'm probably just not looking in the right place, in ps it was under image-rotate-custom. Also I cant find this

  • In search of new battery and adapter

    Hello All I was wondering where people have bought new AC Adapters for their TiG4 Powerbooks? Are there ones out there that will work with the system? Also, how about batteries? Thanks so much for your help Jeff