Mistakes in Practical_developer_guide 1-20.pdf

Understanding basics of 1C:Enterprise platform. To start working with 1C:Enterprise platform visit Getting started page

#1
People who like this:1Yes/0No
Active user
Rating: 2
Joined: Apr 23, 2014
Company: Altair d.o.o.

On page 411 in string:

Code
Material IN (
    SELECT 
        DocumentMaterialsAndServices.MaterialOrService 
    FROM 
        MaterialsAndServices) 
AND Warehouse = &Warehouse


On page 413 in string:
Code
Message.Text = String(- SelectionDetailRecords.QuantityBalance) + 
    " units shortage for """ + SelectionDetailRecords.Material + """ with """ +
     SelectionDetailRecords.PropertySet + """ property set.";

 
#2
People who like this:0Yes/0No
Active user
Rating: 7
Joined: Nov 3, 2011
Company: 1C Company

Dmytro, thanks for the bug report. We will fix this in the next update of the Practical Developer Guide.

The correct script lines are:

Page 411:

Code
Material IN (
    SELECT
        DocumentMaterialsAndServices.MaterialOrService 
    FROM 
        DocumentMaterialsAndServices) 
AND Warehouse = &Warehouse 


Page 413:
Code
Message.Text = String(- SelectionDetailRecords.QuantityBalance) + 
    " units shortage for """ + SelectionDetailRecords.Material + """.";

 
#3
People who like this:0Yes/0No
Active user
Rating: 2
Joined: Apr 23, 2014
Company: Altair d.o.o.

All right!

 
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)
Be the first to know tips & tricks on business application development!

A confirmation e-mail has been sent to the e-mail address you provided .

Click the link in the e-mail to confirm and activate the subscription.