MGCP Name Display with NI-1 using DMS-100

MGCP PRI linked to Allstream. MGCP is configured DMS-100 Switch type while Alstream are using a DMS 500 emuling NI-1 swith type. Name display do comes out on Q931 Message out to Allstream.
But Allstream are asking for:
You need the plus/minus byte in front of the name. Nonetheless, NI2 will not work in the SS7 network. If they do change to NI-1 they must also add that byte. Example:DSP: ±DANIEL THOMPSON
I did attach the way the presentation is requested.
Is it compatible ? what can we do ?
--------Char----Decimal---Hex-----Binary
space-----------32--------20------00100000
plus---- + -----43--------2B------00101011
plus/
minus--- ± -----177-------B1------10110001
Note: If you get #NAME? in the hex and binary columns, go to Tools -> Add-Ins, and select "Analysis ToolPack"

I am not sure if you successfully fixed this. I am having the same issue in CUCM 9.1

Similar Messages

  • How do I synchronize display with printed colors using the Calibration Syst

    The windows headed "Determine your display's native response..." seem confusing to me in the use of "match" and "neutral" matching of the backgrounds using the apple shape and adjacent sliders.
    I have accumulated several settings and may have tampered with the original one which I would like to go back to.
    The printer is a Canon iP6000 and produces great pictures off my Win XP machine whose native calibration I never had to change. Thanks for any help.

    Thanks for the feedback. Some people (tech writers, in this instance) think that being clear and concise, even if you have to use the same word more than oncd, isn't creative, modern, or cool enough. They've fallen for looking good and forgot about being good. Good computing.

  • Using 3rd party external display with MacBook Air

    Hello
    I'm eagerly awaiting the delivery of my MBA. Questions:
    * Do I have to use an Apple display or can I use any with a mini-DVI?
    * Can I use an external Keyb + mouse just be using the bluetooth finder?
    Thanks!

    Hi,
    a friend uses his MacBook with a Fujitsu screen and a no-name BT mouse... so, it should work.
    Volker

  • Along with subtotal name display

    how to display vendor name along with subtotals...?
    my ALV report (using function modules, choice for LIST and GRID) subtotals needs to display..
    the code is :
           ls_sort                    TYPE slis_sortinfo_alv.
    *-- Level 1
      CLEAR ls_sort.
      ls_sort-fieldname = 'LIFNR'.
      ls_sort-spos      =  1.
      ls_sort-up        = 'X'.
      ls_sort-subtot    = 'X'.
      APPEND ls_sort TO vt_sort.
    *-- Level 2
      CLEAR ls_sort.
      ls_sort-fieldname = 'EBELN'.
      ls_sort-spos      =  2.
      ls_sort-up        = 'X'.
      ls_sort-subtot    = 'X'.
      CLEAR ls_sort.
      ls_sort-fieldname = 'DMBTR'.
      ls_sort-spos      =  3.
      ls_sort-up        = 'X'.
      ls_sort-subtot    = 'X'.
      APPEND ls_sort TO vt_sort.
    plz help me...

    Hi,
    This is sample coding for subheadings and with sub totals.
    REPORT YMS_TESTALV .
    TYPE-POOLS: SLIS.
    DATA: REPID LIKE SY-REPID,
          X_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
          IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          L_LAYOUT type slis_layout_alv,
    x_events type slis_alv_event,
          it_events type slis_t_event with header line. "SLIS_T_EVENT.
    DATA: BEGIN OF ITAB OCCURS 0,
          VBELN LIKE VBAK-VBELN,
          POSNR LIKE VBAP-POSNR,
          MALE type i,
          female type i,
    PLANE(10),
    ACTUAL(10),
    PLANE1(10),
    ACTUAL1(10),
          END OF ITAB.
    START-OF-SELECTION.
    REPID = SY-REPID.
    SELECT VBELN POSNR FROM VBAP UP TO 20 ROWS INTO TABLE ITAB.
    X_FIELDCAT-FIELDNAME = 'VBELN'.
    X_FIELDCAT-SELTEXT_L = text-020.      "'Planned cost'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 1.
    X_FIELDCAT-OUTPUTLEN = 10 .
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'POSNR'.
    X_FIELDCAT-SELTEXT_L = text-053.      "'Actual cost '.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 2."1.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'MALE'.
    X_FIELDCAT-SELTEXT_L = 'MALE'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 3.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'FEMALE'.
    X_FIELDCAT-SELTEXT_L = TEXT-T01.        "'FEMALE'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 3.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    it_events-NAME = SLIS_EV_TOP_OF_PAGE.
    it_events-FORM = 'TOP_OF_PAGE'.
    APPEND iT_EVENTS.
    CLEAR it_events .
    L_LAYOUT-NO_COLHEAD = 'X'.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
              I_CALLBACK_PROGRAM = REPID
              IS_LAYOUT = L_LAYOUT
              IT_FIELDCAT = IT_FIELDCAT
              it_events = it_events[]
              TABLES
              T_OUTTAB = ITAB
              EXCEPTIONS
              PROGRAM_ERROR = 1
              OTHERS = 2.
             IF SY-SUBRC <> 0.
              MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
             ENDIF.
    FORM TOP_OF_PAGE.
    *-To display the headers for main list
    FORMAT COLOR COL_HEADING.
            WRITE: / SY-ULINE(143).
            WRITE: / SY-VLINE,
            (8) 'LAST YEAR' ,
            SY-VLINE,
            (10) ' ' ,
            SY-VLINE,
            (19) 'CURRENT YEAR'(020) centered,
            (19) 'CURRENT YEAR'(020),
            sy-vline.
            WRITE: / SY-VLINE,
            (8) 'PLANE'(053) ,
            SY-VLINE,
            (8) 'ACTUAL'(054) ,
            SY-VLINE,
            (8) 'MALE'(056) ,
            sy-vline,
            (9) 'FEMALE'(057) ,
            sy-vline.
    FORMAT COLOR OFF.
    ENDFORM.
    Thanks,
    Shankar

  • How do i use an external display with my macbook pro?

    How do I use an external display with a macbook pro?

    Just buy the proper adapter cord, such as MiniDisplay port to HDMI for example.  Plug it in and it will be automatically recognized.  Use System Preferences > Displays to set options.
    The display can Mirror your primary desktop or Extend the Desktop.
    Regards,
    Captfred

  • HT204053 i RECENTLY PURCHASED ANOTHER IPHONE.  MY INTERNET IS NOT WORKING.  I JUST CREATED AN APPLE ID.  WHAT'S NEXT?  I NOW HAVE TWO DIFFERENT ACCOUNTS WITH DIFFERENT USER NAMES.  HOW CAN I USE ONLY ONE ACCOUNT FOR ITUNES, ICLOUD APPLE ID ETC???

    I RECENTLY PURCHASED ANOTHER IPHONE.  MY INTERNET IS NOT WORKING.  I JUST CREATED AN APPLE ID.  WHAT'S NEXT?  I NOW HAVE TWO DIFFERENT ACCOUNTS WITH DIFFERENT USER NAMES.  HOW CAN I USE ONLY ONE ACCOUNT FOR ITUNES, ICLOUD APPLE ID ETC???

    Welcome to the Apple community.
    iTunes and iCloud and different accounts, you will need to delete both accounts from your device before adding the new details in their place.
    For iCloud go to settings > iCloud, scroll down and hit the delete button. You can then sign back in using your correct details. For iTunes go to settings >store, tap your account ID and then sign out, you can then sign back in using your correct Apple ID.

  • Can I use a 30" Apple Cinema display with a new 27" iMac?

    I have a brand new iMac(27-inch, Late 2013), OS X Mountain Lion (10.8), i7 3.5 GHz, 32MB RAM, 4GB NVIDIA.  I will soon be upgrading it to Mavericks, if that makes a difference.  My understanding is that the resolution on it is 2560 x 1440.
    I'm looking at buying a used 30" Apple Cinema display.  I'd like to use it with my new iMac.  The only advantage for me would be that the 30" screen is larger and things on it easier to see (or so I'm guessing).
    I need to know if the 30" Cinema display would work with my new iMac, and if it would, as I'm guessing, give me a larger, easier-to-see screen.
    I currently have my new iMac connected to my old mid-2010 iMac as a target display (that old iMac has a minidisplay port--no Thunderbolt), and that works great.  I just want a larger screen.
    I called Apple support, and the tech rep wasn't sure it would work.  He seemed to think that the 30" Cinema displays were made with different connections.  Some had minidisplay ports (which he thought would work), and some a cord built into them that provided some other type of connection (that I guess would not work as far as he knew).
    Can anyone tell me if this would work?  Would my new iMac and its video card support the 30" Cinema display?  Would the result be as sharp and good-looking as my iMac's built-in 27" display, but only bigger (which is what I'm hoping for)?  Any advice is appreciated.
    I don't yet know many of the specifics of the 30" Cinema display I'm considering.  I know it is about 3 years old.  And here is a picture of the back of it:

    Yes, you should be able use the 30" Cinema Display with your new iMac without problems. You'll need a mini-DisplayPort to Dual-Link DVI adapter:
    http://store.apple.com/us/product/MB571Z/A/mini-displayport-to-dual-link-dvi-ada pter
    I haven't had the 30" myself to test so I don't know if there any caveats. Perhaps someone else here will have personal experience.
    Regards.

  • Using An ASD LCD display with a new Mac Mini

    I want to utilize a 17" Apple Studio Display with my new Mac Mini.
    Does HDMI support the 35-pin Apple Display Connector (ADC)?
    It would require an adapter with female 35-pin on one side and a male HDMI (DVI) on the other. The Apple DVI to ADC adapter doesn't work with the Mac Mini HDMI port.
    If two adapters are needed they must have the correct gender connections.
    Thanks.

    Your correct, you would need an Apple DVI to ADC adapter, And ether mini display port to DVI OR HDMI to DVI adapter. (just a question of witch port you want to use)
    Apple DVI to ADC adapter when they were first released cost about 120; now they're kind of rare and harder to find. Online they can go for 200 dollars. so 120 to 200 dollars to make your display work; and displays don't last for ever they have parts that will break down. Older displays have a light bulb inside them; witch burn out just like all the other light bulbs in your house.
    Also DVI to ADC adapters can some times give you blurry images and or text.
    For 120 dollars you can buy a generic brand 19" LCD. That 19" LCD would have better contrast ratio, brightness, and refresh rate then the old 17" monitor. (and it would have a warranty) Or for 200 dollars you could buy 23" monitor.

  • There is a lot of talk aout there about using a 27" iMac as a display with the mini displayport to displayport cable. It is so exciting! I am trying to connect a PC laptop with a VGA port to a 27" Dell Latitude D620?

    In 2010 there was a question about using a 27" iMac as a display with a Dell laptop.
    I am trying to connect a work Dell laptop Running Windows XP via a VGA cable to my personal iMac 27"
    running iMac 27", Mac OS X (10.6)
    Has anyone tried this or know if imac 27" Mini port with a VGA adapter can work?
    I apologize if I missed this discussion already
    Kind Regards
    Gilly

    Hi Gilly,
    I have no proof, but I think it will not work with an adapter, only Mini Display Port or Thunderbolt.

  • How do you use multiple displays with a MacBook Pro and iMac

    I have an iMac and a MacbookPro laptop both upgraded to OS X 10.9 (Mavericks).  I'd like to use multiple displays with them.  Can I do this without an Apple TV?  They are both on the same network.  If I can, can someone please give some instructions on how this can be done?
    Thanks!

    Both computers have ports for external monitors. Check your user manuals. Only one display can be added to the MBP, but newer iMacs have dual Thunderbolt ports.
    Do your own Google research to learn what to do, but reading your manuals should be all you really need. It' not rocket science yet.

  • Hi All, I am using iphone in UAE and ipad in India usinging same apple id. Earlier I could do imessage  to my Ipad with different name but with  software update,I am unable to do, as signing id for the iphone and ipad is same.How to restore back

    Hi All, I am using iphone in UAE and ipad in India usinging same apple id. Earlier I could do imessage  to my Ipad with different name but with  software update,I am unable to do, as signing id for the iphone and ipad is same.How to restore back

    I believe because you migrated from a Nokia to an iPhone you need to register the Bn phone number with your Apple ID so it can be used for iMessage. The Pn number seems to be the only one registered
    Go here > https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Manage your Apple ID and see if that does the trick
    Hope that helps

  • Can you use 2 Thunderbolt Displays with Windows 7/Bootcamp on a Early 2011 Macbook pro?

    Can you use 2 Thunderbolt Displays with Windows 7/Bootcamp on a Early 2011 Macbook pro?
    I have 2 and cannot seem to get them to work?

    Can you use 2 Thunderbolt Displays with Windows 7/Bootcamp on a Early 2011 Macbook pro?
    I have 2 and cannot seem to get them to work?

  • Im not able to use facetime at all. Do some countries have restrictions. Can anyone help me out ? I use a Mac Book pro retina display with OSx Mountain lion

    Im not able to use facetime at all. Do some countries have restrictions. Can anyone help me out ? I use a Mac Book pro retina display with OSx Mountain lion.

    FaceTime for Mac: Troubleshooting FaceTime

  • Using a second monitor as the primary display with MiniDisplayPort

    I've got a new iMac, but the screen seems to be straining my eyes. I'm trying things like scaling the display, lowering brightness, changing desktop layout, etc, but if all else fails...I'd like to go back to my old external monitor.
    So, my question is...if I connected this monitor to the MiniDisplayPort on the iMac, could I use it as a single primary display, or would I have to use it as mirrored or secondary?

    Hi Brian,
    Thanks for using Apple Support Communities.  You can mirror the displays or make whichever display you want the primary in Extended Desktop mode.  See this article for details:
    How to use multiple displays with your Mac
    http://support.apple.com/kb/HT5019
    The white bar at the top of the left blue box represents the menu bar and determines which display is your primary display. To change your primary display, click the white bar and drag and drop it on the blue box representing the display you would prefer to be your primary display.
    Cheers,
    - Ari

  • Using a non Apple Display with the Mini

    I am considering purchasing a Mac Mini.
    It will be installed in my living room and connected to my stereo to play music from iTunes.
    In this area I only have about 19 inches of width. So I'm looking at purchasing a non Apple display that will fit in this width.
    What requirements should I look for in a display (hopefully to avoid adapters)?

    Recommend you buy from someplace that has a good exchange/return policy.
    Thanks, I always do, especially with a display.
    Some places have a policy that requires a certain number of dead pixels before they will accept a return.
    I ALWAYS test a display with 'Pixel Tester' immediately. If I find ANY defective pixels I return the display, and I never say the word "pixel" to them.
    having one dead pixel that is white, for example, while all others show color, can be annoying.
    And hard to re-sell later. Look on ebay, you will find many ads for used computers and displays that say "No Dead Pixels".

Maybe you are looking for