Posting Sales Documents
subhadynamics
Member Posts: 109
I’m currently working on Nav 5.0 SP1 IN .
I need to Post the SO/PO with the Multiple Sale Items.
The Fields “Qty. to Ship and “Qty. to Receive” of the SO/PO Document gets populate automatically at time of entering the amount at the “Quantity” Field.
But Some Item of the currently i need not ship ,But after Posting the Order all the Lines including Qty to Ship is 0 is also getting updated to the Posted Invoice Sales Line. Please let me know wheather i can change the default functionality.if i change the existing feature , any issues will come in future
Wat can i do for this. Is there is any way to solve this problem. Need urgent reply from any of the navision experts .
Thanks in Advance
Subha
I need to Post the SO/PO with the Multiple Sale Items.
The Fields “Qty. to Ship and “Qty. to Receive” of the SO/PO Document gets populate automatically at time of entering the amount at the “Quantity” Field.
But Some Item of the currently i need not ship ,But after Posting the Order all the Lines including Qty to Ship is 0 is also getting updated to the Posted Invoice Sales Line. Please let me know wheather i can change the default functionality.if i change the existing feature , any issues will come in future
Wat can i do for this. Is there is any way to solve this problem. Need urgent reply from any of the navision experts .
Thanks in Advance
Subha
0
Comments
-
I do not understand the problem from your description. What you need to do?0
-
If I understand your query properly try the following code.
Code Unit = 90.
Trigger = On Run
Green = You need to write the code.
Blue = Microsft coding.
Wtite the code after this line
IF (PurchRcptHeader."No." <> '') AND (PurchLine."Receipt No." = '') AND
NOT RoundingLineInserted
THEN BEGIN
// My coding for post only when the qty – to receive <> 0
IF TempPurchLine."Qty. to Receive" <> 0 THEN BEGIN
Then After this coding
PurchRcptLine."Item Rcpt. Entry No." :=
InsertRcptEntryRelation(PurchRcptLine); // ItemLedgShptEntryNo
PurchRcptLine."Item Charge Base Amount" :=
ROUND(CostBaseAmount / PurchLine.Quantity * PurchRcptLine.Quantity);
END;
PurchRcptLine.INSERT;
Write your coding
END ;reema0 -
Why are you not using the invoice functionality with "Get Shipment Lines".subhadynamics wrote:I’m currently working on Nav 5.0 SP1 IN .
I need to Post the SO/PO with the Multiple Sale Items.
The Fields “Qty. to Ship and “Qty. to Receive” of the SO/PO Document gets populate automatically at time of entering the amount at the “Quantity” Field.
But Some Item of the currently i need not ship ,But after Posting the Order all the Lines including Qty to Ship is 0 is also getting updated to the Posted Invoice Sales Line. Please let me know wheather i can change the default functionality.if i change the existing feature , any issues will come in future
Wat can i do for this. Is there is any way to solve this problem. Need urgent reply from any of the navision experts .
Thanks in Advance
SubhaCA Sandeep Singla
http://ssdynamics.co.in0 -
I need to Supress the lines which the Qty to Ship /Qty To Receive is 0.If i will write a code to Hide these lines for Posting ,wheather any issues ??0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K 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
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 251 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
