ALV I can't find any error

Hi
I made a ALV but when I execute the program appears this message
Análise do erro
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was
not caught in
procedure "ALTERA_CATALOGO" "(FORM)", nor was it propagated by a RAISING
clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
The call to the function module "REUSE_ALV_FIELDCATALOG_MERGE" is incorrect:
The function module interface allows you to specify only
fields of a particular type under "I_STRUCTURE_NAME".
The field "LS_TAB" specified here is a different
field type
The structure LS_TAB is of type LT_TAb that is an internal table
This is a part of code:
FORM altera_catalogo.
  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
  I_PROGRAM_NAME               =
  i_internal_tabname           = lt_tab
    i_structure_name             = ls_tab
  I_CLIENT_NEVER_DISPLAY      =  'X'
  I_INCLNAME                   =
  I_BYPASSING_BUFFER           =
  I_BUFFER_ACTIVE              =
    CHANGING
      ct_fieldcat                  = lt_fieldcat
    EXCEPTIONS
      inconsistent_interface       = 1
      program_error                = 2
      OTHERS                       = 3
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  BREAK-POINT.
  LOOP AT lt_fieldcat INTO ls_fieldcat.
    CASE ls_fieldcat-fieldname.
      WHEN 'ZPROC'.
        MOVE 'Nº Processo' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'KUNNR'.
        MOVE 'Cliente' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'VBELN_DC'.
        MOVE 'Nº devolução' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'MJAHR_SP'.
        MOVE 'Ano' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'bstnk'.
        MOVE 'Nº Pedido' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'werks'.
        MOVE 'Centro' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'lgort'.
        MOVE 'Depósito' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'matnr_dc'.
        MOVE 'Material' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'charg'.
        MOVE 'Lote' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'lfimg_dc'.
        MOVE 'Quantidade' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
      WHEN 'grund'.
        MOVE 'Motivo' TO ls_fieldcat-seltext_m.
        MOVE 'X' TO ls_fieldcat-key.
    ENDCASE.
    MODIFY lt_fieldcat FROM ls_fieldcat INDEX sy-tabix.
  ENDLOOP.
ENDFORM.                    "altera_catalogo
Can somebody help me...
Yhanks

Pass LS_TAB in single quotes to the parameter I_STRUCTURE_NAME.
E.g:
i_structure_name = 'LS_TAB'

