Árvore de páginas

Versões comparadas

Chave

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

...

Bloco de código
languagevb
themeMidnight
firstline1
titleMA330MOD (ADVPL)
linenumberstrue
#INCLUDE 'totvs.ch'

/*/{Protheus.doc} User Function MA330MOD
Utilizado para Executa o ponto de entrada 
MA330MOD passando os produtos.
@type User Function
@author TOTVS
/*/ Exemplos
User Function MA330MOD()
	Local cCodPesq := PARAMIXB[1] //B1_COD
	Local cCodCC   := PARAMIXB[2] //B1_CCUSTO
	Local cGrupo   := PARAMIXB[3] //B1_GCCUSTO

If cCodPesq == 'EST00001'
	If cCodCC == '00001000001' 
		If cGrupo == '000001'
			//--Tratamento lógico....
		EndIf
	EndIf
EndIf 

Return Nil 

...