Hi Dears, I write to you because I haven't found any documents that can help me. In practice, I have a table where I insert the positions added by SAP Cloud for customer. Once I generate the summary, however, I need to hide some specific positions (the common factor between these items is that they are not billable, so they should not be in the summary) do u know if it is possibile?
Thanks
Kind regards
Solved! Go to Solution.
Views
Replies
Total Likes
You can add a calculate script to the rows, that checks the value of a specific cell and sets the presence of the row.
this.presence = this.Description.rawValue === "GESTIONE TICKET" ? "hidden" : "visible";
Views
Replies
Total Likes
Hi,
If you table has a row that repeats you can use something like this code;
Table1.resolveNode("Row1[5]").presence = "hidden";
Which will hide the 6th row.
Regards
Bruce
Views
Replies
Total Likes
Maybe I need to be clearer. I don't have to hide a specific row but I have to hide the itemsthat have specific information in some columns (like cod and description).
This is my table.I have to hide the items that have a specif Cod or Description.
Views
Replies
Total Likes
You can add a calculate script to the rows, that checks the value of a specific cell and sets the presence of the row.
this.presence = this.Description.rawValue === "GESTIONE TICKET" ? "hidden" : "visible";
Views
Replies
Total Likes
Thanks Radzmar. Now it works well !!!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies