Sunday 3 July 2011

How to identify unused labels in application


A job to identify unused labels in application .
Here my label file is IFC
static void I4C_UnusedLabels(Args _args)
{
str 50  labelId;
int  i;
int  maxLabel = 2000;
xRefNames  names;
XRefReferences  ref;
str info = “LabelId#LabelStr\n”
;
while (i <= maxLabel)  {
labelId = “@IFC” + int2str(i);
// The particular label file.
select recid from names
where names.Name == labelid
exists join ref
where names.RecId == ref.xRefNameRecId;
if (! names.RecId)
{
info += strfmt(“%1#%2\n”, labelId,
SysLabel::labelId2String(labelId));
}
i++;
}

No comments:

Post a Comment

AZURE INTERVIEW QUESTIONS AND ANSWERS

AZURE INTERVIEW QUESTIONS AND ANSWERES 2021 2. What is cloud computing? Explanation:  It is the use of servers on the internet to “store...