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

Similar Messages

  • 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

  • Urgent help from ABAP guys working in FI/CO module

    dear all
    i am badly struck in a situation while creating VENDOR AGEING report.
    plz if any one have source code regarding this VENDOR AGEING report then plz send me.bcoz today is deadline boss.
    my mail id -
    [email protected]

    hi,
    1) search here in forum (all categories) for ageing
    2) look to report RFKOPR00
    and compare ageing for customers RFDOPR00
    hope that helps
    Andreas

  • Urgent Help need for ABAP Custom Process Types

    Hi Gurus,
    I have created a Custom Process Type for ABAP program which returns status (Success or Failure).
    I followed the below procedure to create a custom ABAP process type.
    In RSPC, I went to Settings -> Maintain process types
    I selected the ABAP process type and then selected the EDIT -> COPY AS and then in the process chain configuration screen, I gave a new name to the process type, changed the POSSIBLE EVENTS settings to "2 process ends "successful" or "failure" and saved the settings to confirm changes.
    Now I can see the new process type for ABAP program which returns the success or failure for the successors.
    Now, my question is, where do i write the logic for ABAP program ? how does the ABAP program returns the success or failure. Do I have to change the code in the method IF_RSPC_EXECUTE~EXECUTE to return success or failure.  Please make me clear where I can write the code? For example in my ABAP program, I am searching a table to find a specific value. If the value is not found, then the ABAP process type should return failure, if found should return success. How can I do this?
    Thanks in advance,
    Regards,
    aarthi
    [email protected]

    Hi,
       We have a similar problem. We have an ABAP program in a process chain that
    uses a custom process type with on success and on failure.
        If  the program is successful there is no problem. it will run the next process step.
        The problem is when the ABAP Program fails and even though the message class is E in our ABAP program it has a confirm popup message with a status change and asks "Save Status and Trigger Events if Appropriate".
         Once you enter Yes to continue it then continues to the next step in the program and is fine.I traced in debug where this status message is appearing. It is in CL_RSPC_LOG. There is a popup_to_confirm_step where it checks the e_status that is value J ( Framework Error upon completion). Then it submits the rspc_process_finish program to complete and call the on error process step.
         Has anyone else experienced this and is there any other documents out there to help me?
    Apologies if this is not very clear.
    Any assistance would be appreciated.
    Thanks
    Monica Mandia

  • 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)

  • Urgent help needed with un-removable junk mail that froze Mail!!

    Urgent help needed with un-removable junk mail that froze Mail?
    I had 7 junk mails come in this morning, 5 went straight to junk and 2 more I junked.
    When I clicked on the Junk folder to empty it, it froze Mail and I can't click on anything, I had to force quit Mail and re-open it. When it re-opens the Junk folder is selected and it is froze, I can't do anything.
    I repaired permissions, it did nothing.
    I re-booted my computer, on opening Mail the In folder was selected, when I selected Junk, again, it locks up Mail and I can't select them to delete them?
    Anyone know how I can delete these Junk mails from my Junk folder without having to open Mail to do it as it would appear this will be the only solution to the problem.

    Hi Nigel
    If you hold the Shift key when opening the mail app, it will start up without any folders selected & no emails showing. Hopefully this will enable you to start Mail ok.
    Then from the Mail menus - choose Mailbox-Erase Junk Mail . The problem mail should now be in the trash. If there's nothing you want to retain from the Trash, you should now choose Mailbox- Erase Deleted Messages....
    If you need to double-check the Trash for anything you might want to retain, then view the Trash folder first, before using Erase Junk Mail & move anything you wish to keep to another folder.
    The shift key starts Mail in a sort of Safe mode.

  • URGENT HELP NEEDED ... Tomcat Realm and JRE1.4 plug-in problem

    I have tried the Security Realm of Tomcat. Since I do not have
    an LDAP server, I decided to use the Tomcat-users.xml file in
    Tomcat\conf directory.
    I added the following lines of code in the web.xml file.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Entire Application</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <!-- NOTE: This role is not present in the default users file -->
    <role-name>webviewer</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Tomcat Manager Application</realm-name>
    </login-config>
    The <role-name> "webviewer" is added into "Tomcat-Users.xml" as the following:
    <tomcat-users>
    <user name="test" password="password" roles="webviewer" />
    </tomcat-users>
    So, now when we type the url: http://localhost:8080/adbpdbre/default.htm, TOMCAT shows a dialog box asking for UserName: and Password:Now, only when we give the username and password, it shows the page. This is exactly what we want.
    But the problem now is, this default.htm page, has 5 links to 5 applets. The first time that I click on one of these links, the JRE plug of 1.4 shows a dialog again asking for the username and password. Till I dont provide the username and password the system doesnt go ahead and applet doesnt load. I do not want the JRE to ask me for the username/passwords again..How to avoid this ?
    Can you give me some more information on this. Ultimately in the production usage, we will be using LDAP and not Tomcat's memory realm.
    URGENT HELP NEEDED ... I need to get back to my client on this.
    Help would be v. much appreciated.

    In the config file, you 're essentially saying that you want Tomcat to prompt for usr/passw on every request (url-pattern = /*) made by a 'webviewer', and that's exactly what Tomcat is doing.
    Consider using specific url-patterns & roles for resources to be protected. If for now, all you need is to protect the first page, use a more specific url-pattern.
    Just an advice : if you'll be using LDAP in production, do not waste time with Tomcat's Security Realm and the BASIC authentication type, since the two have not much in common. Start reading doc on LDAP, and code a prototype, or even better, a vertical slice of the app (i.e a proof of concept).

  • URGENT HELP NEEDED - iPhone 3Gs no longer detected or charged by MacBook

    My iPhone 3Gs (3.1) has been running fine, until several hours ago today, when I plugged it to my MacBook, the iPhone is no longer detected - it doesn't show up in iTunes, nor it is charged. I tried opening iPhoto, and it wasn't there too. Not with Image Capture too. I tried charging it using the out-of-box wall charger using the same out-of-box USB cable I use for MacBook, and it can be charged without any problem. Then I put it into Recovery mode, and there iTunes can see it. I don't want to restore it before I figure out exactly what went wrong, as I don't want the restore process somehow gets stuck in the middle that the connection is lost again.
    I've tried reinstalled iTunes, including completely removal of Apple Mobile Device Support, as instructed by Apple. But still no luck.
    I've tried switching to another USB port of my MacBook. No luck.
    My iTunes is the latest 9.0.1, and my Mac OSX is 10.6.1. My iPhone is on 3.1, upgraded from 3.0.
    I've read from web that it seems I'm not the only one out there having this problem. But none of them seem having any real working solution.
    Urgent help needed & appreciated. Millions of thanks in advance.
    Gary

    1. I used both cables - theirs & mine ... and on several macs
    2. yes, same cable for wall & mac
    3. as said, i did completely remove & install itunes (incl. apple mobile device support), as instructed on the apple webpage
    anyway, did a restore just now. it seems okay now. but the problem is i have no idea what cause this, and i can't replicate the problem. so i don't know when it will happen again ... maybe a bug with os 3.1 ... others on web said os 3.1 is quite buggy ...

  • Urgent help needed, can I restore N900 Backup file...

    i owned a N900 (now sold out)
    before selling i took backup of contacts from backup restore option in application section
    now i bought a N8 but i m not able to restore my contacts
    1. is there any way to restore them in N8?
    2. if not, can i convert them in TEXT or any readable format
    urgent help needed
    thanks in advance

    The backup procedures built into the phone are only designed for restoring to the same phone (ie: in case or data corruption, software update or repair etc.), they can't usually be used to restore to a phone with a different operating system.
    You should have backed up with Ovi Suite before selling the N900, that would have been able to restore to the N8.

  • Urgent help needed; Database shutdown issues.

    Urgent help needed; Database shutdown issues.
    Hi all,
    I am trying to shutdown my SAP database and am facing the issues below, can someone please suggest how I can go about resolving this issue and restart the database?
    SQL> shutdown immediate
    ORA-24324: service handle not initialized
    ORA-24323: value not allowed
    ORA-01089: immediate shutdown in progress - no operations are permitted
    SQL> shutdown abort
    ORA-01031: insufficient privileges
    Thanks and regards,
    Iqbal

    Hi,
    check SAP Note 700548 - FAQ: Oracle authorizations
    also check Note 834917 - Oracle Database 10g: New database role SAPCONN
    regards,
    kaushal

  • IPhone 4 reset itself, photos lost -URGENT HELP NEEDED

    Hi there,
    Urgent help needed!!
    Tonight I was taking extremely important photos throughout an event on my iPhone 4, however, my iPhone 4 ran out of battery once I was near a charger I plugged it in and for some reason my iPhone had reset itself. Back up icloud options were from yesterday, but the photos that I was taking at the event are needed urgently. Is there any way possible I can recover the photos that were taken?
    Thanks in advance!!!!

    Slymm71 wrote:
    just had similar problem got email from find my phone saying initiating full phone wipe this cannot be stopped ***? i own the phone from new and registerred in m name but wiped whilst i was using it !!!
    See your other post... 
    https://discussions.apple.com/message/18876037#18876037

  • Data uload to ODS ending up with an error. URGENT HELP NEEDED!!!!!!

    Hi
    My Sceniro is Full load from ODS1 to 5 other ODS. Iam uploading the data to other 5 ODS by selecting 1 ODS at a time.
    Problem i am facing is upload is ending up with error mesg. Error Mesg are
    <b>Error 8 when starting the extraction program - R3019
    Error in Source System - RSM340
    Req xxx in ODS2 must have QM ststus green before it is activated - RSM1110</b>
    I have seen the the OSS notes for given error no, but they are not applicable to me. what could be the other possible solution.
    In detail tab of the monitor i see red light at Extraction step and Subseq. processing.
    Its quite urgent bcoz this error is occuring in Production system.
    Plzzzz urgent help needed.
    Thanks
    Rohini
    Message was edited by: Rohini Garg

    rohini,
    go to RSA1->Modeling->Source Systems and right-click on your BW system, and click on 'Replicate Datasources'.
    also, go to the ODS that's causing the problem (via RSA1->InfoProvider and go to your ODS), right click and click on 'Generate Export Datasource'.
    one more thing, make sure that all your record/s in the source ODS is active. if you're not sure manage its contents and click on 'Activate'. if there are any entries in the the next screen that comes up, you need to activate it first, then try everything again.
    let me know what happens. also try to look for error messages in ST22 and SM21 that may be related to this and post whatever possible error you see there here.
    ryan.

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • IPhone 3G 8GB Crashes when syncing with iTunes. URGENT HELP NEEDED.

    I have latest iTunes and OS on my iPhone 3G...
    Every time i plug my iPhone in it begins to sync and then iTunes will freeze and not respond..
    I have tried re installing iTunes.. I can't reset my iPhone as i can't create a backup..
    URGENT HELP NEEDED PLEASE!

    I don't have an iphone, but if it's anything like my click-wheel ipod, a reset doesn't delete anything.
    It just resets the ipod's operating system, kind of like a PC restart. Did you try this Sleep/Wake button thing mentioned here?
    http://support.apple.com/kb/HT1737
    Maybe it's a podcast of voice memo causing the problem like it did for this person
    http://discussions.apple.com/message.jspa?messageID=10907809#10907809
    That's all I got. You might have better luck on an iPhone forum. Everyone there would probably have one. Like I said, I don't.

  • File missing (file\BCD error code 0Xc0000034 help need for work!

    file missing (file\BCD  error code 0Xc0000034 help need for work!    what can i do?
    have an p 2000 notebook pc

     Hi bobkunkle, welcome to the HP Forums. I understand you cannot boot passed the error you are receiving.
    What is the model or product number of your notebook? What version of Windows is installed?
    Guide to finding your product number
    Which Windows operating system am I running?
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for

  • Lotus Notes - email no longer converting

    I am no longer able to successfully create pdfs (from either individual emails or folders) using the Acrobat toolbar button or the Acrobat choices added to the dropdown menu. All I receive now is "failed to convert" messages with no real information.

  • Outgoing payment methods in CRM 7 webUI is not inline with CRMC_BUAG_PAYM

    Hi, We have requirement to set up outgoing payment at FICA document level for refund purpose. Currently this is feasible using FPE2 transaction in ISU. However, we have the requirement to have this option in CRM 7. In CRM 7, the navigation of setting

  • Permits issue in plant maintenance order

    How to give the authorization <b>to two different persons</b> for <b>permits issue</b> in plant maintenance order?

  • Exploding Pics

    First post to this forum and I haven't looked for a way to search it, so if I'm asking a common question . . .. When I now double click a photo to enlarge it, it explodes. There is a pause and then a black screen with a gray-white circle in the middl

  • Convert to DNG

    I am importing Canon Raw files from card and while converting to DNG LR4 corrupts the file. Has anyone experienced the same problem?