Restric materails from sales for certain period

Dear Gurus,
There are some materials that should be in  quality inspection for specific period and after that period it should automatically release for unrestriced use stock. Basically we want to restric some material from sales for certain period and after that period it should be automatically avoid that restriction.
Please provide me a possible solution for this.
Thanks,
Regards,
Chameendri

usually a human changes a status with a material movement, e.g. thru usage decision if Quality module is used.
there is nothing in customizing or master data where you can say the material becomes saleable after 3 day lying in the shelfs.
the GR processing time can be extended to 3 days, so ATP can know that the material is not immediatly available after goods receipt.
But this does not change a stock status from blocked to unrestricted  (or quality to unrestricted).
If you want this, then you have to write a report that checks how long the batch is already in Q-status and then calls a BAPI for posting a goods movement to change the status. and this report can then be scheduled to run in background once a day.

Similar Messages

  • How to block one of the purchasing document types for certain period

    My client asked me to block the one of the purchase order documents for certain period.In what way i can do it? and also it shouldn't be displayed in the purchase documents list when we do me21n?
    Advanced thanks,
    Sateesh

    Hi Sateesh,
    Here u cann't block the Document type,
    U can do this,only the way to delete that document type for certain peroid.
    Thanks & Regards
    Suresh
    > My client asked me to block the one of the purchase
    > order documents for certain period.In what way i can
    > do it? and also it shouldn't be displayed in the
    > purchase documents list when we do me21n?
    >
    > Advanced thanks,
    > Sateesh

  • Sales for the Period in FIGL_C10

    Hello gurus,
    How do I get the KF Sales for the Period populated in 0FIGL_C10,  after activating standard business content it was not active? 
    THanks
    MK

    I do not recall the error messages when activating.
    I can see the inactive KF it has a grey diamond next to it and the mapping has an X.  I have do not know how to activate it in the update rule that is the point of my question.
    Thanks

  • Overtime posted from HR for the period

    Hi
    I have created on report from HR  ovetime posting for the period.
      SELECT  ppdhd~docnum "Document number
              ppdhd~doctyp "Document type
              ppdhd~bldat  "Document date in document
              ppdhd~budat  "Posting date in the document
              ppdhd~runid  "Number of Posting Run
              ppdhd~evtyp  "Run type
              ppdhd~blart  "Ref Document type
              ppdit~hkont  "Gl Account Number
              ppoix~pernr  "Personal Number
              ppdit~kostl  "Cost Center
              ppdit~kstrg  "Cost Object
              ppoix~waers  "Currency
              ppoix~betrg  "HR Payroll Amount
              ppoix~lgart  "Wage Type
      INTO CORRESPONDING FIELDS OF TABLE i_output
      FROM    ppdhd
      INNER JOIN ppdit ON
              ppditdocnum EQ ppdhddocnum
      INNER JOIN ppdix ON
              ppdixdocnum EQ ppditdocnum AND
              ppdixdoclin EQ ppditdoclin
      INNER JOIN ppoix ON
              ppoixrunid  EQ ppdixrunid AND
              ppoixtslin  EQ ppdixlinum
      WHERE   ppdhd~bldat  IN s_bldat  AND
              ppdhd~budat  IN s_budat  AND
              ppdit~kostl  IN s_kostl  AND
              ppdhd~bukrs  EQ p_burks  AND
              ppdit~hkont  IN s_hkont  AND
              ppdit~prctr  IN s_prctr.
    from the above query I am getting the result in duplicate data with different runid.  
    Please let me know that I have to do some other fillteration for this one.
    Regards
    Sebastian John

    Thanks,
    from some other table also I needed to take or not?
    Regards
    Sebastian John
    Edited by: Sebastian John on Dec 8, 2009 12:31 PM

  • Blocking message notification for certain period of time

    Hi,
              We have a situation that requires that we do not process any messages even though they are messages sitting in the queue during certain period. Is there any programming API (I guess JMX based) where in weblogic JMS server can be notified to not to send messages until the block is lifted.
              We are using weblogic 8.1 JMS implementation.
              Thanks
              Sushil

    I have not done this blocking programmatically.
              But blocking is configurable on the console at JMS Connection Factories -> Flow Control tab -> Send timeout. This blocking policy is configurable on the console at JMS Server -> Thresholds & Quotas tab -> Blocking Send Policy. Default value is 10ms. Change it to required time limit.

  • Additional Credit Limit for certain period

    Dear Friends,
    My Client want a functionality where we can give additional credit limit for particular customer for particular duration.
    Since the value for each customer will vary we cannot use credit limit seasonal factor in OVA8.
    I want to maintain a Z Table with Customer No., From Date, To date and additional limit.
    But how can I force the system to add this value in credit limit given in FD32 while performing credit check in sales order.
    We are using the static credit check and in same functionality this additional limit value should be added if customer is maintained in Z table and if it falls within specified date.
    Please advice.
    Regards
    Mayank

    Dear Mayank
    If possible make different credit control areas.
    decentralised credit management.
    for each credit limit , set the credit amount.
    change the credit control area for the customers as per additional credit limit .
    A proper setting in FD32 , OVA8 and horizon period may give the results,
    just an example-
                                     ex1      /  ex2
    credit controlarea - ABC      /  xyz
    Credit amount      - 100$     /  150$
    horizon period     - 2months /  1month
    -Jay

  • How to keep that valve open for certain period of time and shut off automatically

    Hi everyone,
    The objective of the VI is to measure pH and then open acid or base valve based on pH valve. Below is my UNFINISHED VI
    My question is:  if, for example, the  pH is 10, then, the program will open acidic valve for 5 seconds and then shut off automatically. After that, wait for 5 second. this process will go on and on as I use while loop, but I just dont know how to control the valve on for 5sec and off and then wait for 5sec.
    Anyone can help me out?    Thank you very much
    In the picture, please enter those values before running
    P.S The VI is based on previously posted vi by someone who made it 1 yrs ago.
    Attachments:
    project_trial_1_26.vi ‏27 KB
    Capture.JPG ‏79 KB

    1. The reason the valves close immediately is that the Elapsed Time VI does not cause any wait, it only measures the time. So the valves closed within a small fraction of a second of the time they opened.
    2. I modified your VI to wait until the Elapsed Time has ended.  See the "wait" state.  I probably modified some of your other functionality in the process, but this shows one way you could do the timing. 
    3. You do not need any Value property nodes.  They should never be used if the value can be wired directly.
    4. You do not need any sequence structures. Dataflow will determine the order of things occurring.
    5. If you use an enum for the state machine (and it is a good way to name and select states), you should make it a type def. Then when you need to change it as I did to add several states, you only need to change the Type Def in one place and the changes propagate through to every place you used the control or constants derived from it.
    6. I added a Halt state which will close both valves before stopping the program.  When you are controlling a real world process, it is important to consider the start up and shutdown requirements. For example the digital outputs of the USB-6008 default to inputs when the device is first powered up. And, the inputs are pulled high by a 4700 ohm resistor (at least I think I recall that value). Will this open your valves before the program starts running and sets the I/O lines to outputs and forces them low?
    The USB-6008 has rather limited drive on the digital lines. You will probably need a buffer between it and the valve coils.
    PID and PWM are more complicated than I want to get into here.  First, are your valves proportional or on/off? Second, (assuming that they are on/off) how fast can you open and close them without destroying them in the first week? What is their expected lifetime in terms of the number of operations? How fast do you need to be able to change them to keep your pH where you want it?  Are these values compatible?
    Lynn
    Attachments:
    pH State.ctl ‏12 KB
    project_trial_1_28.2.vi ‏66 KB

  • Help: How to get number of sales for a period of months in a report?

    I am working on a report with a table having emp_id and order_date. Given input date Begin_date (mm/yyyy) and End_date (mm/yyyy), I need to create a report that shows the number of orders have sold for each emp_id for each of the months within the input range.
    Thank you in advance.
    Jimmy

    I think it should work for you.
    select
       ORDERtable.emp_id,
       allmonths.xmonth,
       ORDERtable.amt
    from
       (select
          ORDERtable.emp_id,
          to_char(ORDERtable.order_date,'MM/YYYY') order_month,
          sum(ORDERtable.amt) amt
        from
         ORDERtable
        group by
           ORDERtable.emp_id,
           to_char(ORDERtable.order_date,'MM/YYYY')) ORDERtable,
        (select
           to_char(add_months(trunc(:p_datefrom,'mm'),cn-1),'MM/YYYY') xmonth
         from
            (select rownum cn
               from
                 dual
                 connect by level <= (months_between(:p_dateto, :p_datefrom)+1))) allmonths
    where
       allmonths.xmonth = ORDERtable.order_month(+)
    order by
       ORDERtable.emp_id,
       allmonths.xmonth

  • Holding readings for certain period of time

    LabVIEW beginner here. I'm logging particle count data generated every second from two identical instruments, one upstream of a substrate and the other downstream; they are labelled alpha and beta respectively in the attached VI. The counts plus penetration (beta/alpha) are written to measurement file once a second accordingly. This works fine so far but I need to correct for the aerosol transit time (=10 seconds) between the two instruments, so that the alpha reading at t=0 is paired with the beta reading at t=10s. How do I hold/delay the alpha reading for this time?
    Attachments:
    sdp34_log_penetration_data.vi ‏169 KB

    Ok attached a slight upgrade with a 10 element circular buffer.  This presumes that your meas. data is being taken once a sec, and that is fine.  There is a case statement that tells you when you have valid data after 10 iterations.  There are other ways of doing this.  So depends on what you are doing.  I have also implemented the recommendation on the error clusters AND got rid of some of the Cohersion.  I have upgraded my 8.2 version to 8.2.1, so I saved as version 8.  Hopefully it still opens and works.
    Paul <--Always Learning!!!
    sense and simplicity.
    Browse my sample VIs?
    Attachments:
    sdp34_log_penetration_data.vi ‏181 KB

  • AR/AP & SALES for period  CALCULATION on top of 0FIAR_C03/0FIAP_C03

    hi,
    i want to create DSO/DPO report on top of 0FIAR_C03/0FIAP_C03 line item cube .so please tell me in detail on how to calculate account recievable/account payable  & sales for the period calculation by just  having credit and debit as keyfigures.  Please specify in detail
    Expect a quick reply...
    Thanks & Regards,
    Montz
    Edited by: montz2006 on Aug 2, 2010 7:33 PM

    Guys  ,
    Plz reply....

  • Need Avg sales for 90 fiscal days - thru customer exit or Offset  ? ? ? ?

    Hi Frns!
    My current report generates daily sales for fiscal period using a customer exit variable A.
    My requirement now is to have one more column having Average sales for 90 prior fiscal days when i enter a fiscal period thru the same variable A.
    As the customer exit variable is of Selection Options, I'm unable to create Offset for the same.
    Guyz do need ur help on this urgently.
    Cheers! Shana

    Any updates !!!!!!!!!!!!!

  • Logic for Calculating Period wise Stock??

    I wasnt to get the  stock of any year/period. I know  it comes from MBEW/MBEWH .Can ny body tell me the logic to calculate stock? or there any direct table available from where it can just be picked up. I can not use stock standard report for some reasons.
    Regards,
    Sunil

    Hi,
    If it is with respect to a plant and storage location, then we need to use MCHB and MCHBH tables in which Stock for the current period we will get it from MCHB and Stock for the previous period we will get it from MCHBH.
    Opening Stock  = Stock from MCHBH for the Period -1.
    Closing Stock  = Stock from MCHB for the Period
    Regards,
    Lijo

  • Sales Analysis for a certain period

    Hello Experts,
    In standard Sales Analysis Report, when we run report for a certain period for "Customers" and when we run the report with same parameters for "Items" it gives different results.
    Can anybody please guide me, why these results are different whereas we are using the same parameters in both the Tabs i.e. Customers & Items.
    Thanks & Regards,
    SN

    Hi Shazad,
    One possible reason is that you have service type documents in that period. In such case, the document total appears in Customers tab, but not in the Items tab.
    Could this be the case?
    I hope that helps.
    Regards,
    Toni

  • Sales Orders not to be created for certain customers via legacy

    Hi,
    We have an inbound interface from legacy into SAP which creates Sales Orders in SAP. But we have a requirement where the business does not want sales orders to be created for certain customers in SAP via the interface.
    To prevent the sales orders from being created for those customers via the interface, we have created entries in the look-up tables (Hope other projects also use lookup tables and are aware of what are look-up tables). But still the sales orders are being created in SAP for those customers via the interface.
    What else should we do to prevent the sales orders from being created for those customers.
    Thanks in advance.
    Mick

    Hi ABAP gurus, need your help on this one. Any help would be greatly appreciated.

  • How to stop sales orders from contracts from qualifying for Rebates.

    We have set up rebate agreements for customers and they are working as expected.
    Now our sales people want to start using contracts for some special deals for certain customers and products. But they DO NOT want these sales orders from these contracts to qualify for rebates.
    Does anybody know how we can set this up or if it is at all possible?

    Hi Zoya,
    I got one more idea and so try it out.If it sounds foolish please ignore.Instead of going for userexits its better you go for a different sales order type whenever you refer to a contract.And make sure you assign a different pricing procedure which does not contain the condition type BO03 at all.Ofcourse this new sales document should have a different document pricing procedure.
    Regars
    Ravi Kiran

Maybe you are looking for

  • Sound Blaster Audigy Advanced

    I purchased a Dell 705 with Vista and had the software installed and it worked nicely. I sent that laptop back because I did not like Vista and wanted XP Pro SP2 but now Dell is telling me they can not sell anymore because it is not supported. Is tha

  • ABC Analysis [Update Item Assignment Window]

    Hello Friends I am working on Inventory Cycle count in EBS R12. I am facing a problem. I create an ABC Analysis for ##FGI sub inventory in M1 Organization on Vision Instance. Then i checked 22 items in my On-Hand Availability Window. But when i check

  • Need a refund asap for an unauthorized charge

    need a refund asap for an unauthorized charge

  • RMI Codebase Issue

    Every thing works just fine as both the Client and server runs on the same system,, but as i run one of them on a remote m/c,well i am using vmware for that, Client is not able to locate server's stub and server is not able to locate clients classes

  • SCOM Monitoring for Azure and its Licensing

    Hi All, In a hybrid environment , If i have my scom management group set up on-premise and want to monitor boxes from AZURE , does this require additional licensing to monitor boxes in Azure? If Yes can anyone help me with the information. Regards, H