RE: Removeline function is not working

Answered

I have created a Sales Order and I want to remove one line from the Sales Order using the subscript , I am using the below code

=========================================

var ObjRec = context.currentRecord;
ObjRec.removeLine({
sublistId: ‘item’,
line: ‘1’,
ignoreRecalc: true
});

=========================================

Pl suggest.

ashwinji Beginner Asked on June 22, 2023 in Order Management.
Add Comment
6 Answers

Hi,

You wouldn’t normally put quotes around 1 but that shouldn’t cause the problem.

What is your “context” here? i.e. script / entry point / etc?

Thanks,

Chris

Intermediate Answered on June 23, 2023.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.