Reg:SAP GEM add on

Hi experts,
I have a requirement to imlpement the add on SAP GEM(Global Employee Management it is a SAP HR sub module)  in our production environment.
Currently we are on ECC6.0 with SAPHR-SAPKE60028 and EA HR-SAPKGPHD17 levels.
Can some pls.let me know the implement process of the same.
Your help and support would highly be appriciated
Thanks in advance
Rgds
Venu

GEM/MGE is part of the HR, it's not an "Addon".
Read
http://help.sap.com/saphelp_erp2005/helpdata/en/ff/88c73cf94fda5be10000000a114084/frameset.htm
Markus

Similar Messages

  • Error while installing the SAP J2EE add-on for SAP NW XI installation

    Error while installing the SAP J2EE add-on for SAP NW XI installation  
    Posted: Jan 24, 2007 5:23 PM         Reply      E-mail this post 
    Hello,
    When I am installing the SAP SAP J2EE add-on for SAP NW XI installation I am getting the follwing error:
    CJS-00084 SQL statement or script failed. DIAGNOSIS: Error message: Executable /oracle/XID/920_64/bin/sqlplus returns 127.. SOLUTION: See ora_sql_results.log and the Oracle documentation for details
    Could some one help me to resolve this error and install the SAP J2EE add-on?
    Thanks,
    George

    Hi George,
    Kindly use the latest installation Masted in Service market place. That will possibly solve your problem.
    Regards
    Vivek

  • Who can provide a complete list of Sap B1 add-ons?

    Who can provide a complete list of Sap B1 add-ons?
    Best regards,
    Jean Pierre Chauny

    There is no complete list of add-on for B1 from 3rd party. Do you just interest in SAP add-on?
    Thanks,
    Gordon

  • SAP certified Add-onu0092s

    Hello,
    Does anyone know, if a list of certifed SAP B1 Add-on’s is available?
    Many thanks,

    Hello,
    you could try to browse this link:
    https://websmp208.sap-ag.de/~sapidb/011000358700004044122006E/
    but there is no catalog available now. I think SAP will create it if you send them e-mail to propose it.
    Rgds,

  • Reg: Parameters to add SAP Standard REport

    HI all,
    I want to add extra parameters to sap standard report. how to add it.
    regards
    JK rao

    Hi Janardhan,
    As SAP recommended, you should not change the standard report, if u want to get support for future versions.
    its better to create a new report by copying old one and adding new field as u want.
    Consult your ABAPER regarding this.
    I hope this will solve ur problem
    Thank you,
    Purnachandra RM

  • Print crystal report failed in SAP B1 add-ons

    I had develop a add-on for viewing Crystal Report in SAP B1 form. There was no problem in viewing and also the function in the crystal report viewer. (eg. export, search). The only problem is the print function in the crystal viewer cannot function at all. (Click on the button don't have trigger anything)
    So anyone got suggestion on what happen to it? any others solution for it?
    Is it possible i print it with SAP B1 print function?
    I'm using:
    - Crystal Report XI
    - Reference used
           - CRAXDRT
           - CrystalActiveXReportViewerLib11
    Thanks for any help and suggestion.

    Hi hock,
    i don't have hWnd set and its working.
    my interface program is written in vb6 - so i guess its 0
    or maybe it has something to do that i've this functions included.
    i can't remember - iam developing too much things
    Declare Function PEOpenEngine Lib "crpe32.dll" () As Integer
    Declare Function PEGetErrorCode Lib "crpe32.dll" (ByVal printJob As Integer) As Integer
    Declare Function PEOpenPrintJob Lib "crpe32.dll" (ByVal RptName As String) As Integer
    Declare Function PEOutputToWindow Lib "crpe32.dll" ( _
                                                                ByVal printJob As Integer, _
                                                                ByVal Title As String, _
                                                                ByVal myLeft As Long, _
                                                                ByVal Top As Long, _
                                                                ByVal myWidth As Long, _
                                                                ByVal Height As Long, _
                                                                ByVal style As Long, _
                                                                ByVal PWindow As Long) As Integer
    Declare Function PEOutputToPrinter Lib "crpe32.dll" ( _
                                                                ByVal printJob As Integer, _
                                                                ByVal nCopies As Integer) As Integer
    Declare Function PEStartPrintJob Lib "crpe32.dll" ( _
                                                                ByVal printJob As Integer, _
                                                                ByVal WaitOrNot As Integer) As Integer
    Declare Function PEClosePrintJob Lib "crpe32.dll" (ByVal printJob As Integer) As Integer
    Declare Sub PECloseEngine Lib "crpe32.dll" ()
    try it
    regards
    David

  • Reg Error in Add on Developement

    Hi,
        I have developed the add on and it was working fine. But that was developed in SQL 2005 beta version and SAP B1 2005B(SP:00, PL:06),
    After the Installed SQL 2005 Licenced version when i run the Add on it's showing the error in Connection itself.
    <b>
    "An unhandled exception of type 'System.NullReferenceException' occurred in XenosAddOn.exe"
    "Additional information: Object reference not set to an instance of an object."</b>
    the Above error occur in the below place
      <b>ConnectToCompany = oCompany.Connect</b>
    and when i use the message box like
    <b>SBO_Application.MessageBox("DI Connected To: " & oCompany.CompanyName & vbNewLine & "Add-on is loaded")</b>
    also
    Please help me on the issue
    this is very urgent
    Regards
    Suresh R

    Hi Alexey,
       Thanks for your reply. Here is my code  for the connection...
    Public Sub New()
            MyBase.new()
            class_init()
            AddmenuItem()
    End Sub
    Private Sub class_init()
            setApplication()
            If Not SetConnectionContext() = 0 Then
                SBO_Application.MessageBox("Failed setting a connection to DI API")
                End
            End If
            If Not ConnectToCompany() = 0 Then
                SBO_Application.MessageBox("Failed connecting to the company's Data Base")
                End
            End If
    End Sub
    Private Sub setApplication()
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            sConnectionString = "0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056"
            SboGuiApi.Connect(sConnectionString)
            SboGuiApi.AddonIdentifier = "5645523035496D706C656D656E746174696F6E3A5231333335313631373238B5AA2FF2725C18F676AA10704C74B20F3DF9B4E6"
            SBO_Application = SboGuiApi.GetApplication
    End Sub
        Private Function SetConnectionContext() As Integer
            Dim sCookie As String
            Dim sConnectionContect As String
            Dim lRetcode As Integer
            Try
                oCompany = New SAPbobsCOM.Company
                sCookie = oCompany.GetContextCookie
                sConnectionContect = SBO_Application.Company.GetConnectionContext(sCookie)
                If oCompany.Connected = True Then
                    oCompany.Disconnect()
                End If
                SetConnectionContext = oCompany.SetSboLoginContext(sConnectionContect)
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        End Function
    Private Function ConnectToCompany() As Integer
            <u><b>ConnectToCompany = oCompany.Connect</b></u>
    End Function
    in the above code i am getting the error in the ConnectToCompany only..
    pl help me
    Thanks in Advance
    Suresh R

  • Reg:HOw to add new charactersitics in standard report

    hi all
    HOw to add new charactersitics in standard report
    regards
    JK Rao

    You need to copy the std report and make necessary changes in the copied report. SAP does not allow changes to std report. The technical details of the report can be seen by selecting from the menu Extras - technical information. Select the library and Report name. Copy the same using t code GRR1. Carry out necessary changes and SAVE. Before execution, you will have to specify the report group in which report needs to be attached. You can choose and existing group or specify a new one.
    Regards
    Rakesh Pawaskar

  • Hi Reg  SAP GUIXT

    Hi All,
        In Guixt I want to Add a TextBox. In that, my requirement is to fill the textbox with date  and  save it.
       I want to know whether the date will be saved into the database table or not.
       I want to update that date into database table for particular sales order.
        Is it possible by Guixt if not Please help me with the suitable way to solve it.
    Thanks & Regards,
    Vijay.

    Hi Vijay,
    if you are tring to create a Datefield and want to extract the data check this.
    http://www.synactive.com/tutor_e/lessonia05.html
    to obtain the day, month and year from a date field:-
    Set V[date] "20.02.2003"
    Set V[day] "&V[date](1-2)"
    Set V[month] "&V[date](4-5)"
    Set V[year] "&V[date](7-10)"
    In order to make this work for every date representation in SAP, use the following coding:
    V[date] is a valid SAP date.
    Set V[DateTest] &V[date](5-5)
    if V[DateTest=.] or V[DateTest=-] or V[DateTest=/]
    Set V[year] &V[date](1-4)
    Set V[month] &V[date](6-7)
    Set V[day] &V[date](9-10)
    else
    Set V[year] &V[date](7-10)
    Set V[DateTest] &V[date](3-3)
    if V[DateTest=.]
    Set V[month] &V[date](4-5)
    Set V[day] &V[date](1-2)
    else
    Set V[month] &V[date](1-2)
    Set V[day] &V[date](4-5)
    endif
    endif

  • Reg:How to add availability check in sales view

    hi all
    How to add availability check in sales view
    regards
    JK

    HI Janardan..
    Check out the help.sap link for Availability check. It has a lot of info.
    http://help.sap.com/saphelp_erp2005/helpdata/en/6b/2785347860ea35e10000009b38f83b/frameset.htm
    If it helps Reward with points..
    Regards Rk

  • U2018The next generation of SAP B1 add-onsu2019 - The power of mobility.

    AbacusConsulting has come out with the next generation of SAP Business One add-ons. The SAP Business One Mobilizer!
    Now the conventional boundaries have been broken down and limitless possibilities are within grasp with the introduction of the SBO Mobilizer. Dwelling on futuristic technology, the SBO Mobilizer allows you to have access to your SAP B1 database and its key functions around the clock, from anywhere in the world.
    Extremely reliable, robust and secure, the SBO Mobilizer enables sales teams, distribution teams, management, field force employees, etc to post and view sales orders, delivery orders, invoices, returns and payments from remote locations, enabling them to make instant and well calculated decisions without any delay. It provides greater control over the whole operation process and securely centralizes data within minutes.
    Working on both offline and online modes, the SBO Mobilizer not only saves time and money but itu2019s highly flexible design also enables limitless On-The-Fly form designing. A few clicks and new forms are ready to be published.
    Language not being a barrier anymore, the product can be custom developed for any language intended and keeping a futuristic approach, the product is not limited to SAP but can be custom developed for any ERP system.
    And the possibilities donu2019t end there. AbacusConsultingu2019s product will let you set your possibilities yourself. Itu2019s all in your hand. Amplifying the power of SAP B1 several folds, it is a product that I recommend you have a look at.
    If you wish to discuss the possibilities in further detail, drop me an email at arqum.tashfeen@abacus-global. com or call me directly at +92 322 7171078.
    Best Regards,
    Arqum Tashfeen
    Edited by: arqum.tashfeen on May 9, 2011 1:54 PM
    Edited by: arqum.tashfeen on May 9, 2011 1:56 PM

    Sorry,
    I figured that out. I would rather inherit from <b>B1Menu</b>
        public class B1BrowserAdd: B1Menu {
            public B1BrowserAdd() {
                this.MenuUID = "1282";
            [B1Listener(BoEventTypes.et_MENU_CLICK, true)]
            public virtual bool OnBeforeMenuClick(MenuEvent pVal) {
                Console.WriteLine("1282 Menu Pressed");
                return true;

  • SAP TDMS add on setup on central/control , sender and reciever systems

    I found that SAP TDMS is shipped in the following add-ons:
    DMIS: Contains general functions, for example for the process monitor and for the technical data transfer
    DMIS_CNT: Contains TDMS-specific functions and some of the process types
    DMIS_EXT: For various additional process types (reduction scenarios) for SAP TDMS; currently, it contains only the process   type for business process library
    DMIS_BSC: For the process types to be used with SAP BI or CRM systems
    DMIS_HR: For the process types to be used in the context of SAP Human Capital Management (HCM)
    I have read TDMS master guide under section 3.4.1 Setting up the TDMS Server. There is a reference to SAP Note 970531 which is for DIMS setup and there is also reference to SAP note 970532 which is for DMIS_CNT setup.
    I would like to know if DMIS_EXT,DMIS_BSC and DMIS_HR need to be setup on TDMS central/control server , sender and reciever or only need to be setup on central/control server for respective scenario realization.
    Best Regards
    Mohammed Ashraf

    All the add-on components need to be installed in all the system (sender, receiver, central, control) in the landscape.

  • Customise Sap Report -- Add logo and change report layout

    Hi All,
    I have a requirement to amend sap standard report to add logo and change layout, could some one pls point me to teh right direction. Should we .1 Create a new smartfrom if yes -- how to to create smartfroms
    2. Should we create new Zreport...3. Is Adobe Interactive forms any good---- cld you please share the steps to create Adobe Ine Form 4. is sap script any good way in my situation
    Thanks
    Smith

    Changes to SAP Standard are always a bit tricky, specially if we are talking about legal reports. If the standard report uses smartform, you can change the standard form without needing a SSCR key, so no need to create a Z report or smartform even, but like every change on SAP Standard, if further changes are made by SAP through Support packages you will always have to replicate them yourself everytime this happens. I would suggest creating a new Z report by copy of standard and new Z smartform, that way you can always recurr to the standard and see what was changed and then replicate them in you Z reports.
    To create smartform, go to TCode smarforms and you can create one by copy of an existing smartform.
    Adobe Interactive forms is more complex then smartforms and unless the standard uses a print form, i would not suggest you creating one as it will envolve a bit more knowledge.

  • Reg: How to add role to a role programitically.

    Hi All,
    How to add a role to another role programmatically ?
    My requirement is...
    I have a super role S1 which has two sub roles R1 and R2.
    I have two schedulers running. When scheduler-1 runs, I want role R1 to be added to super role S1 and the role R2 to be removed. When scheduler-2 runs, I want the role R2 to be added and role R1 to be removed from role S1.
    Now my question is...how to add the sub roles programmatically to super role?
    Thanks,
    Shilpa.

    Hi Shilpa,
    sounds like you want to provide users with different content at different times. Have you ever heard about PCD Filtering? PCD Filtering allows you to hide or show parts of the content using arbitrary filter expressions. I guess you could also implement a PCD filter which filters content depending on the current time.
    Check the article <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3367e690-0201-0010-d285-c69bd884c9f3">Filtering Role and Workset Content</a>, Shantanu's blog <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/6370">Filtering Role Content by User Attributes</a> and the presentation <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/17968de1-0a01-0010-1f9f-c090fbc7001a">FilteringRoleand WorksetContentforDevelopers</a> for more information about PCD Filters.
    Best regards,
    Martin

  • Outlook 2007 SAP Calendar add-ins

    In MS Outlook 2007, there is SAP add-in can sync canlendar between Outlook and SAP. When perform Sync, it prompts system logon (abap) information.  which canlendar is R/3 is synced with outlook? R/3 or SBO? which T-code in R/3/ECC can see the canlendar? Thanks

    What is more to my mind one of the best determinations here is the especial software. Because of I ran into some similar troubles and only tools assisted me. This tool would help here after first using - <a href="http://www.recoverytoolbox.com/reading_pst_files.html">reading pst file</a>.

Maybe you are looking for

  • How do you know if you need a new iPod touch battery

    Ok so a couple of days ago I put my ipod on the charger and it was charging but itwas starting to get really hot so I just disconnected it. When i disconnectd it it was fully charged but when i went to go use it it was only 2% left so i just it die (

  • Inbound Delivery Index Table

    Hi,   I tried to retrieve the delivery number with vendor code(LIFNR) in VLKPA-KUNDE.  But, nothing is returned.  Is there any other index table that provide the same information. Regards, Kit

  • Calendar Year & Month with FIAP

    Hi i dont have calendar year/month with FIAP cube. i need below requirement i can add at cube , in report i need write customer exir or any other possibilities are there. User can change the report to select a different time view, e.g. the position a

  • RBDMANI2 for IDOCs in error not working in Background..

    Dear All,     We have an ALE-IDOC scenario in which our IDOC gets posted in the destination system with status 51 as per business reqt. We schedule a job in the background using program RBDMANI2 which is used to manually reprocess IDOCS in error.    

  • Can a view include a variable

    So what I'm trying to do is create a modified version of a view that can accept a date range when run. I have come across references to "parameterized views" and views using "context variables". Can someone help me understand the difference between t