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

Similar Messages

  • How to check the Statistics generated for a table through DBMS_STATS.

    Hi,
    How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ?
    Please let me know.
    Thanks !
    Regards,
    Rajasekhar

    Rajasekhar wrote:
    Hi,
    How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ?
    Please let me know.
    Thanks !
    Regards,
    Rajasekharquery ALL_TABLES

  • How to check the BW and BIA systems are up and working fine.

    Hi friends,
    how to check the BW and BIA systems are up and working fine. And also what is ICM, how to check whether it is working properly or not.
    ANd what is name resolution and IP , how to check whether this is running fine.
    regards, balu.

    Hi,
    you can use process monitoring or the alert function in the standalone TREXAdmin tool.
    ICM:
    http://help.sap.com/saphelp_nw04/helpdata/EN/0a/a7903febb15a7be10000000a11405a/content.htm
    name resolution
    http://en.wikipedia.org/wiki/Domain_Name_System
    IP:
    http://en.wikipedia.org/wiki/IP
    Please also have a look at the transactions TREXADMIN and RSDDBIAMON2.
    I think it´s better if you use the forum search and google/wikipedia before you ask such questions.
    Best Regards,
    Jens

  • How to check the all scheduled concurrent programs.

    Hi All,
    APPS : 11.5.10.2
    DB:9.2.0.8
    how to check the all scheduled concurrent programs at a time, is their any script for this?
    Thanks a million in advance.

    Hi,
    Please refer to the following threads.
    How to know The request is scheduled or not??
    How to know The request is scheduled or not??
    Need Report or Query to see all scheduled jobs
    Need Report or Query to see all scheduled jobs
    Regards,
    Hussein

  • How to check the SAI REST service is working ?

    Hi All,
    Please find the below link and give me some solution for this
    How to check the SAI REST is working ?
    Regards,
    Gopinath

    give me some solution for thisThe other forum is the right place, not here.

  • How to Check the report is Finished while calling a report from Forms 6i

    Dear All,
    I am Calling a report from oracle forms 6i, after runing report in " Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);"
    I need to copy the pdf to store it in another place once the report is generated.
    My Problem is : that i want ot Check first the report has generated after " Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);" is executed ? How to check the report is generated ot not?
    As i tried to use the below procedure after "Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);"" but his does not work... nothing happens
    {code}
    PROCEDURE FPC_COPY_REPORT (p_report_name varchar2) IS
         repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         rep_status varchar2(20);
         lv_id varchar2(1000);
    BEGIN
    repid := find_report_object('AMTP_995.RDF');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
         if rep_status = 'FINISHED' then
         message('Report Completed'); message('Report Completed');
         else
              message('Error when running report.');           message('Error when running report.');
         end if;
    END;
    {code}
    Any Help

    actually My code is this:
    declare
         ln_alert          number;
         pl_id               ParamList;
         lv_report_name varchar2(10000);
         lv_path  varchar2 (100) := 'C:\';
         lv_shared_path  varchar2(1000);
         lv_copy_file varchar2(10000);
      cursor cr_dir_path IS
      select v_dir_path
      from md_directory
      where v_dir_code ='SHR';
      lv_file_name varchar2(1000);
    BEGIN
      open cr_dir_path;
      fetch cr_dir_path into lv_shared_path;
      close cr_dir_path;
    lv_report_name :=  lv_path||:fn_cntl.nb_ref_no||'_M08600000_'||to_char(sysdate,'YYYYMMDD-HHmmss')||'.pdf';
      if ffn_check_fields  THEN
         pl_id := Get_Parameter_List('LAI');
             IF NOT Id_Null(pl_id) THEN
                 Destroy_Parameter_List( pl_id );
              END IF;             
              pl_id := Create_Parameter_List('LAI');
           if :fn_cntl.nb_report_name ='MMAT_REPORT'
                then
                     if :fn_cntl.nb_report_desc ='EXPORT'
                          then
                         Add_Parameter(pl_id, 'PARAMFORM',TEXT_PARAMETER, 'NO');
             Add_Parameter(pl_id, 'DESTYPE',  TEXT_PARAMETER,'File');
            Add_Parameter(pl_id, 'DESNAME',  TEXT_PARAMETER, lv_report_name);
            Add_Parameter(pl_id, 'DESFORMAT',TEXT_PARAMETER,'PDF');
            Add_Parameter(pl_id, 'p_mat_no',TEXT_PARAMETER, :fn_cntl.nb_mat_no);   
            Add_Parameter(pl_id, 'p_ref_no',     TEXT_PARAMETER, :fn_cntl.nb_ref_no);
            Add_Parameter(pl_id, 'p_verified_by',TEXT_PARAMETER, user);
                     Run_Product(REPORTS,:fn_cntl.nb_report_name,ASYNCHRONOUS, RUNTIME, FILESYSTEM,pl_id, NULL);
          DECLARE     
               repid REPORT_OBJECT;     v_rep VARCHAR2(100);     rep_status varchar2(20);BEGIN
                         /* REP_OBJ= REPORT OBJECT CREATED UNDER REPORT NODE AT FORM */
             repid := find_report_object('MMAT_REPORT');      v_rep := RUN_REPORT_OBJECT(repid);
                        rep_status := REPORT_OBJECT_STATUS(v_rep);          
          if rep_status = 'FINISHED' then
              message('Report Completed');          message('Report Completed');
             --copy_report_object_output(v_rep,'c:\local.pdf');
             -- host('netscape c:\tlocal.pdf');     
         else          message('Error when running report.');
                                          message('Error when running report.');     
         end if;
                 END;
         end if;
      end if;
           if :fn_cntl.nb_report_desc ='EXPORT'
                then
                  error_handler('This report will be Storde in ' ||lv_report_name||' and '||lv_shared_path|| ' Location',3);
                     lv_copy_file :='copy '||' "'||lv_report_name||'" "'||lv_shared_path||'"';
                     host(lv_copy_file,no_screen);
                  error_handler('Report Has been Generated Sucessfully.',3);
           end if;
        end if;
    END;I will try first the another solution you have replied perviously... and will let you no the results... thanks a lot...

  • How to delete the Generated WSR

    Hi experts
    how to delete the generated WSR , is there  any way to delete the Generated WSR rules
    please help
    Regards

    Hi,
    Go to Transaction PT02 (Change Work Schedule) use Delete function to delete existing work schedule.You can use the Choose function to display detailed data for the individual daily work schedules before deleting them.
    If you delete the work schedule for a month, choose Delete. Skip any months that you do not want to delete by choosing Next Month or Previous Month. The system deletes all work schedules for which period calendra month you displayed information.
    I hope this wil help you.
    Thanks,
    Padmaja

  • 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

  • ? 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

  • How to check the verity version in our PeopleSoft Installation?

    How to check the verity version in our PeopleSoft Installation? I am not sure if the verity is installed or not and also if installed what is the version?

    yes. it says the version is 5.0.1
    Is there any difference in installation or configuration when the app and web server are in same machine and when the app and web server are installed in different servers?
    ============================================
    D:\fs840\webserv\peoplesoft>mkvdk
    mkvdk - Verity, Inc. Version 5.0.1 (_nti40, Jul 23 2004)
    Usage: mkvdk [<option>...] <filespec>...
    Where <option> can be a VDK switch, or any of:
    -about Show the collection's about resources
    -autodel Delete bulk insert file when no longer needed
    -backup <dir> Specify collection backup location
    -bulk Submit bulk insert file(s)
    -charmap <name> Specify the character map to VDK
    -collection <path> Specify the collection (required)
    -create Create the collection
    -credentials <user> Specify user[:passwd][:domain][:mailbox]
    -datapath <path> Specify VDK datapath
    -datefmt <fmt> Specify date format to VDK
    -debug Enable debugging output
    -delete Delete documents
    -description <desc> Set the collection's description
    -diskcache <num> Set VDK's disk cache size (kbytes)
    -extract Extract field values from text
    -help Print this usage information
    -insert Insert documents (default)
    -locale <locale> Specify the locale to VDK
    -logfile <file> Save output in a log file
    -loglevel <num> Set the VDK output level for the log
    -mailboxes This option is depracated. Use the credentials option inste
    ad
    -maxfiles <num> Set VDK's maximum number of open files
    -maxmemory <num> Set VDK's maximum memory usage (kbytes)
    -mode <mode> Set the indexing mode
    -modify Modify fields using field/value pairs from a bulkfile
    -nohousekeep Disable housekeeping
    -noindex Disable indexing
    -nolock Turns off locking (dangerous)
    -nooptimize Disable optimizations
    -nosave Don't save collection work list
    -noservice Prevents servicing of submitted work
    -nosubmit Don't submit work to VDK
    -numdocs <num> Number of documents to insert from bulk insert file(s)
    -numpages <num> Synonym for diskcache for backward compatibility
    -offset <num> Specify offset into bulk insert file(s)
    -online Flag for online Bulk Modify
    -optimize <spec> Optimize the collection
    -outlevel <num> Set the VDK output level
    -persist Service the collection forever
    -purge Remove all documents from collection
    -purgeback Purge in the background
    -purgewait <secs> Specify delay before purge
    -quiet Suppress all non-error messages
    -repair Repair the collection
    -servlev <spec> Advanced option for overriding service level
    -sleeptime <secs> Interval between service calls for persist
    -style <dir> Specify style directory for create
    -submit Synonym for noservice for backward compatibility
    -synch Perform work synchronously
    -topicset <path> Specify VDK topic set
    -update Update documents
    -vdkhome <path> Specify VDK home
    -verbose Output more information
    -words Build word assist list
    -wordindex Build word assist index
    The <spec> for -optimize is a hyphenated string of:
    maxmerge Perform maximal merging of partitions
    squeeze Recover space from deleted documents
    vdbopt Build optimized VDB's
    spanword Create word list spanning all partitions
    ngramindex Create ngram index into spanning word list
    maxclean Really clean (not for read-write)
    readonly Make the collection read-only
    tuneup Fully optimize for read-write use
    publish Fully optimize for read-only use
    The <spec> for -servlev is a hyphenated string of:
    search Enable search and retrieval
    insert Enable adding and updating documents
    optimize Enable opportunistic collection optimization
    assist Enable building of word list
    housekeep Enable housekeeping of unneeded files
    delete Enable document deletion
    backup Enable backup
    purge Enable background purging
    repair Enable collection repair
    dataprep Same as search-index-optimize-assist-housekeep
    index Same as insert-delete
    Error: must specify collection
    mkvdk done
    D:\fs840\webserv\peoplesoft>

  • I am planning to take unlocked  iphone5 which is from USA, let me to know how to check the phone is valid ?

    i am planning to take unlocked  iphone5 which is from USA, let me to know how to check the phone is valid ?.How can i check is that properly unlocked, stolen and service.

    IF you can actually yet purchase an unlocked iPhone4 8GB from the US Retail stores is not clear
    They are certainly available from Apple.com but only if you have a US credit card and a US delivery address
    I suspect you do not fit this requirement
    You also have to be careful as the Apple Retail stores sell no contract iPhones these are NOT unlocked
    However if you are able to purchase an unlocked iPhone4 8GB then it will certainly work with the Approved carriers in India

  • How to check the material consumption using tables

    Hi,
    I would like to know how to generate or view the material consumption at table level. Can anyone please specify the transactions codes and tables names how to check the consumption of material. I also like to know how to analysis the consumption of material between components and finished material. Please provide me the step by step wise how to do.Thanking you
    Regards,
    Sivaji Kumar Madhu Kiran

    You can calculate material consumption in table MSEG. you will need to segregate the material documents based on movement types and then add or reduce the quantities of each material document. for example a material document with movement 101, add the quantity for the material, and when there is a issue material document like 201 or 221 reduce the quantity from the material stock.

  • 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  timeshot of iProcurement approval request notification?

    Dear all:
    As the subject, how to check the timeshot of every iProcurement approval notification ? Can someone provide the SQL to check?
    Environment: Oracle R12.1.3 | Aix 6.1
    Regards
    Terry Chen

    The delay could be because
    1) The Workflow Background process in Oracle was down or because it is scheduled to run every 1 hour or so.
    2) The workflow notification process that sends the email notification out was down.
    3) If the example you gave is an actual example, the difference is exactly 1 hour. That is too much of a coincidence. In that case, the email got sent out right away. It just appears to be one hour late due to timezone difference.
    Hope this answers your question,
    Sandeep Gandhi
    Edit: Third point above is not valid. I just noticed the difference is 25 hours. Looks like your mail server or Outlook was down.
    Edited by: Sandeep Gandhi, Independent Consultant on Mar 25, 2011 7:27 AM

  • 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.

