Páginas filhas
  • DT EP AF171FILTR Handling of Accelerated Depreciation Filter

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

01. GENERAL DATA

Product:

TOTVS Backoffice

Product Line:

Microsiga Protheus Line

Industry:

Services

Module:

Fixed Assets - SIGAATF

Function:

Accelerated Depreciation (ATFA171)

Country:

Brazil

Ticket:

10371646

Requirement/Story/Issue:

DSERCTR1-29478


02. STATUS/REQUISITION

Request for entry point documentation: AF171Filtr.

...

Informações

PE AF171FILTR

The purpose of entry point AF171FILTR is to allow handling the preexisting filter

Informações
titleImportant
The examples used in this documentation are merely illustrative and have pedagogical purposes. The operation and goal of the Entry Point is of the customer's full responsibility.



Entry Point Parameters:

Parameter

Type

Description

Required

PARAMBIX[1]

String

Parameter transfer containing the query of preexisting filter executed based on the table of balances and values (SN3).

Yes



What the entry point must return

Return

Type

Description

Required

cUserFiltr

String

Return of preexisting filter containing user changes.

Yes


Example of use:

Bloco de código
languagec#
themeRDark
titleExample of rule in use
linenumberstrue
collapsetrue
#include "protheus.ch"
 
User Function AF171Filtr()
 
Local cUserFiltr    := PARAMIXB[1]
 
    cUserFiltr += " .AND. N3_TIPO = '01' "
    cUserFiltr += " .AND. N3_TPSALDO = '1' "
    cUserFiltr += " .AND. N3_TIPDEPR = '1' "
     
Return cUserFiltr

 

...