We are taking steps to make our moderation process friendlier while ensuring that SAP Community continues to comply with the Digital Services Act (DSA). Learn more in this What’s New post.
Thanks Antonia,
I made this extention method to make the code cleaner:public static bool SetLine(this IDocument_Lines lines, Func<IDocument_Lines, bool> condition)
{
for (var j = 0; j < lines.Count; j++)
{
lines.SetCurrentLine(j);
...
Hi,Try using an C# lock-statement around your transaction.It will prevent using the COM object from parallel requests and will instead halt the second request until the first request is done.Depending on how the class is instantiated the lockObject m...
REGDB_E_CLASSNOTREG is an typical error when you dont have the correct DI API installed.SAPBusinessOneSDK.dll should be treated as an interface to the DI API COM when developing and and building your project.Install DI API with matching platform (x86...
Hi Leif,Create an package manually and use the .ard file generated in the zip as an template.In your CI/CD flow, update the XML with your variable values like version, AddonSig e.t.c.AddonSig is an MD5 of the .exe file.Zip your package as following:-...