Friday, August 3, 2007
Premature AJAX-ulation
Security has always been a issue in newly popular technologies. But if you look back in time, you'll find that most of the tech(s) become popular due to one of the two reasons - either ease of use or ease of development and AJAX looks just too good to dump(for users) which automatically means that it'll stay in demand whether the security is there or not. So my guess is that ways of coding in AJAX will continuously improve as happened in all other langauges too (inlcuding JAVA) in a short time to come. So expect tools and coding guidelines for AJAX based applications coming out very soon. Till then just chugg along!!
Google's New Mobile Phone!!
Monday, July 30, 2007
SAPCompare with Webdynpro Comparision
Friday, July 6, 2007
File Locking Problem in Webdynpro ABAP
In the previous days I had been busy with my work which explains why I had been mostly off the blog.
But I have something intresting to share, I have had a problem while downloading a Excel file using Webdynpro ABAP Download link. The error message:
"The file is Locked for editing by another user. Click read only or click notify to open read only"
This caused me to try a lot of things, finally I was able to resolve it using HTTPWatch.
This issue will come up when the file you have sent to the client doesn't go as an attachment. If you have to send it as an attachment set the Behaviour attribute of FileDownload UI element to 'allowSave' by using the dropdown.
Another thing I realized during a discussion was that you should not specify the mime type as 'application/vnd.ms-excel', since this becomes Microsoft Excel specific, instead specify the mime type as 'x-excel/application'.
Tuesday, June 5, 2007
SAPCompare is out! Check it out here. It's a Comparison tool for ABAP Object Classes and it can compare all the classes in two different SAP systems using RFC connection. Just goto transaction SM59 in your SAP GUI and set a RFC destination to connect to the other SAP system and just run the report. That's it! Give the classname and the RFC destination, it'll compare the whole system's classes all along with the private, protected sections and the method code.
The enhancement for integrating Webdynpro ABAP components is also written now, and I have found it to be even more accurate then the comparison screen they give in the version management screen. I am changing that code for enabling plugin development, so I should have that ready in a few days. Check back again after some time to read on about Wendynpro plugin development..
sapcompare
Friday, March 30, 2007
No More HTML Viewing?
I like this new approach even though it may require more maintenance efforts and remains difficult to debug and write during development. Why? There are certain great advantages it has:
1. It's not easy to steal your webpage's look, feel, functionality and identity (Though it is very much possible using tools like Firebug) .
2. Makes it tough to be hacked (though maybe not that much but still may be for novice it does act as a detterent)
3. A lot of Page Logic remains on the client so the responses to actions is quicker thus providing better End user experience.