Wiring for a Symbol SPT17xx RJ45 to DB9 or where to find

I have (as I have mentioned) the Symbol SPT1700 and SPT1740 with the charging cradle. I was able to repair the charging cradle (blown input capacitor and shorted voltage regulator), but I still need a cable to connect the RJ45 on the cradle to a DB9 serial port to HotSync. I thought I read that the original cable was a null modem cable, so I wired it up as such (or so I thought) but I cannot get it to sync.
Can someone please give me a pin to pin wiring diagram to go from the RJ45 to a DB9 or tell me where I might can find this information? I don't see spending $25 to $30 for a cable that I can build myself for less than $5... I mean, I did spend three hours troubleshooting a SMT charging cradle instead of just buying a new one.
Post relates to: Palm Pilot

Did you ever figure this out? I have the SPT 1700 and 1800 that I want to do. actualy I want to convert it to db25 then use my serial to usb.

Similar Messages

  • I want to buy a new apple tv but it used hdmi cables and my house is only wired for analog.  Is there any way I can use the apple tv on analog cables?

    I want to buy a new apple tv but it used hdmi cables and my house is only wired for analog.  Is there any way I can use the apple tv on analog cables?

    Welcome to the Apple Community.
    It's do-able, but I don't think it's a great idea.
    DVI
    Some users with DVI have managed to get their TV's to work with DVI-HDMI cables. DVI carries no audio, so alternative connections need to be explored to enable audio. DVI doesn't necessarily support HDCP as well as other standards used by HDMI (which may or may not be an issue)
    Analogue
    There are hardware converters that will convert HDMI to various other types of output, however there are some issues with doing so that you should be aware of.
    HDCP
    HDCP compliant converters will not allow you to watch HDCP protected content such as that from the iTunes Store. Non compliant converters exist but we cannot discuss them under the Terms of Use for these communities.
    Resolution and aspect ratio
    I'm not aware of any converters that will scale the output from the Apple TV, any TV or projector which is used will need to be widescreen and support resolutions of 720p (Apple TV 2), 720p/1080p (Apple TV 3)
    DAC
    DAC (Example Only - Not a recommendation or suggestion that this is suitable in your circumstances)

  • Need solution for using Symbol LRT3840 with Apps 10.7 and/or 11i?

    Any suggestions for using Symbol's scanner/terminal with Oracle 10.7 and/or 11i? The symbol unit runs a telnet session (with a 1/4 viewable area). I'm looking for some alternate screen templates and/or a software solution that will allow me to remap the existing full screen forms so all critical information is displayed on the symbol unit in the allowable viewing area. I understand that version 11i of Oracle Apps does not support character-based telnet sessions, so I'm also interested in a fix that will be transparent to my material handlers when we upgrade from 10.7 to 11i. Any help would be greatly appreciated.

    Hi
    We are developing solutions in that area.
    If we can know more of the exisitng solution you have implemented or PDA and how it is integrated with Oracle Application(whether it is a third party tool?)
    then we can discuss about arriving at a solution.
    My mail-id is [email protected]
    Thanks and Regards,
    Bibs

  • Header Line Logic for Field Symbols??

    Hi Experts,
    I have the logic
    DATA: Itab  TYPE REF TO DATA.
    FIELD-SYMBOLS: <itab> TYPE STANDARD TABLE.
    CREATE DATA Itab TYPE STANDARD TABLE OF (TABLE_NAME).
    ASSIGN Itab->* TO <itab>.
    Her I had done the dynamic logic
    select (LT_FIELDS)
           into corresponding fields of table <itab>
           from (TABLE_NAME)
          up to 100 rows
           WHERE (LT_WHERE).
    Now I am having all information in <itab>.
    Now I want to take this headerline information of <itab> and populate the same to other structure??
    How to take the <itab> as header line information by looping??

    Hi
    see this and use
    Field Symbols
    Field symbols are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program.
    Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs.
    Field symbols are similar to dereferenced pointers in C (that is, pointers to which the content operator * is applied). However, the only real equivalent of pointers in ABAP, that is, variables that contain a memory address (reference) and that can be used without the contents operator, are reference variables in ABAP Objects.
    All operations programmed with field symbols are applied to the field assigned to it. For example, a MOVE statement between two field symbols moves the contents of the field assigned to the first field symbol to the field assigned to the second field symbol. The field symbols themselves point to the same fields after the MOVE statement as they did before.
    You can create field symbols either without or with type specifications. If you do not specify a type, the field symbol inherits all of the technical attributes of the field assigned to it. If you do specify a type, the system checks the compatibility of the field symbol and the field you are assigning to it during the ASSIGN statement.
    Field symbols provide greater flexibility when you address data objects:
    If you want to process sections of fields, you can specify the offset and length of the field dynamically.
    You can assign one field symbol to another, which allows you to address parts of fields.
    Assignments to field symbols may extend beyond field boundaries. This allows you to address regular sequences of fields in memory efficiently.
    You can also force a field symbol to take different technical attributes from those of the field assigned to it.
    The flexibility of field symbols provides elegant solutions to certain problems. On the other hand, it does mean that errors can easily occur. Since fields are not assigned to field symbols until runtime, the effectiveness of syntax and security checks is very limited for operations involving field symbols. This can lead to runtime errors or incorrect data assignments.
    While runtime errors indicate an obvious problem, incorrect data assignments are dangerous because they can be very difficult to detect. For this reason, you should only use field symbols if you cannot achieve the same result using other ABAP statements.
    For example, you may want to process part of a string where the offset and length depend on the contents of the field. You could use field symbols in this case. However, since the MOVE statement also supports variable offset and length specifications, you should use it instead. The MOVE statement (with your own auxiliary variables if required) is much safer than using field symbols, since it cannot address memory beyond the boundary of a field. However, field symbols may improve performance in some cases.
    check the below links u will get the answers for your questions
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html
    Syntax Diagram
    FIELD-SYMBOLS
    Basic form
    FIELD-SYMBOLS <fs>.
    Extras:
    1. ... TYPE type
    2. ... TYPE REF TO cif
    3. ... TYPE REF TO DATA
    4. ... TYPE LINE OF type
    5. ... LIKE s
    6. ... LIKE LINE OF s
    7. ... TYPE tabkind
    8. ... STRUCTURE s DEFAULT wa
    The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Cannot Use Untyped Field Symbols ad Cannot Use Field Symbols as Components of Classes.
    Effect
    This statement declares a symbolic field called <fs>. At runtime, you can assign a concrete field to the field symbol using ASSIGN. All operations performed with the field symbol then directly affect the field assigned to it.
    You can only use one of the additions.
    Example
    Output aircraft type from the table SFLIGHT using a field symbol:
    FIELD-SYMBOLS <PT> TYPE ANY.
    DATA SFLIGHT_WA TYPE SFLIGHT.
    ASSIGN SFLIGHT_WA-PLANETYPE TO <PT>.
    WRITE <PT>.
    Addition 1
    ... TYPE type
    Addition 2
    ... TYPE REF TO cif
    Addition 3
    ... TYPE REF TO DATA
    Addition 4
    ... TYPE LINE OF type
    Addition 5
    ... LIKE s
    Addition 6
    ... LIKE LINE OF s
    Addition 7
    ... TYPE tabkind
    Effect
    You can define the type of the field symbol using additions 2 to 7 (just as you can for FORM parameters (compare Defining the Type of Subroutine Parameters). When you use the ASSIGN statement, the system carries out the same type checks as for USING parameters of FORMs.
    This addition is not allowed in an ABAP Objects context. See Cannot Use Obsolete Casting for FIELD SYMBOLS.
    In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. See Defining Types Using STRUCTURE.
    Effect
    Assigns any (internal) field string or structure to the field symbol from the ABAP Dictionary (s). All fields of the structure can be addressed by name: <fs>-fieldname. The structured field symbol points initially to the work area wa specified after DEFAULT.
    The work area wa must be at least as long as the structure s. If s contains fields of the type I or F, wa should have the structure s or at least begin in that way, since otherwise alignment problems may occur.
    Example
    Address components of the flight bookings table SBOOK using a field symbol:
    DATA SBOOK_WA LIKE SBOOK.
    FIELD-SYMBOLS <SB> STRUCTURE SBOOK
    DEFAULT SBOOK_WA.
    WRITE: <SB>-BOOKID, <SB>-FLDATE.
    Regards
    ANJI

  • Hyperion Wired for OLAP v.4.1.2 compatiblity with Hyperion Essbase OLAP Server v.6.5.4

    Dear all,Our existing version of Hyperion products are as follows:1) Hyperion Essbase OLAP Server version 5.0.1 Patch 7 under SunOS 5.6 on Solaris Server2) Hyperion Wired for OLAP version 4.1.2 under Microsoft Win2000 Server on Intel machine.And we are going to upgrade Hyperion Essbase OLAP Server from 5.0.1 Patch 7 to 6.5.4 under SunOS 5.8 to get Windows XP support on Essbase client in client users' PC.Besides, we also intend to upgrade Hyperion Wired for OLAP v.4.1.2 to Hyperion Analyzer v.6.5. However, as client users' PC configuation don't meet the requirements for Hyperion Analyzer 6.5, we may need to postpone the Hyperion Analyzer 6.5 upgrade.Here, I have a question that can Hyperion Wired for OLAP v.4.1.2 can access Hyperion Essbase 6.5.4 OLAP applications.Finally, I also have a question that since Hyperion Analyzer 6.X, repository in Paradox format has been faded out, RDBMS for repository has been introduced since then. Then can we still keep using repository in Paradox format in Hyperion Analyzer 4.1.2/5.0.3 when upgrading to Hyperion Analyzer 6.5 or higher in the future.Thanks for your help and attention!Regards,zerolai

    I do not think wired will even work with the 6.x runtimes. Your only real option is to put off the move untill you can manage the a6.5 upgrade.

  • My laptop is connected to company LAN on wire and I have another active wifi connection provided by a router. Can I use the wifi connection for mozilla connection and the wired for everything else? I'm on Win7.

    I have 2 simultaneous active connections:
    no1: wired connection to company lan; private IP 172.19..
    no2: wireless connection to unrestricted traffic router; private IP: 192.168...
    my question: can I use the wireless connection for mozilla traffic and the wired for everything else?
    I'm on Windows7 Prof, all security updates installed.

    Go to Control Panel > Network and Internet > Network and Sharing Center >
    Click Change adapter settings from left panel > Open the network connection you want to change the DNS servers for by right click and select Properties > Select
    Internet Protocol Version 4 (TCP/IPv4) and click Properties button > Choose the
    Use the following DNS server addresses > enter the IP address for a
    Preferred DNS server as well as an Alternate DNS server.
    Primary DNS: 8.8.8.8
    Secondary DNS: 8.8.4.4
    This IP belongs to Google public DNS.
    Note: Wired connections are usually labeled as Ethernet, while wireless ones are usually labeled as
    Wi-Fi or Wireless Network Connection.
    Uncheck Internet Protocol version 6
    Mark as Answer if it's worked. Thanks. Balamurugan_Subramaniyan

  • Sample program for field symbol

    hi,
             I am fresher. I want sample program(code) for field symbol.

    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm
    TYPES: BEGIN OF line,
             col1 TYPE c,
             col2 TYPE c,
           END OF line.
    DATA: wa TYPE line,
          itab TYPE HASHED TABLE OF line WITH UNIQUE KEY col1,
          key(4) TYPE c VALUE 'COL1'.
    FIELD-SYMBOLS <fs> TYPE ANY TABLE.
    ASSIGN itab TO <fs>.
    READ TABLE <fs> WITH TABLE KEY (key) = 'X' INTO wa.
    The internal table ITAB is assigned to the generic field symbol <FS>, after which it is possible to address the table key of the field symbol dynamically. However, the static address
    READ TABLE <fs> WITH TABLE KEY col1 = 'X' INTO wa.
    is not possible syntactically, since the field symbol does not adopt the key of table ITAB until runtime. In the program, the type specification ANY TABLE only indicates that <FS> is a table. If the type had been ANY (or no type had been specified at all), even the specific internal table statement READ TABLE <FS> would not have been possible.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb387a358411d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb387a358411d1829f0000e829fbfe/content.htm

  • Common text field for several symbols's mouseover

    Hi all.
    I have on stage several symbols and a simple text element.
    I want the text element to display every symbol's mouseover specific text. For ex. if I mouseover "Symbol_1" the text element should display something like "Your mouse cursor is hovering Symbol_1".
    How's the code for this?
    Thanx.
    pmfr

    Hi, pmfr01-
    You'll need to have a mouseover event defined for each symbol instance or an element within a symbol definition.  In that mouseover event, you would update the text field by referring to it this way:
    sym.getComposition().getStage().$("Text1").html("Your mouse cursor is hovering over mySym1");
    Hope that helps get you started!
    -Elaine

  • Any way to avoid frequent panic: "IOGMD: not wired for the IODMACommand..."?

    I've had a dual monitor set up on my Mac Pro "Early 2009" since it was delivered new. 
    The machine has two NVIDIA GeForce GT 120's adapters, each attached to identical Apple LCD Cinema Displays (1920x1200) via Displayport.
    I've experienced a number of strange behaviours with this set up.
    From new, I had random occasional blanking of one of the screens.  Maybe once every week or two, lasting a few seconds, then the image comes back fine.
    From 10.8.2 the machine would occasionally crash (panic), typically while I was using the broswer - and often whan scrolling or something that was clearly causing the GPU to be moving things around.
    From 10.8.3 this seems to be *much* worse.  This crash now happens at least once a day in normal operations.
    I've pasted the dump below.
    Is anyone else having similar problems?  Is there anything I can do to alleviate this issue?  It's really starting to interfere with my day-to-day use of the machine.
    Tue Mar 12 16:09:59 2013
    panic(cpu 0 caller 0xffffff8009a51c07): "IOGMD: not wired for the IODMACommand"@/SourceCache/xnu/xnu-2050.18.24/iokit/Kernel/IOMemoryDescriptor.c pp:1424
    Backtrace (CPU 0), Frame : Return Address
    0xffffff811f1eb0f0 : 0xffffff800961d626
    0xffffff811f1eb160 : 0xffffff8009a51c07
    0xffffff811f1eb1f0 : 0xffffff8009a4c9de
    0xffffff811f1eb2a0 : 0xffffff8009a4d60a
    0xffffff811f1eb2c0 : 0xffffff7f89d25a44
    0xffffff811f1eb330 : 0xffffff7f89d8fd85
    0xffffff811f1eb380 : 0xffffff7f89d8feaf
    0xffffff811f1eb3d0 : 0xffffff7f89d75515
    0xffffff811f1eb450 : 0xffffff7f89d73815
    0xffffff811f1eb490 : 0xffffff7f89d62083
    0xffffff811f1eb540 : 0xffffff7f89d8c177
    0xffffff811f1eb730 : 0xffffff7f89d8d1d8
    0xffffff811f1eb800 : 0xffffff7f8ae1b419
    0xffffff811f1eb940 : 0xffffff7f8ae1aefe
    0xffffff811f1eb950 : 0xffffff7f8adf2cfb
    0xffffff811f1eb960 : 0xffffff7f8adc9580
    0xffffff811f1eb9a0 : 0xffffff7f8adc7dc2
    0xffffff811f1eb9d0 : 0xffffff7f8adcbe3b
    0xffffff811f1eb9f0 : 0xffffff7f8a74e650
    0xffffff811f1ebb60 : 0xffffff7f8a74e891
    0xffffff811f1ebb90 : 0xffffff7f8a75333e
    0xffffff811f1ebbc0 : 0xffffff8009a66f53
    0xffffff811f1ebc20 : 0xffffff8009a64b8f
    0xffffff811f1ebd70 : 0xffffff80096981e1
    0xffffff811f1ebe80 : 0xffffff8009620aed
    0xffffff811f1ebeb0 : 0xffffff8009610448
    0xffffff811f1ebf00 : 0xffffff800961961b
    0xffffff811f1ebf70 : 0xffffff80096a5b16
    0xffffff811f1ebfb0 : 0xffffff80096ced53
          Kernel Extensions in backtrace:
             com.apple.iokit.IOSurface(86.0.3)[578CEAAD-1465-3B29-B34F-09586288ED88]@0xfffff f7f8a74c000->0xffffff7f8a75dfff
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f89d1f 000->0xffffff7f8a021fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f89c8d000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f89d0b000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f89cc8000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f8adc2000 ->0xffffff7f8ae84fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f89d 1f000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f89d0b000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f89c8d000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f89cc8000
    BSD process name corresponding to current thread: WindowServer
    Boot args: serverperfmode=1
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000009400000
    Kernel text base: 0xffffff8009600000
    System model name: MacPro4,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 1924174930934124
    last loaded kext at 1910630742999687: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f8b8e4000, size 16384)
    last unloaded kext at 1910690812955235: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f8b8e4000, size 12288)
    loaded kexts:
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.driver.AppleUSBDisplays          353
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.GeForce          8.0.0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.Intel82574L          2.3.0b4
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleUSBUHCI          5.2.5
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleUSBAudio          2.9.0f6
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IOSurface          86.0.3
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.AppleUSBHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

    Hi, if not a software problen then sounds like the Video card.
    Try holding d key on bootup & see if AHT will run.

  • What is the wiring for the SHC68-68-EPM cable?

    Can someone please verify for me that the wiring for the SHC68-68-EPM is sequential all the way across the connectors? It looks to me like pins 1 through 34 at the end with the 0.8 mm connector go to pins A1 through A34 at the .050 connector, (as AMP numbers them), and pins 35 through 68 go to B1 through B34. I just want to be absolutely sure before I lay out my printed circuit board. Thanks.

    The following KB article should help:
    http://digital.ni.com/public.nsf/websearch/DE2D842E545DE64B86256F78006EAB1A?OpenDocument
    It appears that the pin mappings are the same on both sides (.050 and VHDCI)

  • Provide Sample Program for Display Symbol?

    Hi All,
    I want write program for display symbol in S94, but want to know which table i can refer, please provide me a sample program for that.
    Regards
    Avinav

    Hi,
    Do you mean the ICONS ?
    TYPE-POOLS : ICON
    In your code use the icon name.
    In case of ALV, in the fieldcatalog mention wa_fielcat-icon = 'X'.
    Thanks
    Swarna

  • RJ11 to BT plug wiring for a BT Diverse 3010 base ...

    Hi,
    What's the RJ11 to BT plug wiring required to make my BT Diverse 3010 base station get dial tone? I can't get dial tone with the lead I have.
    I've just acquired 2 BT Diverse 3010 base stations and phones.  They have not got the RJ11 to BT plug phone leads.
    I have an RJ11 to BT plug lead that works perfectly with an old landline phone.  Using this lead with the BT Diverse base station however is a failure.  It's as if there is no line. No dial tone. The handset and base station are communicating with each other fine.
    The fine detail of the wiring will suit me fine!  Anyone know?
    Cheers
    Geoff Moss

    Hi Geoff,
    I do not know the Diverse 3010, but connecting  can be confusing as these cables can now have different connections, depending on the equipement being connected.
    a) The original standard for phones is (from BT Jack Socket to RJ11) :-
    2 to 2   - speech and ringing
    3 to 3   - ringing                  - some modern phones do not use this      
    4                                       - not used but may be wired for tidyness
    5 to 5   - speech and ringing
    b) some two connection devices now use different connections to those above (2 and 5) and a 'crossover' cable is used:-
    2 to 3   - speech and ringing
    5 to 4   - speech and ringing
    Thus if the cable does not match the device, the device is not connected because, either:-
    i) for (a)   5 is not connected
    ii) for (b)  4 is not connected
    Cables are £1-2 on ebay.
    Much is explained here:-
    http://www.wppltd.demon.co.uk/WPP/Wiring/UK_telephone/uk_telephone.html
    Looking in the Diverse RJ11 socket with a torch may help - there may be only 2 connecting pins.
    It was worse with dial-up Modems, as they had no standard and it was unwise separating them from their cable.
    Please advise back on progress.
    Good Luck - Mike

  • DATA_OFFSET_TOO_LARGE dump for field symbol assignment/offset

    Hi,
    I am getting a DATA_OFFSET_TOO_LARGE dump for field symbol assignment/offset.
    Dump says, 'In the running program "ZTEST", the field "<WA_FINAL>" of the type "u" and length 2174 was to be accessed with the offset 2204. However, subfield accesses with an offset specification that is not smaller than the field length are not permitted.'
    Here <WA_FINAL> have to be 'TYPE any' to avoid assignment conflicts later in the logic.
    It's basically dumping at <WA_FINAL>+V_LEN(V_OFF) = WA_DATA-FIELD1.
    Here V_LEN LIKE DD03L-LENG & V_OFF LIKE DD03L-LENG.
    Please suggest how to get rid of this dump.
    Regards,
    Ritesh.

    The dump is very clear, your field is smaller than the offset.
    The problem is most likely how you are calculating v_len and v_off.
    You could change that, but there is probably an easier and faster way to do what you are trying there. Is <wa_final> something like a line from a file or what?

  • I have antiquecar wired for positive ground

    I have an old British car which is wired for positive ground.  Even though it has a normal cigarette lighter, it is wired in reverse of a modern car lighter.  Plug in type chargers will not work as the polarity is reversed. I would like to be able to charge my Apple products using a cigarette lighter type charger.  Seems to me that if I cut the Apple charger cable and reverse the wires, this should work.  Anyone had any experience with this?

    I would not recommend doing that. Why not rewire your cigarette lighter to have a negative ground? As long as you don't have the outer case of the plug touching the positive ground it should work fine.
    BTW having a positive ground is very dangerous on a vehicle.

  • House wired for two lines.. switching existing lin...

    Hello,
    My home is wired for multiple phone lines with the current phone line having an outlet in the downstairs bedroom.  This outlet works and is currently used for my phone and broadband connection.
    The remainder of the outlets are upstairs and there is no dial tone, but I was told by the previous owner they were hooked up to a second phone line. 
    I now have reason to need to move the phone line / broadband connection upstairs and as such would like to switch my existing phone line to the other outlet.  
    A longwinded way to do this would be to order a second phone line and wait untill that is installed and working in the upstairs outlets and then cancel the first phone line.  However, surely there must be an easier way; however, the problem is difficult to explain and I am not eager to have a engineer come to the house if the answer is that a second phone line must be "activated"  .. so what I really want is  BT to act as I'm moving house, but really just move it within my house !  if that makes any sense
    Any help appreciated. 
    Solved!
    Go to Solution.

    plainview wrote:
    Yeah, call the Home Movers Department, or contact the MOD's on here and they can arrange an Internal Home Move.
    Never heard of that service at all. But if it does exist, then they would have to contact BT, who will arrange for Openreach to arrange the shift of the pairs, to the other master socket position. There would be a charge for that service.
    Contact will need to be made the normal way by calling BT on 0800 800 150, and not via the forum moderators, who are there to deal with escalations only.
    If the master sockets for both lines are adjacent, and they are like the picture below, then its simply an internal extension switch which can be done by the home owner.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for

  • Printing to Networked Gestetner 3502 (Ricoh Driver)

    I am the only Mac user on a Windows network. I am trying to print to our copy machine: a Gestetner 3502p. I downloaded the PPD installer from the website and followed the instructions they gave me: [4] Adding the printer Follow these steps to add the

  • Need to add checkbox in alv header Not  in grid

    Dear Guru's,                    My question is i want to add checkbox on top of alv grid ie on top of page . my requriement is for SD module- status of order -Mass Update. suppose status checkbox on header is HFSC is checked ( check box), for all the

  • Custom XMP Panels in Framemaker

    Is it possible to modify the fields that are shown in the File Info screen within Framemaker? I would like to add new fields that are specific to my workflow. This is possible in other Adobe applications such as Illustrator and Acrobat. It does not s

  • What is used to authorize a device for Itunes?

    I  am trying to understand what is used from a specific device to "Authorize" it for itunes. Is it a MAC address or something else that would always be with a device?

  • Full Text seach arabic فاطمة and فاطمه

    hi , i have to search using full text seach on sql server 2008 all the record having the girl having the name فاطمة  it works fine !! but i have a problem :sometimes we write فاطمة  like this فاطمه so how can i do to have a result all the girl with n