Diff 8i and 9i

Hi all
what is the diff b/n 8i and 9i (oracle) in the view of a programmer?
can any one help me

The following sections in the manuals might help you to get an overview:
Oracle9i Database New Features
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96531/toc.htm
PL/SQL User's Guide and Reference
http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96624/whatsnew.htm#967650
Oracle9i SQL Reference
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/wnsql.htm#971925

Similar Messages

  • I am trying to insert rows for alert_id 22 with diff abc_id and xyz_id

    I am trying to insert rows for alert_id 22 with diff abc_id and xyz_id
    these inserts will store in two tables that I have to join in the cursor.
    I have written cursor without passing cursor parameters. but here i need to pass acb_id and xyz_id along with alert_id.
    then if these are saticified with alert_id 22 then I want to stop the loop run, else i need to continue the loop. bcause the abc_id and xyz_id are diff for alert_id 22
    This is the issue I am facing!
    Please let me know if you have any idea. Let me know how to use cursor parameters here and in loop.
    Sample proc like this::
    Declare
    main_cursor
    another_cur
    alert_cur
    begin
    need to check first abc_id,xyz_id is already exist with alert_id 22
    if this set of records already exists then
    exit from the loop
    else
    continue with
    loop
    here coming the insert statements with different condition getting from first two cursors.(this part is ok for me)
    end loop
    end if
    Please write the logic if any idea on this.
    -LRK

    I want to stop if already alert_id is exist!

  • How to differ ammount and paid amount

    Hi ALL,
    how to differ ammount and paid amount IN A/R INVOICE
    BSID-DMBTR THIS IS AMOUNT, LIKE THAT TABLE FIELD PAID AMOUNT TABLE FIELD.
    THANKS
    RAM

    Here is two way.
    Normally SAP will store the amount document before clearing(paid) and after clearing in different table.
    E.G. for the vendor payment invoice, before clearing is stored in BSIS, after clearing it stored in BSAK.
    And you can also differentiate them by BSEG.
    Check the field BSEG-AUGDT BSEG-AUGCP BSEG-AUGBL will be filled after clearing. And if BSEG-XRAGL set, this clearing has been cancelled.
    hope it will be helpful
    thanks

  • How can I fix this permissions "Library/Printers-should be 80 group is 0. Permissions differ. And User differs on "private/var/db/displaypolicyd" should be 0; Group is 244?

    How can I fix this on my 2014 iMac, please?
    Verifying permissions for “Macintosh HD”Group differs on “Library/Printers/InstalledPrinters.plist”; should be 80; group is 0.Permissions differ on “Library/Printers/InstalledPrinters.plist”; should be -rw-rw-rw- ; they are -rw-r--r-- .User differs on “private/var/db/displaypolicyd”; should be 0; user is 244.Group differs on “private/var/db/displaypolicyd”; should be 0; group is 244.
    I run the "fix" and it seemingly does, but if I verify permissions again later it returns.
    Thank you!

    It's not an error but an informative message that you can safely ignore. it's innocuous.

  • Wht is the diff enhancement  and implementation  project

    hi all,
            what is the diff between enhancement project and
    implementation project, and as we use ASAP methedology for
    implementaion, what is the project scenario for enhancment
    projects.
    what is P2 in support projects, what r the types of tickets we have in support projects.
    thnx in advance

    hi,
    enhancement project - > already existing system. we are adding some new functionalities into that.
    scenario -> addition of a new market.
    adding the pension scheme to existing pat roll system
    Implementation proj - >  from the scratch we r developing a new system.
    going to do the  whloe buissines in SAP.
    rgds
    anver
    if hlped mark points
    scenario - >

  • DIFF : ALE AND EDI

    HI,
            WHAT IS THE DIFF B/W ALE AND EDI.
    THANK YOU
    ASHOK KUMAR

    Hi Asohk,
    1)EDI
    Electronic Data Interchange
    Cross-company exchange of electronic data (for example business documents) between domestic and international business partners who use a variety of hardware, software, and communication services. The data involved is formatted according to predefined standards. In addition to this, SAP ALE technology is available for data exchange within a company.
    Refer
    http://www.erpgenie.com/sapedi/index.htm
    2) ALE
    A means of creating and operating distributed applications.
    Application Link Enabling (ALE) guarantees a distributed, but integrated, R/3 installation. This involves business-controlled message exchange using consistent data across loosely linked SAP applications.
    Applications are integrated using synchronous and asynchronous communication - not by using a central database.
    ALE consists of the following layers:
    Application services
    Distribution services
    Communication services
    Refer
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    Thanks,
    Reward If Helpful.

  • Diff: ULINE and SY-ULINE

    Hi,
    I would like to know the difference between the ULINE and SY-ULINE.
    Kindly help me out.
    Regards,
    Kalaivani

    ULINE.
    - Writes a continuous underline in a new line.
    ULINE AT pos.
    Writes an underline, starting at position pos with a particular length.
    The position and length specification can have three parts:
    / New line
    p Output position (1-3 digit number or variable)
    (l)Output length (1-3 digit number or variable)
    You can omit any of these.
    If the position and length specification pos contains only direct values and no variables, you can omit the introductory AT.
    The statement ULINE AT 3(10).
    corresponds to WRITE AT 3(10) SY-ULINE.

  • Select two diff fields and storing them in two variable in a same query ?

    Hello,
    i have a join query and i am selecting fields from different table(one field is the material number and second is bsad-wrbtr, on which i am doing the SUM). Now i cant store material number in a variable, cause i will be getting many material numbers(against 'vbeln') and sum( bsad-wrbtr ) will be stored collectively in a variable.
    Shud i be using an internal table to store both of them ? , cause i have to display all the material numbers retrieved . If yes, the how ? what will be the query like ?
    My current select/join query is,
      select  sum( bd~wrbtr ) into l_cramt
        from ( ( bsis as bs
                  inner join bsad as bd on bs~bukrs = bd~bukrs and
                                           bs~belnr = bd~augbl and
                                           bs~bldat = bd~augdt )
                  inner join vbrp as vb on vb~vbeln = bd~belnr )
        where bs~blart = 'DZ' and bs~hkont = p_hkont.
    Waiting for your replies, thank..
    Shehryar Dahar

    Hi,
    If you want to have a list of materials and sum for each of them try this:
    types: begin of t_list,
                matnr like vbrp-matnr,
                wrbtr like bsad-wrbtr,
             end of t_list.
    data: i_list type table of t_list.
      select  vbmatnr sum( bdwrbtr ) into table i_list
        from ( ( bsis as bs
                  inner join bsad as bd on bsbukrs = bdbukrs and
                                           bsbelnr = bdaugbl and
                                           bsbldat = bdaugdt )
                  inner join vbrp as vb on vbvbeln = bdbelnr )
        where bsblart = 'DZ' and bshkont = p_hkont
        group by vb~matnr.
    If you want to have a sum for a given material try this:
      select  vbmatnr sum( bdwrbtr ) into (v_matnr, v_wrbtr )
        from ( ( bsis as bs
                  inner join bsad as bd on bsbukrs = bdbukrs and
                                           bsbelnr = bdaugbl and
                                           bsbldat = bdaugdt )
                  inner join vbrp as vb on vbvbeln = bdbelnr )
        where bsblart = 'DZ' and bshkont = p_hkont
        and vb~matnr = p_matnr.

  • Updated 3.6.9 was stalling. uninstalled reinstalled 3.6.8. now on 3.6.10 only browse about 6 diff searches and will freeze. somewhere in background firefox.exe process is using most of memery. its worked great for yrs had to go back to IE using XP Pro

    all said
    oh, when i need java for some pages it doesn't show. but not all the time.

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • Diff logical and physical doc

    Hello BW Experts,
    What is the difference between the logical and physical documents.
    Thanks,
    BWer

    hi BWer,
    take a look
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4e/668867df6a5c4591a4dc46631f5cc3/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/6c/69bd22418d11d1896e0000e8322d00/frameset.htm
    hope this helps.

  • Diff ws and gui upload

    difference between ws_upload and gui_upload

    hi sunil,
    WS_UPLOAD and WS_DOWNLOAD, the function modules used until now are not part of the standard set of ABAP commands. They are used to display the file interface on the presentation server. WS_UPLOAD and WS_DOWNLOAD are not compatible with USs and have been replaced by GUI_UPLOAD and GUI_DOWNLOAD.
    The new function modules, GUI_UPLOAD and GUI_DOWNLOAD, have an interface that also allows you to write Unicode format to the local hard drive. For a description of these interfaces, refer to the documentation for each function module, available under SAP Easy Access " Development " Function Builder " Goto " Documentation.
    Instead of using the function modules, you can use the static methods GUI_UPLOAD and GUI_DOWNLOAD of the global class CL_GUI_FRONTEND_SERVICES.
    ~~Guduri

  • How to validate when date format is diff Internally and externally

    Hello,
    How can I validate the Date format if Internal format and external format is different.
    Ex :
    *  SELECT SINGLE CRTSP
    **                FROM /SAPSLL/PR
    **                INTO L_CRTSP
    **                WHERE CRTSP IN S_CRTSP .
    CRTSP (YYYY/DD/MM HHMMSEC) Internal Format
    S_CRTSP (YYYY/DD/MM) External format - selection option
    I had done following to convert the internal format to external format.
    DATA : LV_DT TYPE STRING.
    DATA :  L_CRTSP TYPE /SAPSLL/CRTSP.
    SELECT SINGLE CRTSP
                    FROM /SAPSLL/PR
                    INTO L_CRTSP.
    MOVE : L_CRTSP TO LV_DT. "(YYYY/DD/MM HHMMSEC)
    L_LEN = STRLEN( LV_DT ).
    L_DATE = LV_DT+0(8).
    I have the date format that i need in L_DATE."  (YYYY/DD/MM)
    Now how should I validate?
    *  SELECT SINGLE CRTSP
    **                FROM /SAPSLL/PR
    **                INTO L_CRTSP
    **                WHERE CRTSP IN S_CRTSP .
    Please let me know how can I validate or how can I write the select query to validate this field.
    There should be some way using Wildcard or some function module...which I am not sure...
    Any suggestions will be appreciated!
    Regards,
    Kittu
    Edited by: Kittu on Jan 6, 2009 12:58 PM

    Hello,
    Thank you for youe response and I apprecaite the help so far.
    This logic work if it is Parameter...When I have select option it is not working as it is not taking the range values...
    SELECT GUID_PR "Primary Key as GUID in "RAW" Format
    CRTSP "PRODUCT CREATED ON
    CHTSP "PRODUCT CHANGED ON
    FROM /SAPSLL/PR
    INTO TABLE T_PR.
    DATA : T_PR1 TYPE TY_PR OCCURS 0 WITH HEADER LINE.
    DATA:  W_TEST    TYPE STRING,
           W_LV_LEN  TYPE I,
           W_LV_LEN1 TYPE I,
           W_LV_DATE(20)  TYPE C,
           W_LV_DATE1(20) TYPE C.
    DATA : W_V(8) TYPE C,
           S_CT(11) TYPE C.
    SORT T_PR BY CRTSP CHTSP.
    LOOP AT T_PR INTO WA_PR.
      W_TEST = WA_PR-CRTSP.
      W_LV_LEN = STRLEN( W_TEST ).
      W_LV_DATE = W_TEST+0(8).
    ** IF WE SELECT ONLY ONE DATE IN SELECT OPTION
    s_crtsp VALUE IS - IEQ20040101..bY REMOVING FIRST THRID DIGITS
    WE ARE GETTING THE S_CRTSP VALUE IS 20040101 AND THIS LOGIC IS WORKING FINE..
       MOVE S_CRTSP TO S_CT.
      W_LV_LEN1 = STRLEN( S_CT ).
      W_LV_DATE1 = S_CT+3(8).
    *  IF W_LV_DATE NE S_CRTSP
    IF W_LV_DATE NE W_LV_DATE1.
      W_FLG = 'X'.
        DELETE T_PR INDEX SY-TABIX.
      ENDIF.
      CLEAR W_FLG.
    ENDLOOP.
    Can we do anything for this...
    ANy suggestions would be apprecaited!
    Regards,
    Kittu

  • Diff Amt and Qty Zero while doing POS sales transactions.

    Hi ,
    This is specific to IS retail.
    Scenario : The POS system has done a sale for Rs 25  and return of the same article at Rs 21.
    When the aggregated info is sent from the POS system ( through WPUUMS IDoc), it says Quantity is Zero  and Amount is Rs 4.
    The Idoc is going in a hang state ( Yellow Color). The reason is i think, since thq quantity is zero, it is not able to post it.
    Pls let me know how to handle it.
    Thanks
    Prasad
    Edited by: jiddu prasad on Dec 27, 2008 12:16 PM

    Dear Prasad,
    You can issue Credit Note for Sales Returns.
    Sales Return procedure:
    (a) Sales Return should come as a separate line item.
    (b) Sales Returns will be denoted by negative sales.
    (c) Sales qty in POS Inbound will be negative.     
    (d) Store will be credited for the amount of returns.
    (e) In case of credit note issue in lieu of returns will be uploaded as part of payment information with negative amount.
    Tracking of Credit Note should be done at POS level.
    Review SAP Note 406319
    Bye,
    Muralidhara

  • Diff  ws_upload and gui_upload

    The difference is that the DataProvider is used for the upload instead of GMUX.
    waht is dataprovider and GMUX?
    regards

    Hi,
    WS_* Function modules are replaced by GUI_* FMs from 4.7 SAP version.
    GUI_* modules have additional parameters when compared with WS_* FMs.
    Both FM are used for uploading data .
    But ws_upload is obsolete now .
    WS_UPLOAD and WS_DOWNLOAD, the function modules used until now are not part of the standard set of ABAP commands. They are used to display the file interface on the presentation server. WS_UPLOAD and WS_DOWNLOAD are not compatible with USs and have been replaced by GUI_UPLOAD and GUI_DOWNLOAD.
    The new function modules, GUI_UPLOAD and GUI_DOWNLOAD, have an interface that also allows you to write Unicode format to the local hard drive. For a description of these interfaces, refer to the documentation for each function module, available under SAP Easy Access " Development " Function Builder " Goto " Documentation.
    WS_UPLOAD, GUI_UPLOAD FMs are used in BDCs.
    WS_UPLOAD loads files from the Presentation Server to Internal ABAP Tables.
    This is used upto SAP 4.6 version.
    GUI_UPLOAD is used to loads a file from the PC to the server. The data can be
    transferred in binary or text format. Numbers and data fields can be
    interpreted according to the user settings.
    You can check this for some info
    http://help.sap.com/saphelp_erp2005/helpdata/en/79/c554a3b3dc11d5993800508b6b8b11/frameset.htm
    http://www.sapdevelopment.co.uk/file/file_otherpc.htm
    Regards,
    Priyanka.

  • Diff: DATA and TYPES

    Hi,
      what is the difference in creating internal table using DATA stm and TYPES stm?
    Thanks and Regards,
    Kalai

    Hi..,
    When u create itab with DATA ,, the initial memory will be allocated for the internal table ...( Here the object is created )
    But when with TYPES no memory will be created !!!( Here the object is not yet created, it just stores the type of the table..thats it )..
    again u need to define a table with DATA statement of this TYPE.
    Try this simple code..
    data w_value type i.
    w_value = 2.
    types w_value type i.
    w_value = 2.
    The first case is correct .. because w_value is a variable which has some memory and can store a value !!
    But the second case gives an error !!! because w_value doesnot have any memory !!! its type is just created , not the object..
    i hope u understood !!
    reward all helpful  answers,
    sai ramesh

