Urgent help - HttpURLConnection from unix

Hi all,
I am having trouble figure out what going on. I wrote this application which will poll a website using http. My code is working prefectly fine in windows, but not from unix. Please help.
The code is show below.
where user is in form of
mydomain//user (this user name work in windows
1. do I need to change the // of of the user name in unix environment?
2. any suggestion please
       // Setting proxy details
        System.setProperty("http.proxySet", "true");
        System.setProperty("http.proxyPort", proxyPort);
        try {
            URL targetUrl = new URL(url);
            conn = (HttpURLConnection) targetUrl.openConnection();
            conn.setRequestProperty("Proxy-Authorization",  "Basic " + new Base64().encodeBase64((proxyUser + ":" + proxyPasswd).getBytes()));
            br = new BufferedReader(isr = new InputStreamReader(conn.getInputStream()));
        catch (IOException e) {
         }Thanks

Thanks for the valuable information.
So is there a work around? instead of doing getByte?
I am currently using the jakata common-codec.
Your help are much appreciated.

Similar Messages

  • Urgent Help:read from text file and write to table

    Hi,
    I'm a super beginner looking for a vi to read this data from a text file and insert it into a table:
       #19
    Date: 05-01-2015
    ID= 12345678
    Sample_Rate= 01:00:00
    Total_Records= 2
    Unit: F
       1 03-23-2015 10:45:46   70.1   3.6
       2 03-23-2015 11:45:46   67.7   2.7
    Output table
    #     date                 time                 x          y        Sample rate    Total Records
    1          03-23-2015     10:45:46        76.8     2.8      01:00:00           2
    2          03-23-2015     10:45:46        48.7     2.1      01:00:00           2
    Thanks for your help in advance.
    Attachments:
    sample.txt ‏1 KB

    jcarmody wrote:
    Will there always be the same number of rows of noise header information?
    Show us how you've read the data and what you've tried to do to parse it.  Once you've got the last rows, you can loop over them using Spreadsheet String to Array (after cleaning up a few messy spaces).
    Jim,
    I didn't know you're that active on here.
    Yes, There will always be the same number of noise header information.
    I'll show you in person
    Regards,

  • Asset aquisition report (urgent help needed from abap guys working on FI m)

    hi all,
    i have to develop Asset Aquisition report.so i have developed it.
    but in this i am not getting logic for the following---
    if i enter a date like -19.12.2006
    then the output of this report should show all the asset aquisition of the
    company from  01.04.2006 to 19.12.2006 only.
    bcoz in indian scenario fiscal year starts from 1st of april only.
    but in my output it is showing all the asset aquisition from the day comapny was
    started having its asset aquisition.
    so plz if anyone has logic for above sceanario then plz share with me.
    or any one has previously worked on this report can send the code to me
    satisfying the above scenario. its very very urgent guys.
    my id - [email protected]
    i am looking for the reply

    hi srinivas thanks for ur reply but it is not clear to me .
    so if u will send me the code the it will be better for me .
    my id- [email protected]
    i am waiting for ur reply. if u have code for this then plz send me.
    thanks yaar in advance

  • Check code ( urgent help needed from ABAP guys working on FI/CO)

    hi all,
    check my code & give me solution for getting only offsetting acounts depending on particular HKONT.
    plz i need its solution urgently.
    REPORT zglaccline NO STANDARD PAGE HEADING                              
                       LINE-SIZE 300                                         
                       LINE-COUNT 65(3).                                                                               
    TABLES : bkpf, bseg.                                                                               
    DATA : BEGIN OF it_bkpf OCCURS 0,                                       
            bukrs LIKE bkpf-bukrs,                                           
            belnr LIKE bkpf-belnr,                                           
            gjahr LIKE bkpf-gjahr,                                           
            monat LIKE bkpf-monat,                                           
            budat LIKE bkpf-budat,                                           
            brnch LIKE bkpf-brnch,                                           
            xblnr LIKE bkpf-xblnr,                                           
            waers LIKE bkpf-waers,                                           
            END OF it_bkpf.                                                                               
    DATA : BEGIN OF it_bseg OCCURS 0,                                        
    gsber LIKE bseg-gsber,                                                   
    hkont LIKE bseg-hkont,                                                   
    kunnr LIKE bseg-kunnr,                                                   
    sgtxt LIKE bseg-sgtxt,                                                   
    bschl LIKE bseg-bschl,                                                   
    wrbtr LIKE bseg-wrbtr,                                                   
    dmbtr LIKE bseg-dmbtr,                                                   
    pswsl LIKE bseg-pswsl,                                                   
    kostl LIKE bseg-kostl,                                                   
    prctr LIKE bseg-prctr,                                                   
    aufnr LIKE bseg-aufnr,                                                   
    shkzg LIKE bseg-shkzg,                                                   
    augbl LIKE bseg-augbl,                                                   
    END OF it_bseg.                                                                               
    DATA : BEGIN OF it_res OCCURS 0,                                           
    bukrs LIKE bkpf-bukrs,                                                    
    gjahr LIKE bkpf-gjahr,                                                    
    monat LIKE bkpf-monat,                                                    
    belnr LIKE bkpf-belnr,                                                    
    budat LIKE bkpf-budat,                                                    
    brnch LIKE bkpf-brnch,                                                    
    gsber LIKE bseg-gsber,                                                    
    hkont LIKE bseg-hkont,                                                    
    kunnr LIKE bseg-kunnr,                                                    
    bschl LIKE bseg-bschl,                                                    
    prctr LIKE bseg-prctr,                                                    
    kostl LIKE bseg-kostl,                                                    
    aufnr LIKE bseg-aufnr,                                                    
    pswsl LIKE bseg-pswsl,                                                    
    wrbtr LIKE bseg-wrbtr,                                                                               
    waers LIKE bkpf-waers,                                                 
    dmbtr LIKE bseg-dmbtr,                                                 
    xblnr LIKE bkpf-xblnr,                                                 
    txt50 LIKE skat-txt50,                                                 
    sgtxt LIKE bseg-sgtxt,                                                 
    shkzg LIKE bseg-shkzg,                                                 
    END OF it_res.                                                                               
    DATA : BEGIN OF itab_head OCCURS 0,                                     
           name1(20) TYPE c,                                                
           END OF itab_head.                                                
    SELECTION-SCREEN BEGIN OF BLOCK b_2 WITH FRAME TITLE text-002.          
    PARAMETERS : p_sel1 RADIOBUTTON GROUP sel,                              
                 p_sel2 RADIOBUTTON GROUP sel,                              
                 p_sel3 RADIOBUTTON GROUP sel.                              
    SELECTION-SCREEN END OF BLOCK b_2.                                      
    SELECTION-SCREEN SKIP 1.                                                
    SELECTION-SCREEN BEGIN OF BLOCK b_1 WITH FRAME TITLE text-001.          
    PARAMETER p_bukrs LIKE bkpf-bukrs DEFAULT 'ML' OBLIGATORY.              
    SELECT-OPTIONS : s_belnr FOR bkpf-belnr.                                
    SELECT-OPTIONS : s_gjahr FOR bkpf-gjahr OBLIGATORY.                     
    SELECT-OPTIONS : s_monat FOR bkpf-monat.                                
    SELECT-OPTIONS : s_blart FOR bkpf-blart.                                
    SELECT-OPTIONS : s_budat FOR bkpf-budat.                                
    SELECT-OPTIONS : s_waers FOR bkpf-waers.                                
    SELECT-OPTIONS : s_hkont FOR bseg-hkont.                                
    SELECT-OPTIONS : s_bldat FOR bkpf-bldat.                                
    SELECTION-SCREEN END OF BLOCK b_1.                                                                               
    SELECT bukrs belnr gjahr monat budat brnch xblnr waers                  
       INTO CORRESPONDING FIELDS OF TABLE it_bkpf                           
       FROM bkpf                                                            
       WHERE bukrs = p_bukrs                                                
       AND belnr IN s_belnr                                                 
       AND gjahr IN s_gjahr                                                 
       AND monat IN s_monat                                                 
       AND blart IN s_blart                                                 
       AND budat IN s_budat                                                 
       AND bldat IN s_bldat                                                 
       AND waers IN s_waers.                                                                               
    IF NOT it_bkpf[] IS INITIAL.                                            
      LOOP AT it_bkpf.                                                      
    IF p_sel1 = 'X'.                                                        
        SELECT gsber hkont kunnr sgtxt bschl wrbtr pswsl kostl shkzg        
                            dmbtr prctr aufnr augdt augbl                               
           INTO CORRESPONDING FIELDS OF TABLE it_bseg                       
           FROM bseg                                                        
           WHERE bukrs = it_bkpf-bukrs                                      
           AND belnr   = it_bkpf-belnr                                      
           AND gjahr   = it_bkpf-gjahr                                      
           AND pswsl   = it_bkpf-waers                                      
           AND hkont  IN s_hkont.                                           
    ELSEIF p_sel2 = 'X'.                                                    
        SELECT gsber hkont kunnr sgtxt bschl wrbtr pswsl kostl shkzg        
                dmbtr prctr aufnr augdt augbl                               
           INTO CORRESPONDING FIELDS OF TABLE it_bseg                       
           FROM bseg                                                        
           WHERE bukrs = it_bkpf-bukrs                                      
           AND belnr   = it_bkpf-belnr                                      
           AND gjahr   = it_bkpf-gjahr                                      
           AND pswsl   = it_bkpf-waers.                                    
          AND koart <> 'S'.                                              
    ENDIF.                                                                 
        IF sy-subrc EQ 0.                                                  
          LOOP AT it_bseg.                                                 
            SELECT SINGLE txt50 INTO it_res-txt50                          
                 FROM skat                                                 
                 WHERE spras = 'EN'                                        
                 AND   ktopl = 'PCA'                                       
                 AND   saknr = it_bseg-hkont.                                                                               
    it_res-bukrs = it_bkpf-bukrs.                                  
            it_res-gjahr = it_bkpf-gjahr.                                  
            it_res-monat = it_bkpf-monat.                                  
            it_res-gsber = it_bseg-gsber.                                  
            it_res-belnr = it_bkpf-belnr.                                  
            it_res-budat = it_bkpf-budat.                                  
            it_res-brnch = it_bkpf-brnch.                                  
            it_res-kunnr = it_bseg-kunnr.                                  
            it_res-hkont = it_bseg-hkont.                                  
            it_res-sgtxt = it_bseg-sgtxt.                                  
            it_res-bschl = it_bseg-bschl.                                  
            it_res-wrbtr = it_bseg-wrbtr.                                  
            it_res-pswsl = it_bseg-pswsl.                                  
            it_res-waers = it_bkpf-waers.                                  
            it_res-dmbtr = it_bseg-dmbtr.                                  
            it_res-kostl = it_bseg-kostl.                                  
            it_res-prctr = it_bseg-prctr.                                  
            it_res-aufnr = it_bseg-aufnr.                                  
            it_res-shkzg = it_bseg-shkzg.                                  
           it_res-augbl = it_bseg-augbl.                                 
            it_res-xblnr = it_bkpf-xblnr.                                  
            APPEND it_res.                                                 
            CLEAR it_res.                                                  
          ENDLOOP.                                                         
          CLEAR it_bkpf.                                                   
        ENDIF.                                                             
      ENDLOOP.                                                             
    ENDIF.                                                                 
    LOOP AT it_res.                                                        
      IF it_res-shkzg EQ 'H'.                                              
        it_res-wrbtr = it_res-wrbtr * -1.                                  
        it_res-dmbtr = it_res-dmbtr * -1.                                  
      ENDIF.                                                               
      WRITE : /2(4) it_res-bukrs,                                          
               13(4) it_res-gjahr,                                         
               21(2) it_res-monat,                                         
               31(10) it_res-belnr,                                        
               44(10) it_res-budat,                                        
               55(4) it_res-brnch,                                         
               60(4) it_res-gsber,                                          
               70(10) it_res-hkont,                                         
               82(10) it_res-kunnr,                                         
               94(2) it_res-bschl,                                          
               104(10) it_res-prctr,                                        
              116(10)  it_res-kostl,                                        
              128(12)  it_res-aufnr,                                        
              142(5)  it_res-pswsl,                                         
              148(13)  it_res-wrbtr,                                        
              164(5)  it_res-waers,                                         
              170(13)  it_res-dmbtr,                                        
             187(16)   it_res-xblnr,                                        
              205(50)  it_res-sgtxt.                                        
      MODIFY it_res.                                                        
      CLEAR it_res.                                                         
    ENDLOOP.                                                                
    plz give soltuion i am looking for it.
    i will aslo reward all ur precious effort.
    otherwise if anyone have any code on my reqirement then plz send it to me in my id- [email protected]
    thanks
    Message was edited by: sanjeev singh

    Hi
    You should a selection in BSIS and BSAS table instead of BKPF and BSEG:
    DATA : BEGIN OF it_res OCCURS 0,
    bukrs LIKE bkpf-bukrs,
    gjahr LIKE bkpf-gjahr,
    monat LIKE bkpf-monat,
    belnr LIKE bkpf-belnr,
    budat LIKE bkpf-budat,
    brnch LIKE bkpf-brnch,
    gsber LIKE bseg-gsber,
    hkont LIKE bseg-hkont,
    kunnr LIKE bseg-kunnr,
    bschl LIKE bseg-bschl,
    prctr LIKE bseg-prctr,
    kostl LIKE bseg-kostl,
    aufnr LIKE bseg-aufnr,
    pswsl LIKE bseg-pswsl,
    wrbtr LIKE bseg-wrbtr,
    waers LIKE bkpf-waers,
    dmbtr LIKE bseg-dmbtr,
    xblnr LIKE bkpf-xblnr,
    txt50 LIKE skat-txt50,
    sgtxt LIKE bseg-sgtxt,
    shkzg LIKE bseg-shkzg,
    END OF it_res.
    Open Item
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE it_res
    FROM <b>BSIS</b>
    WHERE bukrs = p_bukrs
    <b>AND HKONT IN S_HKONT</b>
    AND belnr IN s_belnr
    AND gjahr IN s_gjahr
    AND monat IN s_monat
    AND blart IN s_blart
    AND budat IN s_budat
    AND bldat IN s_bldat
    AND waers IN s_waers.
    Cleared Item
    SELECT *
    APPENDING CORRESPONDING FIELDS OF TABLE it_res
    FROM <b>BSAS</b>
    WHERE bukrs = p_bukrs
    <b>AND HKONT IN S_HKONT</b>
    AND belnr IN s_belnr
    AND gjahr IN s_gjahr
    AND monat IN s_monat
    AND blart IN s_blart
    AND budat IN s_budat
    AND bldat IN s_bldat
    AND waers IN s_waers.
    Max
    Message was edited by: max bianchi

  • Urgent Help Needed from MSI Tech!!

    I have currently 65MB Kingston PC 133 and the system will boot all the way to Windows and stay stable.
    I put 256MB Kingston PC 133 RAM and Windowns doesn`t detect anything more than 65MB.
    MY PC then keeps resetting and even at some points powering off.  Could the problem be main board damage or something ?
    Beside the DIMM slots are 2 small black transistors or something and 1 has a burn mark on it.
    PLZ HELP!!!

    ------------
    DXDIAG INFO
    Operating System: Windows Me (4.90, Build 3000)  
    Language: English (Regional Setting: English)
    System Manufacturer: Micro-Star Inc.                
    System Model: MS-6529                        
    BIOS: American Megatrends
    Processor: Intel(R) Pentium(R) 4 CPU 1500MHz
    Memory: 64MB RAM
    Page File: 49MB used, 1934MB available
    Windows Dir: C:WINDOWS
    DirectX Version: DirectX 9.0a (4.09.0000.0901)
    DX Setup Parameters: None
    DxDiag Version: 4.09.0000.0901 32bit
            -    ** DMI Information **      -
    ***************BIOS INFORMATION(TYPE0)***************
    Length : 14h
    Handle : 0h
    Vendor Name : American Megatrends Inc.        
    BIOS Version :  V1.3                          
    BIOS Build Date : 02/25/02                        
    BIOS starting Address Segment : f000h
    BIOS starting Address Segment : 128 K
    (7fc8da98h)BIOS Characteristics :
       ISA is supported : Yes
       MCA is supported : No
       EISA is supported: No
       PCI is supported : Yes
       PCMCIA is supported : No
       Plug and Play is supported : Yes
       APM is supported : No
       BIOS is Upgradeable (FLASH) : Yes
       BIOS shadowing is allowed : Yes
       VL-VESA is supported : No
       ESCD supported is available : Yes
       Boot from CD is supported : Yes
       Selectable Boot is supported : No
       BIOS ROM is socketed : No
       Boot From PCMCIA is supported : No
       EDD specification is supported : Yes
       for NEC 9800 1.2MB 3.5" : No
       for Toshiba 1.2mb 3.5" : No
       5.25"/360 KB Floppy supported : Yes
       5.25"/1.2 MB Floppy supported : Yes
       3.5"/720 KB Floppy supported : Yes
       3.5"/2.88 MB Floppy supported : Yes
       Print Screen is supported : Yes
       8042 Keyboard are supported : Yes
       Serial Services are supported : Yes
       Printer Services are supported : Yes
       CGA video Services are supported : Yes
       PC-98 : No
    ACPI supported : No
    USB Legacy is supported : No
    AGP is supported : No
    I2O boot is supported : No
    LS-120 boot is supported : No
    ATAPI ZIP Drive boot is supported : No
    1394 boot is supported : No
    Smart Battery supported : No
    ***************SYSTEM INFORMATION(TYPE1)***************
    Length : 19h
    Handle : 1h
    Manufacturer Name : Micro-Star Inc.                
    Product Name : MS-6529                        
    Version : 100                            
    Serial Number : 00000000                        
    UUID : 0000000000000000h
    Wake-up Type : (04h)Modem Ring
    ***************BASE BOARD INFORMATION(TYPE2)***************
    Length : 8h
    Handle : 2h
    Manufacturer Name : Micro-Star Inc.                
    Product Name : MS-6529                        
    Version : 100                            
    Serial Number : 00000000                        
    ***************SYSTEM ENCLOSURE OR CHASSIS(TYPE3)***************
    Length : 11h
    Handle : 3h
    Manufacturer Name : Uknown Chassis Manufacture      
    Type : (03h)Desktop
    Version : Version 1.00                    
    Serial Number : 123456890                      
    Asset Tag Number : 0123ABC                        
    Bootup State : (02h)Unknown
    Power Supply State : (02h)Unknown
    Thermal State : (02h)Unknown
    Security Status : (02h)Unknown
    ***************PROCESSOR INFORMATION(TYPE4)***************
    Length : 20h
    Handle : 4h
    Socket Designation : PGA423                          
    Processor Type : (03h)Central Processor
    Processor Family : (b2h)Unknown
    Processor Manufacturer : Intel                          
    Processor ID : 00000f0ah  00000055h
    Processor Version : Intel(R) Pentium(R) 4 Processor
    Voltage : (06h)unknow
    External Clock : (0064h)100 MHz
    Max Speed : (0960h)2400 MHz
    Current Speed : (05dch)1500 MHz
    Status : (41h)CPU Socket Populated , CPU Enabled
    Processor Upgrade : (08h)Slot 1
    L1 Cache Handle :0005h
    L2 Cache Handle :0006h
    L3 Cache Handle :Processor has no L3 cache
    ***************CACHE INFORMATION(TYPE7)***************
    Length : 13h
    Handle : 5h
    Socket Designation : Internal Cache                  
    (0180h)Cache Configuration :
       Cache Level : L1 Cache
       Cache Socketed : Not Socketed
       Location, relative to the CPU module : Internal
       Cache Memory : Enabled
       Operational Mode : Write Through
    Maximum Cache Size : ( 8010h)1024 K
    Installed Size : (0020h)32 K
    Supported SRAM Type : (0020h)Synchronous Type    
    Current SRAM Type : (0020h)Synchronous Type    
    Cache Speed : Unknow
    Error Correction : None
    System Cache : Unified
    Associativity : 4-Way
    ***************CACHE INFORMATION(TYPE7)***************
    Length : 13h
    Handle : 6h
    Socket Designation : Internal Cache                  
    (0181h)Cache Configuration :
       Cache Level : L2 Cache
       Cache Socketed : Not Socketed
       Location, relative to the CPU module : Internal
       Cache Memory : Enabled
       Operational Mode : Write Through
    Maximum Cache Size : ( 8010h)1024 K
    Installed Size : ( 8004h)256 K
    Supported SRAM Type : (0020h)Synchronous Type    
    Current SRAM Type : (0020h)Synchronous Type    
    Cache Speed : Unknow
    Error Correction : None
    System Cache : Unified
    Associativity : 4-Way
    ***************MEMORY CONTROLLER INFORMATION(TYPE5)***************
    Length : 16h
    Handle : 7h
    Error Detecting Method : (05h)32-bit ECC
    Error Correcting Capability : (08h)Single Bit Error Correcting
    Supported Interleave : (03h)One Way Interleave
    Current Interleave : (03h)One Way Interleave
    Maximum Memory Module Size : (09h)512MB
    Supported Speeds : (000ch)70ns  60ns  
    Supported Memory Types : (000ch)Standard     Fast Page     EDO     Parity     ECC     SIMM    
    Memory Module Voltage : (02h)  3.3V Supported
    Number of Associated Memory Slots : 03h
    Memory Module Configuration Handle : 0008h  0009h  000ah  
    Enabled Error Correcting Capabilities : Other
    ***************MEMORY MODULE INFORMATION(TYPE6)***************
    Length : 0ch
    Handle : 8h
    Socket Designation : DIMM1                          
    Bank Connections : (10h)RAS# 1  ,  RAS# 0
    Current Speed : (00h)0 ns
    Current Memory Type : (0002h)
    Installed Size : (7fh)Module not installed  ,   Single Bank
    Enabled Size : (7fh)Module not installed
    Error Status : (00h)Uncorectable errors:None  , Corectable errors:None  , From the event log:None
    ***************MEMORY MODULE INFORMATION(TYPE6)***************
    Length : 0ch
    Handle : 9h
    Socket Designation : DIMM2                          
    Bank Connections : (32h)RAS# 3  ,  RAS# 2
    Current Speed : (00h)0 ns
    Current Memory Type : (0500h)DIMM     SDRAM    
    Installed Size : (06h)64 MB  ,   Single Bank
    Enabled Size : (06h)64 MB
    Error Status : (00h)Uncorectable errors:None  , Corectable errors:None  , From the event log:None
    ***************MEMORY MODULE INFORMATION(TYPE6)***************
    Length : 0ch
    Handle : 0ah
    Socket Designation : DIMM3                          
    Bank Connections : (54h)RAS# 5  ,  RAS# 4
    Current Speed : (00h)0 ns
    Current Memory Type : (0002h)
    Installed Size : (7fh)Module not installed  ,   Single Bank
    Enabled Size : (7fh)Module not installed
    Error Status : (00h)Uncorectable errors:None  , Corectable errors:None  , From the event log:None
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 0bh
    Slot Designation : PCI1                            
    Slot Type : (06h)PCI
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (03h)Available
    Slot Length : (04h)Full Length
    Slot ID : 0001h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 0ch
    Slot Designation : PCI2                            
    Slot Type : (06h)PCI
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (04h)In use
    Slot Length : (04h)Full Length
    Slot ID : 0002h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 0dh
    Slot Designation : PCI3                            
    Slot Type : (06h)PCI
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (03h)Available
    Slot Length : (04h)Full Length
    Slot ID : 0003h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 0eh
    Slot Designation : PCI4                            
    Slot Type : (06h)PCI
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (03h)Available
    Slot Length : (04h)Full Length
    Slot ID : 0004h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 0fh
    Slot Designation : PCI5                            
    Slot Type : (06h)PCI
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (04h)In use
    Slot Length : (04h)Full Length
    Slot ID : 0005h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 10h
    Slot Designation : AGP                            
    Slot Type : (11h)AGP 4X
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (02h)Unknown
    Slot Length : (04h)Full Length
    Slot ID : 0000h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************SYSTEM SLOTS(TYPE9)***************
    Length : 0dh
    Handle : 11h
    Slot Designation : CNR                            
    Slot Type : (06h)PCI
    Slot Data Bus Width : (05h)32 bit
    Current Usage : (04h)In use
    Slot Length : (04h)Full Length
    Slot ID : 0000h
    Slot Characteristics1 : (0ch)
    Slot Characteristics2 :PCI Power Management Enable
    ***************OEM STRINGS(TYPE11)***************
    Length : 5h
    Handle : 12h
    Count : (02h)

  • I moved from an old macbook to a new one.  I copied all my files onto a hard drive.  On trying to setup my mail, i went into documents, microsoft user identities, office 2011 and it shows the database but wont let me select it.  Urgent help pls

    I moved from an old macbook to a new one.  I have installed Office for Mac 2011. I copied all my files from my old notebook onto a hard drive.  On trying to setup my mail, i went into my hard drive and accessed microsoft user identities, office 2011 and it shows the database but wont let me select it.  Its almost as if the file is there but not accessable.  I desperately need to access my old mail.  How do I do this?  I am fairly confident that I copied all files off my old notebook.  Is there a way for me to search for the Database file?  Maybe I copied it to a different location?  Urgent help please.

    Hello mafrerichs and welcome to Apple Support Communities,
    Simplest way is to use Target Disk mode:
    How to use and troubleshoot FireWire target disk mode - Apple Support
    and hook to another Mac and use CCC or SuperDuper and clone your HD to another drive.
    You could also pull the drive out of your MBP and use an external USB case or SATA - USB dongle to hook it to another Mac.
    "MacBook Pro (15-inch Late 2011),... have a 15" 2012 Macbook pro with 2gb of ram, i7 processor"
    That's a little confusing?

  • I need urgent help to remove unwanted adware from my iMac. Help!

    I need urgent help to remove unwanted adware from my iMac. I have somehow got green underline in text ads, pop up ads that come in from the sides of the screen and ads that pop up selling similar products all over the page wherever I go. Its getting worse and I have researched and researched to no avail. I am really hestitant to download any software to remove whatever it is that is causing this problem. I have removed and reinstalled chrome. I have cleared Chrome and Safari cookies. Checked extensions, there are none to remove. I need to find an answer on how to get rid of these ads. Help please!

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Application Support/VSearch
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchAgents/com.vsearch.agent.plist
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Urgent HELP! how to resize a layout and change the color from black to white

    Hey!!!
    im in urgent help of someone to answer my questions. I have a huge Indesign exam monday and two of the questions are   
    -resizing a layout
    -changing a color layout to black and white
    I have done many porjects in Indesign but to be honest i don't know what they are refering but resizing a layout or changing the layout color to black and white. If any body can explain me this a little be I be so thankful!
    Thanks,
    Fiama Piccardo

    I've decided to relent a little and give you a hint, so you can do some looking and figure this out for yourself. Everything you need for either of those tasks is accessed from the File menu...
    And a further hint. Indesign does not have a black and white or grayscale working colorspace, so you never truly have a black and white layout, though all of the objects in the file may use only black ink. You can, however, output a PDF, in a couple of ways, that will convert your color file to one that uses only black.

  • Need urgent help in listing out checklist from DBA prespective for BI Implementation Project

    Hello Guys,
    We are in Designing phase Data Modeling of PDW/APS Implementation Project.
    I need urgent help in making a checklist from a DBA perspective.
    Like what are things ill be needing at a time of implementation/Deployment.
    Your expert comments and help will be highly appreciated.
    Thank you,
    Anish.S
    Asandeen

    You can get good summary of checklist from this article about
    DBA checklist for data warehousing.
    Which highlights on below pointers:
    New system or old. (I.e. Up-gradation vs starting from scratch)
    Complexity of SQL Server architecture 
    SQL Server storage
    Determining SQL Server processing power
    SQL Server installation consideration 
    SQL Server configuration parameter
    SQL Server security
    SQL Server Database property
    SQL Server jobs and automation
    Protecting SQL Server data
    SQL Server health monitoring and check ups
    SQL Server ownership and control 
    based on my real time experience, I will suggest you to keep an eye on 
    Load performance (It will be useful when your database(Warehouse) will have huge amount of data)
    System availability (Check for Windows update and up time configuration) 
    Deployment methodology should be planned in advance. Development of packages and respective objects should be done systematically.
    Source control mechanism 
    Disk space and memory usage
    You might or might not have full rights on production environment, so be prepared to analyze production environment via Select statements [I guess you got my point]
    Proper implementation of Landing , Staging and Mart tables.
    Column size (this can drastically decrease your database size)
    Usage of indexes (Index are good, but at what cost?)
    I hope this will assist you in building your check list.

  • I am new to mac air. Today i installed (unsuccessfully!) MAPLE16 on my mac book air. Now since it does not work properly (it also does not appear in  applications) i decide to delete it. I could not remove it from launchpad . i need urgent help

    i am new to mac air. Today i installed (unsuccessfully!) MAPLE16 on my mac book air. Now since it does not work properly (it also does not appear in  applications) i decide to delete it. I could not remove it from launchpad . i need urgent help from your side.

    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    I never install system modifications myself, and I don't know how to uninstall them. You'll have to do your own research to find that information.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmyrmac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button.
    You generally have to reboot in order to complete an uninstallation.
    If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    You may be advised by others to try to remove complex system modifications by hunting for files by name, or by running "utilities" that purport to remove software. I don't give such advice. Those tactics often will not work and maymake the problem worse.

  • I need URGENT help, My company just changed all our iphones to Samsung Notes and i am now unable to get ANY messages from current iphone friends and colleagues colleagues.... This is certainly unfair and inconvenient.... Once loved apple not so much now

    I need URGENT help, My company just changed all our iphones to Samsung Notes and i am now unable to get ANY messages from current iphone friends and colleagues colleagues.... This is certainly unfair and inconvenient.... Once loved apple not so much now

    Go to: https://supportprofile.apple.com/MySupportProfile.do
    Log in if not already logged in.
    Click on "Edit Products"
    Click on the "X" to the right of the product.
    Click "Unregister".
    If that doesn't work, you're going to need to call AppleCare and have them remove your phone from the system.
    Best of luck.

  • Incorporating transaction types from F-43 to FB60...urgent help !!

    Hey guys...i need urgent help...my client is upgrading from ECC.5 to ECC.6 and in process they will no longer be using F-43 . Now they want me to incorporate all the transaction types from F-43 to FB60. Can someone explain the process. Thanks in advance.

    Dear Stiffler,
    The Payment Method field (ZLSCH) is not controlled via field status.
    This field cannot be set to required in the standard functionality in
    FB60.
    It means that for Vendor document entry for "payment method",
    you can only achieve it by creating a validation rule at call-up
    point 2.
    Or You can insert it into a Payment Term by OBB8 and insert the Payment Term into Your vendor/customer master data.
    I hope this helps.
    Mauri

  • I want to restore my iPhone.if I create a back up before restoring so will restoring from back up bring back my contacts after restoring.urgent help please

    I want to restore my iPhone.if I create a back up before restoring so will restoring from back up bring back my contacts after restoring.urgent help please

    Happy for you!

  • Urgent Help In ABAP

    Hi Gurus,
    Please i need an urgent help from you guys. There is a demand file which consits of (Siteno(plant), Item No ,Item Description, Delivery due date) will be placed in a unix system or windows system. I need to write an interface which shows a radiobutton for unix & windows and fileupload button & download button.When user clicks should be able to select only one radiobutton (unix or windows) to upload or download.When the user clicks the fileupload / download button,it should pick up the file or drop the file at particular unix or windows system.
    Please help me or give me sample code where in i can select the radiobutton and i can upload / download from unix or windows path. and during upload process (for both unix/windows) ,i should be able to persist into a custom table (ztable,if iam not wrong) and while downloading read the records from custome table and create an excel file to be placedon unix/windows based on the radio button.
    Thanks in advance, i need ur help please.
    Regards
    Bruno

    Hi Bruno,
    Please checkout this code sample
    ABAP code for uploading a TAB delimited file into an internal table.
    The code is base on uploading a simple txt file.
    <b>
    http://www.sapdevelopment.co.uk/file/file_uptabpc.htm</b>
    Thanks,
    Aby

  • Read file latest entry with time stamp from unix

    Hi
    I have a log file which is being generated with an entry  like this
    Product20080228185707,TRANSPORTED,862067_G,MPITT,20080415,ADEAMICIS,
    Product 20080229151029,TRANSPORTED,862067_G,MPITT,20080415,ADEAMICIS,
    Product 20080320163241,TRANSPORTED,862067_G,MPITT,20080415,ADEAMICIS,
    Product 20080229151111,TRANSPORTED,862067_G,MPITT,20080415,ADEAMICIS,
    I know how to read the file from Unix but How do I pick the entry with latest time stamp ?
    Please help urgent
    thanks

    Hi,
    Do like this.
    1. Declare table with two fields as name(255) type c, timestamp(14) type n.
    2. Loop at your entries and push entry name in name field and time stamp in timestamp field. You can move time stamp as: move file+7(13) to timestamp.
    3. So your new internal table will have entry names and timestamp.
    4. Now sort itab by timestamp descending.
    5. Read itab index 1.
    this will give you latest entry from unix.
    i hope this helps,
    Ags,

Maybe you are looking for

  • Individual, Creative cloud, single app, Adobe Acrobat Pro X1, Forms and Responses allowed

    Dear forum, Firstly many apologies if this is a stupid question or if it has been answered before, but I'm very new to using FormsCentral only in the past few days. I purchased an Individual Creative cloud, single app plan at £17.58 per month for onl

  • Document merge problem due to embedded fonts

    I am trying to merge 6 single page pdf documents into one pdf file. I am receiving this error on two of the six docs: "These documents contain subset fonts that have the same name and cannot be merged" Can anyone help me work through this issue? I am

  • How can I get customer service?

    How can I get costumer service

  • Help with wireless rounter model: WRT54G gaming problem

    hi guys, i always have problem using this rounter as people can not connect to my games because the rounter is blocking. so, what can i do to stop this problem? thanks

  • Illegal start of exp

    Someone please tell me why I get this error when compiing: public class Info { public static void main(String[] args){ public String getInfo(String in){ BufferedReader in = new BufferedReader (new FileReader("textfile.txt"));           String s;