cancel
Showing results for 
Search instead for 
Did you mean: 

Price Field in Invoice A/R

former_member202745
Active Participant
0 Kudos

Hi experts,

When I duplicate invoice with a unit price of 50, the new document in the target ignores this price and puts the price of the standard table. Anyone knows about it?! Below follow a my xsl transformation:

<B1out xmlns="" type="object">

                <Documents>

                    <row>

                        <CardCode><xsl:value-of select="$msg/BOM/BO/Documents/row/CardCode"></xsl:value-of></CardCode>

                        <DocCurrency><xsl:value-of select="$msg/BOM/BO/Documents/row/DocCurrency"></xsl:value-of></DocCurrency>

                        <Reference1><xsl:value-of select="$msg/BOM/BO/Documents/row/Reference1"></xsl:value-of></Reference1>

                        <Reference2><xsl:value-of select="$msg/BOM/BO/Documents/row/Reference2"></xsl:value-of></Reference2>

                        <Comments><xsl:value-of select="$msg/BOM/BO/Documents/row/Comments"></xsl:value-of></Comments>

                        <DocDueDate><xsl:value-of select="$msg/BOM/BO/Documents/row/DocDueDate"></xsl:value-of></DocDueDate>

                        <PaymentGroupCode><xsl:value-of select="$msg/BOM/BO/Documents/row/PaymentGroupCode"></xsl:value-of></PaymentGroupCode>

                    </row>

                </Documents>

                <Document_Lines>

                    <xsl:for-each select="$msg/BOM/BO/Document_Lines/*">

                        <row>

                            <LineNum><xsl:value-of select="LineNum"></xsl:value-of></LineNum>

                            <ItemCode><xsl:value-of select="ItemCode"></xsl:value-of></ItemCode>

                            <Quantity><xsl:value-of select="Quantity"></xsl:value-of></Quantity>

                            <Price><xsl:value-of select="Price"></xsl:value-of></Price>

                            <Currency><xsl:value-of select="Currency"></xsl:value-of></Currency>

                            <TaxCode><xsl:value-of select="TaxCode"></xsl:value-of></TaxCode>

                        </row>

                    </xsl:for-each>

                </Document_Lines>

            </B1out>

Regards,

Leonardo Azevedo.

Accepted Solutions (1)

Accepted Solutions (1)

bastian_schaefer
Active Contributor
0 Kudos

Hi,

field "Price" is not the "UnitPrice".

Please change your mapping accordingly.

Best regards

Bastian

former_member202745
Active Participant
0 Kudos

Hi Bastian,

thank you...

Regards,

Leonardo

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Leonardo,

when you make a test-run in the szenario design processing part,

and afterwards change to the debug mode,

can you see if already the sender information is incorrect ??

or did something change in the receiver part ?

hope that helps to come a bit nearer to a solution

regards

Heiko

former_member202745
Active Participant
0 Kudos

Heiko,

thanks for your reply, i put the wrong tag!!

Regards,

Leonardo.