Can anybody send me the interview point of Questions on BADIs?.

Can anybody send me the interview point of Questions on BADIs?.

Check this out:
www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
Re: BADI OR USER EXIT.........
www.bwexpertonline.com/archive//Volume_01_(2003)/Issue_08_(September)/V1I8A5.cfm?
Reward if helps
Vivek

Similar Messages

  • Can anybody send me the interview point of Questions on OO ABAP?.

    Can anybody send me the interview point of Questions on OO ABAP?.

    Hello Satish
    ABAP-OO is by no means different from other object-oriented languages. Thus, you can take a book like the one for the <b>Java certification exam</b>. Having read and understood this book you are well prepared for any interview question.
    Regards
      Uwe

  • Can Anybody Send Me The Latest Testking Pdf Of  1z0-033 (Performance Tuning

    Hello,
    Can Anybody Send Me The Latest Testking Pdf Of 1z0-033 (Performance Tuning
    my email address is asiforacle [email protected]
    Regards,
    Asif Iqbal
    Software Engineer. ( Karachi, Pakistan ).

    The answer is surely NO but what I would like to ask for the sake of curiosity , why did you ask about Performance Tuning questions over Sql /Plsql forum , not on Database General Forum? Not that you should go there now and ask, just curious.
    Tell you what, read the free book(yup free). Here it is,
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96533.pdf
    You won't need anything else to read, not even that testking stuff too.
    HTH
    Aman....

  • Can anybody send me the SAP Migration Template

    Hi,
    My client currently uses two SAP instance (likely 4.6c and 4.7).
    As part of migrating two system to one system, I badly and urgently need of the following documents...
    1) How the data migration will happen.(Master data, Transactional data..Number range..._)
    2) Do any body have SAP Migration Template.
    3) Any Q & A db for this migration activity
    Regards

    Hello Satish
    ABAP-OO is by no means different from other object-oriented languages. Thus, you can take a book like the one for the <b>Java certification exam</b>. Having read and understood this book you are well prepared for any interview question.
    Regards
      Uwe

  • Can anybody send the certifications questions

    Hi Experts,
    Can anybody send the ABAP certification questions.
    U can send to my mail id [email protected]
    Thanks in advance.
    Satish Kumar.

    Hi,
    certification ..
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    This is link from SAP about ABAP certification
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    http://www.sapteched.com/india/confactivities/certexam.htm
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    There is a pdf called ABAP certification.
    http://www.esnips.com/web/SAP-ABAP?
    You can try www.sapdoamin.com
    They provide Certification simulation questions which are very useful and a must try site.
    Some links which might help
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    reward points if useful
    regards,
    Anji

  • Can anybody send the function module to read inspection characteristics ?

    Hi friends
    can anybody send the function module to read inspection characteristics ?
    (rate routings).
    thanks in advance

    Hi,
    Use the BAPI,
    <b>BAPI_INSPCHAR_GETRESULT</b> to get the deatils.
    also look at this BAPI <b>BAPI_INSPOPER_GETCHAR</b>
    Regards
    Sudheer
    Message was edited by:
            Sudheer Junnuthula

  • Can anybody send or explain me about GEM (Global Employee Management) Urge

    Hi,
    Can anybody send the document or explain me about GEM (Global Employee Management),
    It is bit urgent.
    Thanks in advance
    swamy
    7045000187

    Lol!
    I didn't see post until now...Not sure if you received the response yet...
    MGE is a subset or submodule of CE.
    CE concept is more align with and more import if you use SAP Payroll and Time. CE is concurrent employment where a person holds more than one position at a time in the same country.
    MGE is management global employee. Where a person move from one position to another during a duration to do an assignment. Upon completing the assignment, the person could localize there or return home.
    PNP and PNPCE. PNP is being discontinued and is replaced by PNPCE. The main difference between the two is PNPCE support the PERSON ID concept. Which is the unique identifier for an employee. It would be best to use PNPCE with MGE as you need that PERSON ID in the HR Report Category.
    Kevin T. Nguyen-Tu
    www.saphelpbykevin.com

  • Can anybody send a report  in sd n mm module

    hi gurus
    can anyone suggest me
    can anybody send a report  in sd n mm module
    and for which purpose we have to generate that program..
    thank you
    regards
    kals.

    hi this is to display the plant details for a given material.
    report ztest .
    tables:mara,marc.
    types:begin of ty_mara,
             matnr like mara-matnr,
             meins like mara-meins,
             mtart like mara-mtart,
             mbrsh like mara-mbrsh,
             pstat like mara-pstat,
             end of ty_mara.
    types:begin of ty_marc,
             werks like marc-werks,
            pstat like marc-pstat,
            end of ty_werks.
    data:it_mara type standard table of ty_mara with header line,
           it_marc type standard table of ty_marc with header line.
    selection-screen begin of block b1 with frame title text-001.
    select-options:s_matnr for mara-matnr.
    selection-screen end of block b1.
    start-of-selection.
    select matnr
              meins
              mtart
             mbrsh
             pstat
             from mara
    into table it_mara
    where matnr in s_matnr.
    if not it_mara[] is initial.
    select werks
              pstat
    from marc
    into table it_marc
    for all entries in it_mara
    where matnr = it_mara-matnr.
    endif.
    if sy-subrc = 0.
    loop at it_mara.
    read table it_marc with key pstat = it_mara-pstat.
    write:/ it_mara-matnr,it_mara-meins,it_mara-mtart,it_mara-pstat,it_mara-mbrsh,it_marc-werks,it_marc-pstat.
    endloop.
    endif.
    regards,
    venkat.

  • Can Anybody explain me the role of xi in IS-Retail integration and POS cons

    Can Anybody explain me the role of xi in IS-Retail integration and POS cons

    Hi AnilKumar,
    Find the list is below:
    Q: Role of xi in IS-Retail integration
    Ans: **Business Content Scenario – Retail
    Why using XI in this scenario
    &#56256;&#56452; A push of ‘message type’ data to BW is required
    &#56256;&#56452; XI supports quality of service ‘Exactly once in order’ in push scenarios
    &#56256;&#56452; Stores deliver the data according to ARTS/IX-Retail
    &#56256;&#56452; XI supports ARTS/IX-Retail
    &#56256;&#56452; In case the stores deliver the data as flat files they can be easily transfered to XML format via XI
    Business Content Scenario – Retail
    Store Connectivity Scenario
    &#56256;&#56452; Increase profitability by utilizing POS1 data for
    controlling of retail processes and by understanding
    customer behavior in a better way.
    &#56256;&#56452; SAP XI as single point to collect POS sales information
    as mass data from (3thd party) store systems via an open
    industry specific interface (ARTS/IX-Retail2 compliant).
    &#56256;&#56452; Using SAP XI as additional source for SAP BW
    &#56256;&#56459; improved by Retail POS Data Management to
    ensure better data quality
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0ccae190-0201-0010-1593-c90ef3c1d159
    Pls rewrds if found helpful.
    BR,
    Alok Sharma

  • Can anybody send ALE/IDOC sample steps fot MATMAS?

    Hi friends,
    Can anybody send ALE/IDOC sample steps fot MATMAS?

    Steps for IDOC.
    Communication Settings will take care by basis.
    Communication settings.
    1.     BD 54     Create Logical system. (To get logical system FM
    OWN_LOGICAL_SYSTEM_GET)
    2.     SCC4     Assign logical system to client      
    3.     SM 59    Create RFC Destination.
    4.     WE 21    Create port.
    Partner setting.
    5.     WE 20    Create Outbound partner profile.
           (Creating outbound partner profile message type with MATMAS and IDOC type with MATMAS01-05 )
    6.     BD 64     Create Distribution model. (It will act as a BAG to carry the list of receiver details for all message type.)
    7. Run BD10 for outbound and BD11 for Inbound.

  • Can anybody send me CRM tables and their relationship? It is very urgent.

    Can anybody send me CRM tables and their relationship? It is very urgent.
    and all the function modules availble in CRM.
    Jayalakshminarayana Kilaru

    Hello Vikas,
    Can you please send CRM tables to [email protected]
    thanks in advance

  • Hi Can anybody send termination api script pls

    Hi
    Can anybody send termination api code
    Regards
    Samarpan

    what is mean by termination??
    is the employee termination from HRMS or anything else..

  • Can Anybody explain me the difference between  a Bapi and a webservice?

    Can Anybody explain me the difference between  a Bapi and a webservice?

    Hi Anil,
    <b>BAPI</b>
    BAPI is a library of functions that are released to the public
    as an interface into an existing SAP system from an external
    system.A BAPI function is a function module that
    can be called remotely using the RFC technology
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA.
    In this case you only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI. It is not possible to connect SAP to Non-SAP systems to retrieve data using RFC alone. RFC can acces the SAP from outside only through BAPI and same is for vice versa access.
    <b>Webservice</b>
    In simpler terms, WebService is an application on the Web/Internet. Wheneever Service is requested by the user, it provides the service (i.e Request/Response)
    A web service is a collection of protocols and standards used for exchanging data between applications or systems
    In SAP world, we can expose an application into the Webservice. For e.g We can expose ABAP programs into Webservice.
    XI uses SOAP adapter to communicate with webservices see below...why only soap adpater???
    -> Some remote clients or Web services providers are only able to communicate by means of SOAP messages
    ->SOAP adapter enables you to exchange SOAP message between remote clients and Web Service Servers and the Integration Server.
    -> The SOAP Adapter provides a runtime environment that includes various SOAP components for the processing of SOAP message.
    -> You use the SOAP adapter to connect such systems to the Integration Server directly
    -> The SOAP adapter uses a helper class to instantiate and control these SOAP components
    ->The SOAP adapter receives a msg from the remote client or Web service provider, converts the SOAP protocol into XI msg protocol and then sends the msg to the Integration Server to be processed further.
    Basically  RFCs BAPI are all SAP oriented, Webservices are language / environement independent. So, all one has to do is publish a Webservice and any external system by providing the data in the correct format, can get the approopriate response back.
    see these links to know more abt webservices..
    http://www.webservices.org/
    http://www.w3.org/2002/ws/
    regards
    biplab

  • Can anybody please suggest the way i can get all the indexes on a cache

    Can anybody please suggest the way i can get all the indexes on a cache?

    Hi,
    If you want to just see what there is at the moment, the StorageManager mbean IndexInfo attribute shows the toString() representation of the extractor of each index.
    If you want to get it programmatically, you can get hold of it by sending an entry-processor to a key, then casting the entry to BinaryEntry, and calling BinaryEntry.getBackingMapContext().getIndexMap() to get the same Map<ValueExtractor,MapIndex> of indexes which the index aware filters get.
    Best regards,
    Rob

  • My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad one.

    My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad .

    Are you using the Sky Go app to try and watch it ? If so are you logged in with your Sky account ?
    If you are using the app then you could try closing the app completely and see if it works when you re-open it : from the home screen (i.e. not with Sky Go 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Sky Go app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for

  • Firefox worked before, but now, when i try to start it, i get and error "We're sorry. Firefox had a problem and crashed". I tried to reinstall it, to reboot, nothing helps.

    Hi, Firefox worked before, but one time my system crashed. When I rebooted, Firefox won't start anymore. All I got is a pop-up window, saying We're sorry. Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts.

  • I can't edit overset text in InDesign CS4

    I have spent the last several hours trying to fix the overset text.  Every time I click on the little red overset text in the lower right hand corner, another text box pops up.  I have deleted it at least 150 times.  I just cannot get it to work.  I

  • Can't edit in iPhoto

    Hello-- My copy of iPhoto '09 Version 8.1.2 (424) is exhibiting anomalous behavior and I'd like some suggestions  to fix it. I've done the following procedure successfully many times.  Day before yesterday it started acting up.  I'd appreciate your i

  • Mail Conditions not working in mail Form

    Hi all, Please kindly help me with the issue I faced. I created mail form with 2 Text elements. Each text element has condition from marketing attributes ( text element 1 - condition BPs are owners of freedges),  ( text element 2 - condition BPs are

  • Create condition table V/57

    Hi all, I'm trying to create a new condition table for output determination and need it to be based on the Sales office, and the customer account group KTOKD. However, the field KTOKD is not available as an allowed field when creating the condition t