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

Similar Messages

  • 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

  • E-Recruiting: ALE Status 51 Posting Error - "Password is not long enough"

    Hi experts!
    We are having problems occationally posting idocs in our nightly ALE transfer from SAP to E-Recruiting.  The error for the segment with a status 51 is "Password is not long enough (minimum length: 6 characters)".  The system is trying to post IT0105 Sty 1.
    This only seems to happen when either a new user is created in our SAP system.  We are running SAP ECC 6.0 and E-Recruiting 6.0 sp10.  In both systems you are required to have a password length of at least six characters.
    Users in our SAP system are needed in E-Recruiting for the purpose of identifying internal candidates.
    If both systems currently require that you have a password length of at least six characters, why would we recieve this error message when attempting to post idocs?
    The concern here, obviously, is that if one segment fails to post in the idoc, the entire idoc fails to post.
    Any help would be appreciated!
    Thanks!
    Ryan

    Hello,
    We are still having a problem with failing iDocs everytime we pass over IT0105 Sty 1 records from our SAP system to E-Recruiting.
    Would anyone happen to know where I should start looking to troubleshoot this error message?
    "Password is not long enough (minimum length: 6 characters)"
    Currently both systems require that your password be at least 6 characters long, which makes this message even more perplexing.
    Having a better understanding of how RBDAPP01 processes inbound IDOCS in status 64 would help.  We are using message type HRMD_ABA.  Our data filter looks like....
    Infotype: 1000
    Object Type: C, O, S
    Infotype: 1001
    Object Type: C, O, S
    Subtypes: A002, A007, A008, A012, B002, B007, B008, B012
    Infotype: 1001
    Object Type: O, S
    Subtypes: A003, B003
    Infotypes: 0000, 0001, 0002
    Object Type: P
    Infotype: 0006
    Object Type: P
    Subtype: 1
    Infotype: 0105
    Object Type: P
    Subtypes: 0001, 0010   
    So the question is how is IT0105 Sty 1 being processed when RBDAPP01 runs?
    Thank you for your help!
    Ryan
    Edited by: Ryan Hubbell on Mar 31, 2009 7:00 PM
    Edited by: Ryan Hubbell on Mar 31, 2009 7:47 PM

  • 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

  • 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?

  • 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

  • SSRS 2008 Column Chart with Calculated Series (moving average) "formula error - there are not enough data points for the period" error

    I have a simple column chart grouping on 1 value on the category axis.  For simplicity's sake, we are plotting $ amounts grouping by Month on the category axis.  I right click on the data series and choose "Add calculated series...".  I choose moving average.  I want to move the average over at least 2 periods.
    When I run the report, I get the error "Formula error - there are not enough data points for the period".  The way the report is, I never have a guaranteed number of categories (there could be one or there could be 5).  When there is 2 or more, the chart renders fine, however, when there is only 1 value, instead of suppressing the moving average line, I get that error and the chart shows nothing.
    I don't think this is entirely acceptable for our end users.  At a minimum, I would think the moving average line would be suppressed instead of hiding the entire chart.  Does anyone know of any workarounds or do I have to enter another ms. connect bug/design consideration.
    Thank you,
    Dan

    I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
    If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
    <ChartFormulaParameter Name="Period">
                      <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
    </ChartFormulaParameter>
    What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
    A side note:
    If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

  • 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.

  • Error: You are not a receiver of the work item in Leave Request Deletion

    Hi All,
    We are using customized leave request workflow which is the copy of standard leave request workflow.
    All tasks are assigned as general tasks and assigned in SWFVISU.
    But the employees are unable to delete the leave request with Sent status.
    Scenario:
    Employee applies leave.
    Now when the employee tries to delete / cancel the leave request before approval (Status is SENT), the employee is getting the error
    "You are not a receiver of the work item".
    This issue is happening for only the leaves which are in "SENT" status and though the employee is able to delete the "REJECTED" leave requests. The employee is also able to change / modify the leave requests without an issue.
    We are on EHP 7 with SP level 22 and running this on Portal 740.
    I have gone through the threads related to this issue but did not get any success.
    Please let me know if I am missing something that can resolve the issue .
    Regards,
    Anurag

    Hi Sid,
    As I mentioned above, we are on EHP 7 with SP 22 and hence the above note 1066288 does not apply in our case.
    Moreover, we're using WDA based application and the above note seems to be the one for XSS based on WDJ.
    Regards,
    Anurag

  • 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

  • Apple A/V cable not long enough

    it seems to me I can't connect the two audio jacks to my Stereo when I have the yellow Video one in the TV - - NOT LONG ENOUGH! (the 3-cable part) - i would'nt mind but my stereo is directly under my TV
    the video cable needs to be longer I think - - or the two audio ones - or maybe all 3 then.....also, when those two audio L/R are to stereo, there is no more to feed to TV, so sound from the stereo only, none from TV
    - so what to do about this? - if anyone knows about splitters or cable extensions, show me jah light

    You can go to Radio Shack, Best Buy, etc. and get a generic camcorder A/V-to-RCA cable. The cable will have the longer head phone jack like the Apple A/V cable but may come in longer lengths. One note though, the normal color outputs using the camcorder cable are not correct when using it with an iPod.
    Plug the red RCA plug into your TV's yellow RCA jack.
    Plug the yellow RCA plug into your TV's white RCA jack.
    Plug the white RCA plug into your TV's red RCA jack.
    See for details:
    http://www.macdevcenter.com/pub/a/mac/2005/11/18/video-ipod.html
    <Added> - After I posted a reply I noticed you're in Dublin, so the stores I listed may not make sense. Go to any electronics store and ask for the camcorder cable I mentioned. If they don't have a cable long enough for you, ask for a RCA jack extension cable. That will work too.

  • While trying to copy files using home sharing, get the error you do not have enough access privileges

    I'm trying to use "Home Sharing" feature in iTunes to import files from another user on the same iMac.  We have 5 users and one user is unable to import files from other users.  We get the error "You do not have enough access privileges to perform this operation."  All users are logged in using the same Apple ID and everyone else can import files.  What gives?

    Had the same thing happen to me a few weeks back when I switched computers and migrated.  Here's what worked on my iMac, so maybe it'll work on your iPad, too.  Go to User(your home folder)/Music.  Select/highlight your "Music" folder.  Then do Command-I ("Get Info" from the File menu), click on the padlock icon in the lower right of the new window.  Enter your user password.  Click on your username just above the now-open padlock.  Select "Read & Write" if it's on "Read Only," "Write Only," or "No Access."  Now having your user account with "Read & Write" privileges (it may have been this way already; still do this next step), click on the gear on the bottom-center of that window.  Click on "Apply to all enclosed items."  When the pop-up says "Are you sure?" (or the equivalent), say "yes."  This will grant access privileges to your user account for all the music files inside your music folder--all your iTunes stuff included).  Then you should be good to go.

  • My serial number is not long enough?

    Hi, I recently bought Photoshop elements 12 and am trying to install it on to my Mac Book Pro.
    I bought the photoshop from a store, so I am trying to enter the serial number on the box when installing. The serial number given is 18 characters long, this is not long enough to fit the required serial number. The other numbers on the back are also not long enough.
    Please can someone help??

    Hello Lara,
    you purchased your product from these firms like Amazon. You didn't get a serial number, only a code with which you can request a serial number from Adobe. Please have a look at - 99jon said it above - http://helpx.adobe.com/x-productkb/global/find-serial-number.html. (Start here: How did you purchase your product?)
    The following part, so I just see at least, ceased to exist on my Adobe website, everything takes place in the link from above. I leave it as an info yet, it might still fit for you. For this purpose, please click your way through to your Adobe Store and find the button "Get Serial Number". Fill in the form and after a while you will get the real serial number.
    If necessary and for further questions click through http://helpx.adobe.com/contact.html and if "open" please use the chat, I had the best experiences. I quote from Adobe's employee Preran: The chat button is activated as soon as there is an agent available to help.
    Hans-Günter

  • Some songs are not longer available and an ! exclamation mark appears before the song. What should I do?

    Some songs are not longer available and an ! exclamation mark appears before the song in iTunes. What should I do?

    When you open iTunes it opens a database file that contains the locations of the media files you use to play the music.  If something has happened to invalidate where iTunes thinks that file is stored you get a !   There are many possible reasons.  Sometimes a computer can start to lose files.  In other situations it is something you did such as renaming a folder or drive iTunes uses, or moving the files manually.  If you can give us hints we can start working our way down the long list.

  • [solved] usb-storage-devices (sticks) are not longer mapped via citrix

    Hello,
    at work we have linux-clients (Arch, Plasma5, updated weekly) connected to a computing center (Win 2008 Servers) via citrix-receiver. In the past, usb-storage-devices were mapped, so we could acces them in Win. Now, they are not longer mapped. I can't say, since when. USB-Sticks are not in daily use. The computing center says, nothing has been changed there. So can someone help me to fix this issue?
    Found solution myself: https://wiki.archlinux.org/index.php/Ud … udisks2.29
    Last edited by uhoso (2015-04-23 08:57:49)

    Hello,
    at work we have linux-clients (Arch, Plasma5, updated weekly) connected to a computing center (Win 2008 Servers) via citrix-receiver. In the past, usb-storage-devices were mapped, so we could acces them in Win. Now, they are not longer mapped. I can't say, since when. USB-Sticks are not in daily use. The computing center says, nothing has been changed there. So can someone help me to fix this issue?
    Found solution myself: https://wiki.archlinux.org/index.php/Ud … udisks2.29
    Last edited by uhoso (2015-04-23 08:57:49)

