How to find Working Time approval Enterprise services in ECC 6.0 EHP #3

Hi All,
    We are on ECC 6.0 EHP #3. We have activated the EA-HR  & EA-TRV  ENTERPRISE_EXTENSIONS & related business functions in transaction sfw5.  How and where do I look for Working Time entry and approval enterprise services in ECC. I tried to find through SOAMANAGER and SE80-Enterprise services browser but could not find them.
Do we need to activate anything else or am I not looking at the right place?
Thanks,
Rajive

Hi,
Enterprise Services are delivered by SAP with Enhancement Packs (Ehp). So number of services you can see depend on your Ehp and activation of business function while installing Ehp.
You can see ES in transaction SICF (to activate) and you can search services in transaction SE80->Repository Information System ->Enterprise service (search).
Regards,
Gourav

Similar Messages

  • How to find BADI for the enterprise service?

    Hi Experts,
      We are enhancing an enterprise service for Businesspartner  creation by adding an additional field in the structure. But we are not able to find out the correct BADI for the enterprise service.  We are using the following enterprise service - 'BusinessPartnerERPCreateRequestConfirmation_In' . I could not find any BADI in ES workplace also .How to search for a BADI for this ES.
    Any help on this will be well appreciated.
    Thanks in advance
    Sanu

    Hi Sanu.
    Not all the services is an BAPI or BAPI, maybe this is an interface.
    To see the related object go to esworkplace and find the service.
    You will find in the page the label "Related Web Service Definition".
    Copy the related value(in your case ECC_BusinessPartnerCrtRC) it and go to SAP GUI. In transaction SE84, go to enterprise service and choice service definition.
    Paste the value copied in esworkplace in field Service Definition, then F8.
    In the next screen double click in the returned value.
    In the next screen you will see a Reference Object field. Double click in the value and you will see the related object.
    In this case is an interface. You can see in Provider Class.
    Hope that's help you.
    Marcos

  • PI 7.1 enterprise services: How to find & invoke SAP HCM enterprise Service

    Hi all,
    in PI 7.1, i read, there is support of enterprice services.
    is my current understandings right about PI 7.1 and enterprise services:
    1.the standard BAPIs, standard RFC that were provided in R/3 are replaced by standard enterprise services in SAP ECC.
    2.a nonSAP application can invoke an enterprise service in the same way as a nonSAP application used to call an RFC in the R/3.
    I want to view how an enterprise service of any SAP module can be called by a nonSAP applicaiton.
    are there any doc or blog which shows this.
    is possible with/wihout PI.
    We have follwoing things installed.
    1. PI 7.1 SP4.
    2. SAP ECC 6.0, i am dealing with SAP HCM module.
    are there any enterprise services of HCM available (e.g standard enterprise services given by SAP for HCM module).
    basically i want to test whether a nonSAP application like a java application, can it get some info using standard HCM enterprise services provided by SAP.
    I explored esWorkplace (http://www.sdn.sap.com/irj/sdn/esworkplace), but it does not display HCM related process components under the column "DISCOVER ENTERPRISE SERVICES".
    thanks,
    Madhu.

    Hi Madhu,
       YOu can check this page for simple sample applications for enterprise services consumption:
    http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?packageid=DE0426DD9B0249F19515001A64D3F462&id=EBF08FD8067241F787448B3EB87DA04E
    Check this page for ERP-HCM
    http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?packageid=DE0426DD9B0249F19515001A64D3F462&id=C6AE1E905D8E11DA36BB000F20DAC9EF
    and complete business map here:
    http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?id=13C98C60080711DA1503000BCDDC2565&fragID=&packageid=DE0426DD9B0249F19515001A64D3F462&iv=
    Regards,
    Ravi

  • Working Time Approval

    Hi Gurus,
    We are using the SAP Std. Working Time application. Employee is submitting his/her working time and the manager received a Work Item in his UWL.
    While clicking on it, Manager is redirected to the collective approval screen.
    Is there a way that he can approve individual employees request rather than doing it collectiviely?
    Please advice...
    Regards,
    Rekha Malavathu

    See if the following customizing node helps:
    Integration with Other mySAP.com Components -> Business Packages / Functional Packages -> Manager Self-Service (mySAP ERP) -> Working Time -> Approve Working Time
    Also check out the node(s) documentation.

  • How to find face time in iPhone 5 bought from Dubai

    How to find face time in iPhone 5 bought from Dubai

    Read the fine print at the bottom.
    Some features may not be available for all countries or all areas. Click here to see complete list.
    And the note for UAE on this page: http://support.apple.com/kb/ht1937
    FaceTime is not available in this country.

  • How to find max(time) from table using group by

    how to find max(time) from table using group by
    select var max(time)
              from table
              into (var1, time1)
               where .....
                 group by var.
    it is fetching record which is top in table.
    if u can help?
    regards.

    No this will fetch the maximum time from teh table.
    select var max(time)
    from table xxxx
    into (var1, time1)
    where .....
    group by var.
    Refer this code
    TABLES SBOOK.
    DATA:  COUNT TYPE I, SUM TYPE P DECIMALS 2, AVG TYPE F.
    DATA:  CONNID LIKE SBOOK-CONNID.
    SELECT CONNID COUNT( * ) SUM( LUGGWEIGHT ) AVG( LUGGWEIGHT )
           INTO (CONNID, COUNT, SUM, AVG)
           FROM SBOOK
           WHERE
             CARRID   = 'LH '      AND
             FLDATE   = '19950228'
           GROUP BY CONNID.
      WRITE: / CONNID, COUNT, SUM, AVG.
    ENDSELECT.

  • How to find the time difference..?

    HI
    How to find the time difference between two times
    for Example
    the difference between '24/10/2005 8:25:00 PM' and '25/10/2005 5:20:00 AM'
    is 8.55
    Kris

    This is a procedure taht do the job
    CREATE OR REPLACE FUNCTION Diff_Time
         LD$Date_Deb IN DATE DEFAULT SYSDATE
         ,LD$Date_Fin IN DATE DEFAULT SYSDATE
         ,LN$JJ       OUT PLS_INTEGER
         ,LN$HH       OUT PLS_INTEGER
         ,LN$MI       OUT PLS_INTEGER
         ,LN$SS       OUT PLS_INTEGER
      ) RETURN NUMBER
    IS
      dif   NUMBER ;
    BEGIN
      IF LD$Date_Fin < LD$Date_Deb THEN
         RETURN ( -1 ) ;
      END IF ;
      SELECT  LD$Date_Fin - LD$Date_Deb INTO dif  FROM dual ;
      SELECT  TRUNC ( LD$Date_Fin - LD$Date_Deb)  INTO LN$JJ  FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 24) -  ( LN$JJ * 24 ) INTO LN$HH FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 1440) - ( (LN$HH * 60) + ( LN$JJ * 1440) ) INTO LN$MI FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 86400) - ( (LN$MI * 60) + (LN$HH * 3600) + ( LN$JJ * 3600 * 24 ) ) INTO LN$SS FROM dual ;
      RETURN( dif ) ;
    END ;
    /You may have to modify it to fit your own requirement.
    Francois

  • Enterprise Services in ECC using SPROXY transaction

    Dear All,
    We were able see the Enterprise Services available in ECC 6.0 EHP 3 using the transaction SPROXY, we have even tested one proxy through this transaction. But now when we have configured ECC to connect the ESR (of PI), it is only showing Software components / Service Interface available in ESR throught the SPROXY transaction in ECC and not showing the Enterprise Services which are available in ECC.
    How to see both the things, existing Enterprise Services of ECC and Service Interfaces of ESR through SPROXY transaction in ECC?
    please help.
    thanks and regards,
    Ravi

    Hi Ravi,
    It may be that you just need a delta cache refresh but I would start by checking the SLD configuration.
    First strt with SAP Note: 1169869
    - I think that you might need to try changing the vendor (sap.com) that's assigned to the Software Component Version.
    - If you were seeing the SWCV before it should be installed on your system anyway but you can double check using the steps I've specified here: [Can't find  ESA ECC-SE 603 SWCV;
    - You might also want to check if the SWC is correctly assigned to the relevant business system/s in the SLD.
    Regards, Trevor

  • Enterprise services in ECC 5

    I know that ECC 6 supports enterprise services which are delivered through ES bundles.  Is it possible to use enterprise services with ECC 5? We are also running PI 7.0. Any links to documentation on how to do this would be appreciated.

    Hi,
    It is possible to consume and create service in ECC5 but lot of effort required and some infrastrucuture part is also not available.
    In case of ECC6 all the services along with definitions are provided by SAP so lot less simplified usage.
    Follow this link: Can we create & run a  WebService in ECC5.0 which has only ABAP stack
    For list of ES in ECC 5: http://help.sap.com/esoa_docu_print/erp/2004/Docu_ES_ERP_2004_EN.pdf
    For ECC 5 Enterprise service help: http://help.sap.com/esoa_erp2004/helpdata/en/45/f0e4f6037941b2e10000000a11466f/frameset.htm
    Regards,
    Gourav

  • How to find the status of an invoice in ECC ?

    Hi,
    Could anyone please tell me how to find the status of an invoice in ECC system (Parked, posted or saved as completed)
    Regards
    Prashant Chauhan

    HI
    MIR6
    Regards
    Kailas Ugale

  • How to find what are all web services depolyed?

    Hi all,
    I am taraka working as BA. I have theoretical knowledge on how web services work. I asked to test web services using SOAP UI.
    I have a URL and soap message. But some time I am getting webservice names and not complete urls.
    I would like to find out list of web services exposed at given url.
    Is there any way to find it?
    Please let me know.
    Thank you in advance..
    Regards,
    Taraka

    Usually you would get the webservice urls from the developers?
    Some appservers can give you a list e.g on jboss you can check hostName:port/jbossws

  • How to Find Actual Time Spent on a TASK in TFS 2013 by using the scrum template

    Hi! Currently we are using the TFS 2013 version with Scrum template this template contains only Remaining work measure for Task item and there is no
    other option for getting the Actual time spent on particular Task and Bug having the option called Effort. How to find the Actual Time spent or Actual effort hours on particular TASK is it possible? In the similar way the Agile Template having the These options
    like
    1 Original Estimate
    2 Completed Work
    3 Remaining Work 
    Can i use these 3 for Scrum Templete also?
    We require the feature similarly like Atlasian JIRA product (JIRA consist the Actual time, Estimation Time and Log).

    The Scrum template doesn't have these fields, tracking "spent time" is not really in line the philosophy of Scrum. it's tracking data that is not really useful anyway, unless you have to do some form of reporting. In which case you probably already
    have a system to track time in at a higher level. 
    The way TFS tracks time is very hard to use when you have a highly collaborative team, it would require you to create tasks for each person contributing to a task or constant re-asssigning of tasks to track the correct time spent. How else would you track
    two peopleworking together? Pair programming, for example is a practice we at scrum.org highly promote. As well as pairing a tester and a developer up on applying ATDD when working on a story together. When a story is taking "too long" to move off
    the board a technique called swarming is often applied, in which all team members help out to move the story along at a higher pace or to get it unstuck. These ways of workign are very, very, very hard to capture in TFS. But we think the threshold to use these
    techniques should be very low. People should default to these ways of working and not be punished by bad functioning tooling.
    As mentioned by Alexandr, you can extend the Scrum template with the same fields the MSF templates use, but I would not recommend it. Instead, if you need to track time, first consider doing it in different tool and at a different level than task. Maybe
    feature, activity or product backlog item.
    If you still want to track time, then a tool like
    Imaginet Time Sheet can extend TFS in ways that make it a lot easier to track time against any work item.
    As a last resort, consider
    adding the fields from the MSF template, but I beg you to reconsider.
    My blog: blog.jessehouwing.nl

  • Record Working Time - Approve Status

    Hi,
    How can an Employee checks whether his Time has been approved or not? I am in "Record Working Time" iView in Portal, i wasn't able to see any status on previous timesheets/weeks whether the time has been approved by the manager or not.
    Please advice.
    Thanks
    Vijay

    We can see on Daily View by clicking on DETAILS link on each line.

  • How to find Full time & Part time positions in system.

    I am trying to create a NEW HIRE using pa40. I want to first hire him as Full time(FT)  and then convert him to Part time(PT).
    I understand that when I convert him to PT, I need a different PT position.
    My question is how to find out the FT position number and PT position number created in the system. I want to enter the position number in IT0000
    PERSK = 01 (FT)
    PERSK = 02 (PT)
    Thanks

    Hi
    I part time or full time can be defined differently depending on how each country needs to deal with full time or part time employees.
    In infotype 0007(Planned Working Time), there is a flag that indicates if the employee is parttime or not.
    For example, for Belgium there is a extra field Reg. workschedule in infotype 0007, that determines if the employee is full time, parttime, etc.
    Regards
    RMB

  • How to map business process and enterprise service?

    Recently, I read some documents about ESA. I'm confusing about the relationship between business process and enterprise service. In other word, how to map the business process to enterprise service after the business process is analyzed? Is there any methodology/rule to define business process and wrap them into service in ESA?

    Hi Sherry,
    I like to add some of my thoughts about that discussion. From my point of view ESA is much more than just another BPM or Enterprise BPM. ESA is adresses six key areas and I think all of them are really needed:
    - <b>People Productivity</b> as the word itself describes...it's about portals and productivity.
    - <b>Embedded Analytics</b> has to integrate transactional and analytical content.
    - <b>Service Composition</b> is used for model-driven service composition and services orchestration.
    - <b>Service Enablement</b> is about a Enterprise Services Repository filled with business meaningful Enterprise Services and service patterns for enabled objects. Excactly this is where SAP has years of experiences.
    - <b>Business Process Platform</b> is about service enablement of all application platform objects and engines. This is the place where "BPM" for core business processes resits.
    - <b>Life-Cycle Management</b> has to cover the deployment, configuration, operation and change management for ESA based processes.
    Therefore the term "BPM" is located in serveral layers of an ESA approach. On the level of <u>Business Process Platform</u> BPM is providing the choreography for core business preocesses.
    At <u>Service Enablement</u> BPM needs to compose out of granular services (I would say "atomic" services)
    buiness meaningful services (here we have "molecular" services).
    The third level where BPM could be used is <u>Service Composition</u> because exactly this is the place
    where serveral Enterprise Services could be combined to a process representation.
    To come back to the discussion:
    1. The question should be how to indentify business meaningful services which could represent single process steps. ATP check, Credit card check, ... could be examples. In theory this service could be out-tasked, defined more flexible etc. This means that processes needs to be evaluated for Enterprise Service candidates. Afterwards you can check against SAP's Enterprise Services Repository for already existing Enterprise Services. The evalution for enterprise services candidates will be supported by the metodology mentioned by Kaj and David.
    2. I think domains in this context should be motivated by business and/or functional areas. Depending on the granularity. For example Order Fulfilment Services, Master Data Services, Search Services... These kind of serices can be combined again to services such as "Search of Master Data" (Search Service + Read Master Data Service) etc. or can be used to generate UI to be used in a ESA application.
    Your thoughts?
    Very best regards
    Wulff

Maybe you are looking for

  • Video iPod keeps crashing since latest firmware update

    This has happened to me several times since the last update. Playing certain podcasts will cause the ipod to crash and reboot. Worst case was today. I had 4 unplayed episodes of the podcast 'Universe Today'. I clicked on one, the iPod crashed, reboot

  • GUI Form on a web project

    Is there any way to enable the GUI form options in the new file wizard on a web project. We actually have applets that within our web project and need access to the GUI Forms option wizard withing the web project. However because its specified as a w

  • Classloader

              wls 6.1sp4           WebApp in WAR format contains a servlet which loads on startup. This servlets           has to load some properties file. Currently if i have this properties file in           system classpath. Servlet is able to find.

  • Sun One on Win2k "Suitable JVM could not be found"

    Installing SunOneStudio 4 CE, I get the error message: A suitable JVM could not be found. Please run the installer again using the option -is:javahome <Java Home Dir> Question: what directory do they want? the j2SDK? the JVM? where is the JVM? I trie

  • What language is movie in?

    We just purchased "La Vie en Rose" not realizing, except for the title, that it was in French.  What did we miss?  Or will this always be possible.