Please tell me the functionality of this piece of code

vl_faedn = sy-datum - 15.
All amount fields are 0.00 initially.
Please tell me the functionality of this code.What is the purpose of each query?
YD = Commission Advance
AB = Automatic Clearing Doc
Y4 = Commission Invoice
X4 = Commission Credit Memo
K1 = Commission Adj. Invoice
K2 = Commission Adj.Credit Memo
  Retrieve the YD document type total for a Customer
          SELECT WRBTR SHKZG
             INTO (VL_WRBTR, VL_SHKZG)
             FROM BSID
             WHERE BUKRS = VL_BUKRS AND
                   KUNNR = VL_KUNNR AND
                   UMSKS = 'C' AND
                   UMSKZ = 'C' AND
                   BLART = 'YD' AND
                   ZFBDT <= VL_FAEDN.
            IF VL_SHKZG = 'H'.
              VL_WRBTR = VL_WRBTR * -1.
            ENDIF.
            VL_YD_AMNT = VL_YD_AMNT + VL_WRBTR.
          ENDSELECT.
  Retrieve the AB document type total for a Customer
          SELECT WRBTR SHKZG
             INTO (VL_WRBTR, VL_SHKZG)
             FROM BSID
             WHERE BUKRS = VL_BUKRS AND
                   KUNNR = VL_KUNNR AND
                   UMSKS = 'G' AND
                   UMSKZ = 'G' AND
                   BLART = 'AB' AND
                   ZFBDT <= VL_FAEDN.
            IF VL_SHKZG = 'H'.
              VL_WRBTR = VL_WRBTR * -1.
            ENDIF.
            VL_AB_AMNT = VL_AB_AMNT + VL_WRBTR.
          ENDSELECT.
  Retrieve the Y4 document type total for a Vendor
          SELECT WRBTR SHKZG
            INTO (VL_WRBTR, VL_SHKZG)
            FROM BSIK
            WHERE BUKRS = VL_BUKRS AND
                  LIFNR = VL_LIFNR AND
                ( blart = 'Y4' OR blart = 'X4' OR blart = 'K1'                OR                 blart = 'K2' ). 
            IF VL_SHKZG = 'H'.
              VL_WRBTR = VL_WRBTR * -1.
            ENDIF.
            VL_Y4_AMNT = VL_Y4_AMNT + VL_WRBTR .
          ENDSELECT.
          VL_Y4_AMNT = -1 * VL_Y4_AMNT.
  Retrieve the YD document type total for a Vendor
          SELECT WRBTR SHKZG
            INTO (VL_WRBTR, VL_SHKZG)
            FROM BSIK
            WHERE BUKRS = VL_BUKRS AND
                  LIFNR = VL_LIFNR AND
                 blart = 'YD'.
            ( BLART = 'YD' OR  BLART = 'K1' OR
                    BLART = 'K2' ).  " Insert
            IF VL_SHKZG = 'H'.
              VL_WRBTR = VL_WRBTR * -1.
            ENDIF.
            VL_YD_AMNT1 = VL_YD_AMNT1 + VL_WRBTR.
          ENDSELECT.
          VL_YD_AMNT1 = -1 * VL_YD_AMNT1 .
          IF VL_Y4_AMNT = 0.
            VL_TOT_AMOUNT = VL_YD_AMNT1 - VL_AB_AMNT.
          ELSE.
            VL_TOT_AMOUNT = VL_Y4_AMNT - ( VL_YD_AMNT + VL_AB_AMNT ).
          ENDIF.