Maybe you are looking for

  • PhotoShop Elements 4.0 works on MacBook Pro but does not on iMac (same OSX10.6.8)?

    Photshop elements 4.0 worked fine on my MacBook Pro (same OSX 10.6.8) but when I installed it on my new iMac, it continually freezes and crashes.  Any suggestions? Also, how do I uninstall this program on the Mac?  Used to "Remove Programs" on Window

  • How do I geotag photos in iPhoto for the iPhone?

    I decided to purchase the iPhoto app for my iPhone 4S after carefully reading through the description to make sure it could do most of what I wanted. Most importantly a statement in the description said I could add location data, comments & even the

  • Intermedia and SQL*Loader

    I created a small test table to try and figure out the syntax for the control file for SQL*Loader. I'm using what I found on technet but I can't seem to get past -> ** SQL*Loader-416: SDF clause for field LOCALDATA in table QUERY_INTERMEDIA reference

  • PrinterJob.lookupPrintServices() issues

    We deploy and run JBoss 5.1.0GA on windows 2003.The JBoss is running as window service. On the machine, we configure two printers: 1. network printer 2. a shared printer on another Window XP machine. PrintService[] printServices = PrinterJob.lookupPr

  • Mouse 'deadzone / sleeping' in Xorg?

    I have been tweaking my mouse settings to suit the odd game of CS:GO, and I found the following problem with the way the mouse is handled: Small mouse movements (less say under 3 pixels per second) don't register on X or an OpenGL game etc, which is