Regarding interface

hi,
    can anyone tell me where can i view all the interfaces which are present in my system(ECC) , any table where it is  stored, or  any t.code to find all the interfaces.
thanks in advance.

Open table TADIR in SE16 transaction
Do a F4 help on Object Type. It has a field for Interface. Select & execute.

Similar Messages

  • Regarding Interface connection with US Payroll Data

    Hi Experts,
    Greeting!
    I have some questions regarding Interface (ADP Tool) with USA payroll. Please give me the answer for below questions.
    1) How to send the data ( Garnishment, Benefits, Payroll, PA) to third party tool?.
    2) How to map the things (Wage types) and Which T.Code we use for this?.
    3) What all Technologies required to connect third party tool?.
    4) How will we get the data from third party?
    5) What all documents will create while sending and receiving the data?
    Thanks in Advance.
    Regards,
    Ram

    Hello Ram,
    The transaction for US Payroll outsourcing is PC00_M10_OTEM. I have attached a document to this reply that can be found as an attachment to SAP Note No. 1135822 - "OT:  Outsourcing FAQ Document". Outsourcing is similar to running payroll except the data is exported instead of being calculated.
    Also for reference:
    SAP Note No. 899674 - "FAQ:  First Export for Payroll Outsourcing Interface"
    Regards,
    Manny

  • Regarding interfaces?

    Mapping data for interfaces between SAP and Non-SAP systems?
    What are the things involved in it
    Please explain me and if you have any documents regarding pls let me know
    pls forward the doc if any to [email protected]

    satishnarayan wrote:
    HI
    I have doubt regarding interface concept.That is in my interface 7 methods are already available.that interface was implementd by 3 classes.like class a,class b,class c.in future i will add some extra method to that interface but that method will usefull only in class a
    but it will not usefull in class b, class c. how can i achieve this type of scenario.plese give the answer.
    Thanks and regardsAccording to your example the additional methods should NOT be added to the interface. An interface should only include the methods relevant to all of the classes implementing it. Any method not related to theinterface itself should not be in there.
    Add your methods to class a or create a second interface declaring the methods you need.

  • Regarding interface tables in CATS

    Hi Experts,
    Can any body briefly explain about the interface tables in cats for integration of cats of HR,PS and FICO modules and highlight on the technical intricacies in this data transfer between cats and target modules like HE,PS and FICO.
    Points will be rewarded.
    Thanks and regards,
    Sravanthi.

    Hello Sravanthi
    With respect to the CATS - HR integration you may have a look at the BAPI <b>BAPI_TIMESHEET_HR_DATA_TRNSFER </b>and its documentation:
    FU BAPI_TIMESHEET_HR_DATA_TRNSFER
    Short Text
         Transfer of CATS II Data to HR
    Functionality
         This method transfers time data from the Time Sheet to the HR system.
         The time data is stored in the HR system in the following infotypes:
         o   Absences (2001) infotype
         o   Attendances (2002) infotype
         o   EE Remuneration Information (2010) infotype
         Information about a different payment and cost assignment is also
         transferred. This method does not support activity allocation.
    Notes
         The data records are stored in the following tables:
         o   Attendances/absences: interface table PTEX2000 and PTEXDIR.
             The transfer report then reads the data from file PTEX2000 and
             creates it as attendances in infotype 2002 or as absences in
             infotype 2001.
         o   EE remuneration info: interface table PTEX2010 and PTEXDIR.
             The transfer report then reads data from file PTEX2010 and creates
             it as employee remuneration information in infotype 2010.
    Further information
         Method Check LINK allows you to check the data before it is transferred.
         This method is used to call the following BAPIs in the HR system before
         the data is transferred to the HR system:
         o   BAPI_PTMGREXTREMSPEC_INSWCOST
         o   BAPI_PTMGREXTATTABS_INSWCOST
    Parameters
         TRANSFER_RECORDS
         RETURN
    Exceptions
    Function Group
         BAPI_CABA_HR
    Regards
      Uwe

  • Confused regarding  interface mapping in BPM scenarion

    hi
    my scenario goes like this:
    have 2 sources sendign files to target.
    Am using BPM to merge the input files into a single target file.
    am confused as to which interfaces to use in interface mapping.
    (have 3 abstract ,and 2 outbound and 1 inbound interfaces).
    am already using 2 abstract interfaces as input and 1 abstract target interface in o/p for nterface mapping.
    However ,while running the configuratin wizard,no interface mapping appears.
    please help me ASAP.

    Hi...
      Whenever you use transformation in BPM process where you will mention interface mapping there itself, so you cant see the it in interface determination. Your scenario is configured correctly.
    Regards
    Leela

  • Regarding interface in the ABAP-HR

    Hi Experts,
             Iam new to ABAP-HR,
             I have 2 custom table which are updated with OT records from one batch program.
             Now i have to generate two files for regular OT data file and Off-Cycle OT data file respectually.
    What i have to do?For this i have to  pick the data from those two custom tables and create the files by using open dataset statement,Is this right way in HR?
    Actually the selection screen is having Payroll area,Current period and Other period fields.
    and the table is having BEGDA,ENDDA in one table and OTdate in onother table.How can i compare the dates?

    Hi,
    <b>Interface</b> Can be declared globally or locally within a program.
    Locally declared in the global portion of a program using:-
    INTERFACE <intf>.
    ENDINTERFACE.
    The definition contains the declaration for all components (attributes, methods, events) of the interface.
    Interfaces are included in the public section of a class.
    Interfaces do not have an implementation part, since their methods are implemented in the class that implements the interface.
    Interfaces do not have instances.
    A component <icomp> of an interface <intf> can be addressed as though it were a member of the class under the name <intf~icomp>.
    <b>Addressing Objects Using the class reference variable <cref>:</b>
    To access an attribute <attr>: <cref>-><intf~attr>
    To call a method <meth>:
    CALL METHOD <cref>-><intf~meth>
    <b>Using the interface reference variable <iref>:</b>
    To access an attribute <attr>: < iref>-><attr>
    To call a method <meth>:
    CALL METHOD <iref>-><meth>
    Addressing a constant <const>:
    <intf>=><const> (Cannot use class name).
    Addressing a static attribute <attr>:
    < class>=><intf~attr>
    Calling a static method <meth>:
    CALL METHOD <class>=><intf~meth>
        (Cannot use Interface method ).
    casting operator (?= )
    <cref> ?= <iref>
         For the casting to be successful, the object to which <iref> points must be an object of the same class as the type of the class variable <cref>.
    <b>sample program</b>
    report ysubdel .
    interface i1.
    data    : num type i .
    methods : meth1.
    endinterface.
    class c1 definition.
      public section.
      methods : meth1.
      interfaces : i1.
    endclass.
    class c1 implementation.
      method : meth1.
       write:/5 'I am meth1 in c1'.
      endmethod.
      method i1~meth1.
       write:/5 'I am meth1 from i1'.
      endmethod.
    endclass.
    start-of-selection.
      data : oref type ref to c1.  create object oref.
      write:/5 oref->i1~num.
      call method oref->meth1.
      call method oref->i1~meth1.
    Regards,
    Sowjanya.

  • Query regarding interface

    Hi All,
    I have one interface with method XYZ... i am implementing that method with the help of classes ZCL and ZCL1 ...suppose when i am implemetig interface with class ZCL then its output is 123 and with class ZCL1 output is 456 ...when i call the instance of that interface in report with the help of class method get_instance of class cl_exithandler and run the report i am getting output as 123456.... i want to know how both the instances of both classes are called when we call one interface?
    Thanks..

    you are right, i am calling the method of particular class as you described but i am calling interface method as below :
    data exit_sub type ref to ZIF_EX_S_BADI_ADV.
    call method cl_exithandler=>get_instance
                changing instance = exit_sub.
      CALL METHOD exit_sub->getpernr
           EXPORTING zpernr = itab-pernr.
    the method of this interface is implemeted by two classes ...so when i call interface like this i get combined output of both the implementations ...so you mean to say that when i call any interface like this all its implementations get called for BAdI ??...if your answer is yes then its ok ...i have one more question regarding the same
    If we are not using BAdI and just implementing interface in our report then in that case also all the implementations of the interfaces will get called ??

  • Regarding interface views inside a view.

    Hi,
    We have a screen in which a view uses interface views of two other components.
    Depending on the link clicked anyone of the  interface view should be displayed in the bottom of this main view.
    I am using view container UI element for this requirement. Are there any ways of switching the interface view in a single view container element.. instead of creating two of them, each for one interface view.?
    regards
    Bharathwaj

    Bharathwaj,
    Yes, it is possible.
    Create 2 outbound plugs in outer view, link them to corresponding inbound plugs of interface views.
    Now on action fire one forementioned plugs.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • This is regarding interface from legacy system to SAP

    Hi All,
    We have trasferred the one file from legacy system to SAP, and it was created a session in SM35, it contains 1000 errors.
    we don't want correct those errors and these entries should be delated, could you please let me know are these errors can I see in any error table in SAP, is this facility is availbe in SAP or not?
    becuase it isl very difficult to go and delete the entries one by one in sm35
    Regards
    Nama

    Hi,
    1) No updates will have been done for the items with errors.
    2) Mark the Batch, then press F2 to call up the analysis. You can check here for the cause.
    3) If you are not going to correct the items or the cause so as to post them, just delete the batch.
    Kind regards

  • Regarding interface objects

    Hi Experts,
              can anybody give me regarding:
    1. External Definitions, Context objects,Data Type Enhancement
    2. what is product, application,Technical System,Business System
    3. what is the deffirence between Business system and Business Service in ID.
    4. complex UDFs
    5. Dynamic Alerts
    6. how to do Monitoring
    7. what is correlation
    Thanks in advances,
    Kalyani

    HI Kalyani,
    1. External Definitions, Context objects,Data Type Enhancement
    Search on SDN
    2. what is product, application,Technical System,Business System
    Refer the below help for the same:
    Refer How to handle SLD guide for help:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    SLD preparation very good:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/flatFILETOFLATFILE&
    Working with System Landscape Directory (SLD) :
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/workingwithSystemLandscapeDirectory+%28SLD%29&
    Configuring SLD in Sneak Preview SAP NetWeaver '04 Sneak:
    /people/sugree.phatanapherom/blog/2005/08/14/configuring-sld-in-sneak-preview-sap-netweaver-04-sneak
    XI Software Logistics 1: SLD Preparation:
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    3. what is the deffirence between Business system and Business Service in ID.
    Search on SDN
    4. complex UDFs
    it depends upon the requirement.
    5. Dynamic Alerts
    For raising an alert you need to first configure the alert please follow the below weblog written by Michal Krawczyk
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Configuration steps are: go to transaction ALRTCATDEF
    1) Define Alert Category
    2) Create container elements which are used for holding an error messages.
    3) Recipient Determination.
    Alert can be triggered in different ways.
    1) Triggering by Calling a Function Module Directly.
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    2) Triggering by Calling a Function Module in the Workplace Plug-In.
    3) Triggering with an Event Linkage.
    4) Triggering with the Post Processing Framework (PPF) or Message Control (MC)
    5) Triggering from a Workflow.
    6) Triggering from CCMS with autoreaction.
    7) Triggering from BPM.
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    /people/community.user/blog/2006/10/16/simple-steps-to-get-descriptive-alerts-from-bpm-in-xi
    8) Triggering alert by configuring a rule from RWB.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/56/d5b54020c6792ae10000000a155106/content.htm
    6. how to do Monitoring
    Search on SDN
    7. what is correlation
    Do you like to understand “correlation” in XI?
    /people/sravya.talanki2/blog/2005/08/24/do-you-like-to-understand-147correlation148-in-xi
    thnx
    Chirag

  • Regarding Interface in DOI

    Hi,
      My requirement is to move data to 5 sheets in a single XL file.
      I did this using OLE objects.
      But as it is consuming more time i am trying to find any alternatives.
       Is there any other class/methods available to do this. ?
       I have gone through the DOI interface 'i_oi_spreadsheet',
    but i am not able to use this.
       So pls provide sample coding using this interface ?

    Hi,
    Why dont you keep 5 parameters for five different file for upload and
    club it in one internal table and then download in one excel sheet.
    REWARD IF USEFUL

  • Regarding Interface methods implementation

    Hi,
    I have a interface with 3 methods.
    public interface test{
    public void A();
    public void B();
    public void C();
    public class IntImpl implements test{
    public void B(){
    //implementation
    Can we implement an interface with out implementing all the methods of interface .instead implementing a few methods in the interface?
    i came to know that we can do the above one with out any exceptions? So any of you can resolve this issue ..
    Thanks in advance
    Sri

    Can we implement an interface with out implementing
    all the methods of interface .instead implementing a
    few methods in the interface?In other words: can we implement an interface without implementing it?
    The answer should be obvious.
    i came to know that we can do the above one with out
    any exceptions? Sure, it's quite easy, you already did it. The stuff above won't compile, hence it won't throw an exception when running.
    Or you can also avoid compiler errors by declaring IntImpl as abstract. Which means you didn't implement the interface though.

  • I would like to know a question regarding interfacing with a Yokogowa WT130 utilizing a NI GPIB-USB-HS is possible in Dasy Lab

    I have a Yokogowa WT130 power analyzer and I would like to use this to communicate to DASY Lab. The Yokogowa utilizes IEEE 488 communication and I was thinking of using the NI GPIB-USB-HS to connect the Yokogowa to the computer. I do know that DASY Lab is capable of utilizing IEEE 488 but I am confused on if I would neede a seperate driver for the Yokogowa or if the driver for the NI GPIB-USB-HS would allow communication. Any feedback would be greatly appreciated.

    backhausr1,
    I would recommend asking this in the DASYLab forum, which can be found here: http://forums.ni.com/t5/DASYLab/bd-p/50
    You will likely get better and more prompt assistance.
    Christopher S. | Applications Engineer
    Certified LabVIEW Developer
    "If in doubt... flat out." - Colin McRae

  • Interface with portal and outlook

    All,
    Hello,
    I am to prepare a technical document regarding Interface between BW 3.5 and MS outlook and the portal.
    When there are errors when loading flat file (i.e. file does not exist, 0 size file) and when the reports do not run right, we will need to send an e-mail to people.
    Also when reports are generated they need to be published into an Iview on the portal.
    I need help to gather technical info and cerate a technical document.
    Thanks a lot.

    Hello,
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/28/734d3caa70ea6fe10000000a114084/frameset.htm">Reporting Agent (help.sap.com)</a>
    or
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/28/734d3caa70ea6fe10000000a114084/frameset.htm">Information Broadcasting</a>
    (There you will also find the tasks for system administration to integrate eMail -> TA SCOT).
    Then create a Web Template in the Web Appication Designer with the web item "Alert Monitor" -> then create iView in Portal...
    You can also send notifications from a process chain, when a load is broken e.x.
    Hope this helps, best regards
    Frank

  • Interfaces in JDBC

    Hi Everyone
    i have a doubt regarding interfaces in JDBC api.my question is why SUN has made Connection,Statement,Resultset etc as interfaces in jdbc.why have they not made them as simple classes.Is there any specific reason behind this thing unless it is sun specific.plesae provide me your comments on the same.
    regards
    kvikram

    This leaves more freedom to the implementors of the very drivers. They can inherit their implementing classes from some internal classes if they wish, which would not be the case if it were an abstract class and not an interface.
    Abstract classes ususally contain some non-complete implementation, interfaces are "just" interfaces. The JDBC very much fits to interfaces.
    So there is no reason for them to be abstract classes and there are reasons for them to be interfaces.

Maybe you are looking for

  • Reconciliation - mont end

    hi, How do we do reconcilisation for clearing account at month end? Eg: GR/IR - how do we manintan open items at month end please explan me

  • Newbie : what is .fpt file extension for adobe air ?

    Hi all the master, Hereby i have attached the printscreen of what i got from my client recently. I have already install the .air file, and it prompts to open the .fpt files. So i click on the fpt file. It loads halfway, and automatic close the whole

  • Apps "Waiting"

    I can't sign into the App Store. I tried updating two of my apps, then this happened. So now I can't access my apps either. They're grayed out and it says "waiting". How do I fix this?

  • Software registration?

    Over in the Download forum we have yet another Re: Problems obtaining Registration Key for Oracle 10g Developer Suite who is looking for the registration key to unlock his Oracle software CD. This one is related to the course book found at http://cou

  • A bunch of crashes in the last 24 hours

    Suddenly I am having crashes while the computer is sleeping. I return to the Mac to find the screen is dark, and the computer won't wake up. I restart using the button on the front of the machine. I see a window that says the Finder quit unexpectedly