How to implement pre-purchased service credits?

Is there a best demonstrated practice for implementing the following?
1. Customer purchases credits that are good for a specified period of time (e.g. one year).
2. Anytime during the year, the customer can redeem part or all of the credits for a service (e.g. professional services person on-site for an evaluation)
3. The credit is decremented accordingly, and tracked until depleted or expired.

Hi Aditi
if u dont' found ZEMPLOYEE_CAREER_MBO  (customer specific)
crate ur own by following
spro ->IMG ->cross-application components ->Homepage Framework-> resources ->define resources ->define resources (add entry)
click on new entry
specifi the following
resource key -
>ZEMPLOYEE_CAREER_MBO
description -
>Appraisals In Process
object name----->hap_document/documents_todo.htm
url of pcd page-->pcd:portal_content/com.sap.pct/every_user/com.sap.pct.ess.employee/com.sap.pct.ess.roles/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.area_career_job/com.sap.pct.ess.bsp_career_job
save ur entry. release the request.
now create the service.
spro ->IMG ->cross-application components ->Homepage Framework-> services->define services->define services(add entry)
click on new entry specifie following
service key -->EMPLOYEE_CAREER_APPRAISALS
service link text-->Appraisals
service type--->service build with BSP
link resource--->ZEMPLOYEE_CAREER_MBO
save ur entry.
now click on assign services to subarea->Assign Services to Subareas (Find Entries)
create new entry.
subarea key---->EMPLOYEE_CAREER_SUBAPPRAISALS
service key short---->EMPLOYEE_CAREER_APPRAISALS
position--->1
if u have any query revert back
regards,
kaushal

