Script to delete rows
Hello,
I am trying to delete dept Tech and Sub dept C1 from Corp. I wrote the script:
|Department::Dept|.items.each {
if (|Department|.getSelection(it, |Department::Tech|).value.equals(“Tech”)) /*Trying to delete the Tech Dept*/
it.delete()
}
|Department::Dept|.items.each {
if (|Department|.getSelection(it, |Department::Corp|).value.equals(“C1”)) /* Trying to delete the C1 Sub Dept within Corp*/
it.delete()
}
But its giving me an error. what am I missing?
shrishank Answered question April 1, 2019
This is the variant of the A-script with a preliminary request of the Items Group and Item for the Deletion.
Provided all the Items of the Dept category are divided into groups, the A-script works correctly.
S A U Answered question March 30, 2019
Thank you. Simplest A-Scripts works