Help File to Be Integrated with Sap System

Dear sir
Please get me how to integrate the help file[ERP 2004 help ] with SAP System. I M Not able to get the help from the system the error it throw is no document available i want the help of .chm file so is there any way to integrate that file with SAP system so that we can cget help from sap system itself
I m Using ECC 5.0
Regards
Ashish

you can place (install) the help files on any machine you want, at least it has a web server on it.
you can then specify the "Server Name" and "Path" in SR13 to this server (e.g. Server Name = mywebserver.mycompany.com:1080, Path = helpdata)
the clients open the associated program to the extension of the files (in case of .chm and .html it would be most likely the Internet Explorer)
kr, achim
check this link: https://websmp106.sap-ag.de/~sapdownload/011000358700002110712004E/SAPLibInstGuide_640_EN.pdf
Message was edited by: Achim Hauck

Similar Messages

  • 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

  • Third Party Systems Integration with SAP Business One

    Different techniques are available in SAP Business One for Integration such as DI API, DI Server, B1WS, etc. In this blog article we tried to describe the architecture and details of different techniques through which ‘Third Party Systems Integration with SAP Business One’ usually happens
    Third Party Systems Integration with SAP B1 - APPSeCONNECT

    Hi,
    Thanks for sharing such excellent blog with advantage and limitations.
    Thanks & Regards,
    Nagarajan

  • 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

  • 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.

  • 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

  • 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

  • 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.

  • Portal integration with Agile systems

    Hi All,
    Has anybody worked on Portal integration with Agile systems. I mean pulling data from Agile systems.
    Any specific documentation would be of help.
    Regards,
    Tom

    Tom,
    you may want to check this
    https://www.sdn.sap.com/irj/scn/advancedsearch?query=agile&cat=sdn_all
    Thanks
    Bala Duvvuri

  • 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.

  • Integration with SAP BI - SAP BO XI  integration kit or PerformancePoint?

    Hi all,
    We would like to get some thoughts on SharePoint integration with SAP BI.Could you please help us in solving the following questions:
    1. Which one is better? SharePoint integration through PerformancePoint Server 2007 or SAP Business Objects(SAP BO XI integration kit)?
    2. What are the starting point(system requirements) to develop a prototype on both the methods?
    I was able to find some info on both PPS and SAP Business Objects from the sdn forums and also from sdn documents(those were really helpful,thanks!) but it didnt provide a detailed insight into which one to opt for or how you can goahead.If someone has got more info on this please let us know.
    Thanks
    Kukku

    Hi Sergey,
    That was really a very helpful peace of information on what I was actually looking for!
    So as per my understanding PerformancePoint Server cannot report directly from SAP ERP(you mean SAP BI specifically right? ).So is there any third party software that we need to use for PPS integration with SharePoint?Are we still trying to connect to SAP BO or directly to SAP BI.
    Also can you provide some info on what kinds of reports can we publish using PPS.
    Please correct me if wrong.
    We are trying to build a prototype on both type of integration.Our front end is SharePoint and our ultimate goal is to provide the SAP BI reports through SharePoint Portal.
    Thanks
    Kukku

  • Third Party Recruitment Software integration with SAP HR

    Dear Experts ,
    Iam given a scenario where in the client wants the Erecruitment software Taleo to be integrated with  SAP HCM.The HR recruiters/Managers are currently hiring them into the taleo software and from there the data need to be pushed to the SAP employees's infotypes.
    In Addition to this the benefits infotype need to be maintained automatically in the system.Is there any way to automatically default the benefit infotype also
    Kindly suggest a solution for this.
    Regards
    Gopa

    You will need interface(s) between Taleo and SAP....If Taleo is your recruiting system...then they may want...
    Outbound from SAP: Interface that sends them vacant position data from SAP (you need this so that when Taleo sends you finally an employee data after hiring they can send you the position data with it).
    Outbound from SAP: You may also need to send them terminations from SAP (optional - may be needed depending on your company process for handling rehires)
    Inbound to SAP: This is the main file from Taleo after offer is accepted and employee is hired in Taleo. At this time Taleo will send you a file for which you can write an interface to hire these employees into SAP. You can do a BDC session with PA40 - you may have to determine if its a hire or rehire here. If you are processing payroll then its important to make sure you have all the payroll related info types (if they are not coming from Taleo then you should at least have them defaulted to what your client agrees).
    The second part to your question
    Creating benefits depends on how you are getting or determining benefits data.
    1. Benefits configuration has something called automatic/default plans...
    >>> "Automatic" plans are something employee is enrolled into and has no option to change them.
    >>> "Default" plans are something employee is enrolled into on new hire and typically has 30 days to make changes...this is standard configuration for each plan and should be completed.
    If it is controlled via benefits config then you just need to go through hire action...and typically as part of that hire action - IT0378/IT0171 will prompt you to go to benefits enrollment screen and enroll employee...into these automatic/default plans...plans will be pre-selected based on configuration. So all you do here is hit save and continue with rest of hire action. All this is recordable via BDC session.
    2. If it is NOT controlled via configuration...and you are getting benefit plan details in the file then you just create them in the corresponding info types...IT0167/0168 etc. For processing sanity I would separate hire and benefits creation as two step process if all the data is coming via files...
    Happy interfacing...

  • TPM recommendation to be integrated with SAP

    Hello SD experts,
    I'm researching a TPM (Trade promotion Management) software for our client to handle their promoitons and to be able to accurately forecast sales - which can be integrated with SAP.
    The TPM module SAP provides is very expensive. i'm looking at differenct vendors like Gelco, Adesso, MEI, Synectics. Would appreciate if any of you experts could give me a brief understanding or any experiences with the same and what was the effect it had on the entire integration process.
    Thanks for all you continued support and propelling SAP further.
    Regards,
    Larry

    you can place (install) the help files on any machine you want, at least it has a web server on it.
    you can then specify the "Server Name" and "Path" in SR13 to this server (e.g. Server Name = mywebserver.mycompany.com:1080, Path = helpdata)
    the clients open the associated program to the extension of the files (in case of .chm and .html it would be most likely the Internet Explorer)
    kr, achim
    check this link: https://websmp106.sap-ag.de/~sapdownload/011000358700002110712004E/SAPLibInstGuide_640_EN.pdf
    Message was edited by: Achim Hauck

Maybe you are looking for