Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Skip collecting printer name when printing a label

...

    // [Example] Hide printer step, instead of collecting the value, set a (hidden) default value
    [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB Print", 'OnLookupOnPrintLabel_OnAfterAddStepForTemplate', '', true, true)]
    local procedure MyOnLookupOnPrintLabel_OnAfterAddStepForTemplate(_TemplateName: Text[50]; _SourceRecRef: RecordRef; var _Step: Record "MOB Steps Element"; var _Dataset: Record "MOB Common Element")
    var
        MobPrinter: Record "MOB Printer";
    begin


        // Making sure we only handle relevant label templates
        ifnot _TemplateName.Contains('3x2') then  
            exit;

        // Find the printer to use
        MobPrinter.FindFirst();  

        // Set defaultValue and hide printer-step
        if _Step.Get_name() = 'Printer'thenbegin
            _Step.Set_defaultValue(MobPrinter.Name);    
            _Step.Set_visible(false);
        end;
    end;


See also 

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
reversetrue
excerptTypesimple
cqllabel = "print" and label = "example"

...