Programming
Fix Tweetmeme button to be XHTML strict compliant
1Tweetmeme plugin is a really great plugin for the integration between Twitter and WordPress, but it has a problem: Is not XHTML strict compliant.
With really few modification I will show how to edit code and make it XHMTL strict compliant.
- Locate the file twitter.php into your plugins/tweetmeme folder
- Edit the file and locate function twitter_generate_button
- Replace line 42
$button .= '<iframe src="http://platform.twitter.com/widgets/tweet_button.html' . twitter_build_options() . '" ';
with the following code
$button .= '<object type="text/html" data="http://platform.twitter.com/widgets/tweet_button.html' . twitter_build_options() . '" ';
- Replace line 76
$button .= ' frameborder="0" scrolling="no" allowtransparency="true"></iframe></div>';
with the following code
$button .= ' ></object></div>';
That’s it… Now your Tweetmeme button is strict compliant check it at http://validator.w3.org/
xlsx2abap – Read and edit your Excel files from ABAP
10Just two months ago I presented to SDN Community my open source project abap2xlsx. With this blog I would like to announce you the release of xlsx2abap and abap2xlsx v2.0.
I’m very happy of the Community reaction to this project that gives me the power to quickly go on and extend my abap2xlsx and create the new xlsx2abap.
This cannot be real without the active contribution of some SDN community members: Gregor Wolf, Tomek Mackowski and Alvaro Tejada Galindo. Thank you guys!
So coming to the project what’s new?
Not only on the SDN ABAP Home page… Now on SDN Home page
1Yes now on SDN Home page.
Read my blog on SDN apab2xlsx – Generate Your Professional Excel Spreadsheet from ABAP; discussions and suggestions are really appreciated.

Me on the SDN Abap Home Page! Yes, it’s real
1Today I was notified that my recent blog apab2xlsx – Generate Your Professional Excel Spreadsheet from ABAP is on the SDN home page.
I’m really proud about that and I so excited. I wanna thank all my Techedge colleagues and especially Sergio Ferrari, Andrea Olivieri, Luca Grilli and Fabio Di Micco.

abap2xlsx – Generate your professional Excel spreadsheet from ABAP
10
Read also on SDN @ http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20046
One of the main request of manycustomers is to use MS Excel spreadsheet as data output for reports and analysis.
Most of the standard SAPcomponents (such as ABAP ALV, WebDynpro ALV, System menu, etc.) provide the option to export data in MS Excel 2003 or in many other MS Excel compatible fileformats (csv, plain text, mhtml and so on).
What are the limits? Most of themdepend on SAPGui or Web Dynpro and are not available for example in case youwhat to send it as eMail attachment.

