cancel
Showing results for 
Search instead for 
Did you mean: 

Form Type of UDO

Former Member
0 Kudos

Hi,

    I had created a User Defined Table in SAP Business One and registered   through 'object registration wizard'.Now in my add on i need to write some validation against my user defined form.But I don't now how to get the Form type. pls help

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Just use the pVal.FormTypeEx

Former Member
0 Kudos

hi.

As per my knowledge

There is no form type

formuid will be available

u need to give while designing the customization form

what ever u give that is ur form pval.formuid  then u need to give validation in your coding like

if(pval.formuid="yourformuid" and pval.itemuid="1" then pval.eventype=beforeaciton)then

your validations here..

end if