Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Creating an XBRL compliant document
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
JemmimmaP  
View profile  
 More options Sep 9 2010, 6:40 am
Newsgroups: microsoft.public.xml, microsoft.public.dotnet.framework.aspnet
From: JemmimmaP <catt...@gmail.com>
Date: Thu, 9 Sep 2010 03:40:41 -0700 (PDT)
Local: Thurs, Sep 9 2010 6:40 am
Subject: Creating an XBRL compliant document
I've got to write an app to allow someone to enter financial
information, which will then be stored in SQL and then produce an XBRL
compliant document.

I have the taxonomy from the company it has to be submitted to - but
what now? where do I start? I've not done a huge amount of work with
XML.

App will be written in C#.NET

Help Please!?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kutle Boy  
View profile  
 More options Sep 9 2010, 7:31 am
Newsgroups: microsoft.public.xml, microsoft.public.dotnet.framework.aspnet
From: "Kutle Boy" <ku...@kutle.com>
Date: Thu, 9 Sep 2010 13:31:33 +0200
Local: Thurs, Sep 9 2010 7:31 am
Subject: Re: Creating an XBRL compliant document

> I've got to write an app to allow someone to enter financial
> information, which will then be stored in SQL and then produce an XBRL
> compliant document.

> I have the taxonomy from the company it has to be submitted to - but
> what now? where do I start? I've not done a huge amount of work with
> XML.

> App will be written in C#.NET

> Help Please!?

What exactly do you want?

A conceptual description?

1.) Provide a form with text boxes to user who will enter the data
2.) Understand where to insert that data into XBRL file(respecting that
company taxonomy off course)
3.) Complete the rest (proper format of the file and submitting procedure)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JemmimmaP  
View profile  
 More options Sep 9 2010, 11:09 am
Newsgroups: microsoft.public.xml, microsoft.public.dotnet.framework.aspnet
From: JemmimmaP <jemmim...@virginmedia.com>
Date: Thu, 9 Sep 2010 08:09:21 -0700 (PDT)
Local: Thurs, Sep 9 2010 11:09 am
Subject: Re: Creating an XBRL compliant document
haha, I guess I was vague ;)

I can create the input app fine and saving the data to SQL no probs -
I'm looking for a rough idea of getting info back out and placed into
an XML file that will be validated against the taxonomy - are there
any example out there or what's the best tools to use? I'm using
VS2008, SQL2005


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Flynn  
View profile  
 More options Sep 10 2010, 1:06 pm
Newsgroups: microsoft.public.xml, microsoft.public.dotnet.framework.aspnet
From: Peter Flynn <peter.n...@m.silmaril.ie>
Date: Fri, 10 Sep 2010 18:06:39 +0100
Local: Fri, Sep 10 2010 1:06 pm
Subject: Re: Creating an XBRL compliant document
On 09/09/10 16:09, JemmimmaP wrote:

> haha, I guess I was vague ;)

> I can create the input app fine and saving the data to SQL no probs -
> I'm looking for a rough idea of getting info back out and placed into
> an XML file that will be validated against the taxonomy - are there
> any example out there or what's the best tools to use? I'm using
> VS2008, SQL2005

Your best bet is to use XQuery to select the data and output it in some
temporary XML format, and then pass that through an XSLT script to
generate the XBRL document.

Ideally the data would be gathered using XForms and stored in a native
XML system to start with, rather than using a relational database; then
the process would be XML from end to end, which is always much easier to
deal with. But a lot of organisations are still stuck with SQL systems,
so you have to take a hybrid approach.

If you need to generate XML, the best approach is to use XML-compliant
tools rather than trying to coerce non-XML tools into doing it.

///Peter


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
StefanM  
View profile  
 More options Sep 13 2010, 2:53 am
Newsgroups: microsoft.public.xml, microsoft.public.dotnet.framework.aspnet
From: StefanM <stefan.s...@gmx.net>
Date: Sun, 12 Sep 2010 23:53:42 -0700 (PDT)
Local: Mon, Sep 13 2010 2:53 am
Subject: Re: Creating an XBRL compliant document
I would recommend a look at Altova's tools called XMLSpy and MapForce.
As you have your data already in the database you could use MapForce
to create a mapping into your taxonomy. You can also generate C# code
which will do the mapping. IIRC there should also be some samples
about MapForce and XBRL mappings.

HTH,
Stefan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kutle Boy  
View profile  
 More options Sep 13 2010, 4:06 am
Newsgroups: microsoft.public.xml, microsoft.public.dotnet.framework.aspnet
From: "Kutle Boy" <ku...@kutle.com>
Date: Mon, 13 Sep 2010 10:06:20 +0200
Local: Mon, Sep 13 2010 4:06 am
Subject: Re: Creating an XBRL compliant document

> haha, I guess I was vague ;)

> I can create the input app fine and saving the data to SQL no probs -
> I'm looking for a rough idea of getting info back out and placed into
> an XML file that will be validated against the taxonomy - are there
> any example out there or what's the best tools to use? I'm using
> VS2008, SQL2005

Questions:

1.) Which tools (programming languages) have you used so far to
manipulate(create/save) XML document?
2.) How experienced you are with XML?
3.) At this stage, which is your primary concern - the "technical" validity
of XML document or the "logical" (data inserted on right positions)?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »