XREF Template

Pavan Yadav

Member
Hi All,
can anybody please explain me the XREF output file i.e my exact doubt is :

c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 COMPILE idx_test.p

i have this output for XREF, in this what exactly that 1 means in this??
This number keep on chaging after some lines as 1 2 5 7 randomly.
 

Pavan Yadav

Member
It's not line number ... because it's repeating evrytime.....
it's like ....
Now wht's the meaning of 1 & 5 in this...??
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 COMPILE idx_test.p
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 CPINTERNAL ISO8859-1
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 CPSTREAM ISO8859-1
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 STRING "Customer" 8 NONE UNTRANSLATABLE
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 ACCESS sports2000.Customer Country
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 ACCESS sports2000.Customer PostalCode
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 ACCESS sports2000.Customer Name
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 STRING "XYZ" 3 NONE TRANSLATABLE
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 STRING "ABABAB" 6 NONE TRANSLATABLE
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 STRING "ABC" 3 NONE TRANSLATABLE
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 SEARCH sports2000.Customer CountryPost
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 1 SEARCH sports2000.Customer Name
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 ACCESS sports2000.Customer CustNum
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 STRING ">>>>9" 5 NONE TRANSLATABLE FORMAT
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 ACCESS sports2000.Customer Country
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 STRING "x(20)" 5 NONE TRANSLATABLE FORMAT
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 ACCESS sports2000.Customer Name
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 STRING "x(30)" 5 NONE TRANSLATABLE FORMAT
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 ACCESS sports2000.Customer Address
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 STRING "x(35)" 5 NONE TRANSLATABLE FORMAT
c:\sports2000\idx_test.p c:\sports2000\idx_test.p 5 ACCESS sports2000.Customer Address2
 

tamhas

ProgressTalk.com Sponsor
OK, for starters, notice that you have a statement which starts on line 1 and finishes on line 3, then a blank line and the next statement begins on line 5. So, all of the messages about everything from FOR to : will show on line 1 and the next set of messages will relate to line 5, just like in the XREF you posted. It is always the line the statement starts on, ignoring line breaks and such within any one statement.
 

Pavan Yadav

Member
Thanks tamhas....
I will do a bit more analyses on that for complex one & will continue here if any further doubts....!!
 
Top