Find projects

Bigglesuk
Member Posts: 11
Hello,
We have a large amount of projects, many of them with bizarre naming convensions (dont ask me!)
I would like to be able to take a table or a class for example and backtrack and find out which of the axapta shared projects contains that particular item...
is this possible? I know its not current axapta functionality.
... if it isnt in existance already then if someone could show me which table the projects are kept in i might be able to find out how to do it.
thanks,
Andrew Bartley.
We have a large amount of projects, many of them with bizarre naming convensions (dont ask me!)
I would like to be able to take a table or a class for example and backtrack and find out which of the axapta shared projects contains that particular item...
is this possible? I know its not current axapta functionality.
... if it isnt in existance already then if someone could show me which table the projects are kept in i might be able to find out how to do it.
thanks,
Andrew Bartley.
0
Comments
-
Hi,
AFAIK there is no standard method for this, but you can create a custom program by relying on the Project* & TreeNode classes unders System Documentation.Kind regards,
Ciprian Dudau
Axapta Developer0 -
I was thinking more along the lines of a physical table.. i was thinking of using SQL enterprise manager to view the tables. Rather than code in Axapta itself. i did find the two you were talking about but im not proficient enough in X++ to make anything out of them.0
-
Well i found some code that would point in the right direction:
public static WebProject construct(WebApplicationName wn, ProjectSharedPrivate shared, boolean run = false) { ProjectListNode webProjectListNode; WebProject wp; ProjectNode webProjectNode; // Initialize the Web Project webProjectListNode = infolog.projectRootNode().AOTfirstChild (); // private projects if (shared == ProjectSharedPrivate::ProjShared) webProjectListNode = webProjectListNode.AOTnextSibling (); // shared projects webProjectNode = webProjectListNode.AOTFindChild(wn); if (!webProjectNode) return NULL; if (run) webProjectNode.AOTrun(); wp = webProjectNode.loadForInspection(); return wp; }
0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions