Working with OracleParameters - Any Help?

Hi,
I created a stored procedure with 3 IN parameters(out of 2 are single value,3rd one is pl/sql table) and 1 OUT Parameter (of PLSQL Table Return type).
I want take the SP results in VB.NET. i used plsql associative arrays, but i am getting error as
'OracleParameter.Value is Invalid.'
How to set parameter.size for the Output value.. I don't know exactly how many rows will be retrieved.
How to use oracleparametercollection.
How to return cursors from the plsql table.( gone through the asktom article. but i am unable to follow it. getting error as expression is of wrong type.)
Here the stored procedure that i have written which is a wrapper for another procedure( and that procedure working properly in oracle).
PL/SQL Procedure
procedure Storage_Charges_with_prd(LotNo IN Number,CurrDate IN Date,m_prd IN products_table_t,charges_table out storage_charges_table) is
     m_products pkg_coldstorage.products_type;
     type curProducts is REF CURSOR ;
     cv_products curProducts;     
     -- type strgchgs is table of storage_charges_rec index by binary_integer;
     --charges_table storage_charges_table;
     prd_table products_table_t;
     m_SNo Number:=1;
     output_cursor SYS_REFCURSOR;
BEGIN
     For m_SNo in 1..m_prd.Count
     LOOP
          prd_table(m_SNo):=m_prd(m_SNo);
     END LOOP;
charges_table:= pkg_coldstorage.CALCULATE_STORAGE_CHARGES1(Lotno,CurrDate,prd_table);
     --return charges_table;
dbms_output.put_line('Charges Table Row Count In - Storage Charges with Product Procedure ' ||charges_table.count);
-- Open output_cursor For Select * From table(charges_table );
END Storage_Charges_with_prd;
in VB.NET - the Codings are
Dim mLotno, mCurrDate, SNo, Transid, ProductId, UnitId, ProductName, Unit_Name, Calculation_Method, Season_start_date, season_end_date, labour, Storage_Rate, Seasonal_Storage_Rate As New OracleParameter()
mLotno.OracleDbType = OracleDbType.Decimal
mCurrDate.OracleDbType = OracleDbType.Date
mLotno.Value = LotNo
mCurrDate.Value = CurrDate
mLotno.Size = 1
mCurrDate.Size = 1
SNo.CollectionType = OracleCollectionType.PLSQLAssociativeArray
Transid.CollectionType = OracleCollectionType.PLSQLAssociativeArray
ProductId.CollectionType = OracleCollectionType.PLSQLAssociativeArray
UnitId.CollectionType = OracleCollectionType.PLSQLAssociativeArray
ProductName.CollectionType = OracleCollectionType.PLSQLAssociativeArray
Unit_Name.CollectionType = OracleCollectionType.PLSQLAssociativeArray
Calculation_Method.CollectionType = OracleCollectionType.PLSQLAssociativeArray
Season_start_date.CollectionType = OracleCollectionType.PLSQLAssociativeArray
season_end_date.CollectionType = OracleCollectionType.PLSQLAssociativeArray
labour.CollectionType = OracleCollectionType.PLSQLAssociativeArray
Storage_Rate.CollectionType = OracleCollectionType.PLSQLAssociativeArray
Seasonal_Storage_Rate.CollectionType = OracleCollectionType.PLSQLAssociativeArray
SNo.Direction = ParameterDirection.Input
Transid.Direction = ParameterDirection.Input
ProductId.Direction = ParameterDirection.Input
ProductName.Direction = ParameterDirection.Input
Unit_Name.Direction = ParameterDirection.Input
Calculation_Method.Direction = ParameterDirection.Input
Season_start_date.Direction = ParameterDirection.Input
season_end_date.Direction = ParameterDirection.Input
labour.Direction = ParameterDirection.Input
Storage_Rate.Direction = ParameterDirection.Input
Seasonal_Storage_Rate.Direction = ParameterDirection.Input
SNo.OracleDbType = OracleDbType.Decimal
Transid.OracleDbType = OracleDbType.Decimal
ProductId.OracleDbType = OracleDbType.Decimal
ProductName.OracleDbType = OracleDbType.Varchar2
Unit_Name.OracleDbType = OracleDbType.Varchar2
Calculation_Method.OracleDbType = OracleDbType.Decimal
Season_start_date.OracleDbType = OracleDbType.Date
season_end_date.OracleDbType = OracleDbType.Date
labour.OracleDbType = OracleDbType.Decimal
Storage_Rate.OracleDbType = OracleDbType.Decimal
Seasonal_Storage_Rate.OracleDbType = OracleDbType.Decimal
Dim msno(ProductRates.Rows.Count) As Decimal
Dim mtransid(ProductRates.Rows.Count) As Decimal
Dim mproductid(ProductRates.Rows.Count) As Decimal
Dim mproductname(ProductRates.Rows.Count) As String
Dim munit_name(ProductRates.Rows.Count) As String
Dim mcalculation_method(ProductRates.Rows.Count) As Decimal
Dim mseason_start_date(ProductRates.Rows.Count) As Date
Dim mseason_end_date(ProductRates.Rows.Count) As Date
Dim mlabour(ProductRates.Rows.Count) As Decimal
Dim mstorage_rate(ProductRates.Rows.Count) As Decimal
Dim mseasonal_storage_rate(ProductRates.Rows.Count) As Decimal
For i As Integer = 0 To ProductRates.Rows.Count - 1
msno(i) = ProductRates.Rows(i).Item("SNo")
mtransid(i) = ProductRates.Rows(i).Item("transid")
mproductid(i) = ProductRates.Rows(i).Item("Productid")
mproductname(i) = ProductRates.Rows(i).Item("ProductName")
munit_name(i) = ProductRates.Rows(i).Item("Unit_Name")
mcalculation_method(i) = ProductRates.Rows(i).Item("Calculation_Method")
mseason_start_date(i) = ProductRates.Rows(i).Item("Season_start_date")
mseason_end_date(i) = ProductRates.Rows(i).Item("season_end_date")
mlabour(i) = ProductRates.Rows(i).Item("labour")
mstorage_rate(i) = ProductRates.Rows(i).Item("Storage_Rate")
mseasonal_storage_rate(i) = ProductRates.Rows(i).Item("Seasonal_storage_rate")
Next
SNo.Value = msno
Transid.Value = mtransid
ProductId.Value = mproductid
ProductName.Value = mproductname
Unit_Name.Value = munit_name
Calculation_Method.Value = mcalculation_method
Season_start_date.Value = mseason_start_date
season_end_date.Value = mseason_end_date
labour.Value = mlabour
Storage_Rate.Value = mstorage_rate
Seasonal_Storage_Rate.Value = mseasonal_storage_rate
'-- Set the Size
SNo.Value = ProductRates.Rows.Count
Transid.Value = ProductRates.Rows.Count
ProductId.Value = ProductRates.Rows.Count
ProductName.Value = ProductRates.Rows.Count
Unit_Name.Value = ProductRates.Rows.Count
Calculation_Method.Value = ProductRates.Rows.Count
Season_start_date.Value = ProductRates.Rows.Count
season_end_date.Value = ProductRates.Rows.Count
labour.Value = ProductRates.Rows.Count
Storage_Rate.Value = ProductRates.Rows.Count
Seasonal_Storage_Rate.Value = ProductRates.Rows.Count
''-- Set the Array Bind Size For Unitname, Productname
'Dim arr1(ProductRates.Rows.Count) As Integer
'Dim arr2(ProductRates.Rows.Count) As Integer
'For i As Integer = 0 To ProductRates.Rows.Count - 1
' arr1(i) = 50
' arr2(i) = 50
'Next i
'ProductName.ArrayBindSize = arr1
'Unit_Name.ArrayBindSize = arr2
Dim daStorageCharges As New OracleDataAdapter("pkg_coldstorage.storage_charges_with_prd", DbCn)
daStorageCharges.SelectCommand.CommandType = CommandType.StoredProcedure
With daStorageCharges.SelectCommand.Parameters
.Add(mLotno)
.Add(mCurrDate)
.Add(SNo)
.Add(Transid)
.Add(ProductId)
.Add(ProductName)
.Add(Unit_Name)
.Add(Calculation_Method)
.Add(Season_start_date)
.Add(season_end_date)
.Add(labour)
.Add(Storage_Rate)
.Add(Seasonal_Storage_Rate)
End With
Dim oSNo, oTransID, oTransDate, oProductID, oProductName, oUnitID, oUnitName, oQtyIn, oQtyOut, _
oBalanceQty, oWtIn, oWtOut, oBalanceWt, oLabour, oLabourAmount, oStorageRate, oStorageAmount, oTotal As New OracleParameter
oSNo.OracleDbType = OracleDbType.Decimal
oTransID.OracleDbType = OracleDbType.Decimal
oTransDate.OracleDbType = OracleDbType.Date
oProductID.OracleDbType = OracleDbType.Decimal
oProductName.OracleDbType = OracleDbType.Varchar2
oUnitID.OracleDbType = OracleDbType.Decimal
oUnitName.OracleDbType = OracleDbType.Varchar2
oQtyIn.OracleDbType = OracleDbType.Decimal
oQtyOut.OracleDbType = OracleDbType.Decimal
oBalanceQty.OracleDbType = OracleDbType.Decimal
oWtIn.OracleDbType = OracleDbType.Decimal
oWtOut.OracleDbType = OracleDbType.Decimal
oBalanceWt.OracleDbType = OracleDbType.Date
oLabour.OracleDbType = OracleDbType.Decimal
oLabourAmount.OracleDbType = OracleDbType.Decimal
oStorageRate.OracleDbType = OracleDbType.Decimal
oStorageAmount.OracleDbType = OracleDbType.Decimal
oTotal.OracleDbType = OracleDbType.Decimal
oSNo.Direction = ParameterDirection.Output
oTransID.Direction = ParameterDirection.Output
oTransDate.Direction = ParameterDirection.Output
oProductID.Direction = ParameterDirection.Output
oProductName.Direction = ParameterDirection.Output
oUnitID.Direction = ParameterDirection.Output
oUnitName.Direction = ParameterDirection.Output
oQtyIn.Direction = ParameterDirection.Output
oQtyOut.Direction = ParameterDirection.Output
oBalanceQty.Direction = ParameterDirection.Output
oWtIn.Direction = ParameterDirection.Output
oWtOut.Direction = ParameterDirection.Output
oBalanceWt.Direction = ParameterDirection.Output
oLabour.Direction = ParameterDirection.Output
oLabourAmount.Direction = ParameterDirection.Output
oStorageRate.Direction = ParameterDirection.Output
oStorageAmount.Direction = ParameterDirection.Output
oTotal.Direction = ParameterDirection.Output
'Dim prdarr() As Integer
'Dim unitarr() As Integer
'for i as Integer = 0 to
'Next i
With daStorageCharges.SelectCommand.Parameters
.Add(oSNo)
.Add(oTransID)
.Add(oTransDate)
.Add(oProductID)
.Add(oProductName)
.Add(oUnitID)
.Add(oUnitName)
.Add(oQtyIn)
.Add(oQtyOut)
.Add(oBalanceQty)
.Add(oWtIn)
.Add(oWtOut)
.Add(oBalanceWt)
.Add(oLabour)
.Add(oLabourAmount)
.Add(oStorageRate)
.Add(oStorageAmount)
.Add(oTotal)
End With
'Dim a As OracleParameterCollection
Dim dtstoragecharges As New DataTable
daStorageCharges.Fill(dtstoragecharges)
tried with reader but unable.
please provide any example. so that i will use it.
Please provide any help
Thanks in Advance
Mohan Raj K.

