Perfomance - Experts Help req...

Hello Experts,
I need to tune the below code for performance.
Below is the script which i am running to get records from Store table and cross-checking with Store_History tables and processing records.
Query is taking more time to process.
How can i tune to increase performance.
DECLARE
   CURSOR c_get_dtl_cr8
   IS
      SELECT si.location_rep, si.location_no , si.product_id
        FROM store si
       WHERE si.location_no = 178 AND si.location_rep = 'S' AND si.product_id > 0;
   lv_cnt         NUMBER          := 0;
   lv_error_msg   VARCHAR2 (3267);
   l_err_msg   VARCHAR2 (3267);
BEGIN
   FOR r_get_dtl_cr8 IN c_get_dtl_cr8
   LOOP
      pkg_call.move_history (p_location_rep      => r_get_dtl_cr8.location_rep,
                                         p_location_no         => r_get_dtl_cr8.location_no,
                                         p_product_id      => r_get_dtl_cr8.product_id,
                                         p_ts_start        => (  SYSTIMESTAMP
                                                               - 200
                                         p_ts_end          => SYSTIMESTAMP,
                                         p_mode            => 0,
                                         p_result          => lv_cnt,
                                         p_error_msg       => lv_error_msg
   END LOOP;
EXCEPTION
   WHEN OTHERS
   THEN
      DBMS_OUTPUT.put_line
                        (   'Exception been raised in crawler --> SQLCODE-->'
                         || SQLCODE
                         || 'SQLERRM-->'
                         || SQLERRM
   RAISE;
END;pkg_call.move_history
PROCEDURE move_history
      p_location_rep            store.location_rep%TYPE,
      p_location_no         store.location_no%TYPE,
      p_product_id         store.product_id%TYPE,
      p_ts_start           TIMESTAMP,
      p_ts_end             TIMESTAMP,
      p_mode               NUMBER,
      p_result       OUT   NUMBER,
      p_error_msg    OUT   VARCHAR2
  ) IS
CURSOR c_hist IS
       SELECT *
        FROM store_history  sih
       WHERE sih.product_id = p_product_id
              AND sih.location_no = p_location_no
              AND sih.location_rep = p_location_rep
              AND sih.eff_ts BETWEEN p_ts_start AND p_ts_end
         ORDER BY sih.eff_ts ASC, sih.seq_nbr ASC;
   --TYPE g_hist_table IS TABLE OF history%ROWTYPE;
   -- Global Collection of PL/SQL Table for Holding History Records
    l_hist_table g_hist_table ;
  Begin
  dbms_output.put_line('opening cursor');
  p_result := 0 ;
  OPEN c_hist;
  LOOP
      dbms_output.put_line('fetching ..');
      -- Fetch 2000 history records for processing
       FETCH c_hist BULK COLLECT
         INTO  l_hist_table limit 10000;
       FOR i IN 1..l_hist_table.COUNT
       Loop
               Does Collections...     
       End Loop;
       -- Flush out the data from memory and to Databasse
       l_hist_table.delete;
  Exception When Others then
  End move_process_history;

Hello Experts,
Thanks all for your prompt reply.
As per the blog i have modified as below:
1) -- Start of template body --
The following logic has been implemented to check main(TST_STORE) table with the history table(TST_STORE_HIST) and it took 2.5 hrs to execute 38000 records.
This is the SELECT clause statement:
Select 1:
SELECT si.loc_typ_cd, si.loc_nbr, si.prod_id
FROM TST_STORE si
WHERE si.loc_nbr = 178 AND si.loc_typ_cd = 'S' AND si.prod_id > 0;Select 2:
SELECT   *
FROM tst_store_hist sih
WHERE sih.prod_id = p_product_id
AND sih.loc_nbr = p_loc_nbr
AND sih.loc_typ_cd = p_loc_typ_cd
AND sih.eff_ts BETWEEN p_ts_start AND p_ts_end
ORDER BY sih.eff_ts ASC, sih.seq_nbr ASC;The version of the database is 11.1.0.6.0
2) These are the parameters relevant to the optimizer:
SQL> show parameter optimizer
NAME                                 TYPE        VALUE
optimizer_dynamic_sampling           integer     2
optimizer_features_enable            string      10.2.0.4
optimizer_index_caching              integer     0
optimizer_index_cost_adj             integer     100
optimizer_mode                       string      ALL_ROWS
optimizer_secure_view_merging        boolean     TRUE3) SQL> show parameter db_file_multi
NAME                                 TYPE        VALUE
db_file_multiblock_read_count        integer     164)
SQL> show parameter db_block_size
NAME                                 TYPE        VALUE
db_block_size                        integer     81925) SQL> show parameter cursor_sharing
NAME                                 TYPE        VALUE
cursor_sharing                       string      EXACT6)
explain plan for
SELECT si.loc_typ_cd, si.loc_nbr, si.prod_id
FROM tst_store si
WHERE si.loc_nbr = 178 AND si.loc_typ_cd = 'S' AND si.prod_id > 0;
select * from table(dbms_xplan.display);
Plan hash value: 2767608563
| Id  | Operation        | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT |                | 49031 |   574K|   154   (1)| 00:00:01 |
|*  1 |  INDEX RANGE SCAN| TST_STORE_IDX1 | 49031 |   574K|   154   (1)| 00:00:01 |
Predicate Information (identified by operation id):
   1 - access("SI"."LOC_TYP_CD"='S' AND "SI"."LOC_NBR"=178 AND
                 "SI"."PROD_ID">0)
