How to configure work schedules and work schedule rules?

Can some one pleas help!

After the path suggested above, the last but one step will be
--- Set work schedule rules and work schedules
Last step will be
--->generate work schedules manually ---> Create work schedule -->click create all --->you will start seeing a calender for every month you specified.
Eg: you specify that you need work schedule from march 2008 to Dec 2008, first march work schedule is generated.
Save it. Hit enter to generate April calender and so on. Keep saving till the end.

Similar Messages

  • How to Configure E-mail and Chat functionalities

    Dear all,
    How to configure E-mail and Chat functionalities for IC Webclient.
    through IC Webclient ICI interface how can we configure E-mail functionality, As per my understanding, E-mails can be handled in a similar way of receiving phones.
    Where these E-mails can be stored?, Where we define agent E-mail id?
    being ICI is a multi channel support does it need SMPT server support? If No, would there be any difference in the functionality?
    How does CHAT functionality works?
    Please educate in above scenarios to get a better understanding.
    Your help will be highly appreciated.
    Best wishes
    Raghu ram

    Do you make any effort to search for your answers before you post your questions?  ERMS is the email response system
    The 2nd post on this board - Documentation for Interaction Center (IC) WebClient
    There is tons of stuff here to answer your questions as well as show you the configuration.  You need a 3rd party CTI solution to do chat that you will read about in the blog.
    SAP Notes
    759923 Frequently Asked Questions about IC WebClient
    940882 Frequently Asked Questions about ERMS
    882653 Frequently Asked Questions about Agent Inbox
    1114557 SAP CRM 2007 Internet Browser Releases
    1118231 Supported user interfaces for SAP CRM
    981710 Support for Microsoft Internet Explorer 7.0
    1144511 Blank screen when starting CRM WebClient or IC WebClient
    1115493 CRM Web UI: Mandatory SICF services for CRM framework
    992848 Mandatory ICF nodes for CRM WebClient UI Framework
    IC WebClient Consultant Cookbook for CRM 2005
    Online Documentation
    Online Knowledge Products
    Blog: How to Configure Contact Center Simulator User Interface (CCSUI)
    Blog: What is Computer Telephony Integration (CTI)

  • How to configure sales forcast and assign marketing budget

    how to configure sales forcast and assign marketing budget

    Hi,
    As per my knowledge i am telling forecasting is done by Historical Data { MM & PP Module }
    when you collect the data based that we have to plan every month how much you want to procure the raw material etc..,
    that should be entered in the material master under "Forecasting" tab there we have to maintain monthly wise forecasting values
    i think it should get some idea if i wrong please clarify
    Regards,
    Prasanna

  • How to configure the runtime and consolidation for a track in CMS.

    How to configure the runtime and consolidation for a track in CMS.
    I can see the track exists in CMS but the same doesnt pull up in the NWDS in the development configuration perspective.
    I compared the given track with the one which gets pulled up in NWDS. Theres something called runtime system and consolidation which isnt defined for the track which is invisible.
    Please advise , what are these required for. And how can we configure the same.

    The runtime systems are defined for a track to setup the Transport path for any code changes....the Consolidation system is usually defined as a Virtual system for the track and used for comparison and fixing any broken or Dirty DC's ....that means it's not used as a Runtime System for Deployment as compared to DEV,QAT and PROD used for Deployment...
    Hope it helps..
    Regards,
    Shikhil

  • I need to know how to configure wi-fi and VPN on m...

    I need to know how to configure wi-fi and VPN on my E61i.
    everytime I search for any available WLAN,I find one(in my company)and when start browsing,it gives me(WLAN not found).
    What should I do?

    iOS: Connecting to the Internet

  • How to configure dependent schedules

    Hi,
    Can any one guide me how to configure dependent schduels.
    Eg. I have FlatFileActiveSync Task which I know I can schedule this to run for every 4 hrs or so.
    And I have a follow-up task say AD reconciliations, such that AD rcons should run soon after ActivieSync schdule.
    Thanksin advacne,
    --sFed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    After the path suggested above, the last but one step will be
    --- Set work schedule rules and work schedules
    Last step will be
    --->generate work schedules manually ---> Create work schedule -->click create all --->you will start seeing a calender for every month you specified.
    Eg: you specify that you need work schedule from march 2008 to Dec 2008, first march work schedule is generated.
    Save it. Hit enter to generate April calender and so on. Keep saving till the end.

  • How to Configure logical path and how to retrieve physical path for an IDOC

    Hi ,
    I want to configure logical path for an IDOC,
    and then I need to retrieve Physical path from this logical path
    using a FM (eg. FILE_GET_NAME).
    How to configure the logical path for an idoc ?
    Regards ,
    Harshit Rungta

    Using Logical Files in ABAP Programs
    To create a physical file name from a logical file name in your ABAP programs, use the function module FILE_GET_NAME. To insert the function module call in your program, choose Edit ® Insert statement from the ABAP Editor screen. A dialog box appears. Select Call Function and enter FILE_GET_NAME. The parameters of this function module are listed below.
    Import parameters
    Parameters
    Function
    CLIENT
    The maintenance tables for the logical files and paths are client-dependent. Therefore, the desired client can be imported. The current client is stored in the system field SY-MANDT.
    LOGICAL_FILENAME
    Enter the logical file name in upper case letters that you want to convert.
    OPERATING_SYSTEM
    You can import any operating system that is contained in the list in Transaction SF04 (see Assigning Operating Systems to Syntax Groups). The physical file name will be created according to the syntax group to which the operating system is linked. The default parameter is the value of the system field
    SY-OPSYS.
    PARAMETER_1
    PARAMETER_2
    If you specify these import parameters, the reserved words  in the physical path names will be replaced by the imported values.
    USE_PRESENTATION
    _SERVER
    With this flag you can decide whether to import the operating system of the presentation server instead of the operating system imported by the parameter OPERATING_SYSTEM.
    WITH_FILE_EXTENSION
    If you set this flag unequal to SPACE, the file format defined for the logical file name is appended to the physical file name.
    Export Parameters
    Parameters
    Function
    EMERGENCY_FLAG
    If this parameter is unequal to SPACE, no physical name is defined in the logical path. An emergency physical name was created from table FILENAME and profile parameter DIR_GLOBAL.
    FILE_FORMAT
    This parameter is the file format defined for the logical file name. You can use this parameter, for example, to decide in which mode the file should be opened.
    FILE_NAME
    This parameter is the physical file name that you can use with the ABAP statements for working with files.
    Exception Parameters
    Parameters
    Function
    FILE_NOT_FOUND
    This exception is raised if the logical file is not defined.
    OTHERS
    This exception is raised if other errors occur.
    Suppose the logical file MYTEMP and the logical path TMP_SUB are defined as in the preceding topics and we have the following program:
    DATA: FLAG,
          FORMAT(3),
          FNAME(60).
    WRITE SY-OPSYS.
    CALL FUNCTION 'FILE_GET_NAME'
         EXPORTING
              LOGICAL_FILENAME        = 'MYTEMP'
              OPERATING_SYSTEM        = SY-OPSYS
              PARAMETER_1             = '01'
         IMPORTING
              EMERGENCY_FLAG          = FLAG
              FILE_FORMAT             = FORMAT
              FILE_NAME               = FNAME
         EXCEPTIONS
              FILE_NOT_FOUND          = 1
              OTHERS                  = 2.
    IF SY-SUBRC = 0.
      WRITE: /  'Flag      :', FLAG,
             / 'Format    :', FORMAT,
             / 'Phys. Name:', FNAME.
    ENDIF.
    The output appears as follows:
    HP-UX
    FLAG :
    FORMAT : BIN
    Phys. Name: /tmp/TEST01
    In this example, the R/3 System is running under the operating system HP-UX, which is member of the syntax group UNIX. The logical file name MYTEMP with the logical path TMP_SUB is converted into a physical file name /tmp/TEST01 as defined for the syntax group UNIX. The field FNAME can be used in the further flow of the program to work with file TEST01 in directory /tmp.
    Suppose we have a logical file name EMPTY with the physical file name TEST, connected to a logical path that has no specification of a physical path. If you replace the EXPORTING parameter 'MYTEMP' with 'EMPTY' in the above example, the output appears as follows:
    HP-UX
    FLAG : X
    FORMAT :
    Phys. Name: /usr/sap/S11/SYS/global/TEST
    The system created an emergency file name, whose path depends on the installation of the current R/3 System.

  • How to configure cRIO 9004 and link it with Labview?

    Today i tried to connect the cRIO 9004 to my pc using the serial cable
    but unfortunately the controller was not detecting on my pc. Then I
    turned on the IP reset button and tried connecting it using LAN to get
    an IP address but it also didn't work. I was looking for drivers on the
    internet and NI website but I couldn't find any directly related ones.
    Status light is blinking slowly and continuously(one flash every
    couple of seconds). According to cRIO 9004 manual it indicates "That the
    controller is unconfigured. Use MAX to configure the controller.
    Refer to the Measurement & Automation Explorer Help for information
    about configuring the controller".
    I tried MAX but its still not detecting the controller to configure.
    It would be great if you'll could help me out with this as I'm configuring this type of a controller for the first time.
    Thanks and regards
    Kavin

    Hey,
    First of all get sure that you have LV RT and FPGA as well as the NI RIO driver installed at your system.
    Then the easiest way would be to use a crossover ethernet cable to directly connect the cRIO to your PC.
    Give the PC a static IP Adress e.g. 100.100.100.100. Deactivate Firewall and Virus Scanners.
    Reboot the cRIO with IP Reset Switch ON, then it should appear in MAX under Network Devices with IP 0.0.0.0.
    Give the cRIO also a static IP like 100.100.100.111, set IP Reset switch to OFF before saving this settings.
    Now you can install the software at your cRIO also via MAX.
    Then you should be able to find it in LabVIEW by right-clicking "Project UntitledX" and "Add Targets and Devices".
    There should be different tutorials online how to configure a cRIO or other Realtime targets.
    Christian

  • How to configure the KMC and Business packages in trail version 7.0

    Hi Experts,
    I have installed the Sneak Preview version 7.00 SP9 from the sdn.
    If i want to start working on the KMC
    What i need to install and configure for KMC and collabrations.
    If i need to install, where i will get the installables and documentaion.
    In the same . I would like to install the business packages also in the same server. where i will get the insallables and related dcoumentation.
    R/3 version is ECC6
    Regards
    Vijay
    Regards
    Vijay

    Dear Samuli,
    Thanks for the Replay,
    We are using HTTPS and SSL confined but man in the middle types of attack is happening here there using one tool based one there taking the Request and Response.The below given cookie are available in that request.
    According to this , set-cookie: JSESSIONMARKID , JSESSIONID and MYSAPSSO2 values are user login time it will change every time  are not.
    After  capturing above response HTTP/1.1 302 etc , when user gives valid credentials and logs in ,
    and now ill give wrong password and wrong user id and on click of log on button, i can intercept the request and response coming from the server and when i replace this valid response stil i am able to loggin in to the portal , which should not happen as JESSIONMARKID is changed , server should not allow , but it is loggin in.Standard Login page also allowing to login in this case.
    My server version is EP 7.0 SP 12.
    Please suggest a solution so that if we restric the hacker at this stage , no matter he can never hijack the sesiona and login  with invalid username and  password.
    Thanks for Advance
    Thanks and regrades,
    Durga Rao.

  • How to configure DTR,CBS and CMS?

    hi all,
           I am working with SneakPreview (EP7.0).Is it possbile to configure DTR,CBS and CMS on sneskpreview ? Can any one tell me the procedure to configure ?
    Thanks&Regards
    Suresh

    Hi,
    pl go through this article
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f37d7e6a-0b01-0010-6690-8f4403b810cf
    Regards
    Ayyapparaj

  • How to configure a shell and tube heat exchanger with Lab VIew to get data

    HiI
    In our undergraduate chemical engineering labboratory we want to configure our shell and tube heat exchanger  with a DAq and Lab VIEW to get information about the temperaure (of the cold fluid stream being heated), the pressure (of the steam on the shell side of the heat exchanger) and the flowrate (of the water being heated).
    Can anyone suggest thermocouples, pressure transducers and flowmeters to fit between the heat exchanger and the DAq?
    P.S. the heat exchanger is already fitted with thermometers, a pressure gauge and a rotameter but we don't know how to connect these hardware to the DAq
    Solved!
    Go to Solution.

    It sounds like you have enough information to pick out appropriate sensors, you just need to do the research. I would start looking through the Omega catalog, or give them a call - they're usually helpful. I can't take the time to spec out parts for you - that would be a lot of time spent on someone else's project. Most pressure sensors put out either a 4-20mA or 0-5V signal, either of which you can read through an analog input on a DAQ; measuring a 4-20mA signal requires a resistor to convert to voltage. Most of the NI DAQ boards can read a thermocouple on an analog input, but make sure that your hardware does support reading thermocouples. For accurate readings, use a device that has built-in cold junction compensation - for example, the SCB-68 connector block - and for the most accurate readings, get a board specifically designed for temperature measurement.
    For the flow measurement, a standard, simple solution is an orifice plate. You put a differential pressure transducer across it, look up the appropriate equations, and use them to calculate the flow rate given the density of the fluid (which you'll be able to calculate from the pressure and temperature, since steam tables are widely available). There are other differential pressure devices available as well - at a previous job we used a V-Cone from McCrometer. If you call them they'll spec one for you - but get an approximate cost first to make sure it's within your budget.

  • How to configure MQ-FTE and IBM Datapower along with PI7.1

    Hi Friends,
    Can somebody guide me with the steps to configure MQ-FTE and IBM Datapower with PI7.1 for B2B communication?
    Thanks,
    --Sonal

    1. What is the difference between JMS MQ and Native MQ? How to determine which one to use?Native MQ refers to a proprietary api provided by IBM in multiple languages including java so that applications running on these can communicate mq. IBM also provides JMS wrappers around this native api, so that a jms client can talk to mq using JMS API. This is called MQ JMS.
    2. If native MQ can be used here, what are the steps to configure Native MQ on WLS in my situation?SOA suite provides a MQ Resource Adaptor which can be used to connect to MQ. The developers of this resource adapter would have used the native api to enable the adaptor to talk to MQ, so that you dont have to worry about it. However you will need to configure the properties of your local MQ ( qmgr , q name etc). This is done in the outbound connection pool properties of the resource adaptor.
    please check this blog for how to do this : http://soa-bpel-esb.blogspot.com/2009/09/configuring-mq-in-11g-soa-suite.html.
    Since your MQ installation is in a remote machine you will have to configure the following properties specific to your environment - hostname, port, server connection channel, along with the queue manager name and queue name
    3. Do I need any foreign servers or message bridges to be configured?Not required for your case if you are using MQ Adaptor. Since MQ also provides a JMS transport , you would have required foreign servers if you have to use JMS Adaptor instead of MQ Adaptor. Native MQ is expected to be faster than MQ JMS as it doesn't have the extra JMS layer.

  • HOW TO CONFIGURE GUEST NETWORK AND LIMITE BANDWIDTH

    Dear all,
    Please help me how to configure internet access rule and limited the bandwidth for guest network via TMG Forefront 2010.
    Thanks you & best regards,
    Hung Viet 

    Hi,
    First you can create the new network set which is mapped to guest subnet, after that you can create access rule for this network set.
    If you want to control bandwidth, you may need 3-party tool like this:http://www.bsplitter.com/
    Best Regards
    Quan Gu

  • How to configure the XI  and PLM in discovery box

    How to configure the XI (SLD, Integration repository, Integration Builder ) in  SAP discovery system.
    And also i want to configure the PLM and xRPM within R/3 of discovery box.
    Regards,
    Nilesh Damle

    Hi Frank,
    well, first of all, your application provides log configuration information using an XML file at deployment time. This file is called log-configuration.xml (you can see the DTD description here: http://help.sap.com/saphelp_nw04/helpdata/en/48/ef8748caed894bb4b3ae953a60c592/frameset.htm). There you can set configure log controllers, which could be two types: location and category. So, you can specify your location and severity there. This is described here: http://help.sap.com/saphelp_nw04/helpdata/en/35/671c0136b4714c9e1b16b68211287b/frameset.htm.
    Then, after the application is deployed, the log configurations you provided for it are registered with the Log Configuration tool I mentioned about. Using this tool you can later on modify your configurations at runtime (for example, change the severity level) without having to redeploy the application.
    I hope it's clearer now? I guess it was me not getting your first question correctly that caused your confusion.
    Greetings,
    Ivo

  • How To Configure My Forms And Reports In IAS10g?

    Hi Gurus,
    I installed database 10g,IAS10g,forms and reports10g(J2EE/OC4J
    Environment) separately.
    now i want to configure my forms and reports in IAS 10g.i can run the form from
    formbuilder after started the oc4j.but i am not able to run in ias .
    anybody know the link" how to configure forms and reports in ias " just
    forward to me.
    Regards
    Gopinath M

    Hi,
    you should be able to do the same because Forms and Reports are automatically set up. You need to customize the tnsnames.ora of te applicationServer Network/Admin directoy to point to the database you created. Then you configure the Forms application in the formsweb.cfg file of the Forms/server directory
    The access is through the HTTP port of the application server
    Frank

Maybe you are looking for

  • Help on JTree

    How to drag the node from the Tree which is developed to the panel attached to it.

  • Sound quality options..........

    Before my Iphone 4s, my music device was a sony walkman and I really miss its sensational sound quality mainly because i could manually set it. Everyone was impressed by it, even other iphone users. Earphones were the apple earpods. Now why isn`t tha

  • When an Adobe Form is returned, the information is hidden...

    I created the form in Acrobat Pro 9 on Windows Vista, and when some of the users send the completed form back to me, the information is only visible when I click on the form field, and my cursor is in the form field. But the information doesn't show

  • PSE 7 Screen Brightness

    New to PSE7. I'm getting used to PSE7 and thought I saw an adjustment to screen brightness somewhere. Not image brightness and contrast. I'm trying to adjust my new LCD HP laptop monitor to be less bright and am having no luck finding a way to do tha

  • Themes prior to iMovie 6 available?

    Are themes from earlier versions of iMovie available to me as a user of iMovie 6? I didn't see them anywhere, but noticed that in iDVD, you can use themes from all the previous versionos of iDVD.