Maybe you are looking for

  • How can I gather multiple copies of photos on various devices into one central repository?

    Various episodes over the years of making albums, assembling collections for export or import, migrating between machines, etc have resulted in multiple copies of images to be scattered, in some cases, in unexpected combinations on a couple of separa

  • Record stop and domain "in recovery" status.

    Hi, We have a Sun Management Center 3.6.1 in solaris 10, it's install to monitoring the SF25K hardware, it's configure an action by sending an email, into Hardware->Platform Config Reader->Domain->Status. Yesterday, the system generated 2 messages: "

  • I-Pad mail

    Just bought I Pad and synced it this weekend Now I have 3,389 messages in my mail, these go back months and were deleted from my computer or saved in a folder. I use Acer w/XP and AOL mail. How in the sam hill do I delete 3,389 messages w/o doing it

  • IPhone 4 New SIM Card?

    I was told that I need to purchase a new SIM card for the new iPhone 4 for it to work. Can't I just take out my current SIM card and put it in the new iPhone? That is what they did when my wife got her new iPhone 3GS last year.

  • REP-50125: Caught exception: org.omg.CORBA.OBJECT_NOT_EXIST:   minor code:

    i have a problem with the users who request a report, the following error appears REP-50125: Caught exception: org.omg.CORBA.OBJECT_NOT_EXIST: minor code: 0 completed: No i don have any idea, what it's mean. and sometimes only appears in some users,