Similar Messages

  • Sccm 2012 Only two actions on cleints actions can not find any errors

    We have deployed sccm 2012 sp1 with cu2
    everything was working ok then it all suddenly it stopped working  for new client's . The client installs ok but there are only two action in on the client actions. Clients find the site code ok and logs look ok as far as we can tell
    We did move are dns from windows hosted dns to a third part appliance around the same time but all cleitns still have vlid dns entries . the managmeopt point is still in the underscore records in dns 
    we have checked ClientLocation.log, LocationServices.log, ClientIDManagerStartup.log and ccmexec.log  and there are no errors we can see.
    the sccm console reports all services as green
    We are running with PKi all certs are still valid and new clients are still receiving  valid certficates
    any ideas or pointers?
    Rick Cross

    Hi we fixed this this in the end by this incase its any help to any one else
    look in the MP_Policy.log on the site server
    see if you have any these errors
    Detected at least one row in the result set from PolicyAssignment table which does not have a Signature, rejecting all rows.
    if so connect to the sql server and run this sql
    run this check
    SELECT * FROM ResPolicyMap WHERE machineid = 0 and PADBID IN (SELECT PADBID FROM PolicyAssignment WHERE BodyHash IS NULL)
    if any errors found run this
    To delete:
    Delete FROM ResPolicyMap WHERE machineid = 0 and PADBID IN (SELECT PADBID FROM PolicyAssignment WHERE BodyHash IS NULL)
    then rerun check
    as per this
    http://social.technet.microsoft.com/Forums/en-US/cfbfdc2a-81b7-4b69-948b-361f5d66515e/sudden-issue-with-client-communications-in-sccm-2012?forum=configmanagerosd
    Rick Cross

  • I can't find any error in my vi but it just doesn't work please help

    I'm trying to control a robot named cs-113 and I find someone has already achieved this. He wrote a vi called robot cs-113.vi and I just tried to write a same one but it just doesn't work. Can anyone tell me why it doesn't work? Thanks for your help!
    由 normanshi 在 08-01-2006 04:11 AM 上編輯的訊息
    Attachments:
    robot-cs113.vi ‏79 KB
    cs-113 test.vi ‏62 KB

    It would really help if you were a little more specific about what isn't working. Also try debugging your application in highlighted execution with probes to find out exactly what data you're sending out the port.
    Jarrod S.
    National Instruments

  • Can't find any error...

    Hello,
    I'm trying to call a method from my main and it just didn't work. It gave a NoSuchMethodError (exception thread in 'main'). I've checked my main and the class and they seems fine. Here's a bit of the coding.
    public class FuzzySetApproach {  
    public static final String theDir = "C:\\My Documents\\";
    public static void main (String[] args) throws IOException
    LoadFril fril=new LoadFril();
    try {
    fril.loadFrilProg(); *** this is where the error occurs ***
    } catch (NoSuchMethodError e){System.out.println(e.toString));}
    } //main
    public class LoadFril {
    private static JFril theFril;
    private static boolean frilStatus=false;
    public static void loadFrilProg()
    PrintWriter out;
    File tmpOut=new File("tmp.txt");
    FileOutputStream fos;
    try
    fos=new FileOutputStream(tmpOut);
    out=new PrintWriter(fos, true);
    theFril = new JFril (out);
    if (theFril.jFrilExecuteFril("load prob2fs") == 1 )
    System.out.println("file loaded...");
    theFril.jFrilExecuteFril("?((main))");
    else
    System.out.println("file not loaded!");
    out.close();
    } catch (Exception e)
    System.out.println("IO Error " + e.toString());
    System.exit(1);
    System.exit(0);
    } //loadFrilProg
    } //LoadFril
    Hopefully somebody out there would be able to help. TIA.

    There's always an error.
    I can't see how deleting old classes is going to help
    Perhaps if it was recoded Clearer,
    It appears that you have a FuzzySetApproach class
    which contains an Inner Class LoadFril [yagh]
    this Inner class has only Static Methods which makes them universal for all instances of that class,
    Usually when you see these used or use them yourself they look like
    ClassName.method() in this case LoadFril.loadFrilProg();
    I don't believe you can catch() a NoSuchMethodError , they show up at compile time. So when your program quits with a NoSuchMethod error it is likely the way that that Method is referenced, not typos
    or old class files
    I assume that there is a JFril class specified elsewher too ?
    Try making a real simple class that does nothing but print debug statements until you get a working
    program structure

  • I just bought a new iMac and am having troubles downloading creative cloud installer.  Its coming up with error 214 - I can't find any solutions for this.  Can anyone help me?  Im on mac OS 10.9.4

    I just bought a new iMac and am having troubles downloading creative cloud installer.  Its coming up with error 214 - I can't find any solutions for this.  Can anyone help me?  Im on mac OS 10.9.4

    Meg81 error 214 indicates a download data validation error.  This means that the update you downloaded became corrupted likely during the download process.  I would recommend utilizing the suggestions listed in Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html to attempt to improve the stability of your Internet connection.
    You can also find information on how to review your download logs which may provide additional information regarding the failure of the download.

  • I'm trying to email a photo from my iPhoto album, but I'm getting an error message that says "The email server didn't recognize your username/password combination." Any ideas?  I can't find any help in Apple on-line support.

    I'm trying to email a photo from one of my iPhoto albums, however I'm getting an error message that says "The email server didn’t recognize your username/password combination." Any ideas?  I can't find any help in Apple on-line support.

    Never mind.  I was able to find the solution via an earlier post from West.  Thank you!

  • Trouble opening a just created Pages file.....error message says I need a newer version of Pages......Apple Store says I have version 5.0.......opening an older Pages file it says I have version 4.3.......can not find any way to try another upgrade to 5.0

    Trouble opening a just created Pages file.....error message says I need a newer version of Pages......Apple Store says I have version 5.0.......opening an older Pages file it says I have version 4.3.......can not find any way to try another upgrade to 5.0........please help......
    Thanks

    Personally, I would not recommend deleting/removing the iWorks 09 folder for several reasons: one is that the new versions have had several functionalities removed and until you decide that you can work with the new one and do not miss any features the older version had, I would leave the old one in place. Personally, I will not be using the new versions.
    The second reason is that you can accomplish what you want using a different approach: simply open a Get Info window of your document and choose which version of Pages you want this to open in - you can also stipulate that all docs like this are opened with whichever particular version.
    FWIW: Once you have edited an old document in the new Pages version, you can no longer open it in the older version. However, you can still export it to the old version.

  • I had to get a new ipod....they said I just needed to plug it in and sync to my itunes.. I get an error 1413 when I try to follow the instructions to restore.  I can't find any information on error 1413, what does this mean?

    I had to get a new ipod....they said I just needed to plug it in and sync to my itunes.. I get an error 1413 when I try to follow the instructions to restore.  I can't find any information on error 1413, what does this mean?

    Now it keeps saying that it is restored but there is still no music or video on it. And a new error is coming up that says "We could not complete your iTunes store request.The iTunes Store is temporarily unavailable. Please try again later."

  • When syncing my iPhone with iTunes, I get the error, "some items did not sync, see itunes for help", but can't find any helps for this in iTunes. Where can I find out what is not syncing?

    When syncing my iPhone with my iPhone, I get a message that 2 items did not sync - use iTunes for help.
    But I can't find any help information in iTunes at all, let alone when items are not syncing.
    How do I figure out what is not syncing?

    Since it seems App related, I'm not sure what to offer you.  I guess the only suggestion I have is for you to reboot your iPad and then try again.  To reboot, hold the power and home buttons at the same time for at least 10 seconds (keep holding past the swipe to shut down bar if it appears) until the Apple Logo appears, then let go of both buttons and your iPad will restart.  You won't lose any settings or data, so it's worth a shot.

  • Macbook PRO can't find ANY Wifi network - only at home

    Hi, i have a very strange problem with my *Macbook Pro*. I have 3 apple computers at home and one pc. On all machines Wifi works fine, except my new alu Macbook Pro. Important note is, when im with my macbook on other place, office, caffe, *Wifi works fine. But when im at home, this macbook simply can't find ANY network, it's blind.* Interesting thing is, all other computers are several years old and WiFi works fine on them. My friend also bought a brand new macbook pro, and this machine also couldn't fine any network at my home, or in other case when it found networks, it couldn't connect and recieve error message "Connection timed out". I noticed there is new Wifi network in our range, is it possible that this network can cause "blindness" on new macbooks?

    *I have to say, I'm really glad you are trying to help guys.*
    Well, router is almost on default settings, SSID is brodcasted and i'm not filtering MAC adresses. I tried changed channels, diffrent types of security or no security, no luck.
    Guys, maybe i wrote it wrong, but this MacBook can't see ANY network. Around me there are 4-6 other networks which I'm able to see from other machines. So *problem is, this Macbook can't seen ANY network - not just mine.* BUT when i'm with this Macbook in office for example, or any other location, Wifi works....
    And one more important thing, this happened suddenly. I was able few months ago to find any WiFi around me with this Macbook. No changes to router, no changes to mac. Problem is somwhere in the middle...try to focus on this: why i'm not able to see any of those cca 6 networks around me. I really think it has to do something with distorted signal and Wifi card used in new macbooks. It's really sick, because all other machines works perfectly (MB 07, MBP 06, PC, iPhone 3g)
    I found a log on the router, and it's happening all the time:
    +Sunday February 28, 2010 12:52:29 Unrecognized attempt blocked from 77.49.167.124:10179 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:52:39 Unrecognized attempt blocked from 84.74.154.198:51104 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:52:41 Unrecognized attempt blocked from 85.228.116.143:30977 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:52:45 Unrecognized attempt blocked from 82.19.214.16:49713 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:52:51 Unrecognized attempt blocked from 79.5.189.206:42386 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:53:01 Unrecognized attempt blocked from 82.231.42.177:48944 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:53:03 Unrecognized attempt blocked from 150.65.37.20:35339 to 82.119.105.172 UDP:51413+
    +Sunday February 28, 2010 12:53:08 Unrecognized attempt blocked from 83.34.238.95:27314 to 82.119.105.172 TCP:38481+
    +Sunday February 28, 2010 12:53:09 Unrecognized attempt blocked from 83.34.238.95:27314 to 82.119.105.172 TCP:38481+
    +Sunday February 28, 2010 12:53:09 Unrecognized attempt blocked from 89.135.92.244:22231 to 82.119.105.172 UDP:51413+

  • Distiller "can't find font" error with MS-Gothic and ArialUnicodeMS

    Hi. I'm tried to verify that Distiller (both 9 and XI) and PDF Generator (11.0 SP1) are able to generate PDFs from Postscript files using a variety of fonts. Almost every font that I tried works perfectly fine, but MS-Gothic and ArialUnicodeMS both fail with "can't find font" errors. I've verified font configurations in both Distiller and PDF Generator, and lots of other fonts work fine. I've also verified that the two fonts are installed, enabled, and can be used in other applications (e.g., MS Word). In fact, I can generate PDFs from MS Word documents on the same server that use both of those fonts. I suspect the errors are misleading in that those apps can find the fonts, but are unable to open or use them for some reason. I've been able to replicate this behavior both on Windows Server and Mac OS X.
    Has anyone seen behavior like this? Any suggestions on how to get more information out of these Adobe apps to get a better idea what the real error is?
    JJR

    Addirional note: This is a java class within a JavaFX application if that is relevant.
    It does seem to be relevant - if I create the same class as part of a Java application rether than a JavaFX application it compiles without error. Is the imported java.awt.GraphicsEnvironment different in the tow cases??
    Edited by: Sidereal on Aug 28, 2009 11:19 AM

  • Windows 8.1 installer can not find any disk partitions at all in boot camp 5.1

    Hello
    I have purchased a new Imac 27" latest model with Mavericks pre-installed. I am trying to install windows 8.1 pro with original disc 64 bit in Boot camp assistant 5.1. I am using a usb dvd writer to read windows disc. I have rebooted into the windows installer after mac finised downloading the windows support software into my 64 gigabyte flash drive which is formatted in ms dos fat 32 format. I made it too "Where do you want to install windows" screen but problem is there are no drives showing at all to select. The space where you usually see four partition drives with the bottom one named Boot camp, that space is totally empty showing that there is no internal hard drive at all....simply shows a error at the bottom can not find any drive. Please Help!!!!!!
    The mac os is running fine if i restart the mac and cancel windows installation. I have gone into boot cam assistant to delete the windows partition and retry but the same problem prisists. Plz help.

    HI..
    Better to post your topic in the Boot Camp community >  Boot Camp: Windows Software: Apple Support Communities

  • ITunes 10.5 can't find any of my original files, even though they show in my library

    I was hoping you could help me with iTunes 10.5. This update has been a pain. When I first installed it, my entire library was gone. Luckily, I saved the "iTunes Library" file before updating and copied it in place and my library appeared. But now the problem I'm having is that the iTunes can't find any of the "original" files, even though my iTunes Media file location has not changed (it's on an external network drive". When I click on the "Do you want to find the original file" I can find it in the appropriate folder. I checked the "Preferences" and under "Advanced" I re-mapped it to the appropriate location and already had the 2 boxes for iTunes organizing files checked. Then went to "File" and "Organize Library" and clicked the first check box and then got the "Copying Files" bar. When this was completed, I thought it would be able to find the original files. But I'm still getting the same error message about not being able to find the "original" files. Do you have any suggestions?

    I was hoping you could help me with iTunes 10.5. This update has been a pain. When I first installed it, my entire library was gone. Luckily, I saved the "iTunes Library" file before updating and copied it in place and my library appeared. But now the problem I'm having is that the iTunes can't find any of the "original" files, even though my iTunes Media file location has not changed (it's on an external network drive". When I click on the "Do you want to find the original file" I can find it in the appropriate folder. I checked the "Preferences" and under "Advanced" I re-mapped it to the appropriate location and already had the 2 boxes for iTunes organizing files checked. Then went to "File" and "Organize Library" and clicked the first check box and then got the "Copying Files" bar. When this was completed, I thought it would be able to find the original files. But I'm still getting the same error message about not being able to find the "original" files. Do you have any suggestions?

  • After downloading OS X I can't find any of my photos I had on my mac. How do I get them back?

    After downloading OS X I can't find any of my photos I had on my mac. How do I get them back?

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • ITunes can't find any episodes on my feed.

    I recently started my podcast back up under a new host (libsyn), and I followed every step and uploaded two episodes. I go to submit my RSS feed to iTunes and I get the "We had difficulty downloading episodes from your feed" error. I test my feed on feedvalidator.org and get:
    Sorry
    This feed does not validate.
    line 9, column 8: link must be a full and valid URL: [help] <link></link>
            ^
    line 12, column 8: docs must be a full and valid URL: [help] <docs></docs>
            ^
    line 18, column 21: link must be a full and valid URL: [help]               <link><![CDATA[]]></link>
                         ^
    I have also tried the "subscribe to podcast" thing in iTunes and all it shows is the name of my show but it can't find any episodes. I don't know what else to do here.
    The link to my feed is http://weekendfriends.libsyn.com/rss

    To fix the issues with the link - you need to go into your libsyn account in libsyn4
    mouse over settings - and then select edit show settings - and make sure to put a full URL in for the website link.
    And then per Rogers comments above - you need to removed your wma file and upload an mp3 file.
    Here is a link to a full tutorial on using the libsyn UI and getting started.
    http://traffic.libsyn.com/lilith/podcast101_140311c.pdf
    Chapter 7 covers libsyn UI -  but also look at the chapter on creating an MP3 file - chapter 5.
    Regards,
    Rob W

Maybe you are looking for

  • How can i save data in Excel

    Hi, I want to save data in Excel? But how? Can somebody send me a VI? Thank you

  • How to migrate WLS 8 EAR to WLS 10?

    First sorry this is a repost from my own post on Error when deploying EAR to WLS10.3.2 I think this is a better sub-forum to ask.... I have EAR which was built using WLS 8.1.6. And now the server upgrades to WLS10.3.2. So I create the new domain on W

  • Screen refresh problem with Windows 7

    Hello all, I've recently begun testing Oracle with Windows 7 on a new HP 2540p notebook computer. I've encountered a very strange issue so far. After logging into Oracle, and Windows switches to Windows Basic theme, I should be taken to the main Navi

  • Inserting music to a project without

    inserting music without iTunes library cause i don't use iTunes on this MacBook Pro. Thanks in advance.

  • WDA select-options value help configuration

    Hello, I would like to configure the value help in the select-options component in WebDynpro ABAP. I used the parameter I_VALUE_HELP_TYPE of the method ADD_SELECTION_FIELD, but I didn't know how to pass a correct value for this parameter. Could someo