Regarding SAP interface inforamation.

Hi All,
I want  to know some basic information about interfaces as :
1) Where we can check, is particular interface is active or not?
2) What type of master data does the IDoc contain (i.e. material master) ?
Awaiting for your kind reply.
With Regards,
Preeti.

Hi Preeti,
   In the first place, what type of interface are you looking for whether interfaces within SAP like SAP PP-WM / PP-QM etc. or whether an interface from 3rd party systems to SAP?
   To your second question about the contents of the IDOC Master data, if you have the document already created goto tcode WE02 enter message type, date and time parameters and execute. Then check the individual EDI segments - Header and Detail segments. This will be based on standard EDI format.
Best Regards
Srinivas

Similar Messages

  • SAP Interface

    Hello,
    Need some guidelines regarding SAP Interface.
    Iu2019m an Oracle Developer u2013 all the applications are developed using Oracle Form Designer and Reporter thru PL/SQL language. Most of the applications we develop are for the Banking Industry.
    I have a requirement in which I need to build an interface from my Oracle Application to SAP. My Oracle Application is my own and therefore customizable.
    Iu2019ve read a bit about BAPI and JCo u2013 but is still undecided on which is the u201Cbestu201D approach.
    Or if thereu2019s any other approach, kindly let me know.
    The application (Banking) requires real-time posting of data from front-end (Oracle) to back-end (SAP).
    If possible, kindly provide me with some guideline.
    Best regards,

    Shivek.Sachdev wrote:
    > From what I understand, it seems I need to be able to call BAPI thru JCo?
    > Is that correct? Is this the only way?
    Quite honestly, I have no idea. This is the SAP ABAP developers forum. I'm not sure what needs to be done in Oracle to call a BAPI.
    You might want to search on the Oracle web sites or reach to your Oracle sales rep. I know Microsoft has a lot of info on their web site (they're "friends" with SAP apparently). Or, better yet, go talk to the SAP developers for the system you'll connect to. Maybe they have a completely different view on this.
    There is also a separate Java-themed forum here, perhaps someone would know more there:
    Java Development

  • SFDC-SAP Interfaces

    Hi
    I am working on SFDC-SAP interfaces, in this i am having the interfaces like Sales Order creation and Sales Order Modification Interfaces. when i will create the SO it is working fine. when i am trying to do the Sales Order Modification it is showing the red flag in outbound status in the moni, but it is not showing any error, but sales order is not modifying.
    Pls suggest me how can i solve this problem.
    Regards,
    Pasi

    In SM58 status is nothing was selected
    any search criteria was included?
    From IDX5 also you can check the status in SM58 .....check if that shows you some error.
    Edited by: abhishek salvi on Jul 8, 2010 1:51 PM

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Files are missing in the /usr/sap/interfaces/SID directory

    hello Gurus,
    Please help on this.
    We have move the system to another host af4ho133, after moving, the files in the directory /usr/sap/interfaces/SID are now missing. The Daily loads jobs got failed due to unable to access the files placed in AL11. All the files are placed in old path(Host),In the changed host no files were placed.
    Please extend your assistance.

    Hi,
    If you move the all the files from one one host to another host, it does not work, you need to use the system copy
    please go thr below link it will help you
    System Copy and Migration
    Thanks,
    Sreeni.

  • Primavera - SAP Interface/ integration

    Hi,
    I Need some information and help related to Primavera - SAP Interface/ integration.
    1. what are the Prerequisites?
    2. How it works - means how data will get transferred from primaver to SAP?
    3. whether this transferr is Direct or some third party tool required. if yes then may know the options?
    4. How much it cost approximate?  any option to transfer data without any third party tool?
    5. any documents if you are having related to this please do send on same Id
    Venkatesh

    Dear Venkatesh,
    I had developed and deployed the SAP PS - Primavera Interface in one of my projects. We had developed it using an ABAP program. I hope i answer all your questions to your satisfaction.
    1. what are the Prerequisites?
    I dont think there is any need for some major prerequisites other than the version of the Primavera   software you are using. In our case we had used Primavera version P6. Find out from your business owner as to what all data he needs to upload or download using this interface. You can modify your ABAP program likewise.
    2. How it works - means how data will get transferred from primaver to SAP?
    a) The data between project structures will be mapped one to one basis. Ex. Project in SAP PS is mapped to Project in Primavera, WBS Elements in SAP PS will be mapped to WBS in Primavera, and Activity data in SAP PS is mapped as Activities in Primavera.
    b) Frequency of data transfer will be weekly or Monthly. Every time data is exported from SAP PS to Primavera, new project will be created in Primavera.
    c) Data will be transferred from SAP PS to Primavera in Batch mode and with manual intervention.
    d) Data will be transferred from SAP PS in Comma Separated (.CSV) File format.
    e) Primavera users will access MS-Excel interface to import data from CSV file in Primavera. MS-Excel will have a Macro written in Visual Basic Application (VBA) which will be initiated by user for data transfer.
    f) Primavera Software Development Kit (SDK) will be used for transferring data in Primavera.
    3. whether this transferr is Direct or some third party tool required. if yes then may know the options?
    Hope the above mentioned points answer this question.
    4. How much it cost approximate? any option to transfer data without any third party tool?
    I may not be able to comment on the cost part since this interface was internally developed by our team. This interface is successfully being used by our organization as a reusable component in various projects, thus reducing the efforts considerably.

  • Facing some issue regarding Requisition interface table

    I am facing some issue regarding Requisition interface table..
    Purpose: we have to massage data & create massage data & create Requisitions.
    Issue Detail:
    Before:
    Previously it was Auto Create Purchase Requisition
    On the move transaction form step 10 to 20, this step will trigger creation of requisition.
    and Creating Requisition successfully.
    After:     
    After stopping Auto Create Purchase Requisition functionality the Requisition interface data is not getting populated in the Requisition Interface tables as well.
    Please provide your inputs.

    It's standard functionality not to populate the req interface while you don't want to autocreate.
    Thanks,
    PS.

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Hi All,I have one serious problem regarding sap b1.

    Hi All,
    I have one serious problem regarding sap b1.
    In Sales order whenever I select the item from list or tax from list one. I got this
    Msg Box (Application has a problem. Diagnostic file c|:\Program file\SAP\sap Business one \Log\Sap Business one_20080602105441.dmp was created.
    Please contact support and attach diagnostic file). When select ok sap b1 application close. If anyone required screen short of all this error  plz give me Ur email id I will send u.
    Can any one help me?
    Awaiting Early Response
    Regards
    Rajkumar Gupta

    Hi Rajkumar,
    create a message at the marketplace and send them the diagnostic file with an error description.
    lg David

  • Barco / SAP Interface

    gurus,
    below is my requirement,please give suitable solution
    BARCO / SAP Interface? What data is passed to SAP from BARCO? Need explanation of IDOC....What data is passed from SAP to BARCO? Need explanation of IDOC....What T-Codes are automatically generated from BARCO to SAP Interface
    basu

    gurus,
    why no answers?.
    basu

  • SAP interface component AMI

    Hello,
    we have installed ECC 6.0 EhP7.
    As i know, SAP interface component AMI is included , or?
    Did i need to install or activate something in the ECC System to use "SAP interface component AMI" ?
    Gruß
    Toni

    Hi Antonio,
    You need to activate the Related Business Function in ECC System.
    Transaction: SFW5
    Business Function rElated to AMI
    ISU_AMI_1, ISU_AMI_2, ISU_AMI_3, ISU_AMI_4A, ISU_AMI_4B.
    Thanks, Mohit

  • SAP Interface Workbench

    Can anyone please explain about SAP Interface Workbench with details

    SAP interface workbench is a tool by which you can integerate other business software with SAP such as Manufacturing Softwares like BAAN, Hagemeyers/ examples are many. for that you need to study the structures of both of them.
    Raghavan

  • SAP Interface to PathGuide Latitude WMS

    Hi All,
    Has anyone ever have experience of interfacing to this Warehouse Management System software using SAP?
    If so, what ABAP technology are we talking about? BAPI? Flat file? Even IDocs? etc
    Thanks,
    Niall
    Message was edited by:
            Niall F

    Hello,
    Did you able to crack this, if so... which method you adopted for integration between Automated warehouse (crane system) and SAP WM.
    Please suggest.
    Regards,
    JPS

  • What is the neetest way to create a SAP-SAP interface?

    Hi Experts,
    For a customer I have to realise a SAP CRM -> SAP link and vice versa via XI. For me this is the first time to realise such an interface, my idea is to do it like this:
    1) create a function to extract the data from SAP CRM, via abap-proxy to XI and then again via abap-proxy to receiving SAP-system. But then how do I trigger starting this extract-function? Via batchjob?
    2) create a download-program that selects the data from SAP-CRM, creates a file and stores in specific folder. XI polls on this folder, reads it in and communicates via abap-proxy to SAP2. For selecting the CRM data a a batchjob will be created that starts the abap to select the data.
    But..is this the way to do it? Or is there a nicer way?
    Any suggestions are welcome
    Thanks and regards
    William.

    HI
    1) create a function to extract the data from SAP CRM, via abap-proxy to XI and then again via abap-proxy to receiving SAP-system. But then how do I trigger starting this extract-function? Via batchjob?
    2) create a download-program that selects the data from SAP-CRM, creates a file and stores in specific folder. XI polls on this folder, reads it in and communicates via abap-proxy to SAP2. For selecting the CRM data a a batchjob will be created that starts the abap to select the data.
    But..is this the way to do it? Or is there a nicer way?
    Approcah 1 looks fine ABAP proxy to ABAP proxy. You can schedule the report as background job and automate the complete process. With this even error handling during this communication, alerts are clean
    Thanks
    Gaurav