Hi
I dont know what functionality you are asking, Still I try to answer some things, If it's not forgive
vl_faedn = sy-datum - 15.
All amount fields are 0.00 initially.
Please tell me the functionality of this code.What is the purpose of each query?
YD = Commission Advance
AB = Automatic Clearing Doc
Y4 = Commission Invoice
X4 = Commission Credit Memo
K1 = Commission Adj. Invoice
K2 = Commission Adj.Credit Memo
Retrieve the YD document type total for a Customer
SELECT WRBTR SHKZG
INTO (VL_WRBTR, VL_SHKZG)
FROM BSID
WHERE BUKRS = VL_BUKRS AND
KUNNR = VL_KUNNR AND
UMSKS = 'C' AND
UMSKZ = 'C' AND
BLART = 'YD' AND
ZFBDT <= VL_FAEDN.
The Above query retrieves field values WRBTR SHKZG from BSID table to the Local Variable VL_WRBTR & VL_SHKZG , if it satisfies the WHERE condition mentioned for the YD docu type for the Customer
What I suggests , the IF operation should be outside the SELECT-ENDSELECT. May be you have a requirement, I dont know
Atleast You have to perform SUBRC check.. Before the IF operation. for the VL_SHKZG = 'H'.
IF VL_SHKZG = 'H'.
VL_WRBTR = VL_WRBTR * -1.
ENDIF.
VL_YD_AMNT = VL_YD_AMNT + VL_WRBTR.
ENDSELECT.
i.e., What , Here every SELECT query is performing for some document type for customer and vendor with some variable arithmetic operations .
Retrieve the AB document type total for a Customer
SELECT WRBTR SHKZG
INTO (VL_WRBTR, VL_SHKZG)
FROM BSID
WHERE BUKRS = VL_BUKRS AND
KUNNR = VL_KUNNR AND
UMSKS = 'G' AND
UMSKZ = 'G' AND
BLART = 'AB' AND
ZFBDT <= VL_FAEDN.
IF VL_SHKZG = 'H'.
VL_WRBTR = VL_WRBTR * -1.
ENDIF.
VL_AB_AMNT = VL_AB_AMNT + VL_WRBTR.
ENDSELECT.
Retrieve the Y4 document type total for a Vendor
SELECT WRBTR SHKZG
INTO (VL_WRBTR, VL_SHKZG)
FROM BSIK
WHERE BUKRS = VL_BUKRS AND
LIFNR = VL_LIFNR AND
( blart = 'Y4' OR blart = 'X4' OR blart = 'K1' OR blart = 'K2' ).
IF VL_SHKZG = 'H'.
VL_WRBTR = VL_WRBTR * -1.
ENDIF.
VL_Y4_AMNT = VL_Y4_AMNT + VL_WRBTR .
ENDSELECT.
VL_Y4_AMNT = -1 * VL_Y4_AMNT.
Retrieve the YD document type total for a Vendor
SELECT WRBTR SHKZG
INTO (VL_WRBTR, VL_SHKZG)
FROM BSIK
WHERE BUKRS = VL_BUKRS AND
LIFNR = VL_LIFNR AND
blart = 'YD'.
( BLART = 'YD' OR BLART = 'K1' OR
BLART = 'K2' ). " Insert
IF VL_SHKZG = 'H'.
VL_WRBTR = VL_WRBTR * -1.
ENDIF.
VL_YD_AMNT1 = VL_YD_AMNT1 + VL_WRBTR.
ENDSELECT.
VL_YD_AMNT1 = -1 * VL_YD_AMNT1 .
IF VL_Y4_AMNT = 0.
VL_TOT_AMOUNT = VL_YD_AMNT1 - VL_AB_AMNT.
ELSE.
VL_TOT_AMOUNT = VL_Y4_AMNT - ( VL_YD_AMNT + VL_AB_AMNT ).
ENDIF.
Reward points  if useful
Edited by: GP on May 10, 2008 9:02 PM

