Extended Program check getting this error

LOOP AT LT_LINES.
      CONCATENATE  IT_FINAL-TEXT  LT_LINES-TDLINE INTO W_FINAL-TEXT SEPARATED BY SPACE.
    ENDLOOP.
    APPEND W_FINAL TO IT_FINAL.
    CLEAR  W_FINAL.
In extended program check iam getting the error as : At "LOOP AT itab" one of the additions "INTO", "ASSIGNING" or "TRANSPORTING NO
FIELDS" is required in the OO context . .can any one suggest me to avoid this error
Moderator message - Moved to the correct forum
Edited by: Rob Burbank on May 19, 2009 9:06 AM

Hi,
Since header line concept has become obsolete now a days using the concepts of header lines will give an EPC error. something like the one which you have got. this is one of the concept of header line.
So it is better to create a work area of the table which you have declared and then in loop at lt_lines use the addition into work_area, something similar to the code below.....
data : fs_work_area like line of lt_lines.
LOOP AT LT_LINES INTO fs_work_area.
CONCATENATE IT_FINAL-TEXT fs_work_area-TDLINE INTO W_FINAL-TEXT SEPARATED BY SPACE.
ENDLOOP.
in the code whereever you uare using lt_lines as a work area just change it with fs_work_area only for work area purpose....
Regards,
Siddarth