Maybe you are looking for

  • Search for records in the event viewer after the last run (not the entire event log), remove duplicate - Output Logon type for a specific OU users

    Hi, The following code works perfectly for me and give me a list of users for a specific OU and their respective logon types :- $logFile = 'c:\test\test.txt' $_myOU = "OU=ABC,dc=contosso,DC=com" # LogonType as per technet $_logontype = @{     2 = "In

  • OCR and Voting disk SAN config

    Hi, On our standard SAN configuration I normally use RAID 1 for the OCR and Voting disk raw devices. I'm working with a site that has only RAID 5 for their entire SAN. Will RAID 5 be acceptable for the OCR and Voting disk devices?

  • Settings missing location services

    I have a user who says "location services" does not appear on the general tab of the settings app. Does that make any sense? Has it moved in a beta iOS release?

  • How to configure SingleSignOn between GRC and BOBJ 4.1

    How to configure SingleSignOn between GRC and BOBJ 4.1? We have configured the System entitlement in BOBJ CMC. But didn't do anything on the GRC system. User can login from BOBJ to GRC with password but not with SSO. We haven't configured SNC . I don

  • W-4 Information on Portal

    Hi ESS / MSS Gurus, We have configured the W4 service on ECC 6.0 and Portal ver. NW -04S. We are able to see the Header information like 1.Overview   2.Edit   3.Review and save   4.Confirmation. The Infotype information is not showing up on the porta