Similar Messages

  • How  to implement "my appraisals" service in ESS ?

    hi,
    i am configuring ESS in EP 6.0. My back end system is MySAP ERP. i wanted to implement "My Appraisals" service in ESS but i dont see any iview for it . Can anyone tell me how to implement it in ESS?
    regards,
    aditi

    Hi Aditi
    if u dont' found ZEMPLOYEE_CAREER_MBO  (customer specific)
    crate ur own by following
    spro ->IMG ->cross-application components ->Homepage Framework-> resources ->define resources ->define resources (add entry)
    click on new entry
    specifi the following
    resource key -
    >ZEMPLOYEE_CAREER_MBO
    description -
    >Appraisals In Process
    object name----->hap_document/documents_todo.htm
    url of pcd page-->pcd:portal_content/com.sap.pct/every_user/com.sap.pct.ess.employee/com.sap.pct.ess.roles/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.area_career_job/com.sap.pct.ess.bsp_career_job
    save ur entry. release the request.
    now create the service.
    spro ->IMG ->cross-application components ->Homepage Framework-> services->define services->define services(add entry)
    click on new entry specifie following
    service key -->EMPLOYEE_CAREER_APPRAISALS
    service link text-->Appraisals
    service type--->service build with BSP
    link resource--->ZEMPLOYEE_CAREER_MBO
    save ur entry.
    now click on assign services to subarea->Assign Services to Subareas (Find Entries)
    create new entry.
    subarea key---->EMPLOYEE_CAREER_SUBAPPRAISALS
    service key short---->EMPLOYEE_CAREER_APPRAISALS
    position--->1
    if u have any query revert back
    regards,
    kaushal

  • ATA 186 How to change pre-call services

    Hi, who know how to change the pre-call services? I need change the call pickup (code **3) by code **8.
    Regards

    Issue the dual line ephone-dn command for Analog Telephone Adaptor (ATA).
    Issue the transfer-system full-consult command.
    Issue the transfer-pattern xxx command, where xxx should match the number you want to conference (transfer-pattern .T).
    Set the ConnectMode in ATA web configuration as 0x90000400.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cata/186_188/2_15_ms/english/administration/guide/sccp/user.html

  • How to implemented an scheduled service using ScheduledExecutorService

    Hi, everybody
    I have a case that need retrieve data periodically from server. And I used the ScheduledExecutorService and javafx.concurrent.Service to implemented this case. But the trick thing is that ScheduledExecutorService schedule method aleady need a Runnable parameter. And Service setExecutor method set the ScheduledExecutorService. But the result is the Runnable is implemented run periodically but not the Service's call method(Which is I want). The Service is not extends from Runnable or Callable, how it can be used by the ScheduledExecutorService to implemented the periodical task?
    Please see my example:
    public class ScheduledService extends Application{
         * @param args
         *            the command line arguments
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage primaryStage) throws Exception {
            primaryStage.setTitle("Test");
            Parent root = new Label("abc");
            Scene scene = new Scene(root, 800, 600);
            primaryStage.setScene(scene);
            primaryStage.show();
            test();
        public static void test() {
            ScheduledExecutorService scheduledExecutorService = Executors.newScheduledThreadPool(1);
            scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
                @Override
                public void run() {
                    System.out.println("ScheduledServiceTest.main(...).new Runnable() {...}.run()");
            }, 0, 2, TimeUnit.SECONDS);
            CustomService service = new CustomService();
            service.setExecutor(scheduledExecutorService);
            service.start();
    class CustomService extends Service<Void> {
        @Override
        protected Task<Void> createTask() {
            return new Task<Void>() {
                @Override
                protected Void call() throws Exception {
                    System.out.println("CustomService.createTask().new Task() {...}.call()");
                    return null;
    }The result is:
    ScheduledServiceTest.main(...).new Runnable() {...}.run()
    CustomService.createTask().new Task() {...}.call()
    ScheduledServiceTest.main(...).new Runnable() {...}.run()
    ScheduledServiceTest.main(...).new Runnable() {...}.run()
    ScheduledServiceTest.main(...).new Runnable() {...}.run()
    ScheduledServiceTest.main(...).new Runnable() {...}.run()
    ScheduledServiceTest.main(...).new Runnable() {...}.run()
    {code}
    Edited by: Owen on May 20, 2012 12:05 AM
    Edited by: Owen on May 20, 2012 12:07 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    You are not allowed to call "restart" on a different thread, it must be from the JavaFX application thread. You don't see the Exception for it because it is encapsulated in the ScheduledFuture that "executor.scheduleWithFixedDelay" returns.
    Let's forget about this ScheduledExecutorService, that is not the way to do it when you want to work with a Service. Here's a fully working example that uses standard JavaFX:
    package hs.mediasystem;
    import javafx.animation.Animation;
    import javafx.animation.KeyFrame;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.concurrent.Service;
    import javafx.concurrent.Task;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class Test extends Application {
      public static void main(String[] args) {
        launch(args);
      public static class MyService extends Service<Void> {
        @Override
        protected Task<Void> createTask() {
          return new Task<Void>() {
            @Override
            protected Void call() throws Exception {
              System.out.println("Begin task");
              return null;
      @Override
      public void start(Stage paramStage) throws Exception {
        final MyService myService = new MyService();
        Timeline timeline = new Timeline(new KeyFrame(Duration.seconds(5), new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            myService.restart();   // automatically on JavaFX thread, so can call restart directly
        timeline.setCycleCount(Animation.INDEFINITE);
        timeline.playFrom("end"); // can also play from start but you will have an initial 5 second delay
    }

  • How to implement singleton service if i m using only jar and war component

    hello,
    in my application i m using only jar and war component .
    as i m not using EAR for deployment so i dont have weblogic-application.xml file.
    so in this case how i implement weblogic singleton service .and how to call active method

    From the documentation:
    After you have created a singleton service class using the SingletonService interface, you must define it as a singleton service within WebLogic Server. This singleton service object contains the following information:
    The path to the class to load as the singleton service.
    The preferred server and other candidate servers for the singleton service.
    The following excerpt from the cluster element of config.xml shows how a singleton service is defined:
    <singleton-service>
    <name>SingletonTestServiceName</name>
    <user-preferred-server>myManaged1</user-preferred-server>
    <class-name>mycompany.myprogram.subpackage.SingletonTestServiceImpl</class-name>
    <cluster>myCluster</cluster>
    </singleton-service>
    Note that the config.xml is located in the <domain-home>/config directory

  • Implement the web-service API on an external service desk

    Hi,
    I want to implement the web-service API on an external service desk
    system.
    I am working with the IMG and got to the point where I define a logical
    port. At this point I need the web-service to be implemented on the
    external system.
    I have web-service API documentation and also read note 962383 - but I
    did not find any specific instructions how to implement the web-service.
    Can you assist me with documentation for the web-service implementation
    on external system procedure?
    or if someone can share a step-by-step - it would be great.
    Thanks,
    Shelly

    Hello Shelly,
    Please use the following link to Read a blog Service Desk Implementation Guide Part II
    Service Desk Implementation Guide Part II
    This blog describes the following.
    1) Integrate New data in the Service Transaction
    2) Implement new action: send mail to creator on message modification.
    3) Configure an interface to an external service Desk
    4)Implement a new action that send the message to the external system and change automatically the status.
    Hope it helps.
    Cheers,
    Satish.

  • Implementation of  Web Services

    hi there,
    could u tell me how to implement a web service in Adobe.
    i want to return a value from the Web Service back to the Adobe Dynamic PDF via an ASP.Net Page.
    Thank you for your time & awaiting a reply!!

    ok ... just answering my own question ;)
    that's what I found on sun's website:
    the Java Web Services Developer Pack will no longer be developed as a discrete release vehicle for the Web services and XML technologies that the Java WSDP shares with Project GlassFish.
    The current release of Java Web Services Developer Pack, Version 2.0, contains the new JAX-WS 2.0 EA, JAXB 2.0 EA, and SAAJ 1.3 EA implementations, the "integrated stack" for Web services. These components are now available as FCS-quality releases in Project GlassFish.
    as far as I know ... correct me if I'm wrong ... Sun App Server 9 is based on Proj Glassfish.

  • How to Implement Async JAX-WS 2.1 Service

    I would appreciate some guidance, or links to documentation, on how to implement an asynchronous JAX-WS 2.1 web service (note that I am NOT asking how to implement a client program that invokes a JAX-WS web service asynchronously b/c BPEL will be invoking the service).
    Ultimately, what I need to accomplish is to:
    (a) implement a JAX-WS web service that can be invoked asynchronously
    (b) deploy that JAX-WS web service to Oracle WebLogic 10.3 and
    (c) invoke the JAX-WS web service asynchronously from Oracle BPEL Process Manager 10.1.3.3.
    As an example, let's say I have the following class that I'd like to expose as an async JAX-WS web service:
    <pre>
    public class EngineConfigurationService
    public Configuration configureEngine(ConfigurationRequest aRequest)
    //....arbitrary amounts of long-running computation happens here...
    return configuration;
    </pre>
    How would I annotate this class to allow it to be consumed as an async JAX-WS web service? Would I need any other classes (e.g., a "response" class)?
    Thanks in advance for any help.
    Dave

    I recently developed a test async web service and deployed it on weblogic 9. What I did was 1.) create a java class with with standard ws annotations.
    2.)Compile it using jwsc ant task setting the attribute enableAsyncService="true".
    I am pasting the java file and the ant target here for your reference.
    <taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask" classpathref="classpath.basic"/>
    <target name="buildWebService">
         <jwsc
         srcdir="${basedir}/src/com/test/"
         sourcepath="${basedir}/src/com/test/"
         destdir="${basedir}/build"
         classpathref="classpath.basic"
         keepGenerated="true"
         enableAsyncService="true"
         debug="on">
         <module contextPath="TestAsyncWS" name="TestAsyncWS" explode="false" >
              <jws file="TestAsyncWS.java">
         <WLHttpTransport contextPath="TestAsyncWS" serviceUri="TestAsyncWS" portName="TestAsyncWS" />
         </jws>
         <FileSet dir="${basedir}/src" >
         <include name="**/*.java" />
         </FileSet>
         </module>
              </jwsc>     
         </target>
    and here is the java class
    package com.test;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    import javax.jws.soap.SOAPBinding;
    @WebService (name = "TestAsyncWS", targetNamespace = "java:com.test")
    public class TestAsyncWS
         public TestAsyncWS()
         @WebMethod()
              public String sayHello(String textToDisplay)
              String result = "I can still work.Here is what you sent to me. "+ textToDisplay;
              System.out.println(result);
              try {
                   Thread.sleep(20000);
              } catch (InterruptedException e) {
                   e.printStackTrace();
              return result;
    }

  • How to Implement BW in IT Service Desk/IT Help Desk /IT Complain Surveillance Dept/IT Customer Support Dept?

    Hi
    If a organization have 200 to 300 daily complains of there IT equipment/Software/Network e.t.c.
    How to Implement BW in IT Service Desk/IT Help Desk /IT Complain Surveillance Dept/IT Customer Support Dept?
    Is there any standard DataSources/InfoObjects/DSOs/InfoCubes etc. available in SAP BI Content?

    Imran,
    The point I think was to ensure that you knew exactly what was required. A customer service desk can have many interpretations from a BI perspective.
    You could have :
    1. Operational reports - calls attended per shift , Average number of calls per person , Seasonality in the calls coming in etc
    2. Analytic views - Utilization of resources , Average call time and trending , customer satisfaction , average wait time
    3. Strategic - Call volumes corresponding to campaigns etc , Employee churn and related call times
    Based on these you would then have to construct your models which would be populated by data from the MySQL instance for you to report.
    Else if you have BWA you could have data discovery instead or if you have HANA - you could do even more and if you have a HANA sidecar - you technically dont need BW. The possibilities are virtually endless - it depends on how you want to drive it and how the end user ( client ) sees value in the same.

  • I just downloaded iTunes on my new PC and all the music that I have purchased through ITunes that was backed up on the cloud won't play. It is telling I must authorize this computer before it play pre purchased music. how do I authorize my computer.

    I just downloaded iTunes on my new PC and all the music that I have purchased through ITunes that was backed up on the cloud won't play. It is telling me I must authorize this computer before it can play pre purchased music. how do I authorize my computer to play this music?
    Thank you for any assistance.

    Tigon's already got you covered here. But I'll chime in with some English localisation advice.
    There's a couple of ways to get through to the authorisation controls in the 11.0.x versions.
    The control is still in the Store menu, but first (if you're using iTunes versions 11.0.x) you might need to bring up the menu bar to see the Store menu.
    If you're using 11.0.x, click on the wee boxy icon up in the top-left corner of your iTunes to see the "Show Menu Bar" control, as per the following screenshot:
    Then you'll find the control in the Store menu:
    Alternatively, if you don't want to bring up the menu bar, it's still possible to get into the authorise controls via nested menus accessible from the wee boxy icon. Here's a screenshot of where to find them:

  • How implement Auto Purchase Order in Transportation Cost Settlement

    Hi,Experts,
    When Settling the Transportation Cost,I must create PO manually.Can anybody tell me How implement Auto Purchase Order in Transportation Cost Settlement?
    Thanks for a lot.
    Donald Lo

    Dear Donald,
    Please go through this SAP link it will help you about Shipment cost settlement process in the transportation.
    http://help.sap.com/saphelp_47x200/helpdata/en/93/74413b546011d1a7020000e829fd11/frameset.htm
    I hope it will help you,
    Regards,
    Murali.

  • How to cancel pre order purchase movie rental on itunes

    how to cancel pre order purchase movie rental on itunes that i have already een charged for i wont press the download botton

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple
    All purchases are considered final but you can try the 'report a problem' page to contact iTunes Support and see if they will refund or credit you : http://reportaproblem.apple.com
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How to implement web service client timeout

    I'm trying to implement a web service client using JAX-RPC specification and the client is generated by clientgen utility. We are using weblogic8.1(sp5).
    How do I control the connection timeout and data transmission timeout? I have tried:
    BindingInfo.setTimeout() method and stub._setProperty("weblogic.webservice.rpc.timeoutsecs", "1" /* secs */);
    and they don't seem to be working...
    I have searched the web service documentation and didn't found any mentioning on this. Can someone shred some light on this?
    Thanks.
    Ren
    null

    Hi,
    I had a problem too for setting the timeout of a webservice client. but i didn't find any thing on this.
    But there is a work around for this see if it suits you but for this you have to use Apache AXIS webservice api to generate the client in that Api you have the Stub.timeOut() function to over come this problem
    Cheers !!
    Vivek:-)

  • How to implement sheduling services in Ep

    Hi all,
    I would like to know how to implement scheduling services in ep in the sense .. running jobs in portal .
    Any pointers to this would be of great help.
    Thanks& Regards,
    Uma,

    Hi Uma,
    If you have not already done so, try the following weblog by Prakash.
    <b>Did you know you can schedule jobs in portal using KM's Scheduler Task?>
    Hope this helps you
    Ranjith

  • How to implement Change pointers for Purchase order - ME22N - Custom Fields

    Hi Experts,
    Can you please tell me how to implement - Change Pointer for Custom fields in IDOC.
    I am working on IDOC - For purchase order - acknowledgements - in custom screen/tab in ME22N.
    Everything is working fine according to my requirement.
    All i need to know is the process of - Creating/Change - Change pointers for Custom fields.
    1.How to implement change pointers for custom fields.
    2.Can we maintain - Change Document - for custom fields at data element level?
    P.S. - I have browsed many previous - forums before posting a new discussion.
    please share your inputs...
    explaining how to create/implement - change pointers for custom fields will help me .
    Regards,
    Karthik Rali.

    Hi,
    To maintain Change Document for custom field:
    1. Check if "Change document" checkbox is set in data element.
    2. Find Change Document Object for transaction.
       You can use SQL trace - ST05.
       Look there for line with table CDHDR and statement insert values
       (for example for transaction KA02 Change Document Object is KSTAR)
    3. Regenerate update program for this Change Document Object in transaction SCDO
    Change documents for z-fields schould be generated.
    I am not sure about change pointers but they are configured somehow in BD61 and BD50.

Maybe you are looking for

  • UDF to read a file name and use some of its contents to map fields in target.

    I have a scenario where I need to take the month and year from the file name and map it to suitable fields in the target. Ex - filename_apr2014 from this i should be able to read the month and year and map it. How to do this? I tried the udf - public

  • SAPKE60027 - "T591A" contains invalid key fields

    Hi, I'm busy applying Support Packages for ERP 6, the BASIS and ABA patches were loaded success fully, but when loading the HR queue the implementation of SAPKE60027 stops with an error: Error in phase: XPRA_EXECUTION Reason for error: TP_STEP_FAILUR

  • Error updating software macbook air

    Just bought a Macbook air. I tried to update software after 2 hours downloading time and two tries get an error message. What can I do? return the device? Thank you

  • 4506 switch and netflow card

    folks i have a 4506 with a netflow card installed and i'm using crannog software to read the netflow stats but i have a problem i have the following statements on my switch config ip route-cache flow ip flow ingress ip flow-cache timeout active 5 ip

  • Can't get email in Foxfire-blank page only-Safari works-help.

    When I try to access my Hughes email account from Firefox, I get a blank page. I can get all the way to hughes webmail list, which Firefox shows as a blank page. I can access the same email page just fine from Safari.