Greetings From Mahendrakumar D.P. If you face same problem mentioned below in SAP 10.0 FP2111 while Connecting your Add-on Source Code to SAP B1 then Open Your Visual Studio 2022 or any other version, you are using in Run as an Administrator Mode. Error: “Connection – Could not find SBO that match the connection string....

E-Books is a legal requirement in Greece for the electronic reporting submission of accounting and invoicing records to the government revenue authorities (AADE). In SAP Business One, settings are available on the Electronic Documents tab of Document Settings (follow path Administration → System Initialization → Document Settings → Electronic Documents tab) to enable and set up E-Books. For more information, you can refer to SAP....

Este blog es una traducción al español del blog publicado por Clodagh Walls en Junio 10,2021: https://blogs.sap.com/2021/06/10/support-spotlight-top-tips-on-configuring-the-sbo-mailer-for-sap-business-one/ En este blog me gustaría cubrir algunos puntos de claves para configurar de forma exitosa el Servicio del SBO Mailer en SAP Business One. Estos se encuentran basados en preguntas que los Partners nos han hecho al equipo....

Este blog es una traducción del blog publicado por Relle Chen  en Sep 10,2021: https://blogs.sap.com/2021/09/10/sap-business-one-hana-migration-tips-for-large-databases/ En este blog queremos mostrarle algunos consejos útiles de experiencias reales cuando se correo el asistente de migración para bases de datos grandes. Revisaremos los siguientes temas: Preparación de la base de datos, Definición de las parametrizaciones de rendimiento y, por....

Introduction: I’m a Sales and Technical SAP Business One Consultant for around 15th years, in my experience users need to find new ways to realize their daily work. In this blog, I’ll explain how to connect an intelligent chatbot of SAP Conversational AI with SAP Business One using Service Layer (Extensibility topic). If you need more....

In this blog, we will provide more detail on the b1-local-machine.xml file. This is used by SAP Business One Components like the Client application and DI API. We will explain more about this file and how is it used in troubleshooting connection issues. b1-local-machine.xml is not supposed to be a configurable file. You should not....

ExportDeterminationService in SAP Business One DI API enables you to add, update, get and delete Export Determination data in Electronic Documents Export Setup window. The window Electronic Documents Export Setup is available in SAP Business One when Document Mapping Determination is selected on the Electronic Documents tab of Document Settings (Administration → System Initialization → Document Settings). The contents of Electronic Documents Export Setup may vary depending on the localization....

ImportDeterminationService in SAP Business One DI API enables you to add, update, get and delete Import Determination data in Electronic Documents Import Setup window. It is a part of the Electronic Document Import Wizard. The Electronic Document Import Wizard provides dedicated functionality for importing electronic documents to the system. In SAP Business One, you can access it using Main Menu → Purchasing – A/P → Electronic....

In this blog post I will present to you an overview of B1SLayer, an open source .NET library created by me that aims to make Service Layer integrations as clean and easy as possible. Introduction If you, as a developer, ever worked in multiple .NET projects that consume Service Layer, you probably faced the issue....

If We Restart SUSE Linux Server We need to Restart Our SAP B1 Server tools and b1s Service also. For the same kindly follow the following steps 1. Take Remote Desktop of Linux Server – Right Click on Desktop –> Open Terminal 1. su – ndbadm Path will be displayed — Of HDB ./HDB stop....

Greetings For the Day !!! Kindly find following code to Update Records in UDO (User Defined Objects) in SAP Business One 10.0 through SAP B1 GeneralService. SAPbobsCOM.GeneralService oGeneralService; SAPbobsCOM.GeneralData oGeneralData; SAPbobsCOM.GeneralDataParams oGeneralParams; SAPbobsCOM.CompanyService sCmp; sCmp = Main.Mahi_Company.GetCompanyService(); oGeneralService = sCmp.GetGeneralService("Enquiry"); //User Defined Object oGeneralParams = oGeneralService.GetDataInterface(SAPbobsCOM.GeneralServiceDataInterfaces.gsGeneralDataParams); oGeneralParams.SetProperty("DocEntry", DocEntry); oGeneralData = oGeneralService.GetByParams(oGeneralParams); oGeneralData.SetProperty("U_CardCode", CardCode); //User Defined....

If you are facing SLD issue kindly follow the following steps to resolve the above mentioned error.   1. Rename SAP** Folder C:Users(your user)Local SettingsApplication Data (or AppData)SAP 2.Start ‘SAP Business One Server Tools Service’ From Services 3.Make Sure ‘C:Program Files (x86)SAPSAP Business OneConfb1-local-machine.xml’ IP Address Mentioned here correct one or Server Name. 4.Verify the....

Consider we have Main User Defined Object named “Mahi_H” and It’s child table is “Mahi_D1”. If You want to Add / Updated records in Child table “Mahi_D1”. We can do using SAP B1 General Service as follows.   SAPbobsCOM.GeneralService oGeneralService = null; SAPbobsCOM.GeneralData oGeneralData = null; SAPbobsCOM.GeneralDataParams oGeneralParams = null; SAPbobsCOM.CompanyService sCmp = null; SAPbobsCOM.GeneralData....

Hello Team, Greetings for the day !!! If You want to increase your SAP Business One Add-on Performance you can do programming like this to fetch data from System Forms.   oForm = Main.Mahi_Application.Forms.GetForm("149", 1); System.Xml.XmlDocument oXml = null; oXml = new XmlDocument(); oXml.LoadXml(BusinessObjectInfo.ObjectKey); MainQutDocE = oXml.SelectSingleNode("/DocumentParams/DocEntry").InnerText;   Thanks, Mahendrakumar