Árvore de páginas

Versões comparadas

Chave

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

...

Producto

Solucoes_espanhol
SolucaoTOTVS Backoffice

Línea de producto: 

Linhas_totvs_espanhol
LinhaLínea Protheus

Segmento:

Segmentos_totvs_espanhol
SegmentoBackoffice

Módulo:SIGAFIN
Función:
RutinaNombre
FINA847.prw
País:Argentina
Ticket:14167396
Requisito/Story/Issue (informe el requisito vinculado):DMICNS-14250

...

Totvs custom tabs box
tabsPaso 01, Paso 02, Paso 03, Paso 04
idspaso1,paso2
Totvs custom tabs box items
defaultyes
referenciapaso1

Aplicar punto de entrada “FIN87OPMEN”

Bloco de código
titleFIN87OPMEN
linenumberstrue
/*/{Protheus.doc}  Punto de entrada FIN87OPMEN
    Permite agregar mas opciones al menú principal de la fina847
    @type  User function
    @author TYotvs
    @since 17/06/2022
    @return aMenu, arreglo, agrega nuevas opciones al menú
/*/
User Function FIN87OPMEN()

Local nC := 0
Local aMenu := {}
Local nTam := 0

If ValType(PARAMIXB) == "A"
 
    nTam := Len(PARAMIXB)
 
    For nC := 1 to nTam // se asignan los valores que ya trae por default el menú
        aAdd(aMenu, aClone(PARAMIXB[nC]))
    Next nC   
    
    aAdd( aMenu, {"Menú Nuevo","U_FPruebas()",0,7 } ) // Se agrega nueva opción

EndIf

Return aMenu

/*/{Protheus.doc}   FPruebas()
    Función de prueba para incluir en el punto de entrada
    @type  User function
    @author Totvs
    @since 17/06/2022
    @return nil
/*/
User Function FPruebas()

    Alert("Totvs financiero")

return nil

Totvs custom tabs box items
defaultno
referenciapaso2

...