EXPLAIN PLAN FOR
SELECT   *
FROM TST_STORE_hist sih
WHERE sih.prod_id = p_product_id
AND sih.loc_nbr = p_loc_nbr
AND sih.loc_typ_cd = p_loc_typ_cd
ORDER BY sih.eff_ts ASC, sih.seq_nbr ASC;
select * from table(dbms_xplan.display);
Plan hash value: 4212055264
| Id  | Operation                            | Name              | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
|   0 | SELECT STATEMENT                     |                   |     1 |   136 |  1432   (1)| 00:00:09 |       |       |
|   1 |  PARTITION RANGE ALL                 |                   |     1 |   136 |  1432   (1)| 00:00:09 |     1 |1048575|
|   2 |   SORT ORDER BY                      |                   |     1 |   136 |  1432   (1)| 00:00:09 |       |       |
|   3 |    PARTITION HASH SINGLE             |                   |     1 |   136 |  1431   (1)| 00:00:09 |   KEY |   KEY |
|   4 |     TABLE ACCESS BY LOCAL INDEX ROWID| TST_STORE_HIST    |     1 |   136 |  1431   (1)| 00:00:09 |       |       |
|*  5 |      INDEX RANGE SCAN                | TST_STORE_HIST_PK |     1 |       |  1430   (1)| 00:00:09 |       |       |
Predicate Information (identified by operation id):
   5 - access("SIH"."LOC_NBR"=TO_NUMBER(:P_LOC_NBR) AND "SIH"."LOC_TYP_CD"=:P_LOC_TYP_CD AND
                 "SIH"."PROD_ID"=TO_NUMBER(:P_PRODUCT_ID))
                            filter("SIH"."PROD_ID"=TO_NUMBER(:P_PRODUCT_ID))                                                            Now I am running the following code logic:-
===========================================
DECLARE
   CURSOR c_get_info
   IS
      SQL STMT-1(As mentioned above)
