Hi Team,



I have been trying to add a record in one of the lookup. Upon saving I get a below error.

From UI, Debugged to find the below, i.e. an object is missing in the config.

But it is available in DB.



It is inferred that object is deleted in Configuration but available in DB.



Note: Thi...MoreLess

Like 0

Like

2 comments

Hi Bhoobalan,

Please delete mentioning of the deleted object from the SysModule table:

DELETE SysModule WHERE SysModuleEntityId = 'f07b0621-39c1-4269-a3e5-dd013dca1e82'

OR...MoreLess

Show all comments (1)

Hi all,

I am trying to insert a record to an entity using esq as follows in my web service.

[OperationContract]
        [WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare,
        ResponseFormat = WebMessageFormat.Json)]
        public string InsertCaseESQPostForSATS(DebitCardDataForSATS...

MoreLess

Like 0

Like

4 comments
Best reply

Roman Raj Bajracharya,

the value should be passed as an actual Id and also the column name shouldn't contain the . separator:

entity.SetColumnValue("SBLServiceId"...MoreLess

Show all comments (3)

Hello,

I have developed one service which inserts contact and contact-address from the third party to bpm'online. I have written below code to add contact and its Address simultaneously:

var insertContactQuery = new InsertQuery()

{

                  &nbs...MoreLess

Like 0

Like

4 comments

Dear Riddhi,

Unfortunately, it is not possible to add data to the “Contact” and “ContactAddress” tables simultaneously using the approach that...MoreLess

Show all comments (3)

How to apply access permissions (object permission) / access right when insert data via server-side?

I have set the record access permission, but when inserting via server-side, the access right does not work. The insert method that I did was in accordance with the article above.

Thanks.

Like 0

Like

1 comments

Hi,

It is possible adding data via server-side with access permissions using the “Entity” class. Please find more information with the examples...MoreLess

Show all comments