Similar Messages

  • Can someone tell me the problem with this (very basic) code

    I know it's very basic but here goes
    public class MilesAndFurlongs
    // the constructor
    public MilesAndFurlongs (int Furlongs, int Miles)
    amountFurlongs = Furlongs;
    amountMiles = Miles;
    // method to add one to furlong
    public void increment()
    amount = (amount + 1);
    // method to print out total number of furlongs and miles
    public void displayLength()
    system.out.println("Furlongs: " + amountFurlongs);
    system.out.println("Miles: " + amountMiles);
    bluej says theres an illegal start of expression in displaylength()
    i know its going to be something stupid :D

    this is all of it updated...
    public class MilesAndFurlongs
    // the constructor
    public MilesAndFurlongs (int Furlongs, int Miles)
    amountFurlongs = Furlongs;
    amountMiles = Miles;
    // method to add one to furlong
    public void increment()
    amount = (amount + 1);
    // method to print out total number of furlongs and miles
    public void displayLength()
    system.out.println("Furlongs: " + amountFurlongs);
    system.out.println("Miles: " + amountMiles);
    Message was edited by:
    jaytabbmeister

  • While trying to save a word document (Microsoft Office 2011 for Mac) in PDF, there is a section of the header or footer which is always missing!! Could anyone please tell me hot to fix this problem!!??? It works perfectly fine on my friends Mac!!

    While trying to save a word document (Microsoft Office 2011 for Mac) in PDF, there is a section of the header or footer which is always missing!! Could anyone please tell me hot to fix this problem!!??? It works perfectly fine on my friends Mac!!

    Easiest way with Acrobat pro, is save the Word document, then convert the document to PDF with Acrobat, rather than doing a "save as" in Word itself to PDF.
    Do you have Acrobat full version or Pro?

  • I have an iphone 4 and cannot get my mute off when I am using Facetime. I can hear them, but they can't hear me. When I touch the mute button, nothing happens. Can someone please tell me how to fix this?

    I have an iphone 4 and cannot get my mute off when I am using Facetime. I can hear them, but they can't hear me. When I touch the mute button, nothing happens. Can someone please tell me how to fix this?

    the mute button is a switch you need to flip, not touch. if you look at it and see color, its on.

  • I already have a new book that is ready to publish as an iBook. In addition I also have an app prepared for this book. Please tell me how to upload this book (title is: "How To Cope...with life") and the app for it into your iBook Authors app so I can hav

    I already have a new book that is ready to publish as an iBook. In addition I also have an app prepared for this book.
    Please tell me how to upload this book (title is: "How To Cope...with life") and the app for it into your iBook Authors app so I can have it offered for sale @$0.99, in your app store?
    FROM: Terry Weber, Email: [email protected]

    https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/wa/bookSignup

  • I bought the pkg. of Photoshop & Premiere Elements 10 in 2012.  I now want to update to  Premiere Elements 13 without updating Photoshop.  Can I do this?  Will you please tell me the steps I need to take?

    I purchased Photoshop and Premiere Elements 10 as a package in 2012.  I now want to update the Premiere to the 13 edition, without updating Photoshop.  Can I do this?  Will you please tell me the steps I need to take?

    Just buy version Premiere Elements 13.
    Even if you don't get the "upgrade" price, you can probably find it for about that cost on sites like Amazon.com.
    You can keep Photo Elements 13 if you'd like. The only downside is that Premiere Elements 13 and Photo Elements 10 won't share the same Organizer catalog. Otherwise, they'll get along just fine.

  • Since installing the newest version of Firefox 4.0, I am unable to access my work e-mail which uses Lotus Domino Web Access. Can anyone please tell me how to correct this problem?

    Since installing the newest version of Firefox 4.0, I am unable to access my work e-mail which uses Lotus Domino Web Access. Can anyone please tell me how to correct this problem?

    Sheesh. That looks hard. I think it will fall over at this point:
    "Connect to my Exchange mailbox using HTTP" 'cos Thunderbird uses only the regular email protocols: POP, IMAP and SMTP.
    Here (at work) we have in the past have had IMAP and SMTP enabled on our Exchange server so Thunderbird could then connect just like to any other regular internet-based service.
    With the change here to outlook365/outlook 2010 I've had to switch to using DavMail which lets Thunderbird talk to the mail server using OWA.
    I haven't (seriously) tried Exquilla. Whilst I have great respect for its author and some of his other add-ons, I saw no reason to use an add-on that required payment when DavMail works for free.

  • Why does Adobe Flash crash all the time? It is reallyt annoying and I'm considering using another browser. Please tell me how to fix this.

    Why does Adobe Flash crash all the time? It is really annoying and I'm considering using another browser.
    Please tell me how to fix this.

    Try to uninstall your current Flash version and update Flash to the latest version.
    Troubleshoot Flash Player installation for Windows:
    * http://kb2.adobe.com/cps/191/tn_19166.html#main_Uninstall_the_older_Flash_Player_version
    *http://www.adobe.com/software/flash/about/
    *https://support.mozilla.com/kb/Managing+the+Flash+plugin
    *http://kb.mozillazine.org/Flash

  • I purchased Acrobat Pro in December of 2014 and installed it on my computer. That computer crashed recently and I need to intall it on my new computer. Can someone please tell me the process to do this. Thanking you in advance.

    I purchased Acrobat Pro in December of 2014 and installed it on my computer. That computer crashed recently and I need to intall it on my new computer. Can someone please tell me the process to do this? Thanking you in advance for your help. Tony

    Install it just as you did before. You should have backed up the download to a CD or backup HD and have the S/N archived with the backup. If you did not backup (please do in the future), you can download from http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html unless it was an upgrade (I don't think you can use these files for upgrades).

  • Can someone please tell me how to extend a piece of music I have created in garageband, I cannot find anything in the help topics and i am new to the system.

    Can someone please tell me how to extend a piece of music that I have created in garageband.  I am new to the system and cannot find any info in the help topics.  The music is currently only 1 minute and I need it to be 1.39sec to fit in with the film it will be used with in iMovie.  Thanks.

    Yes, it helps.
    You are using a version of the newest GarageBand 10.0, and not GarageBand '11 as in your original post.  And I was sending you screenshots from GarageBand '11, LOL!
    In GarageBand  10.0 is the end-of-song marker hiding behind the zoom controls. Zoom out as far as possible by shifting the zoom scrollbar to the left. Then you should be able to see a corner of the end-of-song marker peeping out behind the zoom control. Try to grab it with the mouse pointer and shift it to the time you want.

  • Everytime I try to update my iPhone this happens: The iPhone cannot be updated because the iPhone software update server could not be contacted or is teporarily unavailable. Please try again later. Can you please tell me how to fix this? Thanks in advance

    Everytime I try to update my iPhone this happens: The iPhone cannot be updated because the iPhone software update server could not be contacted or is teporarily unavailable.
    Please try again later.
    Can you please tell me how to fix this? Thanks in advance.

    We're Sorry, Activation Server Temporarily Unavailable, contact Customer Care...Your request Could Not Be Completed?"
    99.9% of the time, the cause of this issue is the fact the phone was jailbroken/hacked to unlock it for use on networks other than the network the phone was originally locked to. Apple maintains a database of officially unlocked iPhones, and when Apple's servers detect phones such as yours, activation stops & you get the message you got.
    So, you need to get a sim card from the carrier the phone was originally locked to, or get it officially unlocked, if you want to activate it. Because it appears that it was not officially unlocked.
    Apple has started to get "tough" with hacked iPhones, & simply won't permit their activation.

  • Please tell me the step by step process of backup and full restore

    Dear all,
    we are using ecc5 and windows and oracle 9i I am going to apply support package .Please tell me the step by step process of backup and full restore . I am using DB13 for backup. Please suggest.
    Regards,
    Shiva

    Hi,
    Login as <SID>adm user & run the following command
    brrestore -b <backup logfilelogfile> -m full
    this command restore the backup.
    you can find backup logfile in /oracle/<SID>/sapbackup/.ant or .aft .
    For backup using brtools follow the following procedure:-
    Run Brtools Than you get the following option
    1 = Database backup
    2 - Archivelog backup
    3 - Database copy
    4 - Non-database backup
    5 - Verification of database backup
    6 - Verification of archivelog backup
    7 + Additional functions
    8 - Reset input values
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR662I Enter your choice:
    1
    BR280I Time stamp 2008-04-04 18.41.57
    BR663I Your choice: '1'
    BR280I Time stamp 2008-04-04 18.41.57
    BR657I Input menu 15 - please check/enter input values
    BRBACKUP main options for backup and database copy
    1 - BRBACKUP profile (profile) ....... [initPRD.sap]
    2 - Backup device type (device) ...... [tape]
    3 ~ Tape volumes for backup (volume) . []
    4 # BACKINT/Mount profile (parfile) .. []
    5 - Database user/password (user) .... [system/*******]
    6 - Backup type (type) ............... [online]
    7 - Back up disk backup (backup) ..... [no]
    8 # Delete disk backup (delete) ...... [no]
    9 ~ Files for backup (mode) .......... [all]
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR662I Enter your choice:
    3
    BR280I Time stamp 2008-04-04 18.42.25
    BR663I Your choice: '3'
    BR280I Time stamp 2008-04-04 18.42.25
    BR681I Enter string value for "volume" (scratch|<tape_vol>|<tape_vol
    PRDB04
    BR280I Time stamp 2008-04-04 18.43.06
    BR683I New value for "volume": 'PRDB04'
    BR280I Time stamp 2008-04-04 18.43.06
    BR657I Input menu 15 - please check/enter input values
    BRBACKUP main options for backup and database copy
    1 - BRBACKUP profile (profile) ....... [initPRD.sap]
    2 - Backup device type (device) ...... [tape]
    3 ~ Tape volumes for backup (volume) . [PRDB04]
    4 # BACKINT/Mount profile (parfile) .. []
    5 - Database user/password (user) .... [system/*******]
    6 - Backup type (type) ............... [online]
    7 - Back up disk backup (backup) ..... [no]
    8 # Delete disk backup (delete) ...... [no]
    9 ~ Files for backup (mode) .......... [all]
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR662I Enter your choice:
    c
    BR280I Time stamp 2008-04-04 18.43.46
    BR663I Your choice: 'c'
    BR259I Program execution will be continued...
    BR280I Time stamp 2008-04-04 18.43.46
    BR657I Input menu 16 - please check/enter input values
    Additional BRBACKUP options for backup and database copy
    1 - Confirmation mode (confirm) ....... [yes]
    2 - Query mode (query) ................ [no]
    3 - Compression mode (compress) ....... [hardware]
    4 - Verification mode (verify) ........ [no]
    5 - Fill-up previous backups (fillup) . [no]
    6 - Parallel execution (execute) ...... [0]
    7 - Additional output (output) ........ [no]
    8 - Message language (language) ....... [E]
    9 - BRBACKUP command line (command) ... [-p initPRD.sap -d tape -v
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR662I Enter your choice:
    c
    BR280I Time stamp 2008-04-04 18.44.29
    BR663I Your choice: 'c'
    BR259I Program execution will be continued...
    BR291I BRBACKUP will be started with options '-p initPRD.sap -d tape
    E'
    BR280I Time stamp 2008-04-04 18.44.29
    BR670I Enter 'c[ont]' to continue, 'b[ack]' to go back, 's[top]' to
    c
    BR280I Time stamp 2008-04-04 18.45.13
    BR257I Your reply: 'c'
    BR259I Program execution will be continued...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    BR051I BRBACKUP 6.20 (113)
    BR189W Expiration period equal 0 - backup volumes could be immediate
    BR055I Start of database backup: bdxpzadt.ant 2008-04-04 18.45.13
    BR319I Control file copy was created: /oracle/PRD/sapbackup/cntrlPRD
    BR280I Time stamp 2008-04-04 18.45.13
    BR057I Backup of database: PRD
    BR058I BRBACKUP action ID: bdxpzadt
    BR059I BRBACKUP function ID: ant
    BR110I Backup mode: ALL
    BR077I Database file for backup: /oracle/PRD/sapbackup/cntrlPRD.dbf
    BR061I 25 files found for backup, total size 45884.883 MB
    BR143I Backup type: online
    BR113I Files will be compressed by hardware
    BR130I Backup device type: tape
    BR102I Following backup device will be used: /dev/rmt0.1
    BR103I Following backup volume will be used: PRDB04
    BR280I Time stamp 2008-04-04 18.45.13
    BR256I Enter 'c[ont]' to continue, 's[top]' to cancel the program:
    c
    BR280I Time stamp 2008-04-04 18.45.50
    BR257I Your reply: 'c'
    BR259I Program execution will be continued...
    BR208I Volume with name PRDB04 required in device /dev/rmt0.1
    BR210I Please mount BRBACKUP volume, if you have not already done so
    BR280I Time stamp 2008-04-04 18.45.50
    BR256I Enter 'c[ont]' to continue, 's[top]' to cancel the program:
    c
    BR280I Time stamp 2008-04-04 18.46.26
    BR257I Your reply: 'c'
    BR259I Program execution will be continued...
    BR280I Time stamp 2008-04-04 18.46.26
    BR226I Rewinding tape volume in device /dev/rmt0 ...
    BR351I Restoring /oracle/PRD/sapbackup/.tape.hdr0
    BR355I from /dev/rmt0.1 ...
    BR241I Checking label on volume in device /dev/rmt0.1
    BR280I Time stamp 2008-04-04 18.46.26
    BR226I Rewinding tape volume in device /dev/rmt0 ...
    BR202I Saving /oracle/PRD/sapbackup/.tape.hdr0
    BR203I to /dev/rmt0.1 ...
    BR209I Volume in device /dev/rmt0.1 has name PRDB04
    BR202I Saving init_ora
    BR203I to /dev/rmt0.1 ...
    BR202I Saving /oracle/PRD/920_64/dbs/initPRD.sap
    BR203I to /dev/rmt0.1 ...
    Let me know If you have any problem regarding backup & restore
    karan

  • I have installed mountain lion on my macbook pro ,but it made my mac very slow. Would someone please tell me how  to uninstall this one and reinstall snow leopard?

    Hello,
    I have installed mountain lion on my macbook pro ,but it made my mac very slow. Would someone please tell me how  to uninstall this one and reinstall snow leopard? I tried to do it by my original CDs but macbook  pro didn't let me to do it.
    Thanks

    It would be easier to just fix whatever is making your machine slow.
    I wrote a little diagnostic program to help show what might be causing these problems. Download EtreCheck from http://www.etresoft.com/download/EtreCheck.zip, run it, and paste the results here.
    Disclaimer: Although EtreCheck is free, there are other links on my site that could give me some form of compensation, financial or otherwise.

  • Can someone please tell me the cause of the msg-The song could not be used because the original file could not be found- and how I might correct that problem?

    Can anyone please tell me the cause of the msg-The song"    " could no be used
    because the original file could not be found-and how I might correct that problem?  Lou

    I stupidly tried to copy my music files to an external drive so I could transfer them to my new iMac (old Macbook Pro is being retired). I now know I should've tried home sharing or something to transfer the music.
    Anyway, the situation I am in is that I have not managed to transfer anything and I now cannot access the music on my old Macbook Pro either! I have the message "the song 'xyz' could not be used because the original file could not be found. Would you like to locate it?". I understand that this is because iTunes cannot locate the files. When I try to locate the files I find nothing.
    I have tried searching my whole Macbook Pro for mp3 files and m4a files and Spotlight cant find any! The tracks are all still listed in iTunes. I also searched the external hard drive. I definitely haven't deleted anything. So where could they have gone and is there anything else I can do to search for them? I have a feeling I am just not searching for them in the right way because I have not deleted anything.
    Old computer is Macbook Pro OS X 10.6.8 with iTunes 10.4.1
    New computer is iMac OS X 10.7.2 with iTunes 10.5
    All I want to do is to set everything back to how it was so I can try the transfer a better way.
    Please help. Thanks, Dashford.

  • Please tell me how to fix this error

    Since yesterday, We have been loading data into the database through the sequel loader and suddenly today it is erroring out with the following error
    Please tell me the solution how to tackle this error.
    The error message is like this
    C:\ImportUtility>prospect_load.cmd XES-QA_new tp tp1 C:\ImportUtilTest\output\PR
    OSPECT_UPDATE_ATMCUSTOMERPROSPECTIMPORT_2010-12-23_10.28.22_435889360.CSV
    Loading data in prospect table..
    SQL*Loader: Release 10.1.0.2.0 - Production on Thu Dec 23 12:29:02 2010
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    kghalo bad size 0x2402d870
    ***** Internal heap ERROR KGHALO2 addr=00000000 ds=00FF8D54 *****
    HEAP DUMP heap name="Alloc environm" desc=00FF8D54
    extent sz=0x1024 alt=32767 het=32767 rec=0 flg=2 opc=2
    parent=00FF8DF8 owner=00000000 nex=00000000 xsz=0x1038
    EXTENT 0 addr=011937B8
    Chunk 11937c0 sz= 4144 freeable "Alloc describe " ds=010585EC
    EXTENT 1 addr=01192724
    Chunk 119272c sz= 4144 freeable "Alloc describe " ds=010585EC
    EXTENT 2 addr=01189D14
    Chunk 1189d1c sz= 4144 freeable "Alloc describe " ds=010585EC
    EXTENT 3 addr=010586B4
    Chunk 10586bc sz= 4144 freeable "Alloc describe " ds=010585EC
    EXTENT 4 addr=0118B5D0
    Chunk 118b5d8 sz= 28932 freeable "Alloc describe " ds=010585EC
    EXTENT 5 addr=010576E0
    Chunk 10576e8 sz= 3584 freeable "Alloc describe " ds=010585EC
    Chunk 10584e8 sz= 424 freeable assoc with mark prv=00000000 nxt=00000
    000
    Chunk 1058690 sz= 24 free " "
    EXTENT 6 addr=010596F8
    Chunk 1059700 sz= 4124 recreate "Alloc describe " latch=00000000
    ds 10585ec sz= 53216 ct= 7
    11937c0 sz= 4144
    119272c sz= 4144
    1189d1c sz= 4144
    10586bc sz= 4144
    10576e8 sz= 3584
    118b5d8 sz= 28932
    EXTENT 7 addr=0105A728
    Chunk 105a730 sz= 4144 freeable "Alloc authenti " ds=01051E20
    EXTENT 8 addr=0105B76C
    Chunk 105b774 sz= 4144 freeable "Alloc authenti " ds=01051E20
    EXTENT 9 addr=0105668C
    Chunk 1056694 sz= 2676 recreate "Alloc server h " latch=00000000
    ds 1056594 sz= 2676 ct= 1
    Chunk 1057108 sz= 1448 freeable assoc with mark prv=00000000 nxt=00000
    000
    EXTENT 10 addr=01052AF8
    Chunk 1052b00 sz= 15160 freeable assoc with mark prv=00000000 nxt=00000
    000
    EXTENT 11 addr=01051AB4
    Chunk 1051abc sz= 24 perm "perm " alo=24
    Chunk 1051ad4 sz= 264 recreate "Alloc authenti " latch=00000000
    ds 1051e20 sz= 8552 ct= 3
    105a730 sz= 4144
    105b774 sz= 4144
    Chunk 1051bdc sz= 744 freeable assoc with mark prv=00000000 nxt=00000
    000
    Chunk 1051ec4 sz= 180 freeable assoc with mark prv=00000000 nxt=00000
    000
    Chunk 1051f78 sz= 1448 freeable assoc with mark prv=00000000 nxt=00000
    000
    Chunk 1052520 sz= 1448 freeable assoc with mark prv=00000000 nxt=00000
    000
    Total heap size = 85344
    FREE LISTS:
    Bucket 0 size=144
    Chunk 1058690 sz= 24 free " "
    Bucket 1 size=272
    Bucket 2 size=528
    Bucket 3 size=1040
    Bucket 4 size=2064
    Bucket 5 size=4112
    Bucket 6 size=16400
    Bucket 7 size=32784
    Total free space = 24
    UNPINNED RECREATABLE CHUNKS (lru first):
    PERMANENT CHUNKS:
    Chunk 1051abc sz= 24 perm "perm " alo=24
    Permanent space = 24
    Hla: 255
    Process after data load is in progress..

    Hi,
    Check the below link:
    http://www.tek-tips.com/viewthread.cfm?qid=938138&page=6
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com/

Maybe you are looking for

  • How to use airport time capsule with multiple computers?

    I'm sure there are some thread about this but i couldn't find it... so sorry for that but hear me out! =) I bought the AirPort Time Capsule to back up my MBP And so i did. then i thought "let give this one a fresh start" so i erased all of it with th

  • Why do all my programs keep crashing after the most recent apple update?

    Everything keeps crashing after i made an update on saturday. Anyone else having this issue, anyone know of any solutions. Safari, Chrome, all adobe products keep crashing. Very frustrating as today is a work day and have not been able to get anythin

  • A Bug I haven;t Seen Mentioned

    Also, I reported it to Adobe. Here it is: I run F-Secure Firewall and Anti-virus s/w. When you use the LR Upload in the Web Module and the F-Secure is running, the photos and other files get truncated [at least some of them, not consistent]. I was tu

  • Is there any way to set "Scale stroke"

    does the document have a property that can be set to true or false for scale stroke? I didn't see it in the documentation, maybe there is another way?

  • Inhouse repair Integration

    Hi I;m trying to use CRM Service with ERP without Controlling, I set the option No Controlling inteh Controlling Scenario config, but i don't found any documentation about limititations or not. I can do the Return and delivery equipment process in ER