PdcCalculation.PACustomerNo: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability =="
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Declaration ==
== Declaration ==
 
PACustomerNo as String


== Description ==
== Description ==
 
This property returns the price agreement customer number.


== Notes ==
== Notes ==
Line 9: Line 9:


== Code example ==
== Code example ==
This code example returns the price agreement customer number of an active calculation.


<source lang="vb">
Sub sGetPACustomerNo
dim objCalc


<source lang="vb">
  set objCalc = pdc.ActiveCalculation
 
  msgbox objCalc.PACustomerNo


  set objCalc = nothing
End Sub
</source>
</source>


== Availability ==
== Availability ==

Latest revision as of 11:50, 31 July 2013

Declaration

PACustomerNo as String

Description

This property returns the price agreement customer number.

Notes

Code example

This code example returns the price agreement customer number of an active calculation.

Sub sGetPACustomerNo
dim objCalc

  set objCalc = pdc.ActiveCalculation

  msgbox objCalc.PACustomerNo

  set objCalc = nothing
End Sub

Availability