Had this question pop up at work today, to show all items without folders in SharePoint you will need to add the Recursive attribute to the SPQuery object.
Here is an example, This can be done in Code:
SPQuery.ViewAttributes += ” Scope=\”Recursive\”";
Or as part of the CAML Query Markup
<FieldRef Name=’ID’ />
</ViewFields>
<QueryOptions>
<ViewAttributes Scope=’Recursive’ />
<OptimizeFor>FolderUrls</OptimizeFor>
</QueryOptions>
Other query options are:
<QueryOptions>
<IncludeMandatoryColumns>True</IncludeMandatoryColumns>
<DateInUtc>True</DateInUtc>
<IncludeAttachmentUrls>True</IncludeAttachmentUrls>
<IncludePermissions>True</IncludePermissions>
<ExpandUserField>True</ExpandUserField>
<Folder>Name Of the Folder Here/</Folder>
</QueryOptions>

I think the idea that thousands of people can share a virtual space is wrong. ,
For example, if surrounded by thugs, he’ll gain superhuman strength and durability, allowing him to defeat them. ,
Dude,
This workaround does not work. I tried the CAML workaround you provided, it never worked. I need to have this thing enabled while creating a view for a site def
Ali