Hi all Guru, I have 2 dimension value (already have entries). eg. dim. value A and B Right now I want to Rename Both A,B to C How can I do? I can rename only 1 value. but not both. Your help is greatly appreciate. Thanks.
Here are the steps that you need to follow. Delete the first dimension value (A). rename the second one (B) to (A). Then rename (A) to (C).
I can’t delete A. A already have entries.
You have to write a report or codeunit to delete it without (true) statement. Here is an example code. dimcode := WhatEverThisIs; dimvalue := A; dimvalue.get(Dimcode,dimvalue); dimvalue.delete;