Differences between R12 and 11i by module wise.

Hi All,
Could any one please give me the knowledge stack on "differences between R12 and 11i by module wise".
Thanks,
RED.

Please refer to:
Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404152.1
Oracle Applications Concepts
http://download.oracle.com/docs/cd/B40089_09/current/acrobat/120oacg.pdf
Note: 433111.1 - Release 12 File System Changes : R12 Vs 11i
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=433111.1
Edited by: hsawwan on Feb 6, 2009 7:12 PM -- Added couple of helpful links/notes

Similar Messages

  • Differences between R12 and 11.5.9 in Oracle Learning Management Module

    Hi,
    I am into One Upgrade Project.
    I would like to know what are the differences between R12 and 11.5.9 in Oracle Learning Management and need to know any new Tables, Views, Forms and Reports got upgraded?.
    Thanks & Regards,
    Srinivasulu Vakati

    Hi Anders,
    Could you please explain me what is this SWAN Interface ?
    Kind Regards,
    Naga Suresh. Challapalli (Naga)

  • Difference between poh and pov in module pool programming

    hi all,
                       pls tell me difference between poh and pov and how i check validation in screen

    Hi,
    POV gives you F4 help.
    like:
    You can call dialog modules in the POV event using the event keyword PROCESS ON VALUE-REQUEST.
    PROCESS ON VALUE-REQUEST.
      FIELD f MODULE mod.
    After the PROCESS ON VALUE-REQUEST statement, you can only use the MODULE statement together with the FIELD statement. When the user chooses F4 for a field f, the system calls the module mod belonging to the FIELD statement. If there is more than one FIELD statement for the same field f, only the first is executed. The module mod is defined in the ABAP program like a normal PAI module. However, the contents of the screen field f are not available, since it is not transported by the FIELD statement during the PROCESS ON HELP-REQUEST event. You can now program your own value lists in the module. However, this procedure is only recommended if it really is not possible to use a search help. Defining search helps is much easier than PROCESS ON VALUE-REQUEST, since the system takes over some of the standard operations, such as getting field contents from the screen. It also ensures that the F4 help has a uniform look and feel throughout the system. Furthermore, it means that you do not have to reassign input help to fields on each screen.
    Despite the introduction of search helps (and search help exits), there are still cases in which you need to use parts of the standard F4 functions directly. In this case, there are some standard function modules that you can use in the POV event. They support search helps, as well as all other kinds of input help, and are responsible for data transport between the screen and the input help. These alll  have the prefix F4IF_. The most important are:
    ·        F4IF_FIELD_VALUE_REQUEST
    Calls the input help of the ABAP Dictionary dynamically. You can pass the component names of a structure or database table of the ABAP Dictionary to the function module in the import parameters TABNAME and FIELDNAME. The function module starts the ABAP Dictionary input help for this component. All of the relevant screen fields are read. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user’s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead.
    ·        F4IF_INT_TABLE_VALUE_REQUEST
    This function module displays a value list that you created in an ABAP program. The self-programmed value list is passed to the function module as the table parameter VALUE_TAB. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user’s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead.
    There are also two function modules - DYNP_VALUES_READ and DYNP_VALUES_UPDATE - that can read the values of screen fields and return values to them during the POV event. For further information, refer to the relevant function module documentation.
    Input help in dialog modules
    REPORT demo_dynpro_f4_help_module.
    TYPES: BEGIN OF values,
             carrid TYPE spfli-carrid,
             connid TYPE spfli-connid,
           END OF values.
    DATA: carrier(3) TYPE c,
          connection(4) TYPE c.
    DATA: progname TYPE sy-repid,
          dynnum   TYPE sy-dynnr,
          dynpro_values TYPE TABLE OF dynpread,
          field_value LIKE LINE OF dynpro_values,
          values_tab TYPE TABLE OF values.
    CALL SCREEN 100.
    MODULE init OUTPUT.
      progname = sy-repid.
      dynnum   = sy-dynnr.
      CLEAR: field_value, dynpro_values.
      field_value-fieldname = 'CARRIER'.
      APPEND field_value TO dynpro_values.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE value_carrier INPUT.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
           EXPORTING
                tabname     = 'DEMOF4HELP'
                fieldname   = 'CARRIER1'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'CARRIER'.
    ENDMODULE.
    MODULE value_connection INPUT.
      CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                dyname             = progname
                dynumb             = dynnum
                translate_to_upper = 'X'
           TABLES
                dynpfields         = dynpro_values.
      READ TABLE dynpro_values INDEX 1 INTO field_value.
      SELECT  carrid connid
        FROM  spfli
        INTO  CORRESPONDING FIELDS OF TABLE values_tab
        WHERE carrid = field_value-fieldvalue.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield    = 'CONNID'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'CONNECTION'
                value_org   = 'S'
           TABLES
                value_tab   = values_tab.
    ENDMODULE.
    *POH gives you F1 documentation:*
    like:
    If data element supplement documentation is insufficient for your requirements, or you want to display help for program fields that you have not copied from the ABAP Dictionary, you can call dialog modules in the POH event:
    PROCESS ON HELP-REQUEST.
      FIELD  is defined in the ABAP program like a normal PAI module. The processing logic of the module must ensure that adequate help is displayed for the field in question. Instead of calling an extra screen with text fields, you should use one of the following function modules to display a suitable SAPscript document:
    HELP_OBJECT_SHOW_FOR_FIELD
    This function module displays the data element documentation for components of any structure or database table from the ABAP Dictionary. You pass the name of the component and structure or table to the import parameters FIELD and TABLE.
    HELP_OBJECT_SHOW
    Use this function module to display any SAPscript document. You must pass the document class (for example, TX for general texts, DE for data element documentation) and the name of the document to the import parameters DOKCLASS and DOKNAME. For technical reasons, you must also pass an empty internal table with the line type TLINE to the tables parameter of the function module.
    For further information about how to create SAPscript documents, refer to the  Documentation of System Objects documentation.
    Field help on screens.
    REPORT DEMO_DYNPRO_F1_HELP.
    DATA:  TEXT(30),
           VAR(4),
           INT TYPE I,
           LINKS TYPE TABLE OF TLINE,
           FIELD3, FIELD4.
    TABLES DEMOF1HELP.
    TEXT = TEXT-001.
    CALL SCREEN 100.
    MODULE CANCEL INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE F1_HELP_FIELD2 INPUT.
      INT = INT + 1.
      CASE INT.
        WHEN 1.
        VAR = '0100'.
        WHEN 2.
        VAR = '0200'.
        INT = 0.
      ENDCASE.
    ENDMODULE.
    MODULE F1_HELP_FIELD3 INPUT.
      CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD'
           EXPORTING
                DOKLANGU                      = SY-LANGU
                DOKTITLE                      = TEXT-002
                CALLED_FOR_TAB                = 'DEMOF1HELP'
                CALLED_FOR_FIELD              = 'FIELD1'.
    ENDMODULE.
    MODULE F1_HELP_FIELD4 INPUT.
      CALL FUNCTION 'HELP_OBJECT_SHOW'
           EXPORTING
                DOKCLASS                      = 'TX'
                DOKLANGU                      = SY-LANGU
                DOKNAME                       = 'DEMO_FOR_F1_HELP'
                DOKTITLE                      = TEXT-003
           TABLES
                LINKS                         = LINKS.
    ENDMODULE.
    Regards,
    Renjith Michael

  • DIFFERENCE BETWEEN 10g and 11i

    hi frnds,
    May I know the differences oracle 10g,11g etc..., and oracle 11i,r12 etc.., and I am newbie to oracle platform please explain to my beginners level

    Hi;
    May I know the differences oracle 10g,11g etc..., and oracle 11i,r12 etc.., and I am newbie to oracle platform please explain to my beginners levelFor 10g vs 11g see this search
    For r11 vs r12 use EBS forum part and see:
    R11 vs R12
    Re: Differences between 11i and r12
    Regard
    Helios

  • TARIF - difference between Feature and Indirect Evaluation Module

    Greetings,
    What is the difference between feature Tarif that is used to default payscale area /ps type and Indirect eval module used for wagetypes ?
    How is this used, applied ?
    Thanks
    AP

    Ms Datar,
    Well described, Thanks. Understood that Valuation module for wage type has nothing to do with Feature Tarif.
    However, I also found Indirect Valuation Module called TARIF with variants -A,B,C, D.
    TARIF
    Valuation according to the "collective agreement group and level" specifications you enter in the IMG step:
    Module variant 'A'
    Country grouping derived from the employee's personnel area
    Pay scale type from infotype 0008/0052
    Pay scale area from infotype 0008/0052
    Pay scale indicator derived from the employee subgroup
    Pay scale group from infotype 0008/0052
    Pay scale level from infotype 0008/0052
    Wage type = SPACE
    Therefore, now i understand as : Feature Tarif defaults Payscale values in IT8 .
    and Ind Val Module Tarif ( A) reads the payscale values in IT8 and leaves the wagetype blank with no amount ?
    Is this correct ?

  • Differences between 10g and 11i

    Hello Everyone,
    I am new to Oracle development.
    If I were learning Oracle 10g Standard Edition
    and got comfortable in it and had some exposure
    to it. How big of a jump would it be for me to
    pick up Oracle 11i?
    Thanks,
    Nick Ueda

    10g is a version of the Oracle database. 11i is a version of the Oracle applications suite. The two are completely independent (though Oracle's applications suite does use the Oracle database on the back end).
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • What is the difference between LH and LX modules?

    I would like to know the difference between LX and LH SFP modules. Long Haul ( LH ) denotes longer distances while Long Wavelength ( LX ) denotes less energy which is obviously shorter distance. Why does Cisco use both LX and LH for certain SFP modules?
    Do they denote the capability of the module to work both for MM ( which will be Long wavelength ) and SM ( Long Haul ) fiber? Do correct me if i am wrong.
    What does it infer if a modules says like "Cisco 1000BASE-LX/LH SFP" ?

    What does it infer if a modules says like "Cisco 1000BASE-LX/LH SFP
    Generally a module is either made for single mode (More distance) / multimode (short distance). But this module can be used for both Single mode and Multimode.
    If used with SM fiber it can go upto 10Km
    It used with MM it can go upto 550meters (depend on what kind os MM fiber you have) You need a mode conditioning patch chord too with legacy MM i think OM1 and 2.
    Long Haul ( LH ) denotes longer distances while Long Wavelength ( LX ) denotes less energy which is obviously shorter distance. Why does Cisco use both LX and LH for certain SFP modules
    Read this link and dont worry about LX/LH (You will ge tthe distance mentiond above depending on the type of fibe ryou are using)
    http://en.wikipedia.org/wiki/Gigabit_Ethernet
    Before it was standardized 1000BASE-LX10 was essentially already in widespread use by many vendors as a proprietary extension called either 1000BASE-LX/LH or 1000BASE-LH

  • Difference between ME_READ_PO_FOR_PRINTING and ME_PRINT_PO

    I just saw these 2 function modules in standard PO printing program SAPFM06P. Can someone please let me know whatz the difference between ME_READ_PO_FOR_PRINTING and ME_PRINT_PO function modules...

    Hi friend......
    The function module ME_READ_PO_FOR_PRINTING is  used to read the PO
    The function module  ME_PRINT_PO is used to print the PO
    if u want let u know some more information
    How can i get PO partner functions using FM ME_READ_PO_FOR_PRINTING
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-mm/tcode-me9f-user-exit-exit_saplmedruck_001-617362

  • Difference between RV_PRICE_PRINT_ITEM and RV_PRICE_PRINT_ITEM_BUFFER FMs

    Hi Experts,
    I want to know the difference between RV_PRICE_PRINT_ITEM and RV_PRICE_PRINT_ITEM_BUFFER function modules.
    Both FMs are meant to fetch all pricing condtions for document.
    Thanks in advance,
    Sagar

    In the calculation schema you can customize your conditions. E.G: if they shall be printed or not.
    So the FM gets you back two tables of conditions.
    TKOMV (ALL of em)
    TKOMVD (Just the ones that are marked as to be printed)
    Those ones from TKOMVD are the ones you need for invoice printing.
    But for calculation issues or whatever you may need to have a look at some conditions which are not marked as to be printed and so you get TKOMV back to be able to do so.

  • Difference between Oracle payroll 11i and R12

    Hi
    Can any one tell me difference between Oracle Payroll 11i and R12, functionally as well as technically.
    Thanks
    PK

    Hi,
    Please refer to these documents.
    Note: 561580.1 - E-Business Suite Release 12.1.1: Release Content Documents
    Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
    Also, see the HRMS User/Implementation guides & the Upgrade guide:
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    Regards,
    Hussein

  • Difference between oracle Apps 11i and R12

    What is the difference between oracle Apps 11i and R12?

    user1121252 wrote:
    What is the difference between oracle Apps 11i and R12?https://forums.oracle.com/forums/search.jspa?threadID=&q=11i+vs+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=11i+AND+R12+AND+Functional&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=11i+AND+R12+AND+Technical&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Differences between R11 and R12

    Hello
    We are looking for a document/whitepaper outlining the differences between R11 and R12 focussing on Financials, OM, PO and EAM.
    Any help would be greatly appreciated.
    Thanks,
    Sanjib

    Sanjib,
    I guess this has been discussed earlier in forums.
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Differences+between+11i+and+R12&objID=c84&dateRange=all&numResults=30
    You should get the info you needed from these posts.
    Regards.
    Edited by: Bobcatalog on Nov 14, 2008 2:29 PM

  • What is the difference between subroutine and function module?

    What is the difference between subroutine and function module?

    Hi,
    they can both return values.
    FMs are mainly used when a routine is to be performed by many programs.
    Subroutines (forms) are generally only executed within one program.
    You can perform routines from other programs, but it's not often done.
    both forms and FMs are reusable modularization units.
    To distinguish we generally say that forms are used for internal modularization and
    FMs are used for external modularization.
    To decide on which to implement, consider whether you need the content to be used just for a limited program
    or wheteher it can be called from many independent programs.
    For the first purpose it is better to implement a form whereas for the second we implement an FM.
    However, ABAP does not isolate the usage context.
    That is; you can call a form from another program within whose code the form is not actually implemented.
    However, this requires attention since the form may utilize global variables.
    The same issue holds for FMs.
    FMs are encapsulated in function groups and function groups may have global variables that can be globally
    used by all FMs inside it.
    Thanks,
    Reward If Helpful.

  • Could any one tell me what is the difference between swfloader and module loader?

    Hi  All,
                          Could any one tell me what is the difference between SWFLoader and Module Loader in Flex3 in detail?

    Hi,
    ModuleLoader is a kind of strange API that is really just intended to look like SwfLoader for modules that contain a single visual component, and hides most of the module loading infrastructure, which is all about class factories.
    What I mean by "only loaded once" is that if you have several places in the code that call the ModuleManager.getModule("url").load() call, it will only ever get loaded over the wire and interpreted once, subsequent "loads" will just re-dispatch pseudo-load events to the new client.  In other words, the class factory is a singleton for a given url. Unloading is a totally different story.  As you note, not everything is truly unloadable, because there may be lots of references to stuff in
    the module that will keep it alive and un-GC'ed.
    I suggest playing with the low-level API so that you understand the backing implementation, and this should help you understand the limits of ModuleLoader.
    The main difference between modules and applications is that modules have lower overhead, and they only ever get loaded once, no matter how many times you load them. If you're using the ModuleLoader API, keep in mind that you're losing about half the functionality of the module system.  I will assume that you are, because otherwise it would be obvious where to expose methods.  You might want to play around with the lower level ModuleManager API just to get a hang of what's going on - ModuleLoader is a pretty thin veneer over the lower API.                
                    Basically, what you want to do is to have your module implement an interface, say IModuleWhatever.
    Also try and refer to this link which was previously discussed in this forum..
    http://forums.adobe.com/message/74404
    Thanks,
    Bhasker

  • Difference between oracle application 11i and release 12

    can some one give me a doccument..link..or anything related to difference between oracle application 11i and release 12 with all details technical and strucutural

    Please check the following links:
    Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404152.1
    what is the difference between REL 10.5.10 and REL 12
    Re: what is the difference between REL 10.5.10 and REL 12

Maybe you are looking for

  • Period Control in Asset accounting

    Can someone explain me how the period control works? Also how will we determine period control for 'Mid-Quater' convention. Please help me out on this. Thanks and regards, Vishal.

  • Tab canvas after content canvas impossible?

    I am still having problems with tab canvases that come after content canvases in Designer 6i. I have changed the QMSO$BLOCK.QMS$BLOCK_INFO VISIBLE property to YES and this allowed me to generate the form, but now I have the little QMS$BLOCK_INFO item

  • Sound distortion in most recent episode of Lost

    Hi all, the most recent episode of Lost plays on my Apple TV with really bad sound distortion starting from 4.23 and continuing to the end. I have a series pass so the episode downloaded onto my Apple TV. The file that has synched with my Mac plays f

  • Firefox will not start after upgrade: error code 2324

    I upgraded Firefox on my workstation running Windows 7 Enterprise (64-bit). The stub installer downloads and runs through the installation, but does not start Firefox automatically. If I click on the link in the taskbar, nothing happens. Same with th

  • I ordered my phone on Monday and it is now Thursday.

    I ordered my phone Monday 5/12 and it is now Thursday 5/15. It's stuck saying still processing. At this rate i wont receive it until next week and i need it before hand. This is irritating.