June 15, 201510 yr I'm using replace field contents to update an "ID" field by getting it from a related table (related by other identifiers) that has the new ID. That works fine, except that it replaces the field with a blank in cases where the new table has no matching record. Is there a way to avoid that? thanks Edited June 15, 201510 yr by cbum
June 15, 201510 yr Put the related ID field on the layout and perform a find for "*"; then perform RFC for the found set. Alternatively, use this calculation Case ( not IsEmpty ( RelatedTable::IDField ) ; RelatedTable::IDField ; LocalTable::IDField // the RFC target field itself) as RFC result for the total record set.
Create an account or sign in to comment