Strange error to be solved - for he who knows

Hi,
Below are the part are the codes presented that cause the problem. What happens is very strange to me and i would really appreciate it if someone could help me understand and solve the problem. If the excel file only contains numbers only or strings only in its columns the program works fine. but if the columns contains some string cells and some numbers then null is obtained for inputEx and otuputEx.
help needed!
conn_excel =DriverManager.getConnection(testcaseexcelodbc);        //conn_excel- connection to excel
Statement stmtExcel = conn_excel.createStatement();
ResultSet rsExcel = stmtExcel.executeQuery("Select Input, Output from [Sheet1$]");
while (rsExcel.next())
       String inputEx = rsExcel.getString("Input");
       String outputEx = rsExcel.getString("Output");
       System.out.println(intputEx);
       System.out.println(outputEx);
}                                        

Now this is very strange to me. assistance needed.
Below is what i tried
Test 1 - Excel File Columns
Input          output
1          1
2          2
3          3
4          4
Test1 Result: ok
Test 2 - Excel File Columns
Input          output
a          a
b          b
c          c
d          d
Test2 Result: ok
Test 3 - Excel File Columns
Input          output
1          1
2          2
c          c
4          4
Test3 Result: exception thrown on reading the cell where the number changes to string i.e. "c"
----

Similar Messages

  • For anyone who knows about JVM and MRJ

    I have built an application that runs as expected on Mac OS X. Take the same program and run it on OS 9 (after using MRJAppBuilder) and the errors start. I have included the error below, I never use Vector.toString() so I am wondering if this may be in my JDBC drivers code, or a problem with Apple's MRJ? The code in Question I traced from the EventHandlers actionPerformed method which calls a fetch() method in our Connector class which uses JDBC driver to access the database. I caught a java.lang.NullPointerException with a simple system.out to tell me it was caught and the same error is still thrown on OS 9 so I am wondering if it could be JDBC or MRJ?
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at java.util.Vector.toString(Vector.java)
    at javax.swing.DefaultListCellRenderer.getListCellRendererComponent(DefaultListCellRenderer.java:82)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(BasicListUI.java:782)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(BasicListUI.java:732)
    at javax.swing.plaf.basic.BasicListUI.getPreferredSize(BasicListUI.java:173)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:772)
    at javax.swing.JList.getPreferredScrollableViewportSize(JList.java:1400)
    at javax.swing.ViewportLayout.preferredLayoutSize(ViewportLayout.java:75)
    at java.awt.Container.preferredSize(Container.java)
    at java.awt.Container.getPreferredSize(Container.java)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:774)
    at javax.swing.ScrollPaneLayout.preferredLayoutSize(ScrollPaneLayout.java:459)
    at java.awt.Container.preferredSize(Container.java)
    at java.awt.Container.getPreferredSize(Container.java)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:774)
    at java.awt.FlowLayout.layoutContainer(FlowLayout.java)
    at java.awt.Container.layout(Container.java)
    at java.awt.Container.doLayout(Container.java)
    at java.awt.Container.validateTree(Container.java)
    at java.awt.Container.validate(Container.java)
    at EventHandler.mouseClicked(EventHandler.java:354)
    at java.awt.Component.processMouseEvent(Component.java)
    at java.awt.Component.processEvent(Component.java)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java)

    I'm also including the Connector's fetch() method just in case, it's the only code with Vectors for return values.
    public Vector fetch( String sqlString ) {
    rows.removeAllElements();
    try {
    Statement stmt = connection.createStatement();
    ResultSet rs = stmt.executeQuery( sqlString );
    ResultSetMetaData rsmd = rs.getMetaData();
    //Set the number of columns, their names and types
    for( int col = 1; col <= rsmd.getColumnCount(); col++ ) {
    columnNames.addElement( rsmd.getColumnLabel( col ) );
    columnTypes.addElement( rsmd.getColumnTypeName( col ) );
    //Set the rows
    while (rs.next()) {
    Vector newRow = new Vector();
    for ( int col = 1; col <= rsmd.getColumnCount(); col++ ) {
    newRow.addElement(rs.getObject(col));
    rows.addElement(newRow);
    rs.close();
    stmt.close();
    catch ( SQLException exception ) {
    while ( exception != null ) {
    System.out.println( "\nSQL Exception: " + exception.getMessage() );
    System.out.println( "\nANSI-92 SQL State: " + exception.getSQLState() );
    System.out.println( "\nVendor Error Code: " + exception.getErrorCode() );
    } //While
    } //catch
    catch( java.lang.NullPointerException npe ) {
    System.out.println( "Vector toString error." );
    return rows;
    } //fetch

  • For someone who know's their stuff! (pls review my pgming?)

    Hello, Thank you for looking at my post! Now lets see if you survive to the end of it... I have about 103 lines of code which I have put together but I am very new to programming and I want to make sure it all makes sense and I'm not missing anything or doing anything wrong! I have gotten help from a bunch of individuals on this forum and it all works now!
    I have a slideshow that loads through XML. The first picture slides on from the right and stops in the middle of the screen. There is a Next button and a Previous button. When the user presses Next, the currently displayed image slides off to the left as the next image slides on from the right and stops in the middle of the screen. If the user presses Previous, the currently displayed picture slides back off to the right and the previous picture slides on from the left. That is the basic concept of what this programming does. Oh and the buttons glow on and off as the user presses them.
    If some kind soul could take the time to review my code and give me any pointers/critiques or comments etc. I would totally appreciate it and you can relax at the end of the day knowing you have done your good deed for the day/week!
    import com.pixelfumes.reflect.*;
    import flash.display.BitmapData;
    import flash.display.MovieClip;
    import flash.events.Event;
    import gs.TweenMax;
    import gs.easing.*;
    var xmlRequest:URLRequest=new URLRequest("imageData.xml");
    var xmlLoader:URLLoader =  new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoadedF);
    xmlLoader.load(xmlRequest);
    var imgData:XML;
    var imageReflect:Reflect;
    var imageLoader:Loader;
    var rawImage:String;
    var rawH:String;
    var rawW:String;
    var imgNum:int = 0;
    var lastImageIndex:int = 0;
    var imageLoaderHost:MovieClip;
    btnNext.addEventListener(MouseEvent.CLICK, nextImgF);
    btnBack.addEventListener(MouseEvent.CLICK, prevImgF);
    btnNext.buttonMode=true;
    btnBack.buttonMode=true;
    function xmlLoadedF(event:Event):void {
         imgData=new XML(event.target.data);
         packagedF();
    //Loads picture:
    function packagedF(e:Event = null):void {
         rawImage=imgData.image[imgNum].imgURL;
         lastImageIndex = imgData.*.length() - 1;
         rawW=imgData.image[imgNum].imgW;
         rawH=imgData.image[imgNum].imgH;
         imageLoaderHost = new MovieClip;
         imageLoader = new Loader;
         imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadCompleteHandler);
         imageLoader.load(new URLRequest(rawImage));
         master_mc.addChild(imageLoaderHost);
         imageLoaderHost.addChild(imageLoader);
         imageLoaderHost.y = (stage.stageHeight - Number(rawH)) /5;
         imageLoaderHost.x = 1500;
         TweenMax.to(imageLoaderHost, 1.5, {x:(stage.stageWidth - Number(rawW)) /1.75, y:(stage.stageHeight - Number(rawH)) /5, ease:Quad.easeInOut});
         TweenMax.from(imageLoader, 1.5,  {blurFilter:{blurX:100}});
         imageLoader.scaleX=.8;
         imageLoader.scaleY=.8;
         clearInterval(imgNum);
         clearInterval(lastImageIndex);
    function loadCompleteHandler(event:Event) {
         imageLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, loadCompleteHandler);
         imageReflect = new Reflect({mc:imageLoaderHost,alpha:50,ratio:50,distance:1,updateTime:2,reflectionDropoff:2});
    function nextImgF(e:MouseEvent):void {
    // Button glows on and off:
         TweenMax.from(btnNext, .5, {glowFilter: {color:0x0098ff, alpha: 0.6, blurX:45, blurY:45, strength:10, quality:3}, ease:Quad.easeInOut});
    //Moves image currently on screen forward to bring on next picture:
         TweenMax.to(imageLoaderHost, 2, {blurFilter: {blurX:100}, x:-1500, y:(stage.stageHeight - Number(rawH)) /5, ease:Quad.easeInOut});
         imgNum = imgNum < lastImageIndex ? imgNum + 1 : 0;
    // Refers to function to bring on next picture
         packagedF();         
    function prevImgF(e:MouseEvent):void {
    // Button glows on and off:
         TweenMax.from(btnBack, .5, {glowFilter: {color:0x0098ff, alpha: 0.6, blurX:45, blurY:45, strength:10, quality:3}, ease:Quad.easeInOut});
    // Moves image currently on screen back to where it came from:
         TweenMax.to(imageLoaderHost, 2, {blurFilter: {blurX:100}, x:1500, y:(stage.stageHeight - Number(rawH)) /5, ease:Quad.easeInOut});
         imgNum = imgNum > 0 ? imgNum - 1 : lastImageIndex;
    // Refers to function to bring on last picture:
         imageBackMovement();
    // Loads previous picture and brings it into view:
    function imageBackMovement (e:Event = null):void {
         rawImage=imgData.image[imgNum].imgURL;
         lastImageIndex = imgData.*.length() - 1;
         rawW=imgData.image[imgNum].imgW;
         rawH=imgData.image[imgNum].imgH;
         imageLoaderHost = new MovieClip;
         imageLoader = new Loader;
         imageLoader.load(new URLRequest(rawImage));
         master_mc.addChild(imageLoaderHost);
         imageLoaderHost.addChild(imageLoader);
         imageLoaderHost.y = (stage.stageHeight - Number(rawH)) /5;
         imageLoaderHost.x = -1500;
         TweenMax.to(imageLoaderHost, 1.5, {x:(stage.stageWidth - Number(rawW)) /1.75, y:(stage.stageHeight - Number(rawH)) /5, ease:Quad.easeInOut});
         TweenMax.from(imageLoader, 1.5,  {blurFilter:{blurX:100}});
         imageLoader.scaleX=.8;
         imageLoader.scaleY=.8;
         clearInterval(imgNum);
         clearInterval(lastImageIndex);

    I use WPA 2 at work with out issue and you might be fine with most newer devices with only that one enabled.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • For someone who knows about Micros

    A friend's lent me his broken Micro to try and fix - apart from what I've already done, obviously - any ideas apart from returning it's
    When turned on not connected to the charger, it starts up to the 'Zen Micro' text and then freezes. Same happens when battery is removed and replaced.
    When charger is connected and it's turned on, it goes to 'Rebuilding Library' and the HD whirs for ten minutes or so, then it seems to freeze. There's no progress bar displayed on the 'Rebuilding' screen.
    Cheers

    All you can do is try the options in Rescue Mode. I suspect Reload Firmware is your last option to try, and obviously don't format it if he has valuable data on there.

  • Quick question(For people who know about video formats and stuff)

    What type of media file is AVI? Because I looked on the list of codecs compatible with iPod and it didn't say if it was compatible or not, maybe it's something else. If you know, please tell me

    For the formats that were not compatible, I converted them, and it then played the video, but with no sound. I want to get South of Nowhere for a friend on my ipod, butt he only format they come in is AVI and MPG. MPG is quicktime, I know that so it won't work. But what is AVI. Of course I could buy it from the iTunes music store, but I am a kid with no credit card, and my parents wouldn't dare trust me with that

  • Question for someone who knows IOS

    It is my understanding that Apple TV is an application that is on IOS, which is what Apple TV runs, similiar to what the other mobile apple devices run. This means it will be possible to run apple TV on other IOS devices as I think some have done unauthorized.
    My question concerns future add-ons to ATV if ATV is essentially an just an app.
    So lets say they wanted to add (Major League Baseball)MLB. Adding MLB (which is on the iphone and ipad now) will not be running a MLB app on ATV, instead it will be a complete change to the ATV app.
    Is the above coreect?
    In other words, Netflix on the ATV, is that an app running on IOS or is it part of the ATV app?
    I hope this makes sense.

    I found the answer.
    Whenever you have an operating system it is made of 3 components.
    1) The graphics user interface (GUI)
    2) The core system
    3) The thing that connects the two
    Apple TV has a different GUI then the iphone, that is what you see when you turn it on, the main menu and how you navigate through your phone.
    So what I thought what was the "Apple TV App" is actually the interface.
    So....basically the TV can run the same apps if the app writers adjust them a bit so they fit the GUI of ATV. Currently the ATV has a youtube app and a netflix app and an itunes app, similiar to your iphone. You just interact with them through the ATV interface.
    Message was edited by: richardya

  • [Solved] Strange error with sound modules

    If i modprobe any sound modules, i get strange errors which tell me to lookup dmesg.
    The error output looks like
    WARNING: Error inserting snd_mixer_oss (/lib/modules/2.6.13-ARCH/kernel/sound/core/snd-pcm.ko): unknown symbol in module, or unknown parameter (see dmesg)
    FATAL: Error inserting snd_pcm_oss (/lib/modules/2.6.13-ARCH/kernel/sound/core/oss/snd-pcm-oss.ko): Unknown symbol in modules or unknown parameter (see dmesg)
    The same for my soundcard drivers etc, simply any alsa module.
    My modprobe.conf looks as follows.
    install snd-pcm modprobe -i snd-pcm; modprobe snd-pcm-oss; true
    install snd-seq modprobe -i snd-seq; modprobe snd-seq-oss; true
    options snd device_mode=666
    alias snd-card-0 snd-ens1397
    alias sound-slot-0 snd-ens1371
    Well, this should work fine (as i know). Looking up dmesg i get the following:
    snd_pcm_oss: Unknown symbol snd_info_unregister
    snd_pcm_oss: Unknown symbol snd_info_get_line
    snd_pcm_oss: Unknown symbol snd_pcm_format_width
    I've got this problem since i updated to 2.6.13-ARCH.
    Since this problem causes hotplug to take 10 minutes to start, it's annoying. I'd appreciate any hint what i could try.
    Thank you,
    STiAT

    That did solve my problem.
    Thank you alot!
    STiAT

  • Strange Errors from Import Server on Schema-based maps for repeating nodes

    I have already posted one thread about this, but perhaps some more in-depth information is required:
    We have uploaded our schema into the console, and have mapped the following multi-node file to it:
    CUSTOMER <repeating node>
      MDM_CUST (new Customer number returned)
      CUSTOMER(mapped back from XI for RECORD MATCHING)
      CREATE_DATE (text field)
      CONTACT<repeating node>
        CONTACT_NO (RECORD MATCHING : NON-QUALIFIER)
        CONTACT_SAP_NO (QUALIFIER)
         [NOTE: There are other qualifers for CONTACT, but only this one
    qualifier is being returned and is the only field that would and should be updated.
    The other fields should be left alone. However, it appears to overwrite EVERYthing
    with NULL other than these two fields. The CONTACT_NO is the sole qualifer on
    the table. It is a calculated field that equals the Auto-ID that is also produced on
    the table - but obviously not mapped.]
      PARTNER<repeating node>
        CUSTOMER_NO (RECORD MATCHING : NON-QUALIFER)
        PARTNER_FUNC (NON-QUALIFIER - Code given to lookup from PARTNER_FUNCTION table which has Code and Desc)
        PARTNER_NO     (NON-QUALIFIER)
        DEFAULT_PARTNER_FLAG (QUALIFIER)
    <CLOSE CUSTOMER NODE>
    In the Customer main table, all records are matched on CUSTOMER. The CONTACT_NO non-qualifer is matched to the CONTACT qualified lookup table directly since it is the only available non-qualifier. For the PARTNER table, the three qualifiers are mapped and then a compound field is created to map to the PARTNER table entry.
    We have the Configurations set at:
    Default Multi-Valued Update: Replace
    Default Qualified Update: Replace
    Default Matching Qualifiers: None
    Our record matching is: Create / Update(ALL MAPPED FIELDS) / Update(ALL MAPPED FIELDS)
    When the map is reused, the repeating nodes are all recognized, be it one node or many. However, when the map is reused, it does not automatically map the values for many of the Partner fields (nor the compound field) though the fields are correctly mapped.
    Also, when we attempt to use Import Server to automate the mapping, we use the mdis.ini set to
    Automap Unmapped Value=True
    Unmapped Value Handling=Add
    Always Use Unmapped Value Handling=False
    We get a very strange error saying that :
    [code]Encountered a pre-SP4 map. The map needs to be upgraded to SP4.
    Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map.[code]
    Could it be that our MDM 5.5 SP4 is not compatible with schemas generated with XI v.7 SP9?
    All of our MDM is 5.5 SP4. It makes no sense that we would get THIS kind of error. Also, I am questioning our combination of these and other configurations since it doesn't always seem to do what it should

    Hi Donald,
    this sounds good so far. Just a short hint: you've set "Default Qualified Update: Replace". This explains why Import server "appears to overwrite EVERYthing
    with NULL other than these two fields.". The reason is the replace. A replace means that the old values are completely deleted and only the new incoming ones are stored. I'd suggest to use any of the Update possibilities.
    Note: the definitions you set in in the record matching step are mainly for the new records in the main table! Records in qualified look ups are handled differently! If you open your map in Import Manager, switch to tab "Map Fields/Values". Select a field that is your non qualifier. Right-Click on it and choose "Set qualified update" from the context menu. Now you can define which qualifiers can be used for the qualified look up matching. And you can define as well what should happen with new and/or existing records.
    Regarding the value mapping: do you use keymapping? Or do you use simple values only? Do you save the map everytime you add a new value mapping?
    Regarding the issue "Encountered a pre-SP4 map. The map needs to be upgraded to SP4. Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map". This sounds very likely like a bug in MDIS and should be reported to SAP!
    Hope that helps
    Michael

  • Strange error when Bootcamp attempts to create partition for Windows

    I get a strange error when I tell Bootcamp to create a partition for Windows. I get to the Create a Partition stage. I select 20GB for Windows leaving 91GB (39GB free) for OS X. I then click Partition and it gives me the following error
    *The disk cannot be partitioned because some files cannot be moved.*
    Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again.
    My disk is formatted in Mac OS Extended (Journaled), I have closed all applications (besides Bootcamp Assistant) and I have even restarted and tried again to see if that might help. Nothing. I can't get it to partition. Any thoughts? Can I partition my disk manually through disk utility and then select it in Bootcamp?

    Hi,
    this gets asked at least a thousand times by now.
    Have a look at this thread for solution http://discussions.apple.com/thread.jspa?messageID=10540273&#10540273
    Regards
    Stefan

  • Tried the solutions posted for this "SubVI filter not executable​. Undefined error" but not solving the problem

    Hello,
    I am trying to use a lowpass filter for my application but getting the error "SubVI filter not executable. Undefined error".I tried working with the solutions at this post 
    http://forums.ni.com/t5/LabVIEW/SubVI-filter-not-e​xecutable-Undefined-error/m-p/1996701#M657751 and results with
    1. Create a blank vi, put a VI filter in the block diagram (this should not be functional as it is not wired), copy it and paste it in my other project. I believe if the filter is the first vi of a blank project, it is funcitonal and then you may copy it wherever you need to.
    Result:
    2.Tried to open the filter panel of the Filter but showing the same error as shown inthe below image
    Don't why the solutions worked for others are not working.Can someone suggest a solution for this.
    thanks in advance.

    Hi PatanGova,
    Very strange error. Actually, there are no required inputs on this express VI, so it should be able to run even without wires. It is not correct as you said: "this should not be functional as it is not wired". Nothing will happen, true, but the run arrow should not be broken.
    For some reason, the VI with the Filter express VI fails to compile. I tried it on my computer (LV 2013) and get no error when I add it to a new VI. As was suggested in the linked forum thread, you need to open the front panel of the Filter VI and run it to see the explicit error.
    If you do, do you also get the error:
    "This VI claims to be part of a library that does not include the VI. The VI might have been deleted from the library. Add the VI to the library again or select File - Disconnect from the library."?
    If you do, it seems that you may have a project library somewhere that has taken ownership of the express VI. The ownership prevents you from running or editing the express VI. To free the VI, you need to do one of two things. Either, you need to load the library into memory, or you need to disconnect the VI from the library. Either way, you need to find the project library that has taken the ownership of the VI. As soon as it is released, it should run for you. You release it by selecting File»Disconnect from Library on the VI.
    The workaround described in your link (and also here: http://forums.ni.com/t5/LabVIEW/compatibility-prob​lem-labview-2009-2010-2011-quot-This-VI-claims/td-​... tells that you can make a copy of the VI and thereby create another instance that is free. This solution may work for you as well, but if not, you may not have created the copy properly. Maybe your copy of the VI also became part of some project library that took ownership. In either way, you should rather find the project library to release the VI before trying the workaround to copy it.
    If project library ownership is not the problem, maybe the problem is connected to LV 2011, as most forum posters report that it only happens here.

  • Aperture (3.4.1) no longer opens and the following message appears: There was an error opening the database for the library "/ Users / Andrea / Pictures / Aperture 3 Library.aplibrary." How can I solve this problem? Thanks

    I was using Aperture (3.4.1), when he appeared a notice that asked me to stop the Mac with the power button. When I restart Aperture no longer opens and the following message appears: There was an error opening the database for the library "/ Users / Andrea / Pictures / Aperture 3 Library.aplibrary."
    How can I solve this problem?
    Thanks

    After a system crash your Aperture Library may be corrupted, because Aperture may not have been able to finish the ongoing database transactions.
    Have you tried the Aperture Library First Aid Tools?
    Aperture 3 User Manual: Repairing and Rebuilding Your Aperture Library
    Try "Repair Database", and if this does not help: "Rebuild Database"
    Regards
    Léonie

  • Strange Error ! For Reading Application Server File

    Hi Friends,
    I am getting very strange error while compliling my code. As I am reading a text file for input from Application server for further processing. But my system is giving me an error.
    As the file and the path is not yet configured on the application server but i believe
    it has to allow me to compile the program and when i execute it then it will give an error as I have tracked.
    Kindly help.
    I have pasted the code below for reference.
    ===============================
    TYPES : BEGIN OF ty_file,
             line(1055) TYPE c,
              end of ty_file.
    data : gs_file type ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4  IN TEXT MODE FOR INPUT
                             ENCODING DEFAULT
                             WITH SMART LINEFEED.
      IF sy-subrc NE 0.
        MESSAGE e012.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CLEAR : gs_file.
      DO.
        READ g_file4 INTO gs_file.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        APPEND gs_file into gt_cust_tmp.
        clear gs_file.
      ENDDO.
      CLOSE DATASET g_file4.
    ERROR i am getting
    Unable to interpret g_file4. Possible cause of error "Incorrect Spelling or Comma error".
    =======================
    Regards,
    pradeep

    TYPES : BEGIN OF ty_file,
    line(1055) TYPE c,
    end of ty_file.
    data : gs_file type ty_file.
    data gt_cust_tmp type table of ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4 IN TEXT MODE FOR INPUT
    ENCODING DEFAULT
    WITH SMART LINEFEED.
    IF sy-subrc NE 0.
    MESSAGE e012.
    LEAVE LIST-PROCESSING.
    ENDIF.
    CLEAR : gs_file.
    DO.
    READ dataset g_file4 INTO gs_file.
    IF sy-subrc NE 0.
    EXIT.
    ENDIF.
    APPEND gs_file to gt_cust_tmp.
    clear gs_file.
    ENDDO.
    CLOSE DATASET g_file4.
    check this coding. in the read statement dataset is missing.
    with regards,
    Vamsi

  • One Solve for "Error Compiling movie" Unknown Error

    Just went through a hair-pulling hour trying to figure out why a sequence that had rendered in the past was suddenly not rendering anymore. The footage is HD DSLR footage at 1080p, with a separate audio track. Simple cuts and effects, and an adjustment layer for color-correction.
    I had just successfully compiled another clip in the project and the only difference I could see was that at some point I had added a cross disolve from a Title clip to the Adjustment layer that was in the same (Video 2) track. Not sure why I did this, but it must have gotten dropped down from track 3.
    I removed that cross disolve by moving the Adjustment layer to a new Video track, and fixing the Title's fade out. Sure enough, it works!
    It's a stupid error, but if you find yourself in the same situation, hopefully this could help.
    Stephen

    Glad that you found a "cure," and for others, who might receive the error, for other reasons, this Adobe KB Article might be useful: http://helpx.adobe.com/premiere-pro/kb/error-compiling-movie-rendering-or.html
    Good luck, and thanks for reporting.
    Hunt

  • [SOLVED] X11 error: BadAlloc (insufficient resources for operation)

    Both VLC and mplayer are unable to display video (sound is ok). mplayer complains
    X11 error: BadAlloc (insufficient resources for operation)
    I am able to play the same file with
    mplayer -vo x11
    but no fullscreen with -vo x11 (which is to be expected), and I see no reason why the xv output should not work..
    This is on Dell Latitude D530, intel GM965/GL960. I've switched to arch from gentoo, where it worked, week or two ago.
    Any ideas what can be wrong?
    Last edited by renergy (2014-09-28 10:13:03)

    Have you tried any other video outputs? See 'mplayer -vo help' for the list.
    Try mpv, mplayer's cousin.
    Does it happen only with one file? Run mediainfo on it.
    Edit: Are you using SNA or UXA?
    Compare version numbers and configs of the respective packages of gentoo and Arch. Only what's to blame - the drivers?
    Last edited by karol (2014-09-27 15:14:26)

  • [SOLVED] Error running install command for soundcore

    Hi,
    I use OSSv4 instead of ALSA. Everything is working correctly but I noticed an error message in the bootlog:
    systemd-udevd[204]: Error running install command for soundcore
    What does this mean? Why is there an error?
    Of course I blacklisted the ALSA module as it is described in the wiki: https://wiki.archlinux.org/index.php/OSS#Install
    best regards
    nuc
    Last edited by nuc (2013-02-07 18:09:57)

    Ok, thanks for the info.
    But why does the wiki suggest to run "install soundcore /bin/false" instead of just "blacklist soundcore"? In earlier revisions the wiki suggested to do "blacklist soundcore" (https://wiki.archlinux.org/index.php?ti … did=231068).
    Doesn't this actually have the same effect?
    EDIT:
    I found this https://wiki.archlinux.org/index.php/Ke … acklisting
    Last edited by nuc (2013-01-27 18:20:01)

Maybe you are looking for