স্বাধীনতা, এই শব্দটি কীভাবে আমাদের হলো

একটি কবিতা লেখা হবে তার জন্য অপেক্ষার উত্তেজনা নিয়েলক্ষ লক্ষ উন্মত্ত অধীর ব্যাকুল বিদ্রোহী শ্রোতা বসে আছেভোর থেকে জন সমুদ্রের উদ্যান সৈকতে: ‘কখন আসবে কবি’? এই শিশু পার্ক সেদিন ছিল না,এই বৃক্ষে ফুলে শোভিত উদ্যান সেদিন ছিল না।তা হলে কেমন ছিল সেদিনের সেই বিকেল বেলাটি?তা হলে কেমন ছিল শিশু পার্কে, বেঞ্চে, বৃক্ষে, ফুলের বাগানেঢেকে দেয়া… Continue reading স্বাধীনতা, এই শব্দটি কীভাবে আমাদের হলো

How to avoid auto forwarding by XAMPP from http://localhost/ to http://localhost/xampp/ ?

After installation, XAMPP automatically forwards your requests for http://localhost/ to  http://localhost/xampp/. That means you can not access ‘http://localhost/’. You are always forwarded to http://localhost/xampp/. The reason is, you are automatically forwarded to ‘/xampp/’ by the index.php located at your document root. If your document root is “C:/xampp/htdocs”, the index.php is located there. To fix the… Continue reading How to avoid auto forwarding by XAMPP from http://localhost/ to http://localhost/xampp/ ?

পড়লাম ‘জনযুদ্ধের গণযোদ্ধা’ – মুগ্ধ, অভিভুত, গর্বিত আমাদের পুর্বপুরুষদের জন্য

‘জনযুদ্ধের গণযোদ্ধা’, বইটার নাম আগে অনেকবারই শুনেছিলাম। পড়া হয়ে উঠেনি। নিউমার্কেটে নাকের সামনে দেখে কিনলাম। বইটার নাম শুনে কেন জানি মনে হয়েছিল মোটাসোটা বই হবে। মাত্র ৯৩ পৃষ্ঠার বই। মোটামোটি এক নি:শ্বাসে শেষ করলাম। বইটা পড়ে আমি মুগ্ধ, অভিভুত, গর্বিত আমাদের পুর্বপুরুষদের জন্য, সেই সাথে লজ্জিত তাদের প্রাপ্যসম্মান না দেয়ার জন্য। এইচবিওতে ‘ব্যান্ড অব ব্রাদার’… Continue reading পড়লাম ‘জনযুদ্ধের গণযোদ্ধা’ – মুগ্ধ, অভিভুত, গর্বিত আমাদের পুর্বপুরুষদের জন্য

How we Track Purchasing Commitment with our Reporting Budget Without Using Encumbrance Accounting

My following article on Oracle Application published in ‘Oracle Metalink Customer Knowledge Exchange‘. The Doc ID:  Note: 553588.1 How we Track Purchasing Commitment with our Reporting Budget Without Using Encumbrance Accounting In our 11.5.10.2 apps installation we are using reporting budget only (without budgetary control and not using encumbrance accounting). It was not possible for… Continue reading How we Track Purchasing Commitment with our Reporting Budget Without Using Encumbrance Accounting

How I Used RedHat Command Line Utilities to Automate Rapid Clone on my Test and Dev Instances

My following article on Oracle Application published in ‘Oracle Metalink Customer Knowledge Exchange’. The Doc ID:  Note: 454393.1 How I Used RedHat Command Line Utilities to Automate Rapid Clone on my Test and Dev Instances We are running single node Oracle Application R11i production system on RedHat AS3 for our telecom sector business. I have… Continue reading How I Used RedHat Command Line Utilities to Automate Rapid Clone on my Test and Dev Instances

How to reject pre-approved status blanket release?

Navigate to Responsibility -> Workflow Administrator->Status Monitor.Find the workflow item by entering:Type Internal Name: POAPPRV & User Key: 9999 (Your PO number) & click ‘Go’. From the search result select appropriate workflow and click Activity History->Skip->Back to sender.

Photos of our first child

These are some photo’s of our first son. His name is Utsab (Festival) . He was born on Jan 08th 2008.

Published
Categorized as Photos

How to find number of asset created in a period along with start and end asset number?

SELECT p.period_name, p.period_counter, COUNT (a.asset_number) COUNT,   MIN (a.asset_number) start_number, MAX (a.asset_number) end_number   FROM fa_additions_b a, fa_deprn_periods p   WHERE a.creation_date BETWEEN p.period_open_date AND NVL (p.period_close_date, SYSDATE)   AND p.BOOK_TYPE_CODE=’MY_BOOK1′ GROUP BY p.period_name, p.period_counter ORDER BY p.period_counter

How do I find which organization is master to which child organization?

SELECT p.organization_id clild_organization_id,   p.organization_code clild_organization_code,   c.organization_name child_organization_name,   p.master_organization_id,   m.organization_code master_organization_code,   m.organization_name master_organization_name FROM mtl_parameters p,   org_organization_definitions m,   org_organization_definitions c WHERE p.master_organization_id = m.organization_id AND p.organization_id = c.organization_id ORDER BY p.organization_code