How to use a message or error text in CU 80 Sales Post

andy76andy76 Member Posts: 616
Hello,

I would like to show a message/confirm/error text in C.U. 80 Sales Post - on Run (for some conditions) alse when called by report 296 - Batch Post Sales Orders but nothing appears because in this report is checked the return value:

IF SalesPost.RUN("Sales Header") THEN BEGIN

so my message (but also others one standard of Navision) are not displayed.

The system for example displays only '0 orders out of a total of 1 have been posted.'
Nor my message nor message articles XXX not in warehouse is displayed...

How could I solve?

I am using NAV 5.0 CH

Thank you

Comments

  • BeliasBelias Member Posts: 2,998
    try to comment this line
    SetHideValidationDialog(TRUE); (it's the second line in codeunit 80)
    
    it should work...althought you'll get a TON of messages :shock:

    P.s.: is the message you want to show a customized one?
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • andy76andy76 Member Posts: 616
    yes, customized...I'm trying to show it directly by report 296 - Batch Post Sales Orders

    Thank you
  • BeliasBelias Member Posts: 2,998
    :-k in that case it's better to take a look at the code...you can customize the message so that you output it only when you want...
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • kinekine Member Posts: 12,562
    And do not forget to have the confirm before any transaction is started in the codeunit, or you will kill performance on the server (long-running locks).
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
Sign In or Register to comment.