<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Development Standards</title>
	<link>http://www.devstandards.net</link>
	<description>Thinking Beyond Programming</description>
	<lastBuildDate>Sat, 24 Jul 2010 03:46:37 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Accrual Basis Accounting</title>
		<description><![CDATA[Accrual Basis Accounting is the most commonly used accounting method which recognized revenue and expenses as follows: Revenue Recognition Revenue is recognized when the following conditions are met Income is earned when cash is received when products are delivered or services are provided Income is realized when it is reasonable to expect that cash will [...]]]></description>
		<link>http://www.devstandards.net/oracle/oracle-e-business-suite/accrual-basis-accounting.html</link>
			</item>
	<item>
		<title>Accounting Encumbrance</title>
		<description><![CDATA[In accounting, an encumbrance is an action of predefining future expenditures for a certain planned project, company expenses, etc. This will later on become actual expenditures when goods and services are received. The primary purpose of tracking encumbrances is to avoid overspending a budget. Encumbrances can also be used to predict cash outflow and as [...]]]></description>
		<link>http://www.devstandards.net/oracle/oracle-e-business-suite/accounting-encumbrance.html</link>
			</item>
	<item>
		<title>Get Employee Details in Oracle E-Business Suite</title>
		<description><![CDATA[select distinct p.person_id, p.full_name, p.employee_number, p.email_address, p1.full_name supervisor, p1.employee_number supervisor_emp_num, p1.email_address supervisor_email from per_all_people_f p, per_all_assignments_f a, per_all_people_f p1 where p.employee_number = a.assignment_number and a.SUPERVISOR_ID = p1.person_id and p.EFFECTIVE_END_DATE >= sysdate and p1.EFFECTIVE_END_DATE >= sysdate and p.employee_number = '&#038;EMP_NUMBER'; Random PostsTKPROF Links (0)Tips in Working Abroad (0)Oracle 11g Documentation (0)Java Threading (0)NoSpam! &#8211; an alternative [...]]]></description>
		<link>http://www.devstandards.net/oracle/oracle-e-business-suite/get-employee-details-in-oracle-e-business-suite.html</link>
			</item>
	<item>
		<title>Check the Oracle Database Version</title>
		<description><![CDATA[Run this query to check the version of the Oracle Database: select MAX(version) from v$instance; Random PostsFree Software Links (0)Oracle Documents (0)Wehmeyer Choosed Oracle Retail Optimization (0)Software Best Practices Conference (0)SEO URL Rewriting for GARS (0)TKPROF Links (0)My Plans for 2008 (0)Tips in Working Abroad (0)SandPress Wordpress Theme (0)Generating Spool File Layout (0)]]></description>
		<link>http://www.devstandards.net/oracle/oracle-e-business-suite/check-the-oracle-database-version.html</link>
			</item>
	<item>
		<title>Java Threading</title>
		<description><![CDATA[TimerTextField.java import java.util.Date; import javax.swing.JTextField; public class TimerTextField extends JTextField implements Runnable { private boolean gogo = true; @Override public void run() { // TODO Auto-generated method stub Date d; while(gogo) { d = new Date(); this.setText(d.toString()); this.repaint(); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } [...]]]></description>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-threading.html</link>
			</item>
	<item>
		<title>Java Navigation</title>
		<description><![CDATA[Main.java public class Main { public static void main(String[] args) { new Apps(); } } Apps.java import java.awt.Component; import java.awt.Rectangle; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.JTextField; public class Apps extends JFrame{ private JButton jbsave; private [...]]]></description>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-navigation.html</link>
			</item>
	<item>
		<title>Java Hashmap</title>
		<description><![CDATA[Pet.java public class Pet { private String name; private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } Apps.java import java.awt.Component; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.BufferedReader; import java.io.FileReader; [...]]]></description>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-hashmap.html</link>
			</item>
	<item>
		<title>Java Array</title>
		<description><![CDATA[import java.util.Arrays; public class MainProg { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int num1[] = {1,2,3,4}; int num2[] = new int[4]; int num3[] = new int[4]; // to populate for (int i=0 ; i < 4 ; i++) { num2[i] = i; } Arrays.fill(num3,0); // [...]]]></description>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-array.html</link>
			</item>
	<item>
		<title>New Oracle SOA Book</title>
		<description><![CDATA[Are you new to SOA and would like to learn how Oracle SOA Suite fits into the SOA world ? Or are you a SOA professional and looking for an all in one book on Oracle SOA Suite? Then wait no more, after a few months of waiting, Matt Wright and Antony Reynolds finished the [...]]]></description>
		<link>http://www.devstandards.net/oracle/new-oracle-soa-book.html</link>
			</item>
	<item>
		<title>Javascript getElementById Issue in Firefox</title>
		<description><![CDATA[I'm working on an Javascript code. This web application is retrieving value from a couple of textbox fields and concatenate in result textbox field. I tested the web application in Internet Explorer and it work fine. But when I'm testing in Firefox, the value is not passed to the textbox field. Here is the original [...]]]></description>
		<link>http://www.devstandards.net/web/javascript/javascript-getelementbyid-issue-in-firefox.html</link>
			</item>
</channel>
</rss>
