folder.
Export your data for all companies
The code(it's a job) below gives you tables in usr layer, you can create
a new project, put these tables to project and export project. Then
delete all tables in usr layer. Then open system in var layer and import
tables from xpo file. Then import companies.
To find other elements in usr layer(for ex. Forms, reports) change code
in red.
Good luck.
static void AOTCompareLayers(Args _args)
{
xInfo xInfo = new xInfo();
treeNode t = xInfo.rootNode().AOTfindChild("Data
Dictionary").AOTfindChild("Tables");
treeNode child;
treeNode fields;
treenodeIterator it, itFld;
;
it = t.AOTiterator();
child = it.next();
while (child)
{
if(child.applObjectLayer()==UtilEntryLevel::usr)
info(child.treeNodeName());
child = it.next();
}
info("finish search");
}
-----Original Message-----
From: akash malohatra [mailto:[EMAIL PROTECTED]
Sent: Friday, June 18, 2004 11:04 AM
To: [EMAIL PROTECTED]
Subject: [development-axapta] Regarding Layer concept...
Hi All,
I have one doubt.. hope you guys can clarify.. me..
i made some customization to few objects in VAR (
Business Partner licence) layer.
But i uploaded all these customization in user layer
in my customer place , just forgot to upload in var
layer.
Later when i tried to upload all the mods again using
VAR layer( Customer licence) , its not overwriting the
usr layer.
How can i remove the mods in usr layer and upload in
var layer.
As i have made lots of customizations in many
objects.. so its really difficult to go one by one
object and delete the mods...
is there any way...to delete the mods....
Can any one...explain me this layer concept...
Thanks in advance
Regards
Akash
___________________________________________________________ALL-NEW
Yahoo! Messenger - sooooo many all-new ways to express yourself
http://uk.messenger.yahoo.com
Yahoo! Groups Links
[Non-text portions of this message have been removed]
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