@Eric
I am a pl/sql noob, but I did manage to retrieve a ref_cursor via .net as follows:
CREATE or REPLACE PACKAGE myVars AS
TYPE CommonCurTyp is REF CURSOR;
--my test server is 8i need to define cursor in a package
END;
CREATE OR REPLACE PROCEDURE jtest(
                    v_repaircur OUT myVars.CommonCurTyp
IS
BEGIN
OPEN v_repaircur FOR
SELECT * FROM BLAH;
END;
--vb.net code:
dbConn.Open()
Dim selectCommand As New OracleCommand("jtest", dbConn)
selectCommand.CommandType = CommandType.StoredProcedure
selectCommand.Parameters.Add(New OracleParameter("v_repaircur", OracleDbType.RefCursor)).Direction = ParameterDirection.Output
Dim adapter As New OracleDataAdapter(selectCommand)
adapter.TableMappings.Add("Table", "repair_codes")
Dim ds As New DataSet
adapter.Fill(ds) 'boom! here's yer dataset
dbConn.Close()
with some minor hacking, you should be able to get it, HTH

Similar Messages

  • Hi i been try to minimise few app like safari,Ical etc etc from the fullscreen view but didn't manage to find any solution!! With the command   M shortcuts didn't work...any help???

    Hi i been try to minimise few app like safari,Ical etc etc from the fullscreen view but didn't manage to find any solution!! With the command   M shortcuts didn't work...any help???

    To make a screen full screen, you click on the arrows in the upper right corner.  To minimize, move your cursor all the way to the upper right corner of your desktop--give it a second--a symbol will appear that lets you "reverse" the action and minimize the window.  Hope I'm explaining this correctly. 

  • Mac Mail Issue: I was having trouble sending to hotmail accounts from my Earthlink account, they had me go into Mac Mail preferences and make changes, now Mac Mail doesn't work AT ALL - any help changing the settings back to correct Mac Mail settings? I c

    I was having trouble sending to hotmail accounts from my Earthlink account, they had me go into Mac Mail preferences and make changes (because they claimed it was Mac Mail's fault, even though the hotmail error code said it's because Earthlink is blocked by hotmail), now Mac Mail doesn't work AT ALL - any help changing the settings back to correct Mac Mail settings? I can provide a transcript of the entire tech chat session, if that will help...

    both apostrophes are used correctly, thanks
    doesn't = does not (this is called a contraction)
    it's = it is
    Mac Mail's fault = possessive
    any help with the actual issue? thanks!

  • ITunes recognizes my device but the device does not show up for me to work with.  Any idea where I go to access to device in iTunes.  Going to File/Device is greyed out.

    iTunes recognizes my device but the device does not show up for me to work with.  Any idea where I go to access to device in iTunes.  Going to File/Device is greyed out.

    I think this article will help you.

  • My imessage isn't working when i send messages to people with iphones that have imessage it works with very few people, now it's starting to stop working with those people. help please.

    my imessage doesn't work between my friends and i. i have a new iphone 5. my messages only work with some people. with others imessage doesn't work in the first place and now its starting to stop working with other people help please.
    & yes we all have imessage on.

    Hi there,
    I see that you are having IMessage problems. Some of the problems might be:
    - Your friends IMessage is not activated (you have to activiate it with your apple id)
    - Your IMessage is not activated
    Here is some links to another person`s Imessage problems:
    https://discussions.apple.com/message/17301880#17301880
    https://discussions.apple.com/message/20142285#20142285
    https://discussions.apple.com/message/18988318#18988318
    Hope that helps!

  • My factory unlocked iphone 4s mms is not working with tmobile, please help...

    my factory unlocked iphone 4s mms is not working with tmobile, please help...

    Check out this link. It should fix the problem
    http://support.t-mobile.com/thread/17918?tstart=0

  • I bought win 8.1 to unstall, but my dvd player/disk wasn't recognized. I then copied it to flash drive in the ISO mode and it still wouldn't work  ...any help?

    I bought win 8.1 to unstall, but my dvd player/disk wasn't recognized. I then copied it to flash drive in the ISO mode and it still wouldn't work  ...any help?

    If you are trying to install Windows on your Mac, that way won't work.
    Read the entire manual before proceeding >   manuals.info.apple.com/MANUALS/1000/MA1636/en_US/boot_camp_install-setup_10.8.pd f\
    The Boot Camp setup assistant is located in your Applications > Utilites folder.

  • Why has my ipad mini stopped connecting with my iPhone 4S? I used to use it to download books, or transfer emails to my ipad mini. It was fine 3 days ago, now I get a message saying " cannot join with iPhone" Any help greatly appreciated.

    Why has my ipad mini stopped connecting with my iPhone 4S? I used to use it to download books, or transfer emails to my ipad mini. It was fine 3 days ago, now I get a message saying " cannot join with iPhone" Any help greatly appreciated.

    You can try resetting your iPad and iPhone by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • Password protected home Wi-Fi not working with iPhone. Help.

    I will try to make this short and to the point. My phone will detect the home network, ask me for the password, join it, and show the wifi icon, full to the top.
    But it doesn't allow for surfing the net/sending email. It also doesn't show the ip address and such info in the networking section.
    My wifi works all other places, even two others that are PW protected.
    I can normally troubleshoot my way out of these issues and I know a little bit about this kinda thing to solve the issue, but I am stumpted. Any help or similar experiences shared here would be appreciated.

    If nothing is goin yourway and you have done the basic troubleshooting tasks, then all is left for you to resolved this issue is to do a restore, everything will be fine and working after that.
    I had the exact same problem with an iPhone - a swift restore solved everything and everything is happy ever after.

  • Quicktime only works with iTunes - Please help!!!

    if I have iTunes installed on my computer with the quicktime, quicktime will not work when viewing videos that are sent to me via email or on places like myspace. It is just a white screen with a Q and a ? mark. What is causing this problem? In order to view those videos I have to uninstall quicktime and then to listent to my iTunes I have to reinstall it.

    Ok I've followed countless random post instructions, uninstalled and reinstalled both iTunes and Quicktime multiple times, cleaned the registry, temp files, documents and settings, program files, etc. and Quicktime 7 still crashes. What in the **** is the deal here? I have to believe that this is a problem with a straightforward solution. Quicktime used to work fine. There are only two possible problems here:
    1) Some remnant of an old Quicktime install is screwing me up. This should not be this hard to rectify, there are a finite number of places Quicktime puts files. Is there any folder I haven't checked?
    2) Some odd glitch allowed me to successfully run QT7 before but now, for whatever reason, my setup has changed in some way I'm not noticing and its now no longer working. In this case there still must be some solution since the problem is very specific: Works with directx disabled, doesn't with directx enabled.
    I sincerely appreciate these forums and everyone who takes the time to read them and help users like me. Still, am I missing some place where I can get a solid official answer from Apple on this? I paid for pro, and that doesn't even get me a support email address?

  • Xcelsiues 2008, working with live data help!!!

    Ok, so i have flynet designer for web services. All this is working correctly. i have setup a test query just to check everything is working so i just pulled out some customer info name, account number etc. I generated the webservice succesfully and i can browse to the website and enter a parameter and it returns results. So i know this part is working ok.
    So now im in xcelsius 2008, i add a new web service connection and it connects fine, at this point you have to select the cells where you want the data to go in the little excel spreadsheet panel. but nothing ever appears!!!!??? i dont know what i am doing wrong. has anyone had experience working with live data?

    In terms of timescale. I have till April to do this.
    I said 2 months cos things always come up. So, in terms of your application have you already:
    collected user requirements?
    developed and tested an appropriate database structure (tables, datatypes, triggers, views, etc...)?
    done any mock-up of some sort of the application pages and business process flows?
    gotten approval of any of the above?
    If you have all of this yet to complete - and you're new to databases, new to Oracle and new to HTML DB, and have more than a very simple application (10-15 pages) you may still be in over your head with this project.
    I'm not trying to discourage you from using HTML DB at all. It's a great tool and you can do some very cool stuff with it. And it's reputation as an Access killer is well deserved. It's just that you may not want to take on a critical time-sensitive project as your first.
    Also to consider - are you going to have anyone else helping out with it? If so, what strengths/weaknesses does that person bring to the project? Is it going to help you move faster? Or slow you down - because you're training and developing at the same time?
    Earl

  • Working with delegations ---- basics help

    Hi All,
    Can anyone please let me know how exactly to work with delegations.....
    Any code or explanations will be really helpful......
    eg. I need to know how exactly to delegate an approval process... what tags to be used... and where it needs to be placed....
    I am sorry if that is too much of questions ....... pls help.....

    @Eric
    I am a pl/sql noob, but I did manage to retrieve a ref_cursor via .net as follows:
    CREATE or REPLACE PACKAGE myVars AS
    TYPE CommonCurTyp is REF CURSOR;
    --my test server is 8i need to define cursor in a package
    END;
    CREATE OR REPLACE PROCEDURE jtest(
                        v_repaircur OUT myVars.CommonCurTyp
    IS
    BEGIN
    OPEN v_repaircur FOR
    SELECT * FROM BLAH;
    END;
    --vb.net code:
    dbConn.Open()
    Dim selectCommand As New OracleCommand("jtest", dbConn)
    selectCommand.CommandType = CommandType.StoredProcedure
    selectCommand.Parameters.Add(New OracleParameter("v_repaircur", OracleDbType.RefCursor)).Direction = ParameterDirection.Output
    Dim adapter As New OracleDataAdapter(selectCommand)
    adapter.TableMappings.Add("Table", "repair_codes")
    Dim ds As New DataSet
    adapter.Fill(ds) 'boom! here's yer dataset
    dbConn.Close()
    with some minor hacking, you should be able to get it, HTH

  • KeyListenerr...doesnt work...any help?

    hi im new and running this simple code trying to learn use KeyListener...so any help is appreciated
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class keyboard11 extends Applet implements KeyListener {
         String S;
         char c;
         public void init()      {
              System.out.println("inside\n");               //test
              addKeyListener(this);
              requestFocus();
              System.out.println("outside\n");              //test
         }          //-----------END OF INIT() ----------------------------
    public void KeyPressed(KeyEvent e)     {
              System.out.println("its working!!\n");                 //test
              S = e.getKeyText(e.getKeyCode());
              showStatus("Pressed  S="+S);
              System.out.println("wooooooooorks\n");             //test
              repaint();
         }          //----------END OF KEYPRESSED() -----------------------     
    }               //-----------END OF THE CLASS() ------------------------also i try to use KeyTyped() and Keyreleased() but its the same with KeyPressed() so have to handle with this first...thnx for the help :)

    The correct name for your method is ->keyPressed. Java is case sensitive. ("k" needs to be written downcase)
    Edited by: AikmanAgain on Mar 8, 2008 1:35 PM

  • I have 4S, the Syns not working...Any help please ...iPhone & iTunes are up 2 date any help ?

    Any help please..?

    All the contacts sync configuration has been done, first I configured the iTunes to sync with outlook but nothing happen, then change to Gmail but same.
    My contacts on my iPhone, no contacts in outlook.
    No error msg

  • Issues with styles: any help gratefully received!

    Hi all!
    I made the [perhaps reckless!] decision to use Pages as my primary word processing software for my PhD. I found a great bibliographic editor [Sente], and liked the look and feel of Pages.
    Now, 6 months, and about 10,000 words in, I am still broadly happy with my decision: apart from one thing that drives me mad! Any help would be appreciated.
    Say I copy text, for example, from the main body to a footnote. The source style is retained. No problem. So, I highlight the text and then click on one of the stlyes in my style draw. In this example, the "footnote" style I have defined. Now.... it just doesnt seem to do this operation smoothly. In this case..... it never applies the font size of the style I choose to change it to. Its driving me nuts! And when I copy text from another source into the main body, and then highlight and select a style from the draw to change... it seems to want to keep the source file, or change it to helvetica, and ignore my styles.
    This is really driving me mad, and I am thinking I should transfer all my documents to Word 2008 [which I own], but I really like Pages, and dont want to have to do this if at all possible.
    Any suggestions?
    Cheers!
    Stevie

    http://discussions.apple.com/thread.jspa?threadID=1643118&tstart=15
    +-+-+-+-+-+-+-+-+
    Worried Life Blues 2008
    +4. Discussions+
    +Apple Discussions, launched in August, 2000, have grown rapidly in usage and features. The main features include personalization, subscription capabilities and email capabilities. _For information on how to use Discussions, please visit the Discussions Help Page_. Cookies should be enabled and an Apple ID account is required if you would like to contribute to the discussions.+
    +Entering the Help and Terms of Use area you will read:+
    +*What is Apple Discussions and how can it help me?*+
    +
    Apple Discussions is a user-to-user support forum where experts and other Apple product users get together to discuss Apple products. … You can participate in discussions about various products and topics, find solutions to help you resolve issues, ask questions, get tips and advice, and more.+
    +_If you have a technical question about an Apple product, be sure to check out Apple's support resources first by consulting the application Help menu on your computer and visiting our Support site to view articles and more on our product support pages._+
    +*I have a question or issue*—+
    +how do I search for answers? _
    It's possible that your question or issue has already been answered by other members so do a search before posting a question._ On most Apple Discussions pages, you'll find a Search Discussions box in the upper right corner. Enter a search term (or terms) in the field and press Return. Your results will appear as a list of links to posts below the Search Discussions Content pane.+
    +Search tips are available here:+
    +http://discussions.apple.com/help/search-tips.html+
    +-+-+-+-+-+-+-+-+
    Yvan KOENIG (from FRANCE lundi 4 août 2008 12:27:57)

Maybe you are looking for