problem in report ID 10074

KurtKurt Member Posts: 17
Hi,

I tried to modify the report ID 10047 Sales Invoice to suit our own need. After print out the report, the "Sell to State" field in Sales Line Header won't be printed. In other words, the "BillToAdress[4]" variable only print out the "Sell-To City" and "Zip Code" fields.
How shall correct this problem?

Kurt

Comments

  • lubostlubost Member Posts: 631
    It depends on address format setting in Countries form.
  • KurtKurt Member Posts: 17
    Thank you very much lubost.

    My next question - where are those variables declared?

    Kurt
  • Dean_AxonDean_Axon Member Posts: 193
    You'll need to be looking for the codeunit "Format Address".

    You could always declare your own options in the report itself....

    Billtoadress[1]:="Name";
    Billtoadress[2]:="Address"
    Billtoadress[3]:="Address 2"
    etc.... to [8]
    CompressArray(Billtoaddress);

    This way you can define your address lines without having to use the return values from the codeunit and making sure you have chosen a section in that cu.

    The recommended Navision solution would be to create a new function in the "Format address" cu if one does not exist that will fulfill your requirements.
    Remember: Keep it simple
Sign In or Register to comment.