| Internet reporting of financial
statements is now commonplace among virtually all major companies around the world.
Even companies that do not have financial reporting documents at their own Websites
generally have their financial reports available from some provider such as the immensely
popular EDGAR database of the SEC. At
first, governments and companies supplied reports online that were also available in hard
copy. In this respect, the Internet simply became a more convenient, faster, and
less-costly way of distributing hard copy reports. However, digitized versions have
some added advantages that are not feasible in hard copy reports, the most notable of
which is the ability to search for words and pictures. Another advantage is the
ability for analysts to slice and dice reports and combine components in to more
useful combinations.
Some innovative companies have moved even further
in Internet Reporting. One of the most innovative companies in this regard is
Microsoft Corporation. Microsoft allows users to generate alternate financial
reports under different sets of foreign accounting standards, including Japanese
standards, French standards, etc. In addition, Microsoft provides two types of
databases in Excel:
- Pivot tables that allow very simple and
interactive slicing, dicing, and reformation of data by the user.
- Forecast spreadsheets that allow users to make
their own economic and growth assumptions to easily generate financial forecasts under
alternative assumptions.
For details regarding Microsoft's
financial analysis tools, go to http://www.microsoft.com/msft/tools.htm
The FEI has a new 16-page fraud checklist that can be
downloaded for $50. Access to an online database is $129 ---
Click Here
"New research provides resources on fraud prevention and
financial reporting," AccountingWeb, January 18, 2008 ---
http://www.accountingweb.com/cgi-bin/item.cgi?id=104443
Financial Executives Research
Foundation (FERF), the research affiliate of Financial Executives
International (FEI), has announced the release of two important new
pieces of research designed to aid public company management and
corporate boards in the efficient evaluation of their assessment of
reporting issues and internal controls. A new FERF Study, entitled
"What's New in Financial Reporting: Financial Statement Notes from
Annual Reports," examines disclosures from 2006 annual reports for the
100 largest publicly-traded companies which
used particularly innovative techniques to clearly address difficult
accounting issues. The study identifies and analyzes recent reporting
trends and common practices in financial statements.
The report illustrates
how companies addressed specific accounting issues recently
promulgated by the Financial Accounting Standards Board (FASB), and
by the Securities and Exchange Commission (SEC), and in doing so,
uncovered a number of trends, which included:
-
Most of the
disclosures selected appear to have been developed specifically
for a company's own operations and industry standards, rather
than "boilerplate" disclosures.
-
Four accounting
areas identified with a considerable variation in disclosures.
The examples cited in these areas used innovative techniques to
clearly address difficult accounting issues.
- Commitments
and contingencies
- Derivatives
and financial instruments
- Goodwill
and intangibles
- Revenue
recognition
Twenty-five out
of 100 filers in the 2006 reporting season reported tangible
asset impairments as a critical accounting policy.
Many companies
report condensed consolidating cash flows statements as part of
their segment disclosures, although not required by SFAS No.
131, Disclosures about Segments of an Enterprise and Related
Information.
To further facilitate use of this report as a
reference tool, all of the financial statement footnotes gathered for
the study are available to members on the
Financial Executives International Web site.
"FERF undertook this study to provide our
members with an illustration of how companies have used innovative
techniques to clearly address difficult accounting concerns," said
Cheryl Graziano, vice president, research and operations for FERF.
"Recent accounting issues publicized by the FASB and the SEC have had a
direct impact on members of the financial community, and the report
shows that many companies are taking action."
"We hope that all financial executives can
utilize the report as both a quick update to summarize recent trends in
the most annual reporting season, as well as a reference to address
common accounting issues. The convenience of the online database will
provide executives with a readily handy tool when drafting their own
annual reports," said Graziano.
A second piece of research by FEI, entitled the
"FERF Fraud Risk Checklist," provides boards of directors and management
with a series of questions to help in assessing the potential risk
factors associated with fraudulent financial reporting and the
misappropriation of assets. These questions were developed from a number
of key sources on financial fraud and offer executives a single
framework in which to evaluate their company's reporting, while
providing a sample structure for management to use in documenting its
thought process and conclusions.
"Making improvements to compliance with
Sarbanes Oxley is a daily practice for financial executives, and the
first step in efficient evaluation of internal controls is the proper
assessment of potential exposures or risks associated with fraud," said
Michael Cangemi, president and CEO, Financial Executives International.
"Through conversations with members of the financial community, we
learned that, while this type of risk assessment is a routine skill for
auditors, many members of management are not always familiar with this
concept. This checklist combines knowledge from the leading resources on
fraud to help financial management take a proactive step in evaluating
their company's practices and identifying areas for improvement."
The annual report study, including the full
report and access to the online database, and the fraud checklist, are
available for purchase on the
FEI Web site
Bob Jensen's threads on fraud are at
http://www.trinity.edu/rjensen/Fraud.htm
Until recently, giant databases both within and
between firms either did not communicate with one another or they did so only after
expensive "back door" software was custom developed for each instance.
Deconstructing Babel: eXtensible Markup
Language (XML)
XML and application integration XML may not yet be a true "silver bullet," but
it can be used to great effect in integration projects if IT managers create a detailed
plan that can overpower its weaknesses.
"Deconstructing Babel: XML and application integration," By Henry
Balen, Application
Development Trends, December 2000 --- http://www.adtmag.com/
XML has become the lingua franca for inter-application
communication. Using XML, all messages sent between applications consist of
self-describing text. This makes the messages easily understandable by both humans and
machines, although it does not supply an efficient packaging of the message. (XML messages
can be considerably larger than a binary representation of the same information.)
There are three aspects of inter-application communication:
Transport—how to get information across the
wire; Protocol—how to package the information sent across the wire; and
Message—the information itself. The transport is usually a lower level
network standard such as TCP/IP. Inter-process communications standards,
such as CORBA, DCE and DCOM, have their own protocols that sit on top of
such transports.
The protocol used depends on the communication mechanism.
Standards may use different protocols to communicate: CORBA uses IIOP, while electronic
mail uses SMTP. Each of these protocols allows you to package a message, specify a
destination and get the message to the designated location. In protocols that support
remote method invocation (RMI), the destination can consist of an object reference and
method.
With each of these protocols, the user defines the message that
is sent across the wire. In the case of CORBA, DCE, DCOM and so on, the message is defined
using an Interface Definition Language (IDL). In E-mail and message-oriented middleware
(MOM) it can be more fluid. No matter what you use, there is an agreement between the
sender and receiver about the meaning of the message. The meaning is not transferred with
the message.
So why use XML? In XML, documents contain meta-information about
the information being transmitted, and can be extended easily. However, XML is less
efficient than transmitting the information using a binary protocol. One advantage,
though, is that humans and computers can both read the document.
To overcome the communication problem, the application can be
enabled to send and receive information in the form of XML. This can be done independent
of protocol, and if the meaning is agreed upon between the applications or organizations,
then you just need to get the package to its intended destination. How it gets there is up
to you. Of course, in these days of the Internet, the HTTP protocol is a natural choice.
There are business domain-specific XML vocabularies under development.
Application integration
From the point of view of an application,
there are various points of integration: data store, APIs or components, and protocol. The
point of integration used depends on the nature of the application. If integration means
the ability to speak XML, then you will need to acquire or build adapters for the point of
integration. These adapters are responsible for getting information in and out of the
application, and performing any necessary transformations along the way.
If the integration involves the sharing of information, you may
want to integrate at the level of the data store. Assuming you have an existing database
containing the information you want to share, your integration adapter is responsible for
translating from a query's result set to an XML document. Conversely, when the application
receives information in the form of XML, the adapter performs a reverse translation and
maps the document elements to the appropriate database entities.
Additional Reading XML,
VoiceXML, XLink, XHTML, XBRL, XForm, XSLT, RDF and Semantic Web Watch --- http://www.trinity.edu/rjensen/xmlrdf.htm "Financial
Reporting on the Internet – Instant, Economical, Global
Communication," by Glen Gray, Information Technology, May
20021 --- http://www.ifac.org/Library/SpeechArticle.tmpl?NID=979235133150990 "Financial
reporting on the Internet and the external audit," by Roger Debreceny
and Glen Gray, The European Accounting Review, Volume 8, Number 2,
1999 --- http://www.bham.ac.uk/EAA/ear/conts/volume8.html "Electronic
Based Financial Reporting, by Hasri Bin Mustafa and Nor Azman Bin Shaari
--- http://www.spk.uum.edu.my/azizi/electronic%20financial%20reporting.htm Electronic
Corporate Reporting Website --- http://accounting.rutgers.edu/SUMMA/corp/papers/papers.html |