How to configu alternative sat,sun holidays

hi to all,
i have one question on time management..
my client wants in a month every alternative sat and sun day must be a holidy..
like out of 4sat,4sun days i need 2sat, 2sunday must be a hoilday that to it must be alter native...
how to set in the workshucdule..
ples

Hi,
You can configure this, through periodic work schedule.
like first week
Mon - GEN work schedule
Tue - GEN work schedule
Wed -GEN
Thu- GEN
Fri - GEN
Sat - GEN
Sun - OFF work schedule
Mon - GEN work schedule
Tue - GEN work schedule
Wed -GEN
Thu- GEN
Fri - GEN
Sat - OFF
Sun-OFF
Please reward points if it is useful to you.
Regards
Venu

Similar Messages

  • Schedule_ship_date not to sat ,sun (Holiday) in report in oracle

    Hi All,
    I have the below query in which the column (ool.schedule_ship_date - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing) gives the details of schedule date but the requirement is the it will not take the holiday(Means sat, sun) in the report.
    Could you please help me how to modify this column so that it will not include the sat,sun dates.
    {SELECT NULL,--pa.segment1 project_number,
      ooh.order_number,
      ool.line_number
      ||'.'
      ||ool.shipment_number line_num,
      ool.schedule_ship_date,
      ool.request_date,
      NVL(ool.ordered_quantity,0) - NVL(ool.cancelled_quantity,0) ext_qty ,
      ool.ordered_quantity,
      ool.schedule_ship_date,
      ool.inventory_item_id,
      ool.ship_from_org_id,
      NULL,--  pa.project_id,
      ool.header_id,
      ool.line_id,
      ooh.attribute1,
      fnd.meaning Pegging_Level,
      DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0))) lead_times,
      ool.schedule_ship_date                                                 - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing
    FROM oe_order_headers ooh,
      oe_order_lines ool,
      --  pa_projects pa,
      mtl_system_items_b msi,
      fnd_lookups fnd
    WHERE 1           = 1
    AND ooh.header_id = ool.header_id
      --  AND ool.project_id = pa.project_id
    AND DECODE(msi.end_assembly_pegging_flag,'I','Y','X','Y','N') <> 'Y'
    AND NVL(ool.cancelled_flag,'N')                                = 'N'
    AND NVL (ooh.open_flag, 'Y')                                   = 'Y'
    AND ool.inventory_item_id                                      = msi.inventory_item_id
    AND ool.ship_from_org_id                                       = msi.organization_id
    AND ooh.order_number                                           = NVL(:P_SALES_ORDER_NO,ooh.order_number)
    AND ool.line_number                                            = NVL(:P_LINE_NO,ool.line_number)
    AND fnd.lookup_code                                            =msi.end_assembly_pegging_flag
    AND fnd.lookup_type                                            ='ASSEMBLY_PEGGING_CODE'
    AND ool.project_id                                            IS NULL;
    }

    1) The query does not run. Please run it yourself before posting a question.
    2) You seem to be simply adding variable_lead_time in your calculations. Is your order quantity always 1? If not, you need to multiple the variable lead time by the quantity.
    3) When posting query, use the tag to make it readable.
    4) Remove unnecessary columns /clauses /comments from the query before posting.  e.g. in your select, leave in only the lead time related columns
    5) Does your client use pre-processing lead time?  If they do, you may have to include it as well.
    6) Typically, the supplier lead time is given in calendar days for purchased items.  Why would you treat it differently?
    And finally the probable answer to your question
    Say you have a scheduled_ship_date of 15th Mar and your lead time calculations come out to be 20 days.  As you mentioned, you would like to back up 20 work days from Mar 15.
    Here is what you do:
    Identify the calendar to use (most likely from mtl_parameters.calendar_code)
    Find the sequence number for 15th Mar from bom_calendar_dates for that calendar code.
    Substract the 20 from the sequence number.
    Identify the date from bom_calendar_dates for that new sequence number.
    That is your answer.
    Sandeep Gandhi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Schedule_ship_date not to sat , sun in report in oracle

    Hi All,
    I have the below query in which the column (ool.schedule_ship_date - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing) gives the details of schedule date but the requirement is the it will not take the holiday(Means sat, sun) in the report.
    Could you please help me how to modify this column so that it will not include the sat,sun dates.
    {SELECT NULL,--pa.segment1 project_number,
    ooh.order_number,
    ool.line_number
    ||'.'
    ||ool.shipment_number line_num,
    ool.schedule_ship_date,
    ool.request_date,
    NVL(ool.ordered_quantity,0) - NVL(ool.cancelled_quantity,0) ext_qty ,
    ool.ordered_quantity,
    ool.schedule_ship_date,
    ool.inventory_item_id,
    ool.ship_from_org_id,
    NULL,-- pa.project_id,
    ool.header_id,
    ool.line_id,
    ooh.attribute1,
    fnd.meaning Pegging_Level,
    DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0))) lead_times,
    ool.schedule_ship_date - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing
    FROM oe_order_headers ooh,
    oe_order_lines ool,
    -- pa_projects pa,
    mtl_system_items_b msi,
    fnd_lookups fnd
    WHERE 1 = 1
    AND ooh.header_id = ool.header_id
    -- AND ool.project_id = pa.project_id
    AND DECODE(msi.end_assembly_pegging_flag,'I','Y','X','Y','N') 'Y'
    AND NVL(ool.cancelled_flag,'N') = 'N'
    AND NVL (ooh.open_flag, 'Y') = 'Y'
    AND ool.inventory_item_id = msi.inventory_item_id
    AND ool.ship_from_org_id = msi.organization_id
    AND ooh.order_number = NVL(:P_SALES_ORDER_NO,ooh.order_number)
    AND ool.line_number = NVL(:P_LINE_NO,ool.line_number)
    AND fnd.lookup_code =msi.end_assembly_pegging_flag
    AND fnd.lookup_type ='ASSEMBLY_PEGGING_CODE'
    AND ool.project_id IS NULL;
    }

    Hi,
    I have added the same but it is not working as my ool.schedule_ship_date='20-Mar-2012' but due to POSTPROCESSING_LEAD_TIME=3 for one item so the date if we will not take saturday & sunday then it has to show the calculated value='15-Mar-2012' But instead of this it is showing '17-Mar-2012'. Please advise.
    {SELECT NULL,--pa.segment1 project_number,
      ooh.order_number,
      ool.line_number
      ||'.'
      ||ool.shipment_number line_num,
      ool.schedule_ship_date,
      ool.request_date,
      NVL(ool.ordered_quantity,0) - NVL(ool.cancelled_quantity,0) ext_qty ,
      ool.ordered_quantity,
      ool.schedule_ship_date,
      ool.inventory_item_id,
      ool.ship_from_org_id,
      NULL,--  pa.project_id,
      ool.header_id,
      ool.line_id,
      ooh.attribute1,
      fnd.meaning Pegging_Level,
      DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0))) lead_times,
      ool.schedule_ship_date                                                 - (DECODE(planning_make_buy_code,2,NVL(ceil(POSTPROCESSING_LEAD_TIME) ,0) + ceil(NVL(FIXED_LEAD_TIME,0)),ceil(NVL(FIXED_LEAD_TIME,0))+ ceil(NVL(VARIABLE_LEAD_TIME,0)))) schedule_postprocesing
    FROM oe_order_headers ooh,
      oe_order_lines ool,
      --  pa_projects pa,
      mtl_system_items_b msi,
      fnd_lookups fnd
    WHERE 1           = 1
    AND ooh.header_id = ool.header_id
      --  AND ool.project_id = pa.project_id
    AND DECODE(msi.end_assembly_pegging_flag,'I','Y','X','Y','N') <> 'Y'
    AND NVL(ool.cancelled_flag,'N')                                = 'N'
    AND NVL (ooh.open_flag, 'Y')                                   = 'Y'
    AND ool.inventory_item_id                                      = msi.inventory_item_id
    AND ool.ship_from_org_id                                       = msi.organization_id
    AND ooh.order_number                                           = NVL(:P_SALES_ORDER_NO,ooh.order_number)
    AND ool.line_number                                            = NVL(:P_LINE_NO,ool.line_number)
    AND fnd.lookup_code                                            =msi.end_assembly_pegging_flag
    AND fnd.lookup_type                                            ='ASSEMBLY_PEGGING_CODE'
    AND to_char(ool.schedule_ship_date,'Day','nls_date_language=english') not in ('Saturday','Sunday')
    AND ool.project_id                                            IS NULL;}

  • How to start OC4J in Sun Solaris???

    How to start OC4J in Sun Solaris???

    It's very simple, you go to the OBIEE documentation page:
    http://download.oracle.com/docs/cd/E10415_01/doc/nav/portal_booklist.htm
    And you download the Infrastructure Installation and Configuration Guide. You then read it and get to the section where if talks about Starting and Stopping the OC4J Process.

  • How to create Alternative Bom by given inputs

    Hi to all,
    I need to create BOM with alternative number.
    my inputs are
    BOM Header
    Material, plant, BOM usage, Alternate BOM, BOM status, Base Qty, Valid From, valid to
    BOM Item
    Item number, item category, component, component description, UOM, valid from, valid to, item ID, QTY
    if i use CSAP_MAT_BOM_CREATE to create BOM , it will not create alternative number
    if i use BAPI_MATERIAL_BOM_GROUP_CREATE , does my input value are enough to create alternative bom.
    please can any one, put some light on it, i search SDN ,but i dont know how to create alternative bom with input provided.
    i shall be thankful to you for this.
    Regards
    Pavneet Rana

    Try the program-RCSBI010

  • How to maintain alternative material in a BOM for a component.

    how to maintain alternative material in a BOM for a component.if stock for existing bom component is less then it should consider other alternative material in the same BOM

    HI,
    You can maintain alternate material for BOM Component by specifying Alternate Item group as below;
    Go to CS03/CS02--> Items-> Select Component and go to details->Basic Data Tab--> General Data
    Pls. find more details about Alternate Item group maintainance as below:
    Alternative item: group
    Consolidation of alternative items within a BOM. Every material in the assembly can be included in the alternative item group.
    Use
    As soon as you enter an alternative item group, you see an additional dialog box with the following data: ranking order, strategy, usage probability.
    You can maintain alternative items in the following situations:
    Alternative positions with specific usage probability
    These alternative items are incorporated with a specific usage probability. Enter the usage probability for each alternative item in the group, so that:
    dependent requirements are determined in requirements planning
    dependent requirements are changed to a reservation in the production order
    Alternative positions as information
    You can enter an alternative item for information purposes. This item would then, for example, only be taken into account in situations involving missing parts.
    As there should be neither dependent requirements nor a reservation for this item, enter no usage probability.
    Procedure
    Enter the same character string to denote the alternative items of an alternative item group.
    Enter the same strategy for all alternative items in the alternative item group.
    Dependencies
    Alternative items are valuated in the following way:
    Dependent requirements determination
    Requirements planning determines the dependent requirements according to the usage probabilities that have been entered.
    If the usage probability is 0%, then no procurement is planned for the item. For information purposes, however, dependent requirements with 0 as quantity are created.
    Withdrawal posting
    You can control the withdrawal posting for the resevation in the production order in the following way:
    Withdrawal according to usage probability (manual change is possible)
    Withdrawal if there is 100% availability
    (Check ranking order and strategy)
    Example: See Strategy for alternative position
    Further you can also maintain alternate material if you want to stop using this material at certain time as below:
    In material master of the material ,
    Go to MRP-4 View----> Under Discongtinued parts specify
    Discontinuation Indicator
    Eff-out.
    Follow-up matl
    So system will automatically consider follow up material in BOM as per the settings you have maintained for the material to be replaced.
    Hope this helps.
    Regards,
    Tejas

  • HELP! how to get or download sun one certificate server 4.7

    I had searched for a long while and had no found!
    can anyone tell me how to buy or download sun one certificate server 4.7 ,netscape certificate server or iplanet CMS 4.2
    thanks!

    The SunOne certificate server was EOLed by Sun some time ago.
    However, RedHat recently purchased Netscape Certificate server which is based on the same iPlanet codebase as SunOne but has numerous additional features including a smartcard and USB token management system.
    Evaluation copies are available from redhat.com

  • How to convert Alternative unit to base unit?

    Helo All.
    Can anyone tell me how to convert Alternative unit to base unit?. Is there any function module for this?
    I am updating MM02 using bapi_material_savedata. In that i have to update sales unit.
    Thanks in advance.

    Hi
    Try the fun modules
    <b>UNIT_CONVERSION_SIMPLE
    or
    MD_CONVERT_MATERIAL_UNIT</b>
    Reward points if useful
    Regards
    Anji

  • How to configue NWDI environment?

    who can tell me how to configue the NWDI environment?

    Hi
    see the link ,it will be helpful for u
    [Configure NWDI ...|/message/4993383#4993383 [original link is broken];
    Thanks
    Hazrath

  • Urgent: Removal of sat/sun days from the sql date query

    Hi All,
    I have a date field in my database table and I would like to get the details from the db table for the condition (SYSDATE - I/PDATE)< 2 i.e I need all the details which are 2 days old. But with this condition I would like to exclude the saturdays and sundays.
    Say if I am running this query on wednesday then it returns me the details for sat/sun which I do not want. It sould return me the thursday and friday details.
    My question can we this in SQL??? Can anybody help me??
    Thanks and regards,
    Kshitij

    refer to http://technet.oracle.com:89/ubb/Forum88/HTML/002539.html

  • How to configue AirCel prepasd SIM Card and drivers for 8.1 64bit

    Hi Team Members,
    how to configue AirCel prepasd SIM Card and drivers for 8.1 64bit
    issuse in my laptop
    Sarfaraz
    (Personal information removed)

    @Sarfaraz71 ,
    Thank you for posting and the HP support forum and welcome.
    So that I can help you better with your sim card issue.  Could you post back with your.
    Full Model and Product Number
    Second in your post you asked about Windows 8.1 drivers and you state you are running Windows 7. 
    What Operating System are you running.
    Hope to hear back from you soon with the information I have requested.
    Have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • How can i sync the automatic holidays to my iphone

    how does one sync the automatic holiday calendar to my iphone 5s?

    mbh8,
    How you can add US holidays to your iPhone in iOS 7 | Syncios iOS Manager

  • How to call matlab from Sun studio Fortran? ^_^

    Hello, everyone,
    I have a fortran code which calls matlab engine and matlab functions. I have successfully demonstrated the code in Compaq Visual fortran 6.6 platform. However, I don't know how to call matlab in Sun Studio platform. I don't know how to add the required Liberay modules in the Sun Studio Fortran project.
    Now I can build the code successfully, however, I cannot build the project due to the following errors:
    Undefined               first referenced
    symbol                in file
    sum_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    matgetvariable_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxcreatedoublematrix_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    matputvariable_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    maxval_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxcopycomplex16toptr_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    minval_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    engopen_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxdestroyarray_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    engputvariable_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxcreatenumericarray_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxcopyreal8toptr_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    matopen_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    matclose_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxclassidfromclassname_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxgetstring_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    engevalstring_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxgetpr_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxgetpi_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    mxcopyptrtoreal8_ build/Debug/Sun12-Solaris-x86/FDTD_3D.o
    I think this is because that I didn't add the required liberary modules in the project. How to do that?
    I really appricate anyone who can help me to solve my problems. Thank you very much&#65281;
    All the best,
    Yunhong

    hello,
    Unfortunately, matlab doesn't exist on solaris x86 platform. They only deliver matlab for sparc platform, and i'm wonder if it is EOL'ed now?
    Sun never convince Mathworks to offer matlab for solaris x86, so you have to use (if it is possible) other software like Mathematica (money) or Scila, Sage, Octave, ... (free)
    We are several Mathworks customers who asked Mathworks for that, and i never understand why people continues to use old or slow sparc machines to compute.
    Anyway, today, solaris isn't a right choice for computing, but i'm waiting for Sun to prove that i'm wrong.
    (my main compute server is a Sun V40z with Solaris 10, but the next one will be a Sun X2270 with CentOS, because matlab)
    gerard

  • How to get alternative strings in list of strings.

    Hi experts,
    how to get alternative strings in list of strings.
    eg
    'country1, italy, country2, india, country3, paris, country4, scottland, country5, rome'
    from the above list i need to fetch all the countries and their names separately.
    like country1, country2, country3, country4, country5
    italy, india, paris, scottland, rome
    i am trying the above one in the below fashion
    SELECT SUBSTR
              ('country1, italy, country2, india, country3, paris, country4, scottland, country5, rome',
               1,
                 INSTR
                    ('country1, italy, country2, india, country3, paris, country4, scottland, country5, rome',
                     1,
                     1
               - 1
      FROM DUAL
    can you please any one help me

    If you want the data to be more stuctured, and useful:
    col col_name for a20
    col col_value for a20
    var inlist VARCHAR2(2000)
    exec :inlist := 'country1, italy, country2, india, country3, paris, country4, scottland, country5, rome';
    exec :inlist := replace(:inlist,' ')
    select max(decode(mod(lvl,2),1,value)) col_name
          ,max(decode(mod(lvl,2),0,value)) col_value
    from   (select substr(:InList,start_pos+1, end_pos-start_pos-1) value
                  ,lvl
            from   (select :InList
                          ,case when level = 1 then
                             0
                           else
                             instr(:InList,',',1,level-1)
                           end start_pos
                           ,case when instr(:InList,',',1,level) = 0
                             then length(:InList)+1
                           else
                             instr(:InList,',',1,level)
                           end   end_pos
                         ,level lvl
                    from   dual
                    connect by level <=length(:InList)-length(replace(:InList,','))+1
    group by ceil(lvl/2)
    order by 1;
    COL_NAME             COL_VALUE
    country1             italy
    country2             india
    country3             paris
    country4             scottland
    country5             rome
    Untested on 10g
    Then you could stragg the rows together ...

  • How to configue MQ Adpater

    Hi All,
    Can anybody tell me how to configure MQ adapter from ESB project to MQ Queue? Can we configure MQ alone with out using JMS to ESB project?
    Thanks in advance,
    Regards,
    Divyendu

    Hi,
    Please check the link below for a step by step details to configure SSL.
    http://edocs.bea.com/wls/docs61/adminguide/cnfgsec.html#1067988
    -Vimala
    "halcyon" <[email protected]> wrote:
    >
    How to configue the SSL in WSL6.1??

Maybe you are looking for