Generate work schedules in production server

Hai Friends
I am trying to generate work schedules in production server, its saying only display client, then basis team opened the production server and while trying to save, its asking customizing request.basis guy saying that he wont create request for that in produciton.
Is this the right way to do?
When I trying to generate Work schedule in Dev, then also its asking customizing request, is it transportable one? Or we need to generate the work schedule in production it self? Please clarify
Thank you

Hi,
Generate the workschedules first in Dev server...you will get a customizing request. Save it.
Get the request transported to your testing / Quality server by Basis team.
Then once okay...get it transported to Prd server by the Basis team.
Doing changes directly into PROD client by opening it is not advisable...this will cause problems in future whn issues are encountered and u need to test configs for future developemts.
Keep the servers in your landscape in sync with respect to config.
Regards,
Shreyasi.

Similar Messages

  • Problem in  Generating work schedule manually

    hi all,
    I m facing problem while generation work schedule manually where i m not getting calender according to PWS.
    i m working for chemical industry where every level have different WSR and off
    eg: for manager SUN off
    General shifts MON off
    afternoon shifts WED off
    night shifts FRI off
    while creating PWS i have assign dws accordingly but while generating work schedule manually its not showing proper off................
    i dont know where i m doing mistake
    seeking experts help

    Parth ,
    One afternoon and one night shift is it changing every alternate day or every week
          Mon   tue   wed   thu    fri      sat    sun
    Ex: Night  After Night After Night  After Night
    OR
    Mon tue wed thu fri sat sun      Mon tue wed thu fri sat sun
    Nig  Nig  Nig Nig Nig Nig Nig    Nig  Nig  Nig Nig Nig Nig Nig
    Check ur sequnce and assign is it week or for day.
    Thanks
    Swati

  • How to check the generated work schedules

    Hi Friends,
    We have more than 30 Work schedule rules,  in which some of them have been generated some of not. So now I want to check which work schedules have not been generated. Kindly advice the how can I check the non generated Work schedules or generated work schedule.
    Thanks
    kl

    generally
    We use the following tcodes
    PT01  to generate
    PT02  to change the DWSR
    PT03  to display the DWSR
    more over if u have not generated the Daily work schdule you will get an Error while save DWSR in IT0007  so please check the above tcodes

  • Error while generating Work Schedules

    Hello,
    I am trying to generate Work Schedules manually. I have configured all the previous steps like creating daily WS, Period WS, assigning PSA grouping, assigning Public Holidays etc. When I generate Work Schedules manually, I get the following error message -
    Error while accessing public holiday calendar on 20110101
    Diagnosis
    The function module HOLIDAY_CHECK_AND_GET_INFO has generated an error.
    Please guide.
    Thanks.

    Hi,
    First check the validity period of your Holiday calendar.  If it is until 2010, then the Validity needs to be extended beyond 2010, Write to SAP and ask them to extend the validity period for your Holiday calendar.  Once the validity is extende then generate the workschedules.  As of now generate the workschedules until 112010.
    Regards
    Sri

  • Error when generating the report in Production Server

    Hi,
    I have created one infoset query in Development server of my client. It is working fine there. I had transported the request containg this query to Production server. But whenever I am trying to generate report using this query in Production server it is giving an error message
    "Error when generating the report".
    I am not getting what 's problem.
    Samriddhi

    Samriddhi,
    Genarally its not suggested to transport Queries. Should be able to create Queries directly Production. There might be diferences between your Development and Production versions.
    Thanks.

  • Generating working schedules

    Hi,
    Hope someone can help me with this:
    I would like to generate a working schedule for employees for x-days ahead based on a starting date that the user can enter.
    I have got 3 relevant tables:
    1. Table X with (1) resourcenumber, (2) starting date working schedule and (3) the daynumber representing the starting date (this is ISO so 1 for Monday, 2 for Tuesday etc.)
    2. Table Y has the schedule itself and can hold a 7-days schedule or a 14-days schedule. In case of 7 days schedule
    there a 14 (!) records with (1) resourcenumber, (2) daynumber, (3) starting hour a.m. (4) ending hour a.m (5) starting hour p.m and (6) ending hour p.m. In case of a 14-days schedule there are 28 records (a.m. and p.m. records)
    3. Table Z with resource data.
    An example to clarify (for fake employee
    100):
    Table X:
    Resource: 100
    Starting date: 2012-03-01 (from this date the schedule will be effective)
    Daynumber: 4 (2012-03-01 was a Thursday)
    Table Y (Resource has a 14 days schedule because per 2 weeks Monday is an off-day):
    Record 1 shows: Resource: 100, Daynumber: 1 (= Monday, working day), AM-Starting hour: 09:00, AM-Ending hour: 13:00, PM-starting hour: 13:30, PM-ending hour: 17:30
    Record 2: same but daynumber is 2
    Record 3: same but daynumber is 3 etc.
    Record 8 shows: Resource: 100, Daynumber: 8 (= Monday, off-day), AM-Starting hour: 00:00, AM-Ending hour: 00:00,
    PM-starting hour: 00:00, PM-ending hour: 00:00
    Record 9: same as record 2 but daynumber is 9.
    etc.
    Record 14: same as record 7 but day is 14 (= last day)
    The weekend days show as 00:00 for the hours (same as day 8 in example)
    I generated the working schedule with a CROSS APPLY function based on the starting date and the x-number of days ahead.
    I then evaluate the actual daynumber corresponding with that date with the daynumber in table Y.
    That works fine with a 7-days schedule but I can't get it fixed with a 14-days schedule. Day 8 in that schedule represents an actual day 1 but how do I know what actual date day 8 is ... I think I have to start with the starting date in
    table X ...
    I think ideally I would like to have the generated days as follows (as an example in case of a 14-days schedule starting 2014-05-01 for 30 days ahead):
    2014-05-01 = day 4 (= actual daynumber)
    2014-05-02 = day
    5
    2014-05-03 = day 6
    2014-05-10 = day 13
    2014-05-11 = day
    14
    2014-05-12 = day 1
    2014-05-13 = day 2
    2014-05-14 = day
    3
    2014-05-24 = day 13
    2014-05-25 = day 14
    2014-05-26 = day
    1
    2014-05-27 = day 2
    2014-05-31 = day 6
    With this done I can compare the actual daynumber with the daynumber in Table Y.
    The rownumber that the CROSS APPLY function generates has to be reset to 1 after day 14.
    I tried PARTITION BY in THE ROW_NUMBER function but to no avail ... The only field I can partition by is the maximum value of the daynumber (14 is the example)
    but that is not allowed in the rownumber function.
    I think I have to redo the whole exercise from scratch, but I wonder what the best way is to get this
    solved.
    I am stuck!
    Thanks!

    The hour is late, and I don't have much time to look into this.
    But it would definitely help if you posted:
    1) CREATE TABLE statements for your tables.
    2) INSERT statements with sample data, enough to demontstrate all aspects of the problem.
    3) The desired result given the sample.
    4) Which version of SQL Server you are using.
    The table definitions and the sample data helps to clarify the description. It also makes it easy to copy and paste into a query window to develop a tested solution.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Problem in generating acknowledgement no in production server

    am generating the 40ack feature by giving the Transaction Code :- Pe03.
    2.When i going to change option after generating the 40ack feature, i am unable to get the change option and the activate option in the production server.
    I want to update the acknowledgement no for Form 16 in the production server directly.
    Can you please let me know how to get the change node and the activate node in the production server so that i can directly update in production server.
    Regards
    Ansuman Mohanty.

    thanz

  • What are reasons to generate work schedules-not using SAP payroll or TM?

    We have SAP ECC 6 HR and only pass a work schedule rule to our proprietory payroll system and have our own time and attendance system.  The extent of our TM in SAP is just to have work schedules to attach to positions IT1011 and IT0007 on the employees.  We are a very large 24/7 organization and have nearly 20,000 work schedules in use.  It the past we have generated them out for 3 years and regenerate them as the come close to expiring.
    My question is - what are some basic reasons for generating a work schedule?  In our implementation I can't seem to find out why we need to continue doing it.  We are able to attach an ungenerated work schedule to a position and a person.
    Thanks in advance for any insight.

    Generally the reasons why you would have a works schedule is for leave deduction, and possibly accruals, and also for automatic generation of overtime and shift penalties, public holidays.  It could also further link into separate systems for payment purposes, or for attendance checks (i.e. EHS, rostering, training & event mgt, Sales & Distribution).
    However, if your rostering/award interpretation is being handled in a separate system, and this information is being passed to a separate payroll system, then it would seem redundant to have work schedules in SAP.

  • Scheduling in Production server.

    Hi ,
    I have scheduled a job in dev server using SM36 job schedule wizard.
    now there is no workbench request no. in job scheduling.
    i need to transport that to production server.
    how can i do that.
    with warm regards,
    Vikash.

    Hello,
    Jobs cannot be transported. You need to create them in production again.
    Regards,
    Mansi.

  • Generating work schedule in PT01

    Dear Colleagues,
    Few issues related with PT01 transaction:
    1. I have PWS referencing DWS that is SDAY, SDAY has 3 variants, but on PWS customizing screen variants are not visible, so it is not clear is it just SDAY or SDAY I or SDAY S.
    2. On PWS config I have days 06 and 07 as FREE, but when run PT01 it falls into Thursday and Friday instead of expected Saturday and Sunday.
    3. Within PWS config I choose SDAY I, but PT01 generates it with SDAY without variant.
    4. Who should be doing PT01 within the business?  Is it one time administrator task for the beginning of the year?
    Thank you,

    Here are the steps to configure a WS Rule and generate them....:
    http://www.soniconsulting.com/2010/hello-world/
    DWS variants will be applied based on the IMG Step: IMG > Time Management > Work Schedule > Daily Work Schedule > Define Rules for Variants
    In your Reference Date while configuring a WS Rule, make sure the date falls on a Monday (1/1/1900)
    If your Holiday Calendar does not change year to year, you can generate the WS Rules for next 10-20-50 years or so...
    - Harshal

  • ? system considers 1 day before and 1 day after in generating work schedule

    Dear team:
    Why the system considers a day before and a day after while generating the personal work schedule. Is their any specific reason behind this, please let me know.
    Also experts say that a month work schedule to be generated in advance before the go-live date.
    Regards
    Mallikarjun P

    Hi Advait,
    Check IT 2003 ( substitutions ) infotype in the date range around the public holiday.
    It may so happen that there is a substitution.
    cheers,
    Ajay

  • Generation of Work Schedule Rule in Production Client

    Dear All,
    Is it Possible and Advisable to Generate Work Schedule Rule in the Production Server.
    Thanks & Regards,
    Punam Jha

    Hi Punam Jha,
    You'd better generate it in test client and transport into production.
    This is the regular way.
    Changing work schedule rules in production client is risky.
    However, in order to make it happen, please refer to the following SAP Note:
    Note 86790 - Generating work schedules in production client
    Regards,
    Dilek

  • Works on dev, but not production server

    I am building a site using LCCS which works on my laptop, which runs ColdFusion 9 and Apache. But it does not work on my production server, which is ColdFusion 8 and IIS. I have made the various configuration changes and I can successfully create a room via CF from the production server.
    But my Flex app does not seem to load properly on the production server. It is basically a video-conferencing app, so the swf should display the "Start My Camera" button, but it doesn't. It works perfectly on my laptop though.
    I realize I am using very different environments, but I don't know why that would affect anything for the simple Flex-generated swf, especially when I am dynamically creating the room via production.
    I am sure it is something simple, but am out of ideas. Any suggestions would be greatly appreciated.
    cheers,
    Steven

    It seems I figured out my problem (well, about this issue anyway).
    A while back, I un-installed .NET but then had to re-install it. In doing so, somehow IIS lost the ability to recognize .js files. It would return a 404 error whenever you tried to call any file with a .js extension. My hosting company did something to re-associate the file type with IIS. It seems I have the same problem with .swf files.
    fyi, I used Charles (a Firefox plugin) to diagnose this. I had assumed it was a permission issue. It never occurred to me to try to access my swf directly.

  • Report to check work schedule - If case more than hundreds of work schedule

    dear experts,
    I have one issue to create work schedule for the next year. I want to create(pt01) active work schedule for the next year(2012).
    However i have issue because I don't remember which work schedule still active.This is because we have hundreds
    of work schedule rule based on emp sub group grouping, holiday calendar,psa grouping and w schedule rule.
    Is there any reports to check all the active work schedule .I'm afreaid ihave missing certain  work schedule for next year...

    If you use the IMG node for automatic generation of Work Schedule Rules
    (Time Management > Work Schedules > Work Schedule Rules and Work Schedules > Generate Work Schedules in Batch)
    you can generate all work schedules associated to a Holiday Calendar
    and only the active work schedules will be generated.

  • Work schedule shows a holiday but it is not defined

    Hi All,
    I have run PT03 to check on my work schedule and it shows a date that is a holiday. I have checked the public holiday calendar and no holiday defined on that day. Checking again on the generated work schedule and clicking on the date where it says as holiday (though not defined in holiday calendar) it pops a message "Calendar not loaded on 21.05.2010". Normally when you double clicked on the date when there is holiday it is displayed beside holiday class field the description of the holiday but this one it does not show any description beside that field.
    Hope you can help me on this.
    Thank you in advance.

    Hi alvin zamora,
    One more thing,  if you have removed a holiday from the holiday calendar after generation of work schedules, you need to generate the calendar again after removing that holiday, and also generate the work schedule using that calender and save the work schedule,  then only you will see the removed holiday effect in the work schedule.
    Regards
    Venu

Maybe you are looking for

  • Used space on ipod but no songs...

    Ok. So I recently got this new ipod video, 30gb, and nothing but problems since I got it. I had to restore it completely and I had some problems putting it back to life. Ive finally done it, and now when I connect it to the computer, all the songs ar

  • Inventory Management SnapShot model

    In the How to guide it discusses on how to create a SNAPSHOT model for monthly loads. Can I create a SNAPSHOT ODS and eliminate the Cube as part of my Data Flow and if so I believe the only change that I need to make is to check the BEx reporting fla

  • Site layout and color looks different in each browser

    I created a site.  When I preview the site in firefox it is just the way   I created it in dreamweaver cs5, but when I preview it in IE the   background color is not the pinkish color I used, it is black and the   subheading is crunched up to the lef

  • Flex 2 Beta 3 Flex Component Explorer

    Is there some valid or explainable reason that every time I click on a component in the explore I am being asked to restart my computer?

  • How do i get the FormDumper.java from JDAPI working?

    Hi, I am a novice in Java and Forms Api (C). I am interested in a solution that would reduce the time for us to make some sweeping changes across applications and hence became interested in this. By trial and error, I got a couple of examples of the