BEGIN
   FOR r_get_info IN c_get_info
   LOOP
      pkg_call.history_proc                (p_loc_typ_cd      => r_get_dtl_cr8.loc_typ_cd,
                                         p_loc_nbr         => r_get_dtl_cr8.loc_nbr,
                                         p_product_id      => r_get_dtl_cr8.prod_id,
                                         p_ts_start        => (  SYSTIMESTAMP
                                                               - 200
                                         p_ts_end          => SYSTIMESTAMP,
                                         p_mode            => 0,
                                         p_result          => lv_cnt,
                                         p_error_msg       => lv_error_msg
      IF lv_error_msg IS NOT NULL
      THEN
                    Insert into temporary table
      END IF;
   END LOOP;
END;     
--This procedure is used to crawl through History and Detecting Issues with Data and also Correcting itPROCEDURE     pkg_call.history_proc
PROCEDURE     history_proc(
      p_loc_nbr           -,
      p_loc_typ_cd        -,
      p_product_id        -,
      p_ts_start           TIMESTAMP,
      p_ts_end             TIMESTAMP,
      p_mode               NUMBER,
      p_result       OUT   NUMBER,
      p_error_msg    OUT   VARCHAR2
   IS
      CURSOR c_sih
      IS
        SQL STMT-2(As mentioned above)
   BEGIN
      p_result := 0; 
     OPEN c_sih;
     LOOP
         FETCH c_sih
         BULK COLLECT INTO collection variable(l_sih_table) LIMIT 10000;
                     FOR i IN 1 .. l_sih_table.COUNT
                     LOOP
                         Checking collection values...
                     END LOOP;
         -- Flush out the data from memory and to Databasse
         l_sih_table.DELETE;
      --IF(MOD(P_REC_ENT,1000)=0 THEN
      IF P_MODE ...
      THEN
          -- Separate procedure which Update History table
          update_hs ;
          -- Separate procedure which Merge another new table...
          update_vs;
          -- Separate procedure which Update another table
          update_isr;
      END IF;
     END LOOP;
  END history_proc;               Plz suggest your comments...
Thanks...
Edited by: Linus on Oct 26, 2010 12:58 AM
Edited by: Linus on Oct 26, 2010 5:17 AM

Similar Messages

  • Expert help needed to connect iPhone / iPad using BlueTooth and Wi-Fi

    We need expert help to connect iPhone / iPad using BlueTooth and Wi-Fi. If you have worked with Apple MFi Program [http://developer.apple.com/programs/mfi], or have expertise/experience in this, please contact me. Thanks! Kevin.

    Hi there.
    I connected to my livebox after about three attempts. You have to pair the livebox by pressing either the number one or two that is on the box. When it is in pair mode it stays that way for ten minutes so it gives you chance to try your wep code that is on the bottom of the box a few times. I can't remember which one was successful but i did try the letters in uppercase and lower and one of them seemed to connect.
    Welcome to discussions by the way.
    Hope this helps JB

  • Need some expert help on this one

    My PPC 10.4.11 mac is running very very slow with plenty of disk space and when I try to verify permission, repair permissions etc. disk utility freezes up to the point where I have to cold shut off the computer. Issues started yesterday when a page in iweb became corrupt causing me to have to completely redesign my index page and then it started freezing up. Do I just need it do an achieve and install or is there something else I can do?

    As your very expert help already mentioned, You must repair the HD.
    If Disk Utility cannot do it then your best bets are DiskWarrior from Alsoft...
    http://www.alsoft.com/DiskWarrior/
    But you need the CD, the download won't work unless you have another Bootable HD.

  • Struts Experts --Help out

    Hi
    Struts experts--Help out!
    I have some dynamically added text boxes in my form..
    Each time I add a row..text boxes name1,Email1...nameN,EmailN are formed.
    How do i map the data entered here into the form bean.
    Also I might need to display these data on the forms again.
    Any suggestions!
    thanx

    Take a look at indexed properties.
    You might have to rename your boxes to name[1], name[2], ... name[n] so that it works with the beanutils population package, but it should then automagically gather all the data into an array on your ActionForm.
    http://struts.apache.org//struts-doc-1.2.8/faqs/indexedprops.html

  • BANK-TRBK install error, please click thank you expert help to answer!

    BANK-TRBK install error, please click thank you expert help to answer!
    My SAP system is ECC6 SR3. Databases are the MAXDB 7.6
    Level for the patch: SAP_BASIS 700 has been to 15 of the
    SAP_ABA 700 has reached the 15 level PI_BASIS are 2006_1_700 BI_CONT are 703 level hit a patch
    000 CLIENT then entered my non-super-manage user DDIC landing, running SAINT upload patch, upload to start the installation after the change, but the installation process is as follows Fig error. Say happen are the ADD-ON the conflict between
    thank you
    [http://www.sapsh.com/bbsxp/UpFile/UpAttachment/2009-2/20092261730.jpg]
    [http://www.sapsh.com/bbsxp/UpFile/UpAttachment/2009-2/200922617312.jpg]
    [http://www.sapsh.com/bbsxp/UpFile/UpAttachment/2009-2/200922617323.jpg]

    > My SAP system is ECC6 SR3. Databases are the MAXDB 7.6
    You can't install BANK-TRBK on an ERP system, see
    Note 865669 - More info about installing BANK-TRBK 40 on Netweaver 2004s
    <...>
    Required release
          The following releases are required:
              - SAP Netweaver 04s
              - PI_BASIS 2005_1 or higher
              - You cannot install this on an ERP system.
    <...>
    You need to install a new "naked" Netweaver 7.0 and add it on that one.
    Markus

  • DM-VPN with Static NAT for Spoke Router. Require Expert Help

    Dear All,
                This is my first time to write something .
                             i have configure DM-VPN, and it's working fine, now i want to configure static nat.
    some people will think why need static nat if it's working fine.
    let me tell you why i need. what is my plan.
    i have HUB with 3 spoke. some time i go out side of my office and not able to access my spoke computer by Terminal Services. because its by dynamic ip address.  so what i think i'll give one Static NAT on my HUB Router that if any one or Me Hit the Real/Public IP address of my HUB WAN Interface from any other Remote location so redirect this quiry to my Terminal Service computer which located in spoke network.
    will for that i try but fail. 
    will again the suggestion will come. why not to use .. Easy VPN. well sound great. but then i have to keep my notebook with me.
    i'll also do it but now i need that how to do Static NAT. like for normal Router i am doing which is not part of VPN.
    ip nat inside source static tcp 192.168.1.10 3389 interface Dialer1 3389
    but this time  this command is not working, because the ip address which i mention it's related HUB Network not Spoke
    spose spoke Network: 192.168.2.0/24
    and i want on HUB Router:
    ip nat inside source static tcp 192.168.2.10 3389 interface Dialer1 3389
    i am using Cisco -- 887 and 877 ADSL Router.
    but it's not working,   Need experts help. please write your comment's which are very important for me. waiting for your commant's
    fore more details please see the diagram.
    for Contact Me: [email protected]

    hi rvarelac  thank you for reply :
    i allready done that ,  i put a deny statements in nat access-list excluding the vpn traffic , but the problem still there !
    crypto isakmp policy 10
     encr aes
     authentication pre-share
    crypto isakmp key 12344321 address 1.1.1.1
    crypto ipsec transform-set Remote-Site esp-aes esp-sha-hmac
     mode tunnel
    crypto map s2s 100 ipsec-isakmp
     set peer 1.1.1.1
     set transform-set Remote-Site
     match address vpnacl
    interface GigabitEthernet0/0
     crypto map s2s
    Extended IP access list lantointernet
    30 deny icmp 172.17.0.0 0.0.1.255 192.168.1.0 0.0.0.255
    40 deny igmp 172.17.0.0 0.0.1.255 192.168.1.0 0.0.0.255
    50 deny ip 172.17.0.0 0.0.1.255 192.168.1.0 0.0.0.255
    80 permit ip any any

  • How to use paradown (MSWord) in client_ole2 (Oracle Ace Experts, help plz)

    Hi all
    (Well...Oracle ACE Experts, please rescue us)
    We are trying to convert ole2 to client_ole2 and we are facing problems in finding exact replacements for many word functionalities. Please help us in this. Wat is the replacement for paradown in client_ole2, i read as MoveDown but it is not working, please thow some light on this.
    procedure paradown (n in number) is
    arglist ole2.list_type;
    begin
    arglist := ole2.create_arglist;
    ole2.add_arg (arglist, n);
    ole2.invoke (obj_hnd, 'paradown', arglist);
    ole2.destroy_arglist (arglist);
    end;
    Thnx again
    Sriram

    Hi...thnx for the reply. We use Word 2000 only.
    Rightly as u said we have changed lot of OLE2 calls like word.basic to word.application.....
    I also tried to record macro for this ParaDown (CTRL + Down Arrow Key) and this is what the macro gives:
    Selection.MoveDown Unit:=wdParagraph, Count:=1
    In forms, we tried giving Unit and Count as parameters but gettting bad parameter errors. A simple call client_ole2.invoke (selection, 'MoveDown'); without any argument makes the cursor to move 1 line down. I hope i have explained clearly.
    Please help me in this, i got stuck very badly ;(
    Code:
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(obj_hnd, 'Selection');
    arglist := client_ole2.create_arglist;
    client_ole2.add_arg (arglist, n);
    client_ole2.invoke (selection, 'MoveDown',arglist);
    client_ole2.destroy_arglist (arglist);
    Thnx again
    Sriram

  • BDC help req??

    Hi
    Can any one tell me to use 2 BDC simultaneously at a time in 1 single report.
    I had an req like to make a BDC for  MIGO & same time after its done the BDC for Tcode J1IEX has to be called,so can any one tell me some info for it.
    As its a reprot programing,I need to disply the  final data like GRN No. after MIGO had been done & Exc Invoice No after J1IEX had been done on a single page in an ALV form .
    Please help me in this,I had made a reprot for it,but I am  not able to make 2 BDC working at the same time.
    So plz tell me how to do ??
    Regds

    Hi,
      I had done in my previous project, that was production order creation, conformation and one more. You can check is there any BAPI's exist for you to update the data.
    Rgds,
    Bujji

  • Can a kernel panic expert help me out?

    hi all
    random frequent kernel panics.
    Model Name:          iMac
      Model Identifier:          iMac11,2
      Processor Name:          Intel Core i3
      Processor Speed:          3.06 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache (per core):          256 KB
      L3 Cache:          4 MB
      Memory:          4 GB
      Processor Interconnect Speed:          5.86 GT/s
      Boot ROM Version:          IM112.0057.B00
      SMC Version (system):          1.64f5
    i have  had a look at the reports but i'm no expert on them. some of the lines for "bsd process name corresponding to thread" have been for itunes, mac app store, chrome -
    so i don't think its a single app causing the problem. heres the latest one - if anyone can help me, much appreciated as this is getting really annoying. ive just run rember and it says RAM is ok, and have tried repair permissions etc
    cheers guys
    Interval Since Last Panic Report:  202941 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    92EF6BFA-112A-49DA-B089-26F5AA5062B2
    Tue Aug  2 09:43:34 2011
    panic(cpu 1 caller 0x2aaeab): Kernel trap with 64-bit state thread:0x96c27a8, trapno:0xe, err:0x0, registers:
    CR0: 0x8001003b, CR2: 0xa07e55b0, CR3: 0x00100000, CR4: 0x00000660
    RAX: 0x0000000000100000, RBX: 0x000000000000000d, RCX: 0x0000000000100000, RDX: 0x00000000002a17b0
    RSP: 0xffffff800a8b2b44, RBP: 0x0000000000000000, RSI: 0x000000000430dc10, RDI: 0x00000000bfffdc6c
    R8:  0x0000000000000e03, R9:  0x0000000000000000, R10: 0x000000000000005c, R11: 0x0000000000000202
    R12: 0x0000000000000e03, R13: 0x000000000000005c, R14: 0x00007fff5fbfd810, R15: 0x0000000000000002
    RFL: 0x0000000000210046, RIP: 0xffffff80002c0e66, CR2: 0x00000000a07e55b0
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0xa8b2828 : 0x21b837 (0x5dd7fc 0xa8b285c 0x223ce1 0x0)
    0xa8b2878 : 0x2aaeab (0x59de64 0x59e2ed 0x96c27a8 0xe)
    0xa8b2968 : 0x2ab99d (0x0 0x0 0x87c57b06 0x7fff)
    0xa8b2a48 : 0x2a1a78 (0xa8b2a64 0x0 0x206 0x0)
    0xa8b2a5c : 0x2f (0xf 0xbfffdc6c 0x0 0x430dc10)
    BSD process name corresponding to current thread: Google Chrome
    Mac OS version:
    10K540
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 121343507608295
    unloaded kexts:
    com.apple.filesystems.cddafs          2.4.3 (addr 0x569a6000, size 0x24576) - last unloaded 54659664945132
    loaded kexts:
    com.apple.filesystems.udf          2.1.1 - last loaded 54781535293513
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AGPM          100.12.31
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleHDA          2.0.5f13
    com.apple.kext.ATIFramebuffer          6.3.6
    com.apple.driver.AppleMikeyDriver          2.0.5f13
    com.apple.driver.AudioAUUC          1.57
    com.apple.ATIRadeonX2000          6.3.6
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPort.Atheros21          425.14.7
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.iokit.AppleBCM5701Ethernet          3.0.5b8
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleBluetoothHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.DspFuncLib          2.0.5f13
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.ATI4600Controller          6.3.6
    com.apple.kext.ATISupport          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.0.5f13
    com.apple.iokit.IOHDAFamily          2.0.5f13
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2
    com.apple.iokit.IOGraphicsFamily          2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3500418AS, 465.76 GB
    Serial ATA Device: PIONEER DVD-RW  DVRTS09
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 5
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
    and another one i saved
    Interval Since Last Panic Report:  7460 sec
    Panics Since Last Report:          6
    Anonymous UUID:                    92EF6BFA-112A-49DA-B089-26F5AA5062B2
    Sun Mar 13 17:19:03 2011
    panic(cpu 1 caller 0x2aa588): "kernel_trap(0x9718ca4) with 64-bit state"@/SourceCache/xnu/xnu-1504.9.26/osfmk/i386/trap.c:551
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x9718b58 : 0x21b50c (0x5d4438 0x9718b8c 0x223974 0x0)
    0x9718ba8 : 0x2aa588 (0x59611c 0x9718ca4 0x202 0x0)
    0x9718c88 : 0x2a09a8 (0x9718ca4 0x0 0x0 0x56d03f88)
    0x9718c9c : 0x1f86270 (0xf 0xbd 0x0 0xe28d91c2)
    0x56d03f88 : 0x48a556 (0x0 0x8a02100 0xffe00682 0x56b55000)
    0x56d03fc8 : 0x2a06cc (0x0 0x0 0x10 0x0)
    BSD process name corresponding to current thread: storeagent
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 815549850200
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI          4.1.5 (addr 0x1163000, size 0x65536) - last unloaded 168276530109
    loaded kexts:
    com.apple.driver.AppleBluetoothMultitouch          54
    com.apple.driver.AGPM          100.12.19
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleHDA          1.9.9f12
    com.apple.driver.AppleUpstreamUserClient          3.4.5
    com.apple.driver.AppleMCCSControl          1.0.17
    com.apple.kext.ATIFramebuffer          6.2.6
    com.apple.driver.AppleMikeyDriver          1.9.9f12
    com.apple.driver.AudioAUUC          1.13
    com.apple.ATIRadeonX2000          6.2.6
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPort.Atheros21          424.14.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.5.0d5
    com.apple.driver.AppleLPC          1.4.12
    com.apple.driver.AppleBacklight          170.0.34
    com.apple.driver.AppleUSBCardReader          2.5.8
    com.apple.driver.AppleIRController          303.8
    com.apple.BootCache          31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.SCSITaskUserClient          2.6.5
    com.apple.iokit.IOAHCIBlockStorage          1.6.3
    com.apple.driver.AppleFWOHCI          4.7.1
    com.apple.driver.AppleUSBHub          4.1.7
    com.apple.iokit.AppleBCM5701Ethernet          2.3.9b6
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.1.7
    com.apple.driver.AppleAHCIPort          2.1.5
    com.apple.driver.AppleACPIButtons          1.3.5
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.6
    com.apple.driver.AppleACPIEC          1.3.5
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          105.13.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement          105.13.0
    com.apple.driver.AppleBluetoothHIDKeyboard          141 - last loaded 26425201781
    com.apple.driver.AppleHIDKeyboard          141
    com.apple.driver.IOBluetoothHIDDriver          2.3.8f7
    com.apple.driver.AppleMultitouchDriver          207.10
    com.apple.driver.DspFuncLib          1.9.9f12
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.8d0
    com.apple.kext.ATI4600Controller          6.2.6
    com.apple.kext.ATISupport          6.2.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.3.8f7
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.0fc1
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          1.9.9f12
    com.apple.iokit.IOHDAFamily          1.9.9f12
    com.apple.iokit.IO80211Family          312
    com.apple.driver.AppleSMC          3.1.0d3
    com.apple.driver.IOPlatformPluginFamily          4.5.0d5
    com.apple.driver.AppleSMBusPCI          1.0.8d0
    com.apple.iokit.IONDRVSupport          2.2
    com.apple.iokit.IOGraphicsFamily          2.2
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.3.8f7
    com.apple.driver.AppleUSBBluetoothHCIController          2.3.8f7
    com.apple.iokit.IOBluetoothFamily          2.3.8f7
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.5
    com.apple.iokit.IOUSBMassStorageClass          2.6.5
    com.apple.iokit.IOUSBHIDDriver          4.1.5
    com.apple.driver.AppleUSBMergeNub          4.1.5
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.5
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.5
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.1.5
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOUSBFamily          4.1.7
    com.apple.iokit.IOAHCIFamily          2.0.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.5
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.2
    com.apple.driver.AppleACPIPlatform          1.3.5
    com.apple.iokit.IOPCIFamily          2.6
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3500418AS, 465.76 GB
    Serial ATA Device: PIONEER DVD-RW  DVRTS09
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000

    and again just now. itunes. agh!!!
    Interval Since Last Panic Report:  210265 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    92EF6BFA-112A-49DA-B089-26F5AA5062B2
    Tue Aug  2 14:13:18 2011
    panic(cpu 1 caller 0x2aaeab): Kernel trap with 64-bit state thread:0x95c13d4, trapno:0xe, err:0x0, registers:
    CR0: 0x8001003b, CR2: 0x56c65070, CR3: 0x00100000, CR4: 0x00000660
    RAX: 0x000000007293b000, RBX: 0x0000000000000008, RCX: 0x000000007293b000, RDX: 0x00000000002a29c0
    RSP: 0xffffff8056ccf0c4, RBP: 0x000000005e5fbf88, RSI: 0x00000000517d3017, RDI: 0x0000000000000859
    R8:  0xffffff800a256930, R9:  0x0000000000000000, R10: 0x0000000000000004, R11: 0x0000000000000000
    R12: 0xffffff8009843a20, R13: 0x0000000000001000, R14: 0x00000001000f8000, R15: 0x0000000003000003
    RFL: 0x0000000000010046, RIP: 0xffffff80002c0e66, CR2: 0x0000000056c65070
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x56cceda8 : 0x21b837 (0x5dd7fc 0x56cceddc 0x223ce1 0x0)
    0x56ccedf8 : 0x2aaeab (0x59de64 0x59e2ed 0x95c13d4 0xe)
    0x56cceee8 : 0x2ab99d (0x0 0x2e6d6f63 0x6c707061 0x6f692e65)
    0x56ccefc8 : 0x2a1a78 (0x56ccefe4 0x20656369 0x72616843 0x5e5fbf88)
    0x56ccefdc : 0x692f3c62 (0xf 0x859 0x0 0x517d3017)
    0x5e5fbf88 : 0x4912b7 (0x0 0x98437a8 0x9404e376 0x56c7e000)
    0x5e5fbfc8 : 0x2a179c (0x0 0x0 0x10 0x8f4cba0)
    BSD process name corresponding to current thread: iTunes
    Mac OS version:
    10K540
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 9179712437714
    unloaded kexts:
    com.apple.filesystems.cddafs          2.4.3 (addr 0x5e14f000, size 0x24576) - last unloaded 8630181633019
    loaded kexts:
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AGPM          100.12.31
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleHDA          2.0.5f13
    com.apple.kext.ATIFramebuffer          6.3.6
    com.apple.driver.AppleMikeyDriver          2.0.5f13
    com.apple.driver.AudioAUUC          1.57
    com.apple.ATIRadeonX2000          6.3.6
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPort.Atheros21          425.14.7
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.driver.AppleIRController          303.8
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.iokit.AppleBCM5701Ethernet          3.0.5b8
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleBluetoothHIDKeyboard          141.5 - last loaded 7718281670088
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.DspFuncLib          2.0.5f13
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.ATI4600Controller          6.3.6
    com.apple.kext.ATISupport          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.0.5f13
    com.apple.iokit.IOHDAFamily          2.0.5f13
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2
    com.apple.iokit.IOGraphicsFamily          2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3500418AS, 465.76 GB
    Serial ATA Device: PIONEER DVD-RW  DVRTS09
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 5
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3

  • Experts help me alv header issue

    Hi experts
    plz help
    i want to create a rectangular box in my header(top of page)
    plz guide me how to do it .
    plz giv me the code also.
    thanx in advance .

    Hi,
          I don't think its possible, but you can draw the horizontal lines upto 60 character. Pass underscore to info field of slis_t_listheader table up to 60 character only.
    Try this.
    *&      Form  sub_top_of_page                                          *
    This form is to build the Page Header                               *
    FORM sub_top_of_page .
    *--Local Variable
      DATA : lv_title(120) TYPE c,                  " Title
             lv_month(30)  TYPE c,
             lv_mont(30)   TYPE c,
             lv_bud(16)    TYPE c.
    *--Local Work Area
      DATA : lwa_line TYPE slis_listheader.  " Hold list header
    CONCATENATE p_month 'to' s_hmonth INTO lv_month SEPARATED BY space.
    IF NOT s_hmonth IS INITIAL.
       lv_mont = lv_month.
    ELSE.
      lv_mont = p_month.
    ENDIF.
    *--Title  Display
      lwa_line-typ = 'H'.               " header
      lv_title = sy-title.
      lwa_line-info = '_____________________'.
      APPEND lwa_line TO it_header.
      CLEAR lwa_line.
    *--Month Display
      lwa_line-typ  = 'S'.                " Item
      WRITE: lv_mont TO lv_month.
      lwa_line-key = text-024.
      lwa_line-info = ''______________________.
      APPEND lwa_line TO it_header.
    *--Budget Display
      lwa_line-typ  = 'S'.                " Item
      WRITE: p_bud TO lv_bud.
      lwa_line-key = text-025.
      lwa_line-info = lv_bud.
      APPEND lwa_line TO it_header.
      CLEAR: lwa_line,
             lv_mont.
    *--This funcation module will display the top of the page
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = it_header.
    *--Free
      FREE : it_header.
    ENDFORM.                    "sub_top_of_page
    Regards,
    prashant

  • Calling on Experts: help build my DV editing system (CS5)

    I have read many incredibly helpful articles/guides on building the best PC for the buck.  Harm's perhaps the greatest.  I can't help but notice most of the one's I've read were written a number of months ago.  In this ever-evolving, quickly shifting industry, that translates to light-years ago.
    May I ask some of you experts this question: If you had $2k-ish to spend on an editing system w/ CS5 Production, what would YOU choose for YOUR system? Exluding monitors, keyboard, mouse, speakers, etc.  Just the case, mobo, RAM, GPU, CPU, PSU, HDD(s), DVD+-, not BlueRay..., and anything else I'm forgetting.
    I do NOT handle HD video yet, but will upgrade some day.  I HAVE been doing my homework.  I am NOT being lazy here. But I AM in a HURRY!!! 
    Many blessings... JAY

    Coltsman33 wrote:
    Many blessings... JAY
    Why thank you.
    Thermaltake Element V Black Edition Steel Full Tower Computer Case Colorshift Fans VL200K1W2Z
    $154.99
    Seagate Cheetah 15K.6 ST3146356SS 146GB 15000 RPM SAS 3Gb/s 3.5" Internal Hard Drive -Bare Drive
    $179.99
    Palit NE5TX470F10DA GeForce GTX 470 (Fermi) 1280MB 320-bit GDDR5 PCI Express 2.0 x16 HDCP Ready SLI Support Video Card
    $259.99
    KINGWIN Lazer LZ-1000 1000W Modular 80 PLUS BRONZE Certified Active PFC W/ 3-Way LED Switch and Universal Modular Connector ...
    $159.99
    Patriot Viper II Sector 7 Edition 12GB (3 x 4GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) Desktop Memory Model PV7312G1600ELK
    $299.99
    ASUS Rampage III Formula LGA 1366 Intel X58 SATA 6Gb/s USB 3.0 ATX Intel Motherboard
    $289.99
    Intel Core i7-950 Bloomfield 3.06GHz LGA 1366 130W Quad-Core Processor BX80601950
    $294.99
    Noctua NH-U12P SE2 120mm SSO CPU Cooler
    $74.99
    LG Black 10X Blu-ray Burner - Bulk SATA WH10LS30 LightScribe Support - OEM
             $99.99
    Was a revised list of items to fit under 2k... of course this is missing hds required for media page etc. And also I'm not sure if the case would be large enough for the CPU Cooler. But you get the idea

  • Anyone need expert help/consulting for Labview?

    Code Genius was started at MIT to connect programmers in the scientific community to experts of advanced languages for efficient and cost effective support. Our platform helps programmers find the help they need to evaluate and resolve any issues they have in a quick and easy manner. Our service is unique with Code Geniuses matched with users not only based on language but also based on industry expertise for more streamlined and specialized problem solving.
    www.codegenius.io
     

    The arogant side of me asks...
    What make them think they are better than us* ?
    Hmmmm?
    Ben
    * us = the contributors to this forum that I am convinced include some of the greatest software developers the world has ever known.
     

  • Dear experts help needed in creation of report in hr

    Please check the below code.
    There is one Transaction code PA20 from these i need the fields in my report.
    I tried writing the report but the fields are from structure so please help in creating the report.
    I am a beginner so i donno how to find the below fields are coming from which table.
    when i do F1 on the fields in PA20 i found the fields but they are from structure.
    type-POOLS: SLIS.
    TYPES : BEGIN OF TY_P0001,
            PERNR TYPE PERNR_D,      "Personnel Number
            BEGDA TYPE BEGDA,        "Start Date
            BUKRS TYPE BUKRS,        "Company Code
            ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
            END OF TY_P0001.
    TYPES : BEGIN OF TY_P0016,
            PERNR TYPE PERNR_D,      "Personnel Number
            PRBZT TYPE PRBZT,        "Probationary Period
            CTTYP TYPE CTTYP,        "Contract Type
            END OF TY_P0016.
    TYPES: BEGIN OF TY_P9210,
             PERNR TYPE PERNR_D,
            ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_P9210.
    TYPES : BEGIN OF TY_OUTPUT,
             PERNR TYPE PERNR_D,      "Personnel Number
             BEGDA TYPE BEGDA,        "Start Date
             BUKRS TYPE BUKRS,        "Company Code
             ENAME TYPE EMNAM,        "Formatted Name of Employee or Applicant
             PRBZT TYPE PRBZT,        "Probationary Period
             CTTYP TYPE CTTYP,        "Contract Type
             ZTICKET_AMT TYPE ZTICKET_AMT,  "Ticket Amount
            END OF TY_OUTPUT.
    DATA:  T_P0001 TYPE TY_P0001 OCCURS 1,
           W_P0001 TYPE TY_P0001,
           T_P0016 TYPE TY_P0016 OCCURS 1,
           W_P0016 TYPE TY_P0016,
           T_P9210 TYPE TY_P9210 OCCURS 1,
           W_P9210 TYPE TY_P9210,
           T_OUTPUT TYPE TY_OUTPUT OCCURS 1,
           W_OUTPUT TYPE TY_OUTPUT.
        START-OF-SELECTION.
            SELECT PERNR
                   BEGDA
                   BUKRS
                   ENAME FROM P0001 INTO TABLE T_P0001
                   WHERE
                    AND  BUKRS IN S_BUKRS
                    AND  BEGDA < '31032007'.
              SELECT PERNR
                     PRBZT
                     CTTYP
                     FROM P0016 INTO TABLE T_P0016
                     FOR ALL ENTRIES IN T_P0001
                     WHERE PERNR = T_P0001-PERNR
              SELECT PERNR
                     ZTICKET_AMT
                     FROM P920 INTO TABLE T_P920
                     FOR ALL ENTRIES IN T_P920
                     WHERE PERNR = T_P0001-PERNR.

    use logical data base PNP.
    tables: pernr.
    infotypes: 0001, 0016, ....
    start-of-selection.
    get pernr.
    here all tables Pxxxx defined as INFOTYPES are filled for the selected PERNR.

  • Urgent help req : work item id not getting passed in the method

    Hi ,
    I have created a subtype zcats of business object CATS and delegated it .
    I have created a new method Approve1 ( with attributes  SYNCRONUS & DIALOG )  in zcats which is similar in coding  to Approve method of CATS ( DIALOG) .
    I have include the method Approve1 of business object zcats in a standard task .
    The problem is that when the eorkflow gets triggered ,  the workitem id is not getting passed in the method APProve1 of zcats.
    Can someone please help me with this .
    Points would surely be awarded .

    BEGIN_METHOD APPROVE1 CHANGING CONTAINER.                 
      DATA: WORKITEMID_IMP LIKE OBJECT-KEY-ITEMID.              
      DATA: WI_CHCKWI LIKE SWWWIHEAD-WI_ID.                     
      DATA: WORKITEM TYPE SWC_OBJECT.                           
       <u> WORKITEMID_IMP = OBJECT-KEY-ITEMID</u>.                     
        SWC_GET_ELEMENT CONTAINER '_WORKITEM' WORKITEM.         
        SWC_GET_PROPERTY WORKITEM 'WorkitemReference' WI_CHCKWI.
        IF SY-SUBRC EQ 0 AND NOT WI_CHCKWI IS INITIAL.          
          WORKITEMID_IMP = WI_CHCKWI.                           
        ENDIF.                                                  
        CALL FUNCTION 'CATS_WF_APPROVAL'                        
          EXPORTING                                             
            WORKITEMID_IMP = WORKITEMID_IMP                     
          TABLES                                                
            CONT_IMP = CONTAINER.                               
      END_METHOD.                                               
    hi ,
    the above is the code in the method .
    At the first step of execution underlined above , the work item id is appearing blank .
    I think that the value is not passed to the container , but i am not sure og how to pass data to this conatiner

  • Issue in WAD Dropdown box functionality. Help req.

    Hello,
    Issue in WAD and Bex.
    I have two dropdown boxes in the web templates, for ex cost center and controlling area.
    DDBox1: Controlling Area.
    DDBox2: Cost center.
    Step1: I am selecting Controlling area 4002
    Step2: I am selecting cost center 691
    Step3: Now I want to change the cost center to 4001.
    When I change the cost center to 4001 in Dropdown box1
    the filter(Selected value 691) set in the Dropdown 2(for cost center) is not removed or reset,
    so that it shows no applicable data found even though there is data for the controlling Area 4001(DDBox2)
    Some one please guide me to solve this
    Thanks in advance!
    Kind regards
    RaM

    Hello,
    Some one please help me on this topic.
    If any further informations required i can give .
    Thanks
    RaM

Maybe you are looking for

  • Windows BDOS When Coming Out of Sleep

    Hey guys, so I recently updated to Windows 8.1, and now when I come out of Sleep Mode, my computer gets a BSOD I havent been able to figure out why yet though but heres the minidump of the crash report Microsoft (R) Windows Debugger Version 6.2.9200.

  • How to turn OFF quicktime but leave installed?

    I need quick time installed to use Itunes per Apple. But when trying to download podcasts on some web sites, quicktime just automatically plays the podcast instead of letting me save the podcast as a file. if I uninstall quicktime my problem goes awa

  • Confused about kernel extensions

    I've learned two things about kernel extensions from Google searches: 1. Kernel extensions are stored in System/Library/Extensions 2. You can list all Apple extensions with the Terminal command kextstat and all third party extensions with the command

  • Content server problem

    Hello, I would like to link my ECC 6.0 system with an (outdated..) 620 Content server This works fine for non secure data Now I would like to enable signed url's. for this you need to enable security=1 in the Content server .ini file. Furrthermore yo

  • Obtaining approver of task process in 2013 workflow

    Given a 2013 workflow where we start a task process, how can one get the user who approved the task process, assuming that the task process ending condition is one that requires the choice of one user (namely the first/specific response outcome types