Add DocNumber in Frame Variables to set the document number.
Usage see: Set document number in mapping (SetTargetFrameVariable).
Correction of the help for: Set file name and subject mapping (SetTargetFrameVariable).
The SMTP send channel outputs the information about the server used and the recipients (From, To, CC, BCC, ReplyTo) in the standard log (Progress).
Extension of the job step ExecuteExternal to specify a time limit.
The JSON write uses the MapFormat attribute when writing date time values since this eBiss version. (s. Standard Object Attributes), see also unter “Formatting date values” in JSON.
The job step for booking EPCs has been extended to update the EPCs with the check that the combination of EPC and EAN cannot be changed.
The Masks were extended by “${RX:<ein regulärer Ausdruck>}”
{RX:NAD\+BY\+([^:]*):}
from an EDIFACT file the GLN from the BY segment.
The SFTP receive channel was extended by:
This is repeated until error code 1103 no longer occurs or the specified number of “Immediate retries” has been reached. A task is created if the error still occurs during the last attempt.
New Job Step CreateMessageFileLinks under .\StandardTemplates\PluginSample\eBiss.PluginSample
For developers include in your vs project the eBiss.Api.dll from the directory of the 'eBiss.PluginSample'1) and put the eBiss.Api.xml parallel to the eBiss.Api.dll. Then you will get help in the code about some of the API methods and properties.
New interface IUser:
public interface IUser { Guid Oid { get; } string Name { get; } INode Node { get; } // This method requires an activation by the administrator in the system settings bool CheckLogin(string password, ISession session); }
New interface IMailServerAddress:
public interface IMailServerAddress : ITypedAddressView { string Login { get; } // This method requires an activation by the administrator in the system settings bool CheckLogin(string password, ISession session); IAddressBase AddressBase { get; } }
Extension of INode by:
ICollection<IUser> Users { get; } ICollection<IAddressBase> FindAddress(AddressType type, string uri, bool wildcardSearch = false);
Extension of IMessage by:
string DelegatedJobName { get; }
Bug fix for “Exception: the object reference was not set to an object instance.”