Maybe you are looking for

  • Error while creating service tickets

    Hi all, we are facing the followin error when we try to create a service ticket in WEB UI. Version CRM 7 with EhP1 installed. Please find the error details Context initialization failed in view ICCMP_BTPARTNER/PartnerTable of UI Component ICCMP_BTPAR

  • Windows 8 Upgrade - 64-bit version of Lightroom -application error 0xc000007b

    I've just upgraded my Desktop PC from the 64-bit Windows 7 operating system to 64 bit Windows 8 Pro. The migration has gone very smoothly, with justone exception - Adobe Lightroom 64-bit version 4.2 won't start up. As soon as I try to open the applic

  • Need to display seqno along with his superior number

    Hi friends, I have a table adm_menus It's DDL is   CREATE TABLE "ADM_MENUS"    (     "MENU_ID" NUMBER,      "MENU_NAME" VARCHAR2(60 BYTE),      "PARENT_MENU_ID" NUMBER,      "SEQ_NO" NUMBER, "DISP_SEQ_NO" VARCHAR2(250 BYTE),      "MENU_ACTION_TYPE" V

  • Database Configuration Assistant ora-12514 error

    When I create a new database through Database Configuration Assistant using "Create a Database" or configurate the orcl database using "Configure Database options" Preparing to Configure Database is OK. Completing Database Configuration is failed. It

  • Mass Maintain entries in tcode OKB9

    Hi, How to maintain entries in OKB9 - Default Account Assignment... We want to maintain the entries as per Business Area / valuation area against respective Cost Element... We have approx 500 Cost Element and approx 40 Business Areas....and it's very