How to edit employee master data form in SAP B1 9.1?.

Hi all,
I have a problem in SAP B1 9.1.
Is it possible to edit form of Employee Master Data in SAP B1 9.1 without creating an Add-On? Likes how other forms can be edited.
Please anyone can help me.

Hi Edey,
Can you please refer to this link:
How to create add-on of a system form in sap b1 9.0?
or 9.1?.

Similar Messages

  • Dead Space in Employee Master Data form?

    Hi all. I am having a very difficult time placing sap and user defined objects on the Administration Panel in the Employee Master data form. I am referencing SBO objects but my objects are not being placed where I specify. It's as if there is an invisible object in the center of the Panel that randomly pushes other objects out of the way.
    Has anyone else run across this? Any suggestions are deeply appreciated.
    Thanks

    Here is part of my code, thanks Gordon.
    #region Column One
                //Classification Label
                c_oRelativeItem = c_oForm.Items.Item("92");
                c_oItem = c_oForm.Items.Add("O_HR_LB22", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Classification";
                //Employee Costs Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB22");
                c_oItem = c_oForm.Items.Item("97");
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3; //+ 15;
                c_oItem.FromPane = 3;
                c_oItem.ToPane = 3;
                //Term Reason Label
                c_oRelativeItem = c_oForm.Items.Item("97");
                c_oItem = c_oForm.Items.Item("90");
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;
                c_oItem.FromPane = 3;
                c_oItem.ToPane = 3;
                //Term Date Label
                c_oRelativeItem = c_oForm.Items.Item("90");
                c_oItem = c_oForm.Items.Item("91");
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;
                c_oItem.FromPane = 3;
                c_oItem.ToPane = 3;
                //Last Day Worked Label
                c_oRelativeItem = c_oForm.Items.Item("91");
                c_oItem = c_oForm.Items.Add("O_HR_LB40", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Last Day Worked";
                //Key Return Date Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB40");
                c_oItem = c_oForm.Items.Add("O_HR_LB41", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Key Return Date";
                //Exit Int Date Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB41");
                c_oItem = c_oForm.Items.Add("O_HR_LB42", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Exit Interview Date";
                //Eligible for Rehire Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB42");
                c_oItem = c_oForm.Items.Add("O_HR_LB43", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//15;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Eligible for Rehire";
                //Attach Label
                c_oRelativeItem = c_oForm.Items.Item("O_HR_LB43");
                c_oItem = c_oForm.Items.Add("O_HR_LB44", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                c_oItem.Height = c_oRelativeItem.Height;
                c_oItem.Width = c_oRelativeItem.Width;
                c_oItem.Left = c_oRelativeItem.Left;
                c_oItem.TextStyle = c_oRelativeItem.TextStyle;
                c_oItem.Top = c_oRelativeItem.Top + c_oRelativeItem.Height + 3;//20;
                c_oItem.ToPane = 3;
                c_oItem.FromPane = 3;
                c_oLabel = c_oItem.Specific;
                c_oLabel.Caption = "Attachments";
                #endregion
    Sorry, I don't know how to format this on SAP's Forums.

  • Can we change the employee number on the employee master data form ?

    Hi,
    Simple question but can we change the employee number on the employee master data form ? We need to use the same employee numkbers from another system but just cannot interact with the employee no. in SAP 2007 ?
    Thank you,
    MB

    You canu2019t modify the employee number. It is assigned by the system sequentially.
    But you can define a user defined field to store the other systemu2019s identifier or use (and even rename) some other field to store this information.

  • How to change title of Employee Master Data form (in add-on creation) in SAP B1 9.1?.

    Hi all,
    I have a problem of how to change title of my add-on in SAP B1 9.1.
    I created the add-on of Employee Master Data but I want to change its title, is it possible?
    When I change the title as (Member Master Data) in property, it will display Employee Master Data again.
    If it is possible to change it, how can I do?
    Please anyone can help me.

    Hi,
    Try this:
    If pVal.FormType = 60100 AndAlso pVal.EventType = BoEventTypes.et_FORM_LOAD AndAlso pVal.BeforeAction = False Then
      Dim oForm As SAPbouiCOM.Form = DirectCast(oApplication.Forms.GetForm(pVal.FormType.ToString(), pVal.FormTypeCount), SAPbouiCOM.Form)
      oForm.Title = "New Title"
    End If
    Or you can try:
    If pVal.FormType = 60100 And pVal.EventType = BoEventTypes.et_FORM_LOAD And pVal.BeforeAction = False Then
         Dim oForm As SAPbouiCOM.Form = CType(oApplication.Forms.GetForm(pVal.FormType.ToString(),pVal.FormTypeCount), SAPbouiCOM.Form)
    oForm.Title = "New Title"
    End If
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • How to avoid user creation popup window in Employee Master Data Creation in SAP B1 9.0

    Hi Experts,
    I have to create employee master data.When I am creating Employee Master Data it is asking crete new user,If I was not provied user code.
    Is there any standerd setting to avoid this?
    Please suggest
    Thnaks and Regards
    DEV

    Hi Dev,
    The Pop up you are getting is Standard Behavior in 9.0
    System is asking whether you want to assign any User Code to this Employee or not.
    If you want to add any User Code to this New Employee Master then Press "OK" else Press "NO" to Add New Employee Master Data.
    Hope this helps
    Regards::::
    Atul CHakraborty

  • Error while updating any SAP / Customised AddOn Master Data Form in SAP B1

    Hello Experts,
    I am facing a unique Problem in my addon .I have created two Master Tables Forms and entered the data in that two forms and the entry is done alright.
    But while updating that Master data system is throwing an error "Conversion Failed when converting the nvarchar value 'A001'
    to datatype int (CINF) "
    Here i have saved the Data as 'A001' in code field of MAster Data Table.
    This error is showing even in SAP Item MAster or any MAster Type Forms.
    This problem persist in all Master type Forms not the Document Type Forms.
    Please suggest a solution for this error to rectify.
    Thanks
    Amit
    Edited by: AmitSharma_061985 on May 30, 2011 8:51 AM

    Hi Amit,
    Do you have any customisations in your Transaction Notification proc on the company database? You'll get this error if you have an old version of this procedure and you are doing any validation with the object_type parameter (which used to be data type int but is now nvarchar).
    See SAP Note 1298609
    Kind Regards,
    Owen

  • To Create employee master data.

    Hi,
    How to create employee master data from scratch in SAP-HCM through BAPI's. Then we need to insert data in infotype 0000, 0001 and 0002 for that employee.
    Thanks in advance.
    Regards,
    Rajesh Kumat

    first check, if customizing for all fields is done.
    You will need a action type for hiring a person with infotypes 0000, 0002, 0001.
    Infotype 0001 is not so easy, because many checks are done in modul pool.
    The number range for PERNR can be set to internal or external (its your decision), transaction PA04.
    if you create a new PERNR you may wish to keep the old (legacy) one. you can use infotype 0032 or 0105, add it to the hiring action.
    If your legacy data comes with a flat file LSMW is a good tool to import master data.

  • How to start with Master data management

    Hi All,
    I want to start with Master Data Management. Can any one provide me proper material to get the knowledge on Master Data Management Integration. And What is the relationship between XI.and for starting MDM what all settings i have to do???
    Its really urget plz help me out.
    Thanks,
    Seema Khandelwal
    Message was edited by:
            Seema khandelwal

    Hi ..
    look at this documents
    /people/andreas.seifried/blog/2007/08/30/how-to-use-the-test-environment-of-the-mdm-enrichment-controller
    /people/harrison.holland5/blog/2006/11/27/mdm-syndication
    /people/harrison.holland5/blog/2007/01/22/testing-and-monitoring-an-interface-between-mdm-xi
    see this Wiki to find all the documentation on MDM:
    https://wiki.sdn.sap.com/wiki/display/HOME/MasterDataManagement
    Here, for the components you need to install:
    https://wiki.sdn.sap.com/wiki/display/HOME/MasterDataManagement+Components
    Others smart links are here:
    - sdn e-learning.
    https://www.sdn.sap.com/irj/sdn/mdm-elearning
    http://service.sap.com/installMDM for a
    you can use expression editor to do that:
    have a look at this guide on how dates can be calculated there
    with your field it can be very similar:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b025fab3-b3e9-2910-d999-a27b7a075a16
    for more details about expression editor:
    Calculation Fields chapter
    https://websmp108.sap-ag.de/~sapidb/011000358700006291622006E
    MDM 5.5 SP05 - ABAP API
    https://websmp101.sap-ag.de/~sapidb/011000358700000271902007E
    MDM 5.5 SP05 - ABAP API How To Guides (ZIP File)
    https://websmp101.sap-ag.de/~sapidb/011000358700000271912007E
    How to Identify Identical Master Data Records Using SAP MDM 5.5 ABAP APIs
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e060251e-b58d-2910-02a2-c9a1d60d9116

  • How to know which master data objects need to activated  in R3

    SALES OVERVIEW CUBE -0SD_C03
    How to know which master data objects need to activated from delivery version to active version in R/3 for a particular standard cube like 0SD_C03.
    its very urgent please advise.
    R/3 in RSA5
    Sales Master Data
    0ACCNT_ASGN_TEXT               Account assignment group for this customer   
    0ACCNT_GRP_TEXT                Customer account group                       
    0BILBLK_DL_TEXT                Locked                                       
    0BILBLK_ITM_TEXT               Billing block for item                       
    0BILL_BLOCK_TEXT               Billing block in SD document                 
    0BILL_CAT_TEXT                 Billing Category                             
    0BILL_RELEV_TEXT               Relevant for Billing                         
    0BILL_RULE_TEXT                Billing rule                                 
    0BILL_TYPE_TEXT                Billing Type                                 
    0CONSUMER_ATTR                 Consumer                                     
    0CONSUMER_LKLS_HIER            Consumer                                     
    0CONSUMER_TEXT                 Consumer                                     
    0CUST_CLASS_TEXT               Customer Classification                      
    0CUST_GROUP_TEXT               Customer Group                               
    0CUST_GRP1_TEXT                Customer Group 1                             
    0CUST_GRP2_TEXT                Customer Group 2                             
    0CUST_GRP3_TEXT                Customer Group 3                             
    0CUST_GRP4_TEXT                Customer Group 4                             
    0CUST_GRP5_TEXT                Customer Group 5                             
    0DEALTYPE_TEXT                 Sales Deal Type                              
    0DEL_BLOCK_TEXT                Delivery block (document header)             
    0DEL_TYPE_TEXT                 Delivery Type                                
    0DISTR_CHAN_TEXT               Distribution Channel                         
    0DIVISION_TEXT                 Division                                     
    0DLV_BLOCK_TEXT                Schedule line blocked for delivery           
    0DOC_CATEG_TEXT                SD Document Category                         
    0DOC_TYPE_TEXT                 Sales Document Type                          
    0INCOTERMS_TEXT                Incoterms (Part 1)                           
    0INDUSTRY_TEXT                 Industry keys                                
    0IND_CODE_3_TEXT               Industry code 3                              
    0IND_CODE_4_TEXT               Industry code 4                              
    0IND_CODE_5_TEXT               Industry code 5                              
    0IND_CODE_TEXT                 Industry code                                
    0ITEM_CATEG_TEXT               Sales document item category                 
    0ITM_TYPE_TEXT                 FS item type                                 
    0KHERK_TEXT                    Condition Origin                             
    0MATL_GRP_1_TEXT               Material Group1                                         
    0MATL_GRP_2_TEXT               Material Group 2                                         
    0MATL_GRP_3_TEXT               Material Group 3                                         
    0MATL_GRP_4_TEXT               Material Group 4                                         
    0MATL_GRP_5_TEXT               Material Group 5                                         
    0MATL_TYPE_TEXT                Material Type                                            
    0MAT_STGRP_TEXT                Material statistics group                                
    0NIELSEN_ID_TEXT               Nielsen ID                                               
    0ORD_REASON_TEXT               Order reason (reason for the business transaction)       
    0PICK_INDC_TEXT                Indicator for picking control                            
    0PRODCAT_TEXT                  Product Catalog Number                                   
    0PROD_HIER_TEXT                Product Hierarchy                                        
    0PROMOTION_ATTR                Promotion                                                
    0PROMOTION_TEXT                Promotion                                                
    0PROMOTYPE_TEXT                Promotion Type                                           
    0PROV_GROUP_TEXT               Commission Group                                         
    0REASON_REJ_TEXT               Reason for rejection of quotations and sales orders      
    0REBATE_GRP_TEXT               Volume rebate group                                      
    0RECIPCNTRY_TEXT               Destination country                                      
    0ROUTE_TEXT                          Route                                                    
    0SALESDEAL_ATTR                Sales deal                                               
    0SALESDEAL_TEXT                Sales deal                                               
    0SALESORG_ATTR                 Sales organization                                       
    0SALESORG_TEXT                 Sales Organization                                       
    0SALES_DIST_TEXT               Sales district                                           
    0SALES_GRP_TEXT                Sales Group                                              
    0SALES_OFF_TEXT                Sales Office                                             
    0SCHD_CATEG_TEXT               Schedule line category                                   
    0SHIP_POINT_TEXT               Shipping point/receiving point  
    In BW
    Base Unit of Measure     0BASE_UOM
    Bill-to party                    0BILLTOPRTY
    Calendar Day                  0CALDAY
    Calendar Year/Month      0CALMONTH
    Calendar Year/Week      0CALWEEK
    Change Run ID              0CHNGID
    Company code              0COMP_CODE  
    Cost in statistics currency          0COST_VAL_S
    Credit/debit posting (C/D)            0DEB_CRED
    Distribution Channel       0DISTR_CHAN
    Division                                     0DIVISION 
    Number of documents    0DOCUMENTS
    Sales Document Category          0DOC_CATEG
    Document category /Quotation/Order/Delivery/Invoice 0DOC_CLASS
    Number of Document Items         0DOC_ITEMS
    Fiscal year / period
    Fiscal year variant                      0FISCVARNT
    Gross weight in kilograms           0GR_WT_KG
    Number of Employees    0HDCNT_LAST
    Material                                     0MATERIAL
    Net value in statistics currency    0NET_VAL_S
    Net weight in kilograms 0NT_WT_KG
    Open orders quantity in base unit of measure 0OPORDQTYBM
    Net value of open orders in statistics currency 0OPORDVALSC
    Payer                            0PAYER
    Plant                             0PLANT
    Quantity in base units of measure 0QUANT_B
    Record type                   0RECORDTP
    Request ID                    0REQUID
    Sales Employee            0SALESEMPLY
    Sales Organization         0SALESORG
    Sales group                   0SALES_GRP
    Sales Office                   0SALES_OFF
    Shipping point                0SHIP_POINT
    Ship-To Party                0SHIP_TO
    Sold-to party                  0SOLD_TO
    Statistics Currency                    0STAT_CURR
    In R3 RSA5 we have all the Master data data sources as mentioned above, and BW also. How to find the related Master data Infosource in R/3 Master data Data sources.
    Thanks in advance,
       Bhima.
    Message was edited by: Bhima Chandra Sekhar Guntla

    Hi,
    <i>How to know which master data objects need to activated from delivery version to active version in R/3 for a particular standard cube like 0SD_C03.</i>
    I think, you are looking for master data sources(text,attributes,hier).Am i right?
    If so, This cube has almost all SD master data characterstics. So you can activate all the all master data datasources of SD in r/3 (SD-IO).
    Any way you requirement does not stop only by using this cube . You will activate all other cubes in SD also. So if you want to activate only needed master data datasources when you are activating a cube, the job becomes senseless. There is no problem(wrong) in activating all master data available under that application , even though you want to activate only one cube.
    With rgds,
    Anil Kumar Sharma .P

  • Pane level is not working for created button in Employee Master Data

    Hai,
    I have created a button in Administration tab of Employee Master Data. I set the Pane level 3 for that button. Even though, when the Employee Master Data is opened, that button appears. ie., When Employee Master Data menu is clicked, Employee master data is opened in find mode and by default Address tab is active.But my button is visible here itself. I want that button visible only in Administration tab.
    How to resolve this.
    Thanks in advance.

    Hai,
    Thanks for answering.
    Actually coding  is as follows:
      oNewItem = oForm.Items.Add("XXX", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
                            oItem = oForm.Items.Item("61")
                            oNewItem.Top = oItem.Top
                            oNewItem.Height = oItem.Height
                            oNewItem.Width = oItem.Width
                            oNewItem.Left = oItem.Left
                            oNewItem.FromPane = 3
                            oNewItem.ToPane = 3
                            oNewItem.Visible = True
                            Butt1 = oForm.Items.Item("XXX").Specific
                            Butt1.Caption = "Click"
    I got solution by commenting the line  "oNewItem.Visible = True"
    Thanks once again. But I don't know how it works.
    Edited by: ParvathaSolai on Jun 7, 2011 2:11 PM

  • Open hub Services - How to extract the master data related to a object ?

    Hi Gurus,
    I am implementing OpenHub services for our project, it's on BW 3.5, I have the list of required fields with which I am creating an InfoSpoke. Now I am stuck in some the info objects which are having master data associated with it.
    Example : Business partner(BP) data, when I map the 0BP infobjects in infospoke it's extracting the BP ID (ex: CT065316,CT068638 etc) in flat file but I want the BP name, address & telephone number as well, which are coming from master data table. But I am able to map only 0BP infobjects as a part of ODS/Cube.
    Can any one tell me how to get the master data extracted in the flat file with associated info object???
    Answers will be highly appreciated.
    Regards,
    Kironmoy Banerjee
    Edited by: Kironmoy Banerjee on Oct 1, 2009 3:34 PM

    Hi Kironmay
    Please follow the below mentioned procedure to create a transformation. This is applicable for BW 3.5 as well.
    - Enter your infospoke in the edit mode.
    - On the Transformation tab set the indicator for the Infospoke with Transformation with BADI so that the infospoke is activated.
    - This will take you to the Addin implementation/BADI builder.
    - Enter the short text/description for the implementation. The implementation name is always the same as the technical name of the infospoke
    - The implementation of the BADI is always filter dependant.
    - In the properties tab of the infospoke enter your infospoke under the Filter specifications.
    If you do not specify an InfoSpoke under Filter Specifications, then this implementation is valid for all InfoSpokes. This means that this is called up for all InfoSpokes during the extraction.
    - Activate your class
    - From your interface tab page, double click on the Transofrm Method and you will arrive in the class builder page
    - Here you can enter the code
    - To do a look up of the master data you have to write a code similar to the one I've given below. This is just an example for looking up material master.
    IF FLT_VAL = 'Your infospoke'.
        T_DATA_IN[] = I_T_DATA_IN[].
    Select zstd_cost from /bi0/pmaterial into table T_return
    For all entries in T_DATA_IN
    WHERE material = T_DATA_IN-material.
    ...Continue with your code.
    Append output from T_return to your output E_T_DATA_OUT
    - Activate your method. Return to the BAdI builder. Return to your InfoSpoke.
    I hope this helps.
    Thanks.

  • Utilizing SuccessFactors PMS solution without saving any employee master data in SF

    Hi Friends,
    We’re implementing SuccessFactors’s Performance Management Solution only at one of the client location in Saudi Arabia and trying to integrate with the On-Premise SAP HCM and Push the employee data to SF.
    However, due to security concerns customer doesn’t want to store any data on SucessFactors cloud solution to run the PMS cycle.
    During the purchase of license for SuccessFactors SAP has demonstrated client that, in SF a unique Id will be created for each employee, which will not be the actual UserID(PERNR)from SAP, and with this unique ID actual employee data will be tagged/linked  in SF which will fetch the data from SAP On-Premise system to run  the PMS cycle.  Once the user logins in SF, based on the unique ID data will fetch from SAP On-Premise system to SF on a real time basis and when the user logged out from the SF system, data should be cleared/deleted and nothing will be saved or stored in SF with respect to employee Master Data.
    I understand SAP has provided the standard add-on for the Employee Data Scenario between SuccessFactors and SAP HCM, which could have been leveraged here for integration, however with the above limitation this solution is absolutely out of scope.
      Please advice, if anyone has faced any such requirement.
    Thanks,
    Farhan

    Dear Farhan,
    I'm with Luke on this. This is against anything we know about SAP and SF.
    However, taking a step back, I would really, really urge you to trigger a strategy discussion with your HR, IT and data privacy leaders.
    Let me be very blunt here:
    Even if such a process could be made possible at considerable cost and inconvenience, it is incosistent at its very core.
    If your strategy and culture are anti-cloud, there is a simple strategy execution: don't use cloud (yet).
    If your strategy is cloud, but your culture is anti-cloud (if I had to make a guess, that would be it), what you will see is your culture having your strategy for breakfast very soon, if I may use this old truism. I.e. it's not going to work.
    To be cloud-ready, culture, strategy and capabilities must be in line. Pushing capabilities by building very complex solutions will get you into a complexity spiral, which will eventually get the better of you.
    The decision to use cloud for such a key process (which soon, if not today, will probably be the right decision for most organisations), can't just be triggered by someone appreciating some screens being a bit prettier than in on-premise applications. The foundation needs to be there first. Your organisation has the opportunity to use the Performance Management Process to align culture and strategy with the changing business and technological environment - but to do so, you need to acknowlegde that the organisation is currently NOT cloud-ready and that this needs changing.
    Some good, provokative questions to start with could be:
    Why are some organisations (put in some names of well renowned companies, ideally leading organisations in your industry, using cloud HCM) successfully using cloud HCM, but we think we can't?
    Which advantages of cloud services are left, if we have a very complex custom solution built to avoid storing data in the cloud?
    Can our IT team demonstrate that they have better expertise in protecting data in systems accessible through the internet (and your SAP system will have to be accessible in some way, if SF is supposed to access the data) than world leading organisations like SAP and SuccesFactors?
    What is our roadmap for HR systems in the future and how does this weird architecture lead us along that road?
    Do the relevant decision makers actually understand, what cloud in general and Software as a Service in particular are?
    You may find it difficult to find an employee ready to ask your CIO, HR-Director and Data Privacy Lead these questions, unless they want to be fired anyway So, a 3rd party change agent may come in handy for that task.

  • Failure in the SOAP Runtime: Employee Master Data Replication Using IDoc OTM_EMPL

    During employee master data replication from ECC to CfTE, we encountered the following error:
    Unexpected element -el=OTM_EMPL ns=urn:sap-com:document:sap:idoc:soap:messages
    We are using the 1402 WSDL for Replication of Employee Master Data with Employment Details (humancapitalmanagementmasterd2). The payload was not received in CfTE.
    Can anybody please advise how to resolve this issue?
    Thank you.

    Dear Joselito,
    This issue need deeper investigation in customer system.
    Kindly report an incident for SAP Support for further help.
    Regards,
    Rahul Mishra

  • Problem in Fetching value from Employee Master Date in Crystal Report

    Hi All,
    I am using the SAP Standard report for Sales Quotation and now my client needs a new requirement.
    That is, for certain sales employee they need a manger and the manager name, email, mobile no from employee master data should be fetched.
    I tried this way,
    Assigned the Manager name in the OSLP, memo field and tried to equate the employee name in the OHEM table by using a parameter and tried to fetch the fields but i am not able to view any of the fields from the OHEM table.
    How to fetch the fields from the OHEM table?
    Help me solving this issue.
    Regards,
    Jananisuba S

    hi.
    Janani..
    Fetching means what .
    i am not able to understood...
    linking you are not able to understood or any other.
    in crystal report are u getting the problem.
    First in sql it slef are u able to get the problem..what just explain...

  • Employee Master Data

    Hi,
    In Employee Master Data ...
    I had entered Starting Date as 01/05/05(2005)
    and DOB as 18/02/47(1947)
    at that time its giving error by saying DOB cant be greater than Start Date.
    How to sort out this...

    Hi Chakrapani
    You must enter the date in full as dd/mm/yyyy for example. In SAP Business One any dates where the yy is under 49 is automatically 20yy and over 49 is automatically 19yy. In Microsoft in earlier versions this was the case, but in newer versions like Office 2007 this has been updated to 29.
    Kind regards
    Peter Juby

Maybe you are looking for

  • Adobe Flash Media Live Encoder 3 - Video Hardware Acceleration Warning

    I have been looking for an answer for this error for a few days without any luck. I just loaded the Adobe Free Encoder 3 and the Flash Media Server (Free Version) on a Dell PowerEdge 1950 running Windows 2003 server standard edition with Service Pack

  • Radeon HD 3870

    Hi all, Does anybody know if this would work correctly in My 3GHZ Xeon 8 core 2007? Model 2,1 http://www.amazon.co.uk/ATI-RADEON-3870-Mac-Interface/dp/B001CN9EC4 I know it says Mac on it but wanted to check with the pros before I take the plunge. Als

  • Stateless session EJB invoke RMI

    Is it possible to invoke RMI calls from stateless session EJBs. It is my understanding restrictions exists like opening socket, file io, .. are not permitted from EJBs. Is there a way around.

  • Quicktime doesnt display time in slider

    As of two days ago any file played in Quicktime opens with a slider that has the moving dot but doesnt display time as it used to (time passed on one end and time left on the other) I cant find anything in the settings and it looks like i cant uninst

  • AES in JDK 1.3.1_06

    HI, This is realy realy urgent. Ca anybody tell me if I can user AES encryption in JDK 1.3.1_06. I tried with JCE 1.2.2 provider bu got "No Such Algorithm exists java.security.NoSuchAlgorithmException: Cannot find any provider supporting AES" error -