Conner Panarella
Conner Panarella
@jbingham94 Were you able to generate documentation? I am in the same situation.
Hey @Johannes-Schneider If needed I can construct the request directly as opposed to utilizing the cloud SDK so it is more of an inconvenience. Within SAP B1, the Service Layer...
@newtork Thank you for the feedback and I completely understand regarding the launch of version 4 of the SDK being a priority. I will use the provided workaround for now...
Hey @newtork I just wanted to know if this has been resolved?
@MatKuhr You are correct that this technically does not abide by the specification, however this is behavior implemented by the SAP Business One Service Layer. There is a blog post...
@MatKuhr Unfortunately that will not work, that would send only lines with changed fields, but for those lines it would send all fields. I was thinking about adding an override...
@MatKuhr >and that is not supported by the B1 service? Naively, I'd think updating all properties is just a special case of updating some properties 😄 Unfortunately no, the presence...
@MatKuhr ```java @Nonnull @Override public class DocumentLinePatch extends DocumentLine { @Nonnull @Override protected Map toMapOfFields() { Map mapOfFields = super.toMapOfFields(); mapOfFields.keySet().retainAll(this.changedOriginalFields.keySet()); return mapOfFields; } } ``` Did the trick! Not...