Posting Routine - Select Behavior

By waldo

Abstract

Send information (parameters) to a processing framework/routine so that it knows what to do, how to behave.

Description

For a processing routine to behave correctly, it needs sometimes input of a user to know what it has to do, check or avoid doing. To do this, usually a piece of UI is getting called (STRMENU) with the question what to do. These input needs to get to the routine.

  1. The user selects the option on how he wants the process to behave
  2. There are extra fields on the processing table, that are used internally and act like parameters. These Fields get filled according to the selections that the user has made
  3. The processing codeunit receives the processing table, and therefor also the parameters

Usage

Example: Sales Post.

On Sales Header, there were fields created which act like internal parameter-fields for the “Sales Post” routine:

When pressing “Post”, the Selection Codeunit is getting called:

Or in case of the Post&Print, the selection codeunit is different:

Next, the user is able to select the options with an STRMENU, which results in filling in the fields above, like:

Selection := STRMENU(Text000,3);  
IF Selection = 0 THEN  
    EXIT;  
Ship := Selection IN [1,3];  
Invoice := Selection IN [2,3];

The processing codeunit is being called after these options were set.

This is also being used in the Purchase Post.

However, the Service Post works different. In Short:

  • There were no parameter fields added to the processing table (Service Header)
  • The processing routine isn’t called by CODEUNIT.RUN, but a function in a declared codeunit, where you pass the Invoice and Ship parameter separately.

Ideas for improvement

Implement it consequently. There is (in my knowledge) no reason to do Service Posting differently from Sales and Purchase.

Furthermore, one might argue if adding fields to a table (which also means adding fields to the SQL Table) is the right solution to pass parameters to processing methods.

On the other hand, as we are handling tables as being “classes” in many cases, it does make sense to add “properties” to those “classes” to change the behavior of the method (SalesHeader.Post).

I would like to add a pattern like “Using Argument tables” (as a sub-pattern for the facade-pattern). It somewhat is related to this way of handling parameters: using tablefields to pass a flexible amount of parameters to functions/codeunits.