Similar Messages

  • Whenever I try to update my iPhoto program I get this error message "The product distribution file could not be verified. It may be damaged or was not signed."

    Whenever I try to update my iPhoto program I get this error message "The product distribution file could not be verified. It may be damaged or was not signed."

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I cannot update my Creative Suite 5 programs.  Getting this error..."Adobe Illustrator CS5 15.0.2 Update There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207  Adobe Pixel Bender Toolkit 2.5 Update..."

    I cannot update my Creative Suite 5 programs.  Getting these error messages...
    Adobe Illustrator CS5 15.0.2 Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207
    Adobe Pixel Bender Toolkit 2.5 Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207
    Adobe Extension Manager CS5 5.0 Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207

    @them,
    I'm just a user like you who volunteers my time here. Your technical question requires the response from a support engineer.
    I do sincerely think you'll get a better response by asking in the Downloading, Installing, Setup forum which I referenced in post #3. They have support engineers who monitor that forum for these kind of issues. This forum can only deal with general issues. Sorry.

  • At start up of my program I get this error -1074388957. USB NI-9171 and NI-9861

    I have a program I wrote last year(2013). I using LabView 2012 SP1. I need to make updates to my program but when I run it, I get an error
    -107438895.
    I am using a NI-9171 and a NI-9862. Driver Name NI-DAQmx Version 9.8.0f3
    I do have a seperate power source for it, set at 24VDC.
    I have for software:
    NI-CAN 2.7.5
    NI-DAQmx-Device Driver 9.8
    NI-DAQmx Max Configuration 9.8
    NI-XNET 1.8
    Max Version 14.0.0f0
    I can see the can unit in Max. I can reset it. The firmware is current. The self test is successfull.
    below is my set up
    Attachments:
    Can Test.vi ‏15 KB

    Glad to hear you figured it out.
    You can thanks a person on the forum by giving them a Kudo.  A user on the forums can Kudo a post by another user once, but multiple users can Kudo the same post which can highlight posts that a collection of users find useful.
    Any reply to a post can be marked as a solution to the post, if the sub-forum supports marking solutions.  This is helpful because the thread will get a green check mark showing a solution to the question has been found.
    Source
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Hi Getting error in Extended program check

    Hi ALL,
    In the extended program check I am getting 'Use additional CURRENCY when outputting with MESSAGE '
    Here i am trying to write the currency field with WRITE statements.
    Its on urgent requirement .
    Thanks in advance.

    Hi Hemath
    The message specify to use the addition CURRENCY while using WRITE statements for currencies.
    Eg: WRITE <b>vbap-netwr</b> CURRENCY <b>vbap-waerk</b>.
    As you might be aware various currencies have diffferent notations of representing their currencies. Using the addition CURRENCY will make SAP to take care of the same.
    Hope this helps.
    Regards
    Eswar

  • Error in extended program check

    Hi,
    I m getting following error in Extended Program Check..
    <b>The current ABAP command is obsolete
    Tables with headers are no longer supported in the OO context.</b>
    for the below declaration..
    <b>data: I_fieldcatalog type  slis_t_fieldcat_alv WITH HEADER LINE .</b>
    could anyone help me.
    Thanks in advance.

    Hi,
    Use as follows
    <b>DATA: I_fieldcatalog type slis_t_fieldcat_alv,
            wa_fieldcaalog like line of I_fieldcatalog.</b>
    When you use HEADERLINE you will get one WOrkarea and an intenral table with one declaration.
    In your case I_fieldcatalog is a workarea and I_fieldcatalog[ ] is the table.
    This usage is obsolete as it leads to confustion with CLEAR.
    When you use CLEAR I_fieldcatalog you may assume that table is cleared but here only workarea is cleared.
    So you need to use the above given declaration and change all your
    APPEND I_fieldcatalog.  to
    APPEND wa_fieldcatalog toI_fieldcatalog.
    simlarly for INSERT and MODIFY.
    Regards,
    Sesh.

  • Extended program check error

    Hi ,
    I'm getting errors(Obsolete statements) when checking for extended program check for a report program.
    When I'm going for "UCCHECK" i'm not getting any errors & in code inspector also it is not showing the errors.
    Here what is the reason for this?why it showing error in one transaction & not showing the same in other transaction..
    Here I'm pasting the code..
    REPORT  ZHCM_OBSOLETE.
    infotypes : 0000.
    DATA: BEGIN OF itab1 OCCURS 0,
            col1 TYPE i,
            col2 TYPE i,
            col3 TYPE string,
          END OF itab1 VALID BETWEEN col1 AND col2.
    DATA: BEGIN OF itab2 OCCURS 0,
            col1 TYPE i,
            col2 TYPE i,
            col3 TYPE string,
          END OF itab2 VALID BETWEEN col1 AND col2.
    itab1-col1 = 1.
    itab1-col2 = 6.
    itab1-col3 = 'Itab1 Int1'.
    APPEND itab1 TO itab1.
    itab1-col1 = 9.
    itab1-col2 = 12.
    itab1-col3 = 'Itab1 Int2'.
    APPEND itab1 TO itab1.
    itab2-col1 = 4.
    itab2-col2 = 11.
    itab2-col3 = 'Itab2 Int1'.
    APPEND itab2 TO itab2.
    provide col3 FROM itab1
            col3 FROM itab2
                 BETWEEN 2 AND 14.
      WRITE: / itab1-col1.
    *  \, itab1-col2, itab1-col3, itab1_valid.
      WRITE: / itab2-col1.
    *  , itab2-col2, itab2-col3, itab2_valid.
      SKIP.
    ENDPROVIDE.
    Thanks in advance..
    Pradeepa
    Code Formatted by: Alvaro Tejada Galindo on Jan 7, 2009 2:22 PM

    Hi,
    You are probably getting obsolete statements on the declaration of internal tables. Avoid using begin of itab occurs 0, this statement is not used as it automatically creates a header line. Use types statement to define a type and then use it to create an internal table and workarea, this will remove the obsolete statements in extended program check.
    types : begin of t_itab,
                col1 type i,
                col2 type i,
                col3 type string,
              end of t_itab.
    data itab type table of t_itab
    data wa_type t_itab.
    Use these to populate your internal table.
    begin of itab occurs 0 was a statement which was used in prior versions (<4.0) and now are considered obsolete, but still functional due to backward compatibility.
    Hope this helps you.
    Regards,
    Sachin Dargan.
    Code Formatted by: Alvaro Tejada Galindo on Jan 7, 2009 2:22 PM

  • Structure Enhancement Error Error in Extended Program Check in ECC 6.0

    Hi Experts,
    I am working on ECC 6.0 I am a structure like "BAPIACWT09" , "BAPIACCAIT" in my program when i run Extended Program Check i am getting an error 
    <b>
    "BAPIACWT09" can be enhanced. After a structure enhancement, the semantics of the  parameter transfer may change.</b>
    How to eliminate this Error

    Raghu,
    Every structure has to be created with an enhancement category.
    In Transaction SE11, when you are creating a structure or a table , go to extras - enhancement category to see it.
    I guess BAPIACWT09 has been defined with a category of can be enhanced, and SAP is warning you that if the enhancement is used in the future your program can have syntax errors.
    There is nothing you can do about this.  If you find out something, Please share.

  • Extended program check error for cl_salv_table= factory

    hi all,
    when performing Extended Program check, I am getting some warning message
    code
        DATA: lc_msg TYPE REF TO cx_salv_msg.
    *. Create Instance for ALV
      TRY.
          CALL METHOD cl_salv_table=>factory
            IMPORTING
              r_salv_table = go_alv
            CHANGING
              t_table      = ts_z3rl_docket.
        CATCH cx_salv_msg INTO lc_msg .
      ENDTRY.
    Error message;
    No Exception Handling After the CATCH Statement  
    (The message can be hidden with "#EC NO_HANDLER) 
    how to handle this message?? how to recitfy this?
    kindly help

    Basically, this message appears because, you are trying to CATCH the exception in the exception object, but you are not accessing this exception object. If you do want to give the  message, if you catch some exception, you should do like this:
    *. Create Instance for ALV
    TRY.
      CALL METHOD cl_salv_table=>factory
        IMPORTING
           r_salv_table = go_alv
        CHANGING
          t_table = ts_z3rl_docket.
      CATCH cx_salv_msg INTO lc_msg .
         lv_string = lc_msg->get_text( ).   " <
         message lv_string type 'I'.  "<
    ENDTRY.
    Or, if you don't want to handle the exception, you can do like this:
    TRY.
      CALL METHOD cl_salv_table=>factory
         IMPORTING
           r_salv_table = go_alv
         CHANGING
           t_table = ts_z3rl_docket.
      CATCH cx_salv_msg.      "#EC NO_HANDLER
    ENDTRY.
    Regards,
    Naimesh Patel

  • Select query gives error in Code inspector and extended program check

    Hi,
    I have a query .
    SELECT pernr
      FROM pa9100
      INTO TABLE t_nca_tab
      WHERE endda EQ c_date AND
      z_nca_required EQ c_yes.
    This query gives me an error in Code inspector like :
    Large table pa0001: No first field of table index in WHERE  condition
    I have one more query that gives error in extended program check
    SELECT SINGLE stell ename
          INTO (g_stell, g_name)
          FROM pa0001
          WHERE pernr EQ wa_nca_tab-pernr AND
                endda EQ c_date.
    The warning says:
    *In "SELECT SINGLE ...", the WHERE condition for the key field "SEQNR" does not
    test for equality. Therefore, the single record in question may not be unique.*
    Its too urgent.
    Please reply.
    Regards,
    Binay.

    The first field is PERNR .. so if UR not giving pernr it will fetch
    all the data from the said table and between the given dates ..
    Check if this is your requirement ...
    write the select as ...
    where r_pernr is a range ...
    SELECT pernr
    FROM pa9100
    INTO TABLE t_nca_tab
    WHERE pernr in r_pernr  <----
                 endda EQ c_date AND
                 z_nca_required EQ c_yes.
    As UR using select single it's expecting to use all the key
    fields in the where condition ...
    U can ignore this warning message

  • TS3899 "cannot get mail" in iphone5 suddenly. been using iphone to check 2 email accounts for months now, one is gmail and not troubled. the other is thunderbird and i get this error message now. no settings have been changed or anything! ideas?

    hey all, I have been getting the "cannot get mail" error message on my iphone5 suddenly.
    ive been using iphone to check two email accounts for months now, one is gmail and not troubled. the other is mail from thunderbird and i get this error message now saying it is not responding. no settings have been changed or anything, it just suddenly stopped receiving mail on my device as of Tuesday afternoon.
    Does anyone have iny ideas about why? i have yet to update to the new OS7 yet, could that be it?

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • Error at new statement on extended program check need help

    Hi all ,
                       This is the code :
    LOOP AT i_stocks INTO wa_stocks WHERE NOT pulkt IS INITIAL AND
                             NOT bstkt IS INITIAL AND
                             NOT fprctr IS INITIAL AND
                             ( write_off_fix <> 0 OR
                               write_off_pup <> 0 ).
        AT NEW fprctr.
          CLEAR: l_prctrsum_fix, l_prctrsum_pup.
        ENDAT.
        IF wa_stocks-bukrs <> lastbukrs.
          lastbukrs = wa_stocks-bukrs.
          PERFORM document_header USING xreversal.
          i_counter = 1.
          CLEAR lastkostl.
        ENDIF.
        ADD wa_stocks-write_off_pup TO l_prctrsum_pup.
    ENDLOOP
    On Extended program check its says :
    The LOOP statement processing will be limited
    (FROM, TO and WHERE additions in LOOP)
    Interaction with group change processing (AT NEW, ...) is undefined
    (The message can be hidden with "#EC *)
    It means at statement   AT NEW fprctr .
    Need help , How can i resolve this error ?
    Regards .
    Edited by: ujjwal dharmak on Feb 19, 2010 9:55 AM
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Feb 19, 2010 9:04 AM

    Since you are using where condition in loop statement and also using the control break statement thats why it is showing the error for you.
    So if you want you can do like this
    loop at itab into wa.
    if not  wa-f1 is initial ....<and other conditions>.
    continue.
    endif.
    at new   f1.
    endat.
    endloop.
    It will resolve your problem but I am having the doubt how the at new will work properly...
    Regards
    Shiba Prasad Dutta

  • Error while Extended Program Check

    Dear All,
                    When I m cheking Extended Program Check for my program i m getting following warning error how can i clear it.
    Not all supported date formats are handled
    Check use of a generic service method or handle all formats
    Regards
    Balamurugan N

    Hello,
    Please check which date format is causing the Problem in your code and Try to use Standard function Modules like
    CONVERT_DATE_FORMAT etc which suffice your Problem and later do check Extended Program check.
    Please let us know, if you resolve by other ways.
    Thanks ,
    Sudheer.

  • I get this error--"Microsoft Visual C++ Runtime Error, Program: c:\programfiles\mozillafirefox\firefox.exe, abnormal program termination" any ideas???

    I get this error--"Microsoft Visual C++ Runtime Error, Program: c:\programfiles\mozillafirefox\firefox.exe, abnormal program termination" any ideas???
    no specific web site causes this to happen.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • I am trying to update a number of items which the software check brings up:      It runs and says it is installing but at the end I get this error message:    The update could not be expanded, and may have been corrupted during downloading. The update wil

    Hi,
    I am trying to update a number of items which the software check brings up:
    It runs and says it is installing but at the end I get this error message:
    BUT then I ge tthis:
    Can anyone help me to enable the software to update?
    Thanks

    Thanks.  Something isn't right as I just tried to download the iphoto update - it said it had competed the download but then when I clicked on the download item I get this:
    Think will have to take it into the store.....
    thanks for replying.

Maybe you are looking for

  • Ipod not showing any music, Itunes dies when connecting

    Hey everybody, Here's my problem: Earlier on I loaded 40 songs on my Ipod Classic and was charging it for a little while. When I disconnected it, it told me no songs were in it's library. I reconnected the Ipod to my computer several times and everyt

  • Problem in XML to ITAB conversion - Application server files

    Hi Friends Earlier we used FTP concept, so I received XML file and length frpm FTP function modules, but now instead of FTP I am going to use the following function modules SCMS_BINARY_TO_XSTRING SMUM_XML_PARSE for that I need to pass the lenght of t

  • Statistical Key - Unit of Measure Percentage

    Hi SAP Expert, In our setup we are uploading plan values in controlling. After uploading we run plan assessment cycles. In assessment cycle setup we are using statistical key for allocation percentages. The issue which we facing is that the allocatio

  • Publish the iP4 sensitivity

    If Apple claim to have the best antenna in the market then why not publish the real data from that 100 million dollar test facility? , what is the actual spec of this phone, what level does it work down to , -110 or -120dBm? Assuming that the "weak s

  • Apple tv / mac pro

    Hola, I just bought the apple tv, but i cant see on it my mac pro, i re check the wi fi connection the hdmi cable and everrything is connected right, the only thing that i cant see on the apple tv its itunes for movies music etc but i bougth it for b