public static bool VerificarCrearUDO() { bool bExiste = false; try { if (!FuncionesUDO.CheckUDOExists("Z_MIN_TXTPAGOS")) { if (!FuncionesUDT.CheckTableExists("Z_MIN_TXTPAGOS")) { CreaUDT_TXT_BANCO(); FuncionesUDO.CreateUDO("Z_MIN_TXTPAGOS", SAPbobsCOM.BoUDOObjType.boud_MasterData); } else { FuncionesUDO.CreateUDO("Z_MIN_TXTPAGOS", SAPbobsCOM.BoUDOObjType.boud_MasterData); } } else { bExiste = true; } } catch (Exception) { } return(bExiste); }
public static bool VerificarCrearUDO() { bool bExiste = false; try { if (!FuncionesUDO.CheckUDOExists("ZAUTORI")) { if (!FuncionesUDT.CheckTableExists("@ZAUTORI")) { CreaUDT_ControlAutorizaciones(); FuncionesUDO.CreateUDO("ZAUTORI", SAPbobsCOM.BoUDOObjType.boud_MasterData); } else { FuncionesUDO.CreateUDO("ZAUTORI", SAPbobsCOM.BoUDOObjType.boud_MasterData); } } else { bExiste = true; } if (!FuncionesUDO.CheckUDOExists("ZANEXOS")) { if (!FuncionesUDT.CheckTableExists("@ZANEXOS")) { CreaUDT_ImportacionAnexos(); FuncionesUDO.CreateUDO("ZANEXOS", SAPbobsCOM.BoUDOObjType.boud_MasterData); } else { FuncionesUDO.CreateUDO("ZANEXOS", SAPbobsCOM.BoUDOObjType.boud_MasterData); } } else { bExiste = true; } } catch (Exception) { } return(bExiste); }