CAD integration with sap

could any CAD integration experts give me some integration capability documents? i'm new to this area, just want to know the integration points between the cad and sap...for example: I've read some material, it saids that when the CAD design is near to complete, the material used in CAD will be transferred to SAPu2026
The question is: how the CAD material is integrated with SAP  material master data? is this two different set of material master data? thanks in advance!

Hi,
It is not required to use interface only when the design is completed in CAD..these interfaces are bulit in such a way it will support complete CAD document life cycle ...
http://wiki.sdn.sap.com/wiki/display/PLM/CADIntegrationin+PLM
Thanks,
Suresh HP

Similar Messages

  • Brief discussion on SAP XI and its' Integration with SAP MDM.

    Hi,
    I have never worked on SAP XI.
    I am discussing it on brief, please give your valuable replies.
    SAP XI consists of System Landascape Directory(SLD).
    SLD Consists of Business System and Techinical System.
    Technical System contains all information about the software
    component. The Business System consists of Inbound and Outbound Business
    System which are used as logical names for data transfer.
    There is communication Channel for Receiver and Sender Business System and n agreement
    is signed between Sender and Receiver.
    Outbound Interface defined for Business System Outbound and Techical System associated
    with the Business System,
    Inbound Interface defined for Business System Inbound and Techical System associated
    with the Business System.
    In SAP NetWeaver XI Integration Directory, we have defined the Integration Scenarios,
    Actions, Interface Objects, Mapping Objects, Adapters Objects.
    Mapping Object defines the Structure and Value Mapping.
    Adapter Objects defines the Adapter program which implements RFC Adapter, FTP Adapter logic.
    FTP Adapter is used for XI-MDM Communication.
    RFC Adapter is used for XI-ECC Communication.
    Integration Repository: Both Outbound and Inbound Interfaces are Mapped with Value mapping and
    Structure Mapping inside Integration Repository.
    The File Adapter takes the File from the Outbound port of MDM System
    and sends it as IDOC to Receiver Business System.
    Value Mapping must be done between Sender and Receiver interfaces.
    Value Mapping is done by XSLT or Java based program.
    SAP NetWeaver XI Integration Server at runtime:
    Message Split, Interface Determination, Receiver Identifaction, Mapping, Techincal Routing
    and Call Adapter Proccess are done.
    In SAP XI 3.0 and MDM 5.5:
    Step 1: Create busines system as service.
    Step 2: Create communication channel for each business service. If the system can communicate
    through different channels, then create all possible channel types if necessary.
    Step 3: Create receiver agreement between the systems.
    Step 4: Interface determination:
    - Here you see for the first time the software component mentioned;
    there are some special requirements regarding this software component in relation to the customizing ID mapping.
    - To modify this software component, the customer needs to copy the SAP standard delivered software component
    into its own namespace. The customer is able to modify to create archives
    for the customized ID mapping.
    Receiver determination.
    Configure an FTP Server on the MDS.
    Create a send folder for outbound messages using outbound port(s) for
    remote systems(s).
    Create receive folder inbound messages using inbound port(s) for remote systems.
    This ia all about concept of SAP XI Infractsture and its' Integration with SAP MDM 5.5.
    Regards
    Kaushik Banerjee

    Hi Kaushik,
    You must be aware of File types that MDM Import Manager can Import i.e. we have XML, Excel etc. Now there are two transactions to extract data from R3
    1. MDMGX -
             - For lookup table extraction
             - Output in XML format which MDM can import without using XI.
              - FTP can be configured to put the file in the desired folder which will be then picked by Import Server.
    2. MDM_CLNT_EXTR -
              - For Main table records.
              - Output is in Idoc format which MDM doesn't understand hence we need XI in between which converts Idoc file received from R3 into XML which can then be imported using Import Manager or Import Server. For this we need to implement XI Scenario that consists of Source System, Receiver System, Type of Data etc.
    Just a basic understanding...
    Regards,
    Jitesh Talreja

  • MS Word integration with SAP CRM: can a PDF be created from the MS Word doc

    21/11
    Gurus,
    I know have a better understanding of the topic but still have 2 open questions.
    I now know that StreamServe cannot read .DOC files but can read and work with .PDF files.
    Since we are in a SAP forum and not a StreamServe forum,
    1/ I am wondering if SAP CRM 2007 can convert the MS Word generated and populated documents into .PDF. Possibly immediatly.
    2/ Can the MS Word generated and populated documents be saved by SAP CRM 2007 as .XML files?
    Thanks again.
    Dear All,
    On my project, there is a requirement to generate ad-hoc and amendable letters in CRM (2007).
    We might have +150 letters so I am thinking about using MS Word integration with SAP CRM to deliver this.
    With SAP CRM 2007, I understand that it is indeed possible to generate WebServices that will then be consumed by Word templates through the mail merge functionality. So agents will not have to enter BP name, address and so on. All this can be done by configuration which is great.
    My point of concern is how to integrate this design to StreamServe for printing purpose (we do not want to go into local printing)
    Can StreamServe collects the Word generated document?
    Should this Word document be converted as PDF before or can StreamServe do it?
    Should StreamServe exploits the XML contents within the Word generated document?
    Thanks for your help and insights about this.
    Brice.
    Edited by: Brice Vialle on Nov 21, 2008 9:26 PM
    Edited by: Brice Vialle on Nov 21, 2008 9:34 PM

    Hi Chris,
        Your advice helps me a lot, thank you.
        I upload an XML-Format template Word Doc to server as a MIME Object.
        When OfficeControl is started in Web Dynpro, OfficeControl automatically open the XML-Format template.
       For the first time, I get the XString-type Context attribute bind to the content of the Word Doc,
       then translate it to string, I got the XML-format content, it's great!
       However, after the first time, when I input any new contents in MS Word in Web Dynpro,
       no matter I execute "Ctrl + S" or click the "savedocument" button,
       when I translate the XString Context attribute to String, I got messy code. (but the first time, it is good plain text)
       I use the function module: ECATT_CONV_XSTRING_TO_STRING (good for first time, dump after first time),
       SCMS_XSTRING_TO_BINARY, SCMS_BINARY_TO_STRING (good for first time, messy code after first time).
       My Demo source code is in: (system) SMV --> (local object) zhaode --> (Dynpro Component) ztest_office_control
       core source code is as:
       clear itab.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER = lv_datas
        IMPORTING
          OUTPUT_LENGTH = lv_length
        TABLES
          binary_tab = itab.
      CALL FUNCTION 'SCMS_BINARY_TO_STRING'
        EXPORTING
          input_length = lv_length
          mimetype = 'text/plain; charset=utf-8'
        IMPORTING
          text_buffer = lv_datas_string
          output_length = lv_data_len
        TABLES
          binary_tab = itab.
        Can you give me some advice?
    Best Regards,
    Derek

  • How can SMART METER Technology be integrated with SAP ISU system?

    At present the SMART METER technology is integrated with SAP ISU through a third party vendor. The idocs are sent to a third party and the readings are downloaded and sent back in idoc segments.
    How can the integration be done without the third party intervention.

    HI
    SAP XI   needs to be  used for 3rd party  intervention to  send and recive idocs..
    or there are some thrid party  softwareslike MDUS ,meter data utilisation  system.which  wil be again a interface between  sap and ami system
    so basically  its like  sap syst--sap xi3rd patry 4 ami  comapnyami system
    kr
    raj

  • BOXI 3.0 integration with SAP Portal

    Hi All,
    May I know how to integrate BOXI 3.0 reports with SAP portal 7.0/7.1?
    Best Regards,
    Ritesh

    Hi,
    Please find a thread to understand BOXI integration with SAP portal.
    Configure BO with SAP Portal
    BO integration kit for SAP is available at
    https://boc.sdn.sap.com/node/18962
    Best Regards,
    Ritesh

  • MM Configuration for integration with SAP SNC

    Hi,
    I need to make MM configuration required to support PO collaboration and SMI process integrating with SAP SNC.
    ANy kind of information would be very much helpdull
    Thanks
    Vikas

    Hi Vikas,
    MM configuration for PO collaboration is depend upon the your requirements. e.g. You want to upload the confirmations send by the supplier from SNC web UI to your R/3 system you have to use confirmation control key while creating PO in R/3 and make corresponding supplier confirmation control either optional or mandatory in SNC configuration. Default provided by SAP is optional.
    Remember supplier can create confirmations only if ther either optional or mandatory.
    Regards
    Pravin

  • Weighing Scale integration with SAP ( Packing Station)

    Hi All,
        We need to have our Weighing Scales integrated with SAP to capture the READINGS for parcels / cartons / shipments automatically.
        I observe there is a provision for maintaining RFC connection , Scale Checkbox etc in SPRO--->Logistics Exec ---> Packing --->Set profile for packing  w.r.t  HUPAST  tcode ...
        Would you plz help me with some work-arounds ...???
    Regards
    Jamna

    Hi Folks,
        There is  XMI technology available that can be potentially leveraged for this type of requirements in integrating any electronic gadgets talking to SAP ....
    I think SAP XMI will be vry useful for this.
    XMI is having ability to capture real time data from other system and update accordingly.
    It has have connectors which will capture values from other system and pull in SAP.
    How to Integrage Weigh Scale with OPC server via xMII 12.0
    Hello Experts,
    I am new to xMII. We want to integrate shop floor weigh scale into SAP PI Sheet to read the value from weight scale into PI Sheet. We have the infrastructure Ohaus weigh scale, xMII 12.0, SAP ERP 4.70, Kepware OPC Server, installed xMII framework for UDS and UDS 4.0. We are able to integrate the OPC Data tags into SAP PI Sheet successfully. But we need help to integrate weight scale with OPC server to read the scale value into OPC data tag.
    Can any one give the steps to integrate weight scale with OPC server?
    with best regards
    K. Mohan Reddy
    I know someone who have developed few applications on integrating weighing machines with R/3.
    By: | 04 Dec 2008
    i am working as a ABAPer in my company and developed DLL in VB6 on integrating weighing machines with R/3.
    implemented and working in more than 10 sites.
    By: | 12 Dec 2008
    ERP-Scale from Pocket Programs provides a standardized u201Cplug & playu201D interface for weighing equipment. It is SAP Certified and can be used for integration of weigh-scales with the SAP Packing Station transaction (HUPAST) or with custom ABAP developments. Major international companies are already gaining benefit by implementing ERP-Scale in their plants worldwide.
    By: | 04 Feb 2009
    Re: Custom development for UDS
    What have to say folks about the possibilities with the above ? But shouldnt SAP have some standard FM / RFC / BAPI owefully facilitating the same???
    But the available FM  HU_GET_RFC_DATA  doesnt have any documentations attached to it ?
    Regards
    Jamna

  • SAP E - Recruitment Integration with SAP PA ES Module

    Hi all,
    I have SAP Recruitment Application to be integrated with SAP PA_ES Module (SAP HR) through XI..
    Now I have 2 questions;-
    1.Does SAP recommends both the above mentioned applications on same SAP BOX ie the system will have both the application with the different clients  on SAP system or a sort of addon...If yes , how the integration can made?
    2.What is recommended/Suggested scenario for integration i.e. which adapters shall be used for this configuration??
    it would be really very helpful if someone could throw some light on this
    Regards,
    AshwinM

    Aswin
    Why dont you check the following thread for more info
    E-Recruitment
    regards
    krishna

  • Issues in BO integration with SAP EP

    Hi All,
    integration of SAP EP 7 and BOexi3.1.
    My requirement is to show the BO WEBI reports in portal. My scenario is like directly connecting to BO from EP using SSO with out connecting to BI.
    For Bo,Only data is comming from BI , Roles and  user creation are saperately is done in BO only. Is it possible to connect do sso between SAP EP and BO with out connecting to BI.
    BO is not using any Active Directory., users and roles  are created in its own database and Portal users are stored in ume data base. how to achive sso between SAP EP and BO.
    Thanks
    Rajeev

    Hi,
    Go through the below link which gives great details on the BOXI integration with SAP EP.
    http://wiki.sdn.sap.com/wiki/display/BOBJ/IntegrationofBOEXI3.1intotheSAPEnterprisePortal+7.x
    You should be able to get the SSO details also here.
    Regards,
    Noor.

  • Melita Predictive Dialer Integration with SAP CRM WebIC

    Hello All,
    Does any one have any information about "Melita Predictive Dialer" integration with SAP CRM Web IC.
    Please let me know.
    Thanks
    Amar Reddy

    Hello Amar,
    I am only aware of a few customers who have integrated predictive dialing into the Interaction Center, and those customers all used Genesys or Avaya. I'm not aware of anyone who has done this with Melita yet.
    By the way, I wrote a high-level Blog on the topic of automated dialing available on PBX:
    Link:Does Automated Outbound Dialing Fit in Your CRM / Call Center Strategy?
    Warm regards,
    John

  • Sms integration with sap b1

    HI to all,
        can it possible if sms integration with sap business one. means if i create a/r invoice if i add the document automaticlly send sms to the customer  in that sms following matter to be send
    invoice number,posting date,due date,invoice amount.can it possible .if yes then what is requirement for that.pls reply i will waiting for your reply...
    Regards,
    vishal.

    hi
    1.Create  class library in Visual Studio 2005 C# Express Edition create assembley  SQLCore
    Write code:
    using System;
    using System.IO;
    using System.Text;
    using System.Net;
    namespace SQLCore
        public static class SMS
            public static void PlusSend(string Sender, string Recipient, string Message)
                string Destination = "http://www.text.plusgsm.pl/sms/sendsms.php";
                string Data = "?tprefix=" + Recipient.Substring(0, 3) + "&numer=" + Recipient + "&odkogo=" + Sender + "&termin=0&tekst=" + Message + "&godz=00&min=00";
                SMS.PostStringToURI(Destination, Data);
            private static void PostStringToURI(string URI, string String)
                byte[] Bytes = Encoding.UTF8.GetBytes(String);
                HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(URI);
                Request.Method = "POST";
                Request.ContentLength = Bytes.Length;
                Request.ContentType = "application/x-www-form-urlencoded";
                Stream RequestStream = Request.GetRequestStream();
                RequestStream.Write(Bytes, 0, Bytes.Length);
                HttpWebResponse Response = (HttpWebResponse)Request.GetResponse();
                if (Response.StatusCode != HttpStatusCode.OK)
                    string Message = String.Format(
                    "POST failed. Response staus {0}.",
                    Response.StatusCode);
                    throw new ApplicationException(Message);
    for your localization you have to find your own sms gateway.
    2.Compile project .
    3.Copy dll to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn
    4. Set SETTRUSTWORTHY on true using
    ALTER DATABASE databasename SETTRUSTWORTHYON;
    go;
    [more info about SETTRUSTWORTHY|http://msdn2.microsoft.com/en-us/library/ms187861.aspx ]
    5.Create Assembly for your dll.
    CREATE ASSEMBLY SQLCore
    FROM 'C:\Program Files\Microsoft SQLServer\MSSQL.1\MSSQL\Binn\SQLCore.dll'
    WITH PERMISSION_SET = EXTERNAL_ACCESS
    6. Create Procedure
    CREATE PROCEDURE dbo.[PlusSend](@Sender nvarchar(max), @Recipient nvarchar(max), Message nvarchar(max))
    AS EXTERNAL NAME SQLCore.[SQLCore.SMS].PlusSend
    go;
    7 .Fially execute using
    EXECUTE dbo.[PlusSend]('SENDER'','PHONE NUMBER','Message')
    Insert it in transaction notification.
    Hope it helps.

  • Best practices of integration with SAP Netweaver

    Hi All,
    I'm totally new to SAP Netweaver but I have a task to integrate our system with SAP ECC (R/3). We are using SAP Netweaver 6.4. The goal of integration is to provide for user list of available modules (Sales and Distribution, Human Resource, Payroll, etc) and when user selected for example Payroll we need to display list of available BAPIs. In general weare able to create Enterprise Web Service for some BAPI and consume it. But the problem is that everytime when administrator changed BAPI process (for example added new field to Business Object) we need to regenerate wsdl and change our client application. Does Netweaver provide some Web Service which can retrieve list of applications, list of BAPI processes and can retrieve meta data of some BAPI? Something like Partner Web Service interface?
    We are looking for best practices of integration with SAP Netweaver. We are trying to develop something like adapter which will be able to pull data into SAP ECC system is there any generic way to develop this adapter?
    Thanks in advance for your help.
    Yura.

    Hi Yura !!
    As far as I know, this is not possible yet. Using SAP Netweaver XI/PI, although it adds value to the webservice scenario exposing BAPI functionality, it also needs to maintain a refreshed version of the BAPI definition in its repository. Depeding the complexity of the change in the BAPI structure, maybe PI may allow you to continue working without changes.
    Maybe a good practice is not to make too much changes to a production BAPI, instead make a review in development environment, and once it is stable, use it in production. Other good practice is to keep older versions of BAPIs and add the changed ones as new versions to have back-compatibility
    Regards,
    Matias.

  • How to delete users in CMC BO integrated with SAP BW

    hello experts,
    i am using bo 4.1 , i want to delete users in CMC which is integrated with SAP BW role import.
    i am deleting manually but after BW connection refresh again users is coming in to CMC.
    please tell me any alternate way to delete users
    thanks,
    naresh.

    Hi,
    You cannot delete the users if they are integrated with SAP BW role import.
    However if you remove all the roles that the users is/are member of then the user will be removed automatically in next update but by doing so it will remove all other users part of those groups that you are not interested in also.
    may i know why are you looking to delete users ?
    If you delete manually then all the personal folders will be vanished and even if your user comes back in the next update you will not be able to recover the personal folders.
    Thanks,
    Tanveer.

  • Integration with SAP Records Management

    Dear SAP gurus,
    We are in SRM 7 EHP 1 with backend ECC 6 EHP 5. We are exploring PPS (Procurement for Public Sector) feature in SRM. We see that using PPS we can have integration with SAP Records Management. To be honest, I never see SAP Records Management so we want to confirm the functionality. Our legacy system require a electroning filing system, in which all documents related to procurement is scanned (whether it is document from system, or the one created manually), and then stored in a server in a pdf format.
    Does SAP Records Management have this functionality in which it stores the pdf doc inside one server? If not, what is exactly the functionality of SAP Records Management?
    Best regards,
    John

    Hi,
    SAP Record Management is now known as SAP NetWeaver Folders Management.
    Contact your NetWeaver consultant to imlement SAP NetWeaver Folders Management.
    Some important links:
    1. http://wiki.sdn.sap.com/wiki/display/HOME/SAPRecordsManagement
    2. http://www28.sap.com/businessmaps/0531547C7FE54C6A9E9B5850836F5E43.htm
    3. http://help.sap.com/saphelp_nw04/helpdata/en/f5/18fc39eb31a700e10000000a11402f/frameset.htm
    Regards,
    yaniVy
    reward if helps

  • Outlook Express Integration with SAP Business workflow

    Hi,
    There is a user requirement for Outlook Express Integration with SAP Business workflow for PR approvals.
    They want a link to be put in there outlook inbox so that the approvers can directly release the PR's worklist without seperately login into the SAP system. We are using 4.7 version.
    I went through some ABAP material where i came across T-Code SCOT and Program RSWUWFML to schedule a job to pull worklists. But Iam not sure about this.
    I want to know that whether this is possible in first place and if it is then how can we do it.
    Regards
    Vivek Nair

    Hi ,
      Thanks for the link..
    but its not the one I have been looking for ragarding the mentioned scenario.
    !)A User will be present in both outlook express and SAP system ,when we add a security group (SG *) in outlook expressthe user will get authorization on Portal screen.
    2) After assigning a role in R/3 ,we should add the security group to that use for some access permission.
    Could u pls explain me how the concept could be and Integration method.
    Thanks in advance
    I appreciate all your help.

Maybe you are looking for