IFS 10 UPD15 - PL/SQL advice needed to start background job for Batch_Create_Coll_Invoices__ Hi community, i have tried to call background job with PL/SQL developer for “Batch Create Collective Invoices”. I took the parameter example from scheduled database task. If this is run with same parameters through Scheduled database task, it won’t give error. Goal is to have two scheduled Events, which would search customer’s either having Cycle interval 7 days and another with interval 30 days. Logic would find such customers and start “Batch Create Collective Invoices” background job for each found customer. Code snippet to just test calling the “Batch Create Collective Invoices” standard API. declare arg_ VARCHAR2(32000); BEGIN Client_SYS.Clear_Attr(arg_); Client_SYS.Add_To_Attr('$COMPANY=', 'xx'||chr(10), arg_); Client_SYS.Add_To_Attr('$CONTRACT=', 'xx'||chr(10), arg_); Client_SYS.Add_To_Attr('$CURRENCY_CODE=', '%'||chr(10), arg_); Client_SYS.Add_To_Attr('$CUSTOMER_NO=', 'xx'||chr(10), arg_); Client_SYS.Add_To_Attr('$IVC_UNCONCT_CHG_SEPERATLY=', '0'||chr(10), arg_); Client_SYS.Add