Partial Get via   IE Browser/applet failing ... need help !?

Partial Get via IE Browser/applet failing ... need help !?
I recall someone saying that IE client would not receive a partial get initiated by http URL with setRequestProperty("range","bytes=2-");
Can anyone elaborate on why the client seems to balk at the returned result and the getinputStream seems to result in a FileNotFoundException
Do I have to use sockets ??????

Partial Get via IE Browser/applet failing ... need help !?
I recall someone saying that IE client would not receive a partial get initiated by http URL with setRequestProperty("range","bytes=2-");
Can anyone elaborate on why the client seems to balk at the returned result and the getinputStream seems to result in a FileNotFoundException
Do I have to use sockets ??????

Similar Messages

  • I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help?

    I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help? I am not that technically inclined and really simple terms  are appreciated.

    Try downloading the songs from a different device. If you are doing it from your iOS device, try form your computer.

  • A Menu Applet Project (need help)

    The Dinner Menu Applet
    I would need help with those codes ...
    I have to write a Java applet that allows the user to make certain choices from a number of options and allows the user to pick three dinner menu items from a choice of three different groups, choosing only one item from each group. The total will change as each selection is made.
    Please send help at [email protected] (see the codes of the project at the end of that file... Have a look and help me!
    INSTRUCTIONS
    Design the menu program to include three soups, three
    entrees, and three desserts. The user should be informed to
    choose only one item from each group.
    Use the following information to create your project.
    Clam Chowder 2.79
    Vegetable soup 2.99
    Peppered Chicken Broth 2.49
    Chicken 12.79
    Fish 10.99
    Beef 14.99
    Vanilla Ice Cream 2.79
    Rice Pudding 2.99
    Cheesecake 4.29
    The user shouldn�t be able to choose more than one item
    from the same group. The item prices shouldn�t be visible to
    the user.
    When the user makes his or her first choice, the running
    total at the bottom of the applet should show the price of
    that item. As each additional item is selected, the running
    total should change to reflect the new total cost.
    The dinner menu should be 200 pixels wide �� 440 pixels
    high and be centered on the browser screen. The browser
    window should be titled �The Menu Program.�
    Use 28-point, regular face Arial for the title �Dinner Menu.�
    Use 16-point, bold face Arial for the dinner menu group titles
    and the total at the bottom of the applet. Use 14-point regular
    face Arial for individual menu items and their prices. If you
    do not have Arial, you may substitute any other sans-serif
    font in its place. Use Labels for the instructions.
    The checkbox objects will use the system default font.
    Note: Due to complexities in the way that Java handles
    numbers and rounding, your price may display more than
    two digits after the decimal point. Since most users are used
    to seeing prices displayed in dollars and cents, you�ll need to
    display the correct value.
    For this project, treat the item prices as integers. For example,
    enter the price of cheesecake as 429 instead of 4.29. That
    way, you�ll get an integer number as a result of the addition.
    Then, you�ll need to establish two new variables in place of
    the Total variable. Run the program using integers for the
    prices, instead of float variables with decimals.
    You�ll have the program perform two mathematical functions
    to get the value for the dollars and cents variables. First,
    divide the total price variable by 100. This will return a
    whole value, without the remainder. Then get the mod of the
    number versus 100, and assign this to the cents variable.
    Finally, to display the results, write the following code:
    System.out.println("Dinner Price is $ " + dollars +"." + cents);
    Please send code in notepad or wordpad to [email protected]
    Here are the expectations:
    HTML properly coded
    Java source and properly compiled class file included
    Screen layout as specified
    All menu items properly coded
    Total calculates correctly
    * MenuApplet.java
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    * @author Rulx Narcisse
         E-mail address: [email protected]
    public class MenuApplet extends java.applet.Applet implements ItemListener{
    //Variables that hold item price:
    int clamChowderPrice= 279;
    int vegetableSoupPrice= 299;
    int pepperedChickenBrothPrice= 249;
    int chickenPrice= 1279;
    int fishPrice= 1099;
    int beefPrice= 1499;
    int vanillaIceCreamPrice= 279;
    int ricePuddingPrice= 299;
    int cheeseCakePrice =429;
    int dollars;
    int cents=dollars % 100;
    //cents will hold the modulus from dollars
    Label entete=new Label("Diner Menu");
    Label intro=new Label("Please select one item from each category");
    Label intro2=new Label("your total will be displayed below");
    Label soupsTrait=new Label("Soups---------------------------");
    Label entreesTrait=new Label("Entrees---------------------------");
    Label dessertsTrait=new Label("Desserts---------------------------");
      *When the user makes his or her first choice, the running
         total (i.e. dollars) at the bottom of the applet should show the price of
         that item. As each additional item is selected, the running
         total should change to reflect the new total cost.
    Label theDinnerPriceIs=new Label("Dinner Price is $ "+dollars +"."+cents);
      *Crating face, using 28-point, regular face Arial for the title �Dinner Menu.�
         Using 16-point, bold face Arial for the dinner menu group titles
         and the total at the bottom of the applet & using 14-point regular
         face Arial for individual menu items and their prices.
    Font bigFont = new Font ("Arial", Font.PLAIN,28);
    Font bigFont2 = new Font ("Arial", Font.BOLD,16);
    Font itemFont = new Font ("Arial", Font.PLAIN,14);
    //Here are the radiobutton on the applet...
    CheckboxGroup soupsG = new CheckboxGroup();
        Checkbox cb1Soups = new Checkbox("Clam Chowder", soupsG, false);
        Checkbox cb2Soups = new Checkbox("Vegetable Soup", soupsG, true);
        Checkbox cb3Soups = new Checkbox("Peppered Chicken Broth", soupsG, false);
    CheckboxGroup entreesG = new CheckboxGroup();
        Checkbox cb1Entrees= new Checkbox("Chicken", entreesG, false);
        Checkbox cb2Entrees = new Checkbox("Fish", entreesG, true);
        Checkbox cb3Entrees = new Checkbox("Beef", entreesG, false);
    CheckboxGroup dessertsG = new CheckboxGroup();
        Checkbox cb1Desserts= new Checkbox("Vanilla Ice Cream", dessertsG, false);
        Checkbox cb2Desserts = new Checkbox("Pudding Rice", dessertsG, true);
        Checkbox cb3Desserts = new Checkbox("Cheese Cake", dessertsG, false);
        public void init() {
            entete.setFont(bigFont);
            add(entete);
            intro.setFont(itemFont);
            add(intro);
            intro2.setFont(itemFont);
            add(intro2);
            soupsTrait.setFont(bigFont2);
            add(soupsTrait);
            cb1Soups.setFont(itemFont);cb2Soups.setFont(itemFont);cb3Soups.setFont(itemFont);
            add(cb1Soups); add(cb2Soups); add(cb3Soups);
            cb1Soups.addItemListener(this);cb2Soups.addItemListener(this);cb2Soups.addItemListener(this);
            entreesTrait.setFont(bigFont2);
            add(entreesTrait);
            cb1Entrees.setFont(itemFont);cb2Entrees.setFont(itemFont);cb3Entrees.setFont(itemFont);
            add(cb1Entrees); add(cb2Entrees); add(cb3Entrees);
            cb1Entrees.addItemListener(this);cb2Entrees.addItemListener(this);cb2Entrees.addItemListener(this);
            dessertsTrait.setFont(bigFont2);
            add(dessertsTrait);
            cb1Desserts.setFont(itemFont);cb2Desserts.setFont(itemFont);cb3Desserts.setFont(itemFont);
            add(cb1Desserts); add(cb2Desserts); add(cb3Desserts);
            cb1Desserts.addItemListener(this);cb2Desserts.addItemListener(this);cb2Desserts.addItemListener(this);
            theDinnerPriceIs.setFont(bigFont2);
            add(theDinnerPriceIs);
           public void itemStateChanged(ItemEvent check)
               Checkbox soupsSelection=soupsG.getSelectedCheckbox();
               if(soupsSelection==cb1Soups)
                   dollars +=clamChowderPrice;
               if(soupsSelection==cb2Soups)
                   dollars +=vegetableSoupPrice;
               else
                   cb3Soups.setState(true);
               Checkbox entreesSelection=entreesG.getSelectedCheckbox();
               if(entreesSelection==cb1Entrees)
                   dollars +=chickenPrice;
               if(entreesSelection==cb2Entrees)
                   dollars +=fishPrice;
               else
                   cb3Entrees.setState(true);
               Checkbox dessertsSelection=dessertsG.getSelectedCheckbox();
               if(dessertsSelection==cb1Desserts)
                   dollars +=vanillaIceCreamPrice;
               if(dessertsSelection==cb2Desserts)
                   dollars +=ricePuddingPrice;
               else
                   cb3Desserts.setState(true);
                repaint();
        }

    The specific problem is that when I load he applet, the radio buttons do not work properly and any calculation is made.OK.
    I had a look at the soup radio buttons. I guess the others are similar.
    (a) First, a typo.
    cb1Soups.addItemListener(this);cb2Soups.addItemListener(this);cb2Soups.addItemListener(this);That last one should be "cb3Soups.addItemListener(this)". The peppered chicken broth was never responding to a click. It might be a good idea to write methods that remove such duplicated code.
    (b) Now down where you respond to user click you have:
    Checkbox soupsSelection=soupsG.getSelectedCheckbox();
    if(soupsSelection==cb1Soups)
        dollars +=clamChowderPrice;
    if(soupsSelection==cb2Soups)
        dollars +=vegetableSoupPrice;
    else
        cb3Soups.setState(true);What is that last bit all about? And why aren't they charged for the broth? Perhaps it should be:
    Checkbox soupsSelection=soupsG.getSelectedCheckbox();
    if(soupsSelection==cb1Soups) {
        dollars +=clamChowderPrice;
    } else if(soupsSelection==cb2Soups) {
        dollars +=vegetableSoupPrice;
    } else if(soupsSelection==cb3Soups) {
        dollars +=pepperedChickenBrothPrice;
    }Now dollars (the meal price in cents) will have the price of the soup added to it every time.
    (c) It's not enough to just calculate dollars, you also have to display it to the user. Up near the start of your code you have
    Label theDinnerPriceIs=new Label("Dinner Price is $ "+dollars +"."+cents);It's important to realise that theDinnerPriceIs will not automatically update itself to reflect changes in the dollars and cents variables. You have to do this yourself. One way would be to use the Label setText() method at the end of the itemStateChanged() method.
    (d) Finally, the way you have written itemStateChanged() you are continually adding things to dollars. Don't forget to make dollars zero at the start of this method otherwise the price will go on and on accumulating which is not what you intend.
    A general point: If you have any say in it use Swing (JApplet) rather than AWT. And remember that both Swing and AWT have forums of their own which may be where you get the best help for layout problems.

  • I get error 0x80073cf9 now and I need help to FIX Windows Store can't update any Apps & can't install any Apps now?

    Hi I hope some one can tell me step by step how to fix windows 8.1, I can't update any of my Apps and can't install any new apps now and I get error code 0x80073cf9?  But my problem is different than most of the other FIXES I read about, because nothing
    fixes my problem to be able to install new Apps and get app updates and stop getting that error code?
    I keep getting same error code 0x80073cf9 after I try any of the FIXES I have read about and tried all  the fixes on  my Lenovo Z580 laptop, that came with windows 8 and updated to 8.1.  And ever since I bought this laptop I could
    always install and update all my apps for the last year when I had Win 8 and Win 8.1 now.   This has been going on since April and May and its driving me crazy!    And from the May updates I did get all the updates and
    I also installed the KB update  that said I need this KB to get all updates in the future.  
    But all the other people when they get this error code they could not even open and use any of their Apps already installed.  And they also get the error code when they try to update or get a new apps.   
    But I can click on any APP installed already and use all my Apps with no problems.     I have read so many how to fix this error code but nothing works! :-(      I have tried a lot of 
    the fixes on Microsoft forums that says do this and the fix will get rid of the error code but I keep getting the same error code after I try that  fixes.    And I have read a lot of other windows 8 an windows 8.1  web sites when
    I search for how to fix this error code?   And tried all of the fixes that were different from the Microsoft forum fixes. But after I try those fixes I still can't install any apps or can't get my app updates? 
    Please to any person's who can help me by giving me  more that 1 fix, because I have tried so many fixes, If you know more that 1 fix tell me how to do your fix step by step so I can understand what you say to do to fix my windows store? 
    Thanks for any and all help?  And if I don't get any help in this section of the forum I will try to put this in a different area, if I don't get any help at this section of the forum I will try to ask this in another part of he forum ok?   
    I really need HELP with this so I can get my laptop working again to install new apps and get the updates to my apps? 

    Fixed the problem by going to settings/store and logging out with apple ID.  Then logged back in with password and updates, apps, and iTunes store seem to work ok now.

  • Getting error message... Need help now..

    I was using my powerbook g3 and all of a sudden i get a message pop up on the screen. It says: you need to restart your computer. Hold down the power button for several seconds or press the restart button.
    I held down the power button for several seconds numerous times and it did nothing.
    Then i pushed control-command-power buttons at same time and the computer restarts, just to the same spot, with the same message.
    I even found the manual restart button on the back and got the same result.
    Please help me. How do i get rid of this message and use my computer again? I have 3 sports pages to get done this weekend. I need my laptop to work.
    I am running os 10.3.9
    there is also a 9.2 os on computer as well.
    Please help!!!!!

    Robert:
    You are likely experiencing what is called a kernel panic. These may be either hardware or software based. To shut down the computer hold down the Power button for about five seconds. You will find more about KPs and troubleshooting information in Dr. Smoke's FAQ Resolving Kernel Panics. If you are able to locate the crash log, please post the last one, as that may be helpful in pinpointing the cause of the issue.
    cornelius

  • Hard Drive Failed Need Help!

    Hey guys, heres my story. My hard drive failed last week (wouldnt go past white screen), took it to genius bar, they ran Disk Warrior and it seemed to fix it. As a precautionary measure I bought a 1tb external drive and backep up my system via time machine. Today my imac froze and I am having the same problem, wont boot past white screen. I am 2 months out of my warranty and need to know what is the easiest fastest and cheapest fix since I am a college student. Also are any of these options possible?
    1) Install OS X as a clean system and use my external HD to load my system.
    2) Buy another external HD and boot up from that?
    3) Buy another internal HD and have someone install it (not sure how much this would cost though)
    If anyone can help me out I would really appreciate it.

    All 3 of those are possible however #1 and 2 are not favorable. I would suggest to first run a few tests to make sure that your hard drive is actually bad.
    1) The first test like Larry suggested is to boot up to your Mac OS install disk, but do not go through the installation process. Instead go to the Utilities Menu at the top and open Disk Utility. If your drive does not show up in the left hand column then the drive is likely bad.
    2) Insert the original iMac install disk like in step 1 but this time when you startup hold down the "d" key. This will load up the Apple Hardware Test. Run the Extended test. If it passes everything then this means your computer is ok just the hard drive is bad.
    3) However if in step 1 Disk Utility does see the hard drive first try Repairing the Disk. If this fails you might try reformatting the drive and reinstalling Mac OS X as the problem could be an issue with the system software.
    4) Which should actually be step 1 is to disconnect all of your external devices like hard drives and see if you still cannot boot. Keep everything disconnected during testing.
    The problem is hard drive failures can be intermittent. One minute it works the next minute it doesn't even see a hard drive. Good luck though and let us know how it goes.
    George

  • Adobe Reader in browser window disappearing-need help

    I have created a word document (WD1) containing links to other word documents (WD2, WD3, etc). I then turned WD1 into a .pdf file. I then upload this .pdf file to a web page. I go to this webpage and click the link to open the WD1.pdf file. When I click the WD1.pdf link on the webpage, a new browser window opens with Adobe reader in it displaying WD1.pdf. so far so good. Now when I click on the links to WD2 or WD3, these links open in Word and the correct files display, but the browser window containing WD1.pdf file disappears (thats the best way to describe it) and the first webpage is still open.
    What I am trying to achieve is to have the second browser window stay open so the trainees using this web page will be able to click on the other references on the .pdf to get to all of the links without having to re-open it each time.
    I have Researched in help and web forums, the only reference I can find is to uncheck the box next to Open cross-documents in the same window in preferences in Adobe. Which I have done and restarted my computer. I also noticed a preference show each document in its own window which is checked.
    Here is the other rub, I have a desktop computer (OS is XP) and a laptop (OS is vista). I have Adobe 8.1.2 installed on both. The laptop with vista works the way I would like. But the desktop computer with XP does not. I did have Adobe 7.0.9 on the desktop but when it did do what I wanted I upgraded to 8.1.2 and it still isnt working. The real problem is that most of the trainees will be using their work computers with XP. I dont know even know if there is any significance in this observation or not. But thought I would throw it out there.
    Does anyone have any suggestions of things I could try or know of any solutions? Please help.

    There is a technology on Labs called BrowserLab that is designed to assist with browser compatibility. Is this question regarding BrowserLab or is the question more general?

  • Adobe Media Encoder Fail - need help please

    I keep getting a failed error when trying to use Adobe Media Encoder. 
    I open up my premiere project and select the comp I want.  I switch the format to Quicktime, select h.264 from preset.  Hit the start button and I get the failed sound/icon.
    2 questions:
    1. My comp is 1920x1080 but when I go in it automatically has it as 720... why is it not recognizing the comp size?
    2. Is there a way to fix this error?  It seems to export occassionally to my C drive (which is not raid) but it fails to my F drive (Raid 10).  But usually if I export as a wmv or something smaller it exports fine to F.

    Sorry it took so long to get back to you I had to go out of town.  Error message doesn't say anything to me... maybe to you.  I'm not really sure what to set for "Field Type" so I just leave it at Lower.  Not sure if I should set it to higher or progressive instead.
    - Source File: F:\master_project\Fetterman\Premiere\Fetterman_Actos.prproj
    - Output File: F:\master_project\Fetterman\Premiere\Fetterman-Actos.mov
    - Preset Used: Custom
    - Video: 1920x1080, 29.97 fps, Lower, Quality 100
    - Audio: 48000 Hz, Stereo, 16 bit
    - Bitrate: H.264
    - Encoding Time: 00:00:00
    03/15/2012 04:05:21 PM : Encoding Failed

  • Hey friends ! Getting error in IDOC creation ! need help

    After i execute the outbound IDOC report ! I am getting an error in the Status message as "error 26".
    I searched for thet in se16  and come to know that its aEDI syntax error.
    Can anyone tell Where are the defects  and will be the approach to solve the error.In what way I will rectify !
    Need your Advice on that.Thanks !

    we19 will allow to re-execute & debug.

  • Export keeps failing - Need help

    Alright, this is the second video in a row that this has happened to me. My computer isnt the fastest so it takes 40 minutes each time I export my 4 min video.  Asides from that, whenever I export my videos, the export fails and this is what it says overall.
    File importer detected an inconsistency in the file structure of Sequence 01.mp4.  Reading and writing this file's metadata (XMP) has been disabled.
    Any ideas on what to do? I really need to export this video as soon as possible.
    Thank You.

    Uncheck the Import Into Project box in the Export Settings dialog.  You'll find it directly above the Queue button.
    That error message doesn't mean the export failed, though.

  • Query for getting Last 4 Day of weeks - need help

    I am having a table profile that contains a column 'Modified_Date' that stores date values. The table contains records for the last one month.
    Now, I need a query that gives me the last 3 wednesdays (Including today)
    i.r,. I need the last 4 wednesdays including today.
    How can I acheive this.
    Thanks in advance.
    Regards
    Raghu.

    Hi,
    explain? I'll try.
    Level is a pseudocolumn used in conjunction with connect by. In connect by I used < 5 as a condition since you wanted the last 4 Wednesday. I used it to get a number to be used as a multiplier.
      1  select next_day(sysdate,'wednesday')-(7*level) weds, level lvl from dual
      2* connect by level < 5
    SQL> /
    WEDS             LVL
    06-AUG-08          1
    30-JUL-08          2
    23-JUL-08          3
    16-JUL-08          4
    next_day(p_date,'wednesday') returns the calendar date of Wednesday after the date in p_date
    (7*level) a week is composed of seven (7) days multiplied by level or number of weeks to get number of days between weeks. I then subtract this from the result of next_day function

  • Applet beginner needs help

    Hello,
    I would like to have an applet similar to those two that can be viewed here:
    http://www.lelatina.com/Latina/cgi-bin/affichage.php?action=visite_virtuelle
    Can anyone tell me what I need in terms of equipment and software.
    Julien.

    Googled for scroll and applet and got this on the first hit:
    http://javaboutique.internet.com/AmpersandScroll1_5/
    If you want to write applets yourseve:
    Tutorial about applets (how to compile and such)
    http://java.sun.com/docs/books/tutorial/applet/TOC.html
    You need the jdk from SUN to compile it, read the following tutorial on what you need and
    how to compile it.
    http://java.sun.com/docs/books/tutorial/getStarted/TOC.html

  • C440 Hard drive failed NEED HELP ASAP PLEASE!

    SO my c440 lenovo all-in-one Desktop Has had a Hard drive failure i get the error "Error 1962: No operating system found. Press any key to repeat boot sequence." I've had the hard drive looked at and it wont power on or anything. I can buy a new HHD same model ect But how can i get my operating System of Windows 8 back on the New HHD( hard drive)??? i only have the Lenovo drivers  Disk

    Good day and welcome to the community.
    If you didn't make recovery media prior to the HDD failure, which sounds catastrophic, you'll need to contact Support (info below) to discuss obtaining the proper media. There may be an associated cost.
    Hope this helps.
    Regards.
    United Kingdom
    IDEA-branded and B, C, E, G, H, K, N, Q, V, Y Series Products
    English
    0333-777-3991
    (National Rate)
    9:00 - 18:00 Monday - Friday

  • I made my main account a parental control account and when I accessed the account created as admin, at the Parental Control options I deleted my main account and now I can't get back in it. I need help with this problem.

    I made my administrator account a parental control account, at the time of creating it, the system asked for my administrator password, to restart the computer, and the new account was created. When I accessed that account at the parental control menu I could see my main account on the list and i deleted the account from that list, and now i'm trying to get back to it but I'm not able to because every time i restart the computer brings me back to the account I created. I searched for help on the web and it says to go to users and select the account I want to restore but I can't do it. Please help.

    User account – restore missing admin

  • My firefox crashes every 2-5 minutes for unknown reasons. its getting really annoying and i really need help with this :( i cant seem to get an ID on the crash report, its giving a different reason everytime.. i think. please help !

    i have many many crash reports and they all seem different. yet, whenever i search the support pages for help on those crash IDs it shows 0 results. alot of people are having the same problems, and i hope we ALL can get help on this. its getting really frustrating and annoying :(

    i doubt it is from skype. i havent used skype in 2 days or so.
    here are the crash reports IDs from JUST today..
    bp-8c7fab55-79c8-4db1-9527-4ba072111013 10/13/2011 4:51 PM
    bp-db6bf6c4-cf34-4eae-a742-105842111013 10/13/2011 4:51 PM
    bp-f28611cf-3ff0-4658-a843-05da92111013 10/13/2011 4:32 PM
    bp-03fa57ef-580d-4f1d-8fb4-52ac72111013 10/13/2011 4:21 PM
    bp-d07e0d82-df2a-41c8-a19b-bb99e2111013 10/13/2011 4:19 PM
    bp-fafbd8cf-6769-4b76-8153-c17242111013 10/13/2011 4:06 PM
    bp-ee9694ab-585b-4963-8b94-e46432111013 10/13/2011 3:47 PM
    bp-773242e1-a87d-4e19-90cb-ce4e52111013 10/13/2011 3:37 PM
    bp-6bae0db3-895b-4239-8a71-758ce2111013 10/13/2011 3:36 PM
    bp-6dfc1b57-5a8f-4244-baa1-8d0642111013 10/13/2011 3:36 PM
    bp-9a6589cd-0e2f-4299-b517-a6c862111013 10/13/2011 3:31 PM

Maybe you are looking for

  • [Arch base install]Launch X automatically at log on (Solved)

    In the last 3 months I`m beginning to understand the basics of archlinux. At this moment my laptop runs a basic arch installation with xorg and xfce4. Still busy with the wireless tho, but their is enough documentation for that problem. I've got the

  • Start Position When Printing Labels from Contacts

    I'm trying to print addresses to a half-used sheet of mailing labels using Contacts, but the app only lets me start with the Column 1, Row 1 position.  Is there a way to start printing from some other position on the sheet?

  • Invoice List accounting and factorial Discount/Taxes

    Hi , Is it possible to Post Invoice list ( Doc Type LR )Document to FI . If Yes then pl. tell me the procedure ? How can we use factorial Discount and Factorial Tax in Invoice list . if these two conditions are used the how to post in Customers accou

  • Merge cells in reuse alv

    Hello gurus. Please help me with merging cells. I need to merge some cells in alv grid. To create grid i use reuse_alv FM. For example it is needed to merge all cells in several rows. What should i do ? I think that there should be some manipulations

  • Enhancement Request 4.0

    Hallo, Apex is a real cool tool, but has come into the years now. For a new realease I would with if there is full support for Web 2.0 features ie. full RAD support for AJAX what means less programming and some declaration (following the basic concep