Multiple choice technology testing

For successful Content transfer what should be the UID value while running loadrunner script?

  1. UID=0

  2. UID<0

  3. UID>0

  4. UID>=0

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

For successful Content Transfer Operations in Documentum when running LoadRunner scripts, the UID value must be non-negative (UID >= 0). UID=0 represents a special superuser, and negative UIDs are invalid in this context. The condition UID >= 0 includes valid user identifiers.

AI explanation

When running a LoadRunner script that performs a content transfer (e.g., uploading/moving content identified by a UID), the transfer only succeeds if the UID is a valid, non-negative identifier — i.e., UID>=0. A negative UID (UID<0) or a check that excludes zero (UID>0) would incorrectly reject a legitimate record whose identifier is 0, and UID=0 alone is too restrictive since it ignores all other valid positive IDs. So the condition must allow zero and all positive values, making UID>=0 the correct validation criterion for a successful transfer.