Communication Link B/W ASP and SAP

Hi All,
         I have rare requirement at clients place i.e I need to capture the data infact the end result of a AP tool developed on ASP to fill few fields in SAP Invoice verification transaction, can some one help me out as how to establish a link between SAP and AP tool.
    The process currently followed by client is they run a ASP tool and the tool displays a final result which is copied and pasted manually in few fields of SAP transaction, now they want this to be automatically done may be by storing the result in SAP and using them in search helps for the fields.
Thanks,
srini.

Thank you, I checked in eTRM but i dint get any link in that, i have a link for gl_je_header,gl_je_lines to xla_ae_header,xla_ae_lines.
In R12 i create one invoice n applied n posted to GL i am able to see the trx in gl_import_references table but in this it was not storing the relevent info in refernce_1,refernce_2..........columns,but in this gl_sl_link_id was there.
In 11i the invoice related information will be stored in reference columns right, but in R12 it was not.

Similar Messages

  • Link of Personnel Number and SAP ID

    Hi guys,
    Is there a link for personnel number and SAP ID?
    In which table can i see both fields?
    Thanks!
    Rgds,
    Mark

    Hi Mark,
    Try infotype 0709 or database table PA0709 if you are looking to link PERNR with PERSONID_EXT.
    For SAP username and PERNR, look at IT 0105 subtype 0001 which is usually the case but can be different for customers as per business process/strategy etc.
    Hope this helps.
    Cheers,
    Sougata.
    Edited by: Sougata Chatterjee on Jan 15, 2009 2:36 PM

  • Communication between non SAP and SAP

    HI,
    do you have some information about communication between non SAP and ERP (WebAs) SAP System ?
    I would like to receive an xml file or xml IDoc from a Java Plattform (non SAP) into our SAP ERP System as an own defined IDoc.
    remember: we don´t have a converter like XI.
    What about using a proxy (do you have some information/blog how to use that) ?
    What about using a webservice (do you have some information/blog how to use that) ?
    What about storing the xml on the application server (do you have some information/blog how to use that) ?
    How to transform xml to IDoc ?
    other methods ?
    Thanks for your help.
    Gordon

    Here is a link to connecting MS SQL Server with SAP using Open Hub connection.
    http://msdn.microsoft.com/en-us/library/dd299430(SQL.100).aspx
    This might give you some insight into connecting with Non SAP Systems.
    I have used the information from this link to export data from SAP to MS SQL Server.
    Good Luck.
    MP.

  • Link between 3rd party software and SAP

    Our company uses a 3rd party software for its payroll processing.  At the end of every 2 weeks, we receive an Excel file that the clerk sorts and uploads into SAP using LSMW.
    The Director of Finance thinks that this process can be achieved much quicker/faster/more efficiently, and he wanted to know if we can directly establish a link between the 3rd party payroll software and SAP. 
    Any thoughts on how this can be established?  Do I have to write a BAPI functional specification for this and work with the ABAP team?
    Thanks in advance for all your help.
    Regards,
    Vijay.

    Hi Vijay,
    Through BAPI / BDC / Idoc you can achive this requirement.
    Ex:
    1 - Create Landing Table in R/3
    2 - Pull Data from Leagacy to SAP Landing Table
    3 - From Landing Table you can post to SAP
    http://www.sap-img.com/general/what-are-the-methods-to-migrate-data-from-a-legacy-system-to-sap.htm
    http://saphrexpert.blogspot.com/2008/11/batch-data-communication-bdc-in-sap-r3.html
    Regards
    Viswa

  • Upload file and link to sales order in SAP via rfc (C#)

    Hello all,
    In my company we have the possibility to attach files to sales orders, e.g. pdf files with the printing details.
    These files are added by the GUI user, this works fine.
    Now we have an extra order creation stream in which a pdf file has to be added to the SO without user interaction.
    In a previous question I had a little question about the linking, that has been solved, I will post the test program later.
    I now can link front end files (pdf's in this case) to the sales orders and it works fine.
    Now we are developing a frontend in C# (build by a third party) which creates a sales order via a RFC. We also want that RFC to include the PDF file and link it to the created order.
    In the interface of the RFC I included a table with 255 char lines. That is the same as in the example program. the problem is that our partner is yet unable to fill the interface in exact the same way as the example program does, so the linked pdf file is corrupted.
    Does anyone have hints how C# should fill the interface table, or how I can change the interface?
    code snippid table declaration for pdf table:
    IT_PDF     LIKE     ZETEX_TAB_PDF
    and
    structure ZETEX_TAB_PDF consists of
    LINE     CHAR255
    the sample program (see other topic on where I got it)
    REPORT  zzfb_brc LINE-SIZE 260.
    * Report  Z_RMTIWARI_ATTACH_DOC_TO_BO
    * Written By : Ram Manohar Tiwari
    * Function   : We need to maintain links between Business Object and
    *              the attachment.Attachment document is basiclally a
    *              business object of type 'MESSAGE'.In order to maintain
    *              links, first the attachment will be crated as Business
    *              Object of type 'MESSAGE' using Message.Create method.
    *              Need to check if we can also use FM
    *              'SO_DOC_INSERT_WITH_ORIG_API1' or SO_OBJECT_INSERT rather
    *              than using Message.Create method.
    * I took this program and removed all the parts for adding URL's and
    * notes.
    * Include for BO macros
    INCLUDE : <cntn01>.
    * Load class.
    CLASS cl_binary_relation DEFINITION LOAD.
    CLASS cl_obl_object      DEFINITION LOAD.
    PARAMETERS:
    *  Object_a
       p_botype LIKE obl_s_pbor-typeid DEFAULT 'BUS2032',    "SO
       p_bo_id  LIKE obl_s_pbor-instid DEFAULT '0000757830', "example number
    *  Object_b
       p_docty  LIKE obl_s_pbor-typeid DEFAULT 'MESSAGE' NO-DISPLAY,
       p_msgtyp LIKE sofm-doctp        DEFAULT 'EXT'     NO-DISPLAY,
    *  Relationship
       p_reltyp  LIKE mdoblrel-reltype DEFAULT 'ATTA'.
    TYPES: BEGIN OF ty_message_key,
            foltp     TYPE so_fol_tp,
            folyr     TYPE so_fol_yr,
            folno     TYPE so_fol_no,
            doctp     TYPE so_doc_tp,
            docyr     TYPE so_doc_yr,
            docno     TYPE so_doc_no,
            fortp     TYPE so_for_tp,
            foryr     TYPE so_for_yr,
            forno     TYPE so_for_no,
           END OF ty_message_key.
    DATA : lv_message_key TYPE ty_message_key.
    DATA : lo_message TYPE swc_object.
    DATA : lt_doc_content TYPE STANDARD TABLE OF soli-line,
           ls_doc_content TYPE soli-line.
    * Create an initial instance of BO 'MESSAGE' - to call the
    * instance-independent method 'Create'.
    swc_create_object lo_message 'MESSAGE' lv_message_key.
    * Upload the pdf file, for now from the frontend, in the future from
    * the server.
    DATA:
    *  dsn(40) TYPE C VALUE '/usr/sap/trans/convert/1.pdf', "server location
    l_lines TYPE i. "filelenght
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename   = 'c:tsimple.pdf'
        filetype   = 'BIN'
      IMPORTING
        filelength = l_lines
      TABLES
        data_tab   = lt_doc_content.
    * no exceptions, the file is there in this example
    clear l_lines.
    loop at lt_doc_content into ls_doc_content.
    l_lines = l_lines + 255.
    endloop.
    compute l_lines =   l_lines
                      + STRLEN( ls_doc_content ).
    ** the coding for the server input, for later
    *OPEN DATASET dsn FOR INPUT IN BINARY MODE.
    *IF sy-subrc <> 0.
    *  EXIT.
    *ENDIF.
    *READ DATASET dsn INTO ls_doc_content.
    *WHILE sy-subrc EQ 0.
    *  APPEND ls_doc_content TO lt_doc_content.
    *  READ DATASET dsn INTO ls_doc_content.
    *ENDWHILE.
    *CLEAR ls_doc_content.
    *CLOSE DATASET dsn.
    * define container to pass the parameter values to the method call
    * in next step.
    swc_container lt_message_container.
    * Populate container with parameters for method
    swc_set_element lt_message_container 'DOCUMENTTITLE' 'Some title'.
    swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
    swc_set_element lt_message_container 'NO_DIALOG'     'X'.
    swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
    swc_set_element lt_message_container 'DOCUMENTTYPE' 'PDF'.
    swc_set_element lt_message_container 'DocumentSize'    l_lines.
    swc_set_element lt_message_container 'DocumentContent' lt_doc_content.
    swc_call_method lo_message 'CREATE' lt_message_container.
    * Refresh to get the reference of create 'MESSAGE' object for attachment
    swc_refresh_object lo_message.
    * Get Key of new object
    swc_get_object_key lo_message lv_message_key.
    * Now we have attachment as a business object instance. We can now
    * attach it to our main business object instance.
    * Create main BO object_a
    DATA: lo_is_object_a TYPE sibflporb.
    lo_is_object_a-instid = p_bo_id.
    lo_is_object_a-typeid = p_botype.
    lo_is_object_a-catid  = 'BO'.
    * Create attachment BO object_b
    DATA: lo_is_object_b TYPE sibflporb.
    lo_is_object_b-instid = lv_message_key.
    lo_is_object_b-typeid = p_docty.
    lo_is_object_b-catid  = 'BO'.
    *TRY.
    CALL METHOD cl_binary_relation=>create_link
      EXPORTING
        is_object_a = lo_is_object_a
        is_object_b = lo_is_object_b
        ip_reltype  = p_reltyp.
    * Check if everything OK...who cares!!
    COMMIT WORK.

    I woudl suggest you check ORDERS05 IDOC type (ORDCHG message type).
    FM - idoc_input_ordchg

  • Email links out of Practice Fusion are not active (as they are in IE), which they say is a problem with "something lost in the communication between the Flash engine and the browser". Does anyone have experience with this?

    This is a medical records system, cloud based. I use Firefox to get into the system, but any browser would work. Other than this problem, Firefox works fine (better than IE, in my opinion).
    Patient demographics include their email, which is hyperlinked and should go right to Outlook (my default email program). This works in IE, but nothing happens on the click when using Firefox as the browser.
    I queried Practice Fusion, which replied: In regards to your previous question about the email hyperlink in the patient information, it looks this is not something that can be fixed on our end right now. It is the web browsers' responsibility to handle these types of links, and there seems to be something lost in the communication between the Flash engine and the browser. I apologize for any inconvenience.
    Thanks for any help anyone can provide.

    See if this helps you:
    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • Clicking on a link it says it is . Asp and goes black

    I click on a link and it says its an .asp and it goes black and I am unable to view anything

    .ASP is a windows server thing.
    It's possible it is trying to send you objects or scripts your ipad can't handle.

  • Windows 2008 symbolic links and SAP

    Dear Gurus.
    Is it supported to use windows 2008 symbolic links for sap directories?    
    For examle disk E: is small local disk and "sap" folder is symbolic          
    link to network share ?                                                    
    Regards
    Vladimir Kogan

    Hi,
    As far as I know it is not possible in Win 2008. Check below link & see if you get any important information.
    SAP on Microsoft Windows
    Hope it helps
    Thanks
    Sushil

  • SAP Easy DMS - Link between Document Area and Document Types

    Deat Friends,
    Is there a transaction code or a customizing available to link the Document Area and Document Types??
    For example: Document Area (DMS) is linked with Document Type (DRW)
    Thank you,
    Sri

    Hello Chandu,
    We are trying to create a documents via TCODE: CVO1N
    One of the entry we need to populate is the "DOCUMENT TYPE" to create a document. If, we enter the Document Type = DRW, we are not able to see our custom Storage Category while attaching/Check-in a document.
    Where as, If, we enter the Document Type = DMO, we are able to see our custom Storage Category while attaching/Check-in a document.
    I see that the Document Type = DRW is linked to Document Area = DMS
    Similarly, the Document Type = DMO is linked to Document Area = FILESYSTEM
    My question is, Is there a transaction code or a customizing option available to link the Document Area and Document Type?
    Thank you,
    Sri

  • Links for tutorials and SAP Help

    Dear Moderators,
       Can you please provide us urls for useful tutorials and SAP help for developing the crystal reports and deployment. What is the infrastructure required for the development and deployment.
    Thanks!
    Surya.

    Hello Surya,
    I'm assuming from the context of your question that you're interesting in integrating Crystal Report to SAP - in the BI or reporting off of BW Queries.
    This is certainly possible via the "SAP Integration Kit" offered with BusinessObjects Enterprise.  Active discussion concerning the "SAP Integration Kit" and creating Crystal Reports can be found in the Business Objects forum:
    [https://www.sdn.sap.com/irj/sdn/businessobjects-forums|https://www.sdn.sap.com/irj/sdn/businessobjects-forums]
    There's a "SAP Integration Java SDK" that allow web developers using BusinessObjects Enterprise Java SDK to develop web applications to interact with BW Queries in Crystal Report with SAP:
    [http://support.businessobjects.com/documentation/product_guides/boexir2/en/BusinessObjects_SAP_JavaSDK.pdf|http://support.businessobjects.com/documentation/product_guides/boexir2/en/BusinessObjects_SAP_JavaSDK.pdf]
    This forum is for discussions for Java SDK development outside of BusinessObjects Enterprise and SAP Integration.  The Java Reporting Component won't allow you to create or view reports if they're reporting off of BW queries. 
    Questions concerning the SAP Integration Kit is best asked in the "Business Objects" forums, and questions concerning the SAP Integration Java SDK is best asked in the "Business Objects SDK -> Java Development - Business Objects Enterprise"  forums.
    Sincerely,
    Ted Ueda

  • Using ale u can send from sap to sap and sap to non sap systems

    hi,
    using ale u can send from sap to sap and sap to non sap systems,
    then what is diff b/w ALE and EDI

    Hello KALYAN KUMAR,
    Application Link Enabling (ALE)
    1.You distribute data using ALE if you want to communicate from one system to one or more other (mostly internal) systems.
    2.ALE transfers data in IDoc format and uses the methods of tRFC for data transfer.
    3.ALE enables the integration of business processes across several SAP or non-SAP systems.
    Electronic Data Interchange (EDI)
    1.You use EDI if you want to exchange business application documents with an (external) partner system (for example, a customer or vendor).
    2. The SAP system sends EDI messages in IDoc format to an EDI subsystem, where they are converted to a universal EDI standard (UN/EDIFACT or ANSI/X12).
    3. This enables communication with non-SAP systems.
        By definition, two partners are involved in the process in an EDI application scenario: The sender and the recipient of an EDI message
    I hope u understands the difference:)

  • Organization announcements Using CRM and SAP portal

    Dear Gurus,
    I am trying to build functionality for an organization to do their announcements using CRM 7.0, Once the announcement is published it should be visible on the SAP Portal. I am planning to do like this:
    1) Create a campaign using mail form (Announcement content) and target group
    2) Select the communication method as e-mail and I have done settings in SPRO to create the activity for an outgoing mail
    3) Release the campaign and execute the campaign
    4) Upon execution the CRM system will create the activity for an outgoing email (announcement)
    4) Create an iView in portal
    5) Pull the activities created on CRM and display on the portal iView
    My questions are:
    1) Is there any standard iView to do this
    2) Is there any other standard functionality available to do this announcement using CRM and Portal
    3) What are the lining table between Campaign activity and mail forms (e-mail content for announcement) - When I go activity search on CRM WEB UI I can see these activities and also I can see these activities on CRMD_orderadm_h, but unable to get the link tables between this activity and outgoing mail forms.
    Thank you in advance and appreciate your help.
    Regards,
    Reddy

    Dear Gurus,
    I am trying to build functionality for an organization to do their announcements using CRM 7.0, Once the announcement is published it should be visible on the SAP Portal. I am planning to do like this:
    1) Create a campaign using mail form (Announcement content) and target group
    2) Select the communication method as e-mail and I have done settings in SPRO to create the activity for an outgoing mail
    3) Release the campaign and execute the campaign
    4) Upon execution the CRM system will create the activity for an outgoing email (announcement)
    4) Create an iView in portal
    5) Pull the activities created on CRM and display on the portal iView
    My questions are:
    1) Is there any standard iView to do this
    2) Is there any other standard functionality available to do this announcement using CRM and Portal
    3) What are the lining table between Campaign activity and mail forms (e-mail content for announcement) - When I go activity search on CRM WEB UI I can see these activities and also I can see these activities on CRMD_orderadm_h, but unable to get the link tables between this activity and outgoing mail forms.
    Thank you in advance and appreciate your help.
    Regards,
    Reddy

  • SAP XI 2.0 and SAP XI 3.0

    can any one differentiate the feautures of SAP XI 2.0 and SAP XI 3.0??

    Hi Gabriel,
    SAP XI 3.0 enhances the functional range of SAP XI 2.0 by a lot of new features. The most important new features are:
    Cross-component Business Process Management
    a.You can model executable integration processes and
    store them in the Integration Repository.
    b. You can execute integration processes on a Business
    Process Engine that is part of the SAP XI runtime
    environment.
    B2B Integration
    a. Collaboration partner data can be maintained in the
    Integration Directory.
    b. A Partner Connectivity Kit (PCK) allows the
    integration of business partners not using SAP XI or
    other integration solution.
    Industry standard support
    a. RosettaNet communication with business partners is
    supported through a RosettaNet adapter.
    b. The RosettaNet adapter is part of an overall package
    to enable SAP solutions to participate in RosettaNet
    integration.
    Adapter Framework and certification of adapters
    a. A JCA-based adapter framework allows the integration
    of adapters provided by SAP as well as by partners.
    b. The integration of partner adapters is certifiable.
    Simplified Configuration by Using Integration Scenarios as Templates
    a. You can configure integration scenarios from the
    Integration Repository and semi-automatically generate
    all relevant configuration objects.
    Enhanced Integration Builder functions
    a. You can define data-dependent user authorizations
    b. You can define an infinite number of change lists for
    each user and exchange objects between different
    change lists of different users.
    Check these links
    Re: XI 3.0 vs 2.0
    is there any diff between sap xi 2.0 and 3.0?
    Documentation of XI2.0 & XI3.0
    http://help.sap.com/saphelp_xi20sr1/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Cheers...
    Vasu
    <b>** REward POints if found useful **</b>

  • ABAP Query and SAP quary

    What is the diff between ABAP Query and SAP quary?

    Balu,
    SAP Query
    Purpose
    The SAP Query application is used to create lists not already contained in the SAP standard system. It has been designed for users with little or no knowledge of the SAP programming language ABAP. SAP Query offers users a broad range of ways to define reporting programs and create different types of reports such as basic lists, statistics, and ranked lists.
    Features
    SAP Query's range of functions corresponds to the classical reporting functions available in the system. Requirements in this area such as list, statistic, or ranked list creation can be met using queries.
    All the data required by users for their lists can be selected from any SAP table created by the customer.
    To define a report, you first have to enter individual texts, such as titles, and select the fields and options which determine the report layout. Then you can edit list display in WYSIWYG mode whenever you want using drag and drop and the other toolbox functions available.
    ABAP Query, as far as I Believe, is the use of select statements in the ABAP Programming. This needs a knowledge of Open SQL commands like Select,UPdtae, Modify etc. This has to be done only by someone who has a little bit of ABAP experience.
    To sum up, SAP queries are readymade programs given by SAP, which the user can use making slight modification like the slection texts, the tables from which the data is to be retrieved and the format in which the data is to be displayed.ABAP queries become imperative when there is no such SAP query existing and also when there is a lot of customizing involved to use a SAP Query directly.
    Check out these links.
    http://help.sap.com/saphelp_46c/helpdata/en/35/26b413afab52b9e10000009b38f974/content.htm
    http://www.thespot4sap.com/Articles/SAP_ABAP_Queries_Introduction.asp
    Step-by-step guide for creating ABAP query
    http://www.sappoint.com/abap/ab4query.pdf
    ABAP query is mostly used by functional consultants.
    Kindly reward points by clicking the star on the left of reply,if it helps.Kindly close your previous threads if your problem is solved and reward points for helpful answers.
    Don't forget to reward if useful...

  • Lotus Notes 7.0.1/7.0.2 and SAP Business Workflow

    Hi Everyone!
    Please help me on this.
    My client has received an email from IBM that they could have their SAP Connector free of charge if they are to upgrade their current <b>Lotus connector</b> ver5 to <b>version 7.0.2</b>.  This version has included Workflow Integration as part of IBM's integration points with SAP.
    Does anyone have an experience on integrating the two?  Please share documents or procedures on how to integrate them.
    My current configuration is intended for a <b>1-way communication integration</b>.
    I used the report <b>RSWUWFML2</b> for sending notifications (though in my case, it <i>only sends a message that there were workitems present in the recipient's SAP inbox</i>).  The SMTP configuration works fine.  The client has not yet purchased the SAP connector.
    If the SAP Connector is now available, the <b>2-way communication</b> will be imposed.
    I am planning to configure a 1-way communication integration where it could <b>work either on a 1-way or 2-way communication</b>.  Is this possible?
    Can I have a configuration (for sending of workitems to Lotus mail or internet mail) which could have a link that connects the recipient to the transaction for approval or workitem execution?
    Thank you very much experts!!!
    Best regards,
    Reymar

    Hi,
    IBM Lotus Connector for SAP Solutions is a set of two technologies that can be used to integrate IBM Lotus Domino and SAP enterprise resource planning software.
    Lotus Connector for SAP Solutions facilitates data transfer and access to SAP software from Lotus Domino.
    Lotus Connector for SAP Solutions enables Lotus Notes mail users to receive summaries of SAP workflow items in their Lotus Notes in-boxes, from which the open work item can be launched with the click of a button.
    The difference between IBM Lotus Connector for SAP Solutions and IBM Lotus Connector for SAP R/3 with MTA and Workflow is revision 1.7.2 of IBM Lotus Connector for SAP R/3 with MTA and Workflow.
    Operating system platforms are supported by Lotus Connector for SAP Solutions with Lotus Domino 7 are supported on the following Lotus Domino 7 server platforms:
    Microsoft Windows 2000 Server and Advanced Server
    Microsoft Windows 2003 Server and Server Enterprise Edition
    IBM AIX 5.2 and 5.3
    Sun Solaris 9.0
    Novell SuSE Linux Enterprise Server 8 and 9
    IBM i5/OS V5R3 and V5R4
    Releases of Lotus Domino are supported with Lotus Connector for SAP Solutions are Lotus Domino 6.x and higher and Lotus Enterprise Integrator 6.x and higher are supported
    Releases of SAP software are supported with Lotus Connector for SAP Solutions
    is version 1.7.2 supports SAP R/3 4.6 and higher, including SAP R/3 4.7 Enterprise and SAP ERP Central Component (ECC) 5.0.
    Thanks and Regards,
    Prabhakar Dharmala

Maybe you are looking for