[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

4163.0. "problems with Identifier attributes" by ROM01::LILLI () Mon Nov 30 1992 06:24

Hello,

	I have a customer that is developing an AM for Cellur Network. He has 
this problem: when the show all id directive returns the value of the id it 
returns the Exadecimal values of the attributes.


Here it is a log:

================================================================================
MCC> show bsc x all ident

BSC LOCAL_NS:.x
AT 1992-11-30-10:08:01.223 Identifiers

Examination of attributes shows:
                                 bscnam = 
4D-69-6C-61-6E-6F-00-00-00-00-00-00-00
                                          -00:
Es:
MCC> show bsc x bts_cella y

AT 1992-11-30-10:08:58.566 Identifiers

Examination of attributes shows:
                               cellname = 
43-61-73-74-65-6C-6C-65-74-74-6F-00-00
                                          -00:
================================================================================


Any idea ?

Thanks in advance


Raimondo
T.RTitleUserPersonal
Name
DateLines
4163.2Fullmame and SimplenameROM01::LILLITue Dec 01 1992 08:1041
GLOBAL ENTITY BSC = 24 :
        IDENTIFIER = ( bscnam ),
        SYMBOL = CLASS_BSC,




      IDENTIFIER ATTRIBUTES

     
      ATTRIBUTE bscnam = 1 : FullName
                DNS_IDENT  = PRIMARY_NAME,
		ACCESS     = NONSETABLE,
		DISPLAY    = TRUE,
		SYMBOL     = BSC_BSCNAM,
		CATEGORIES = ( CONFIGURATION )
      END ATTRIBUTE bscnam;

      END ATTRIBUTES; (* IDENTIFIER *)



 CHILD ENTITY BTS_CELLA = 1 :
      (* PARENT = (BSC), *)
       IDENTIFIER = (cellname),
       DYNAMIC = FALSE,
       SYMBOL = CLASS_BSC_BTS_CELLA,
 

 
       ATTRIBUTE cellname = 2 : SimpleName  
                 ACCESS = NONSETABLE,
                 DISPLAY = TRUE,
                 CATEGORIES = (CONFIGURATION), 
                 SYMBOL = BSC_BTS_CELLA_CELLNAME
       END ATTRIBUTE cellname;
                 
       END ATTRIBUTES; (*IDENTIFIERS*)            


     
4163.3Bug in AMMARVIN::COBBGraham R. Cobb (DECNIS development), REO2-G/G9, 830-3917Thu Dec 03 1992 06:598
It looks  like  the  identifier  is defined as a fullname but that the AM is
returning  the  *external*  format of the fullname (i.e.  some text) for the
value.   Fullnames  have  to be returned in internal form which is a complex
form  including  the  NSCTS.  MCC is interpreting your text as the NSCTS and
(following  the  rules)  it  is  displaying  it in hex (as it is not a known
NSCTS).

Graham