Árvore de páginas


01. DATOS GENERALES

Producto:

TOTVS Backoffice

Línea de producto:

Línea Protheus

Segmento:

Backoffice

Módulo:

 

TOTVS Backoffice (Línea Protheus) - Compras (SIGACOM)

Función:

MATA150 - Actualizar cotizaciones

País:

Brasil

Ticket:


Requisito/Story/Issue (informe el requisito relacionado) :



02. DESCRIPCIÓN

El Punto de entrada MT150LEG permite la inclusión de nuevas leyendas en el programa Actualización de cotizaciones.


03. UBICACIÓN

Function A150Legenda - Al ejecutar la rutina Actualizar cotizaciones.


04. PARÁMETROS

Nombre

Tipo

Descripción

PARAMIXB

Array

1 = Condición y Color de la Leyenda que se incluirá y visualizará en mBrowse
2 = Color y Título que se visualizará en la opción Leyenda


05. DEVOLUCIÓN

Tipo

Descripción

Array

  • Array con la opción incluida

06. EJEMPLO DE UTILIZACIÓN

ADVPL
#Include 'Protheus.ch'
/*/{Protheus.doc} MT150LEG
PE para incluir nuevas opciones en la rutina
Actualizar cotizaciones.


PARAMIXB[1] = "1" - Color de la leyenda del Browse  / "2" - Descripción de la leyenda


@type     function
@author      
@since       19/11/2024
/*/
USER FUNCTION MT150LEG()
Local aRet:={}


If ParamIxb[1] == 1
    Aadd( aRet, {'C8_PRECO>100','BR_VIOLETA'} )
Else
    Aadd( aRet, {"BR_VIOLETA","Prueba - Leyenda"} )
EndIf


Return aRet