Tables definition

jherrando
Member Posts: 2
Hi,
Where can I found documentation about what is each table in Attain's 3.60 database ?
I want to create P.O.s from a web application, what tables do I need to fill ?
TIA
Where can I found documentation about what is each table in Attain's 3.60 database ?
I want to create P.O.s from a web application, what tables do I need to fill ?
TIA
0
Comments
-
ouch...
Don't think it worls like this
You will have to speak to somebody who knows Navision."Real programmers don't comment their code.
If it was hard to write, it should be hard to understand."0 -
I don't know a documentation about this.
If you want to know all the table you need for this operation. Use code coverage and made a transaction in navision. This tools match all table, form, codeunit etc used for the transaction.
I hope it's a good answer.0 -
IMHO it is enough, if you "simulate" users input.
What does a user do if he creates an order?- He press F3
PurchOrder.INIT;
- He press enter to leave the primary key field so Navision will fill the Order No.
PurchOrder."Document Type" := PurchOrder."Document Type"::Order; PurchOrder."No." := ''; // leave it blank so Navision will fill this field PurchOrder.INSERT(TRUE);
- He enters the Vendor No.
PurchOrder.VALIDATE("Buy-from Vendor No.",MyNewValue)
- He fills some other fields in the Header
PurchOrder.VALIDATE(TheOtherField),MyNewOtherValue)
- He goes to the Purchase Lines (Here you must initialise the Primary Key fields by yourself)
PurchLine.INIT; PurchLine."Document Type" := PurchOrder."Document Type"; PurchLine."Document No." := PurchOrder."No.";
- He enters the type
PurchLine.VALIDATE(Type,PurchLine.Type::Item);
- He enters the Item No.
PurchLine.VALIDATE("No.",MyNewItemNo);
- He enters the quantity
PurchLine.VALIDATE(Quantity,MyNewQuantity);
- He enters some other fields
PurchLine.VALIDATE(MyOtherField,MyNewOtherValue);
- He leave the line and inserts the record
PurchLine.INSERT(TRUE);
Timo Lässer
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]0 - He press F3
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