How to add day in "Horizontal Material Plan"

Hi All
I have already reviewed my MRP plan through Horizontal material plan. in that form i choose Display bucket type is "Days".
But only 36 days that appear in Harisontal material plan.
My requirement is : i want in horizontal material plan can appears at least 90 days.
It's Possible?
if Possible, how to setup it?
Regards,
The Pooh

Hi Abhishek Sharma
Thanks for reply
I have already check in plan options that there is not available for Plan start date and end date.
What you mean is one of the features in ASCP? Because im not use ASCP. i'm used SCP.
Thanks,
The Pooh

Similar Messages

  • How to add price to any material??

    I recieved some material from a Non-SAP site by code MB1C(movement type 961). In stock it shows the quantity but not the value  how can I add value to that material??

    Dear Ujjawal ,
    Chek the material type of the material frist
    whether it maintain as quantiy  on you plant, or value basis or both
    as  you have quantity updated   that simply means Value updation is not possible for that material type. chek in  IMG settings
    Guys
    Tr. code: MR21 is   t .code for price change, and for those material if no accounting data is maintain how can you change the price. Please think twice b4 you give sol
    Let me correct if  I am Wrong

  • How To Add Prices For A material?

    HI,
    Plz Tell Me How Can I add Prices Of A Material nd also where can i check it?
    nd also how can i confirm tht which price is correct i.e if it is picking different prices for the same material

    Hi,
    When you create a purchase order, the price is taken from different sources. You can change the sources.
    System adopt the pirces to purchase order based on how you are creating Po.If you are creating Po without any reference documents then system always copies the last purchase order price from inforecord .
    If you set EVO parameter with 'not adopt' last Po price then system asks for price in ME21N.
    If you are creating Po with reference document like contract ,PR then system copies the price from reference documents.
    I do not know if this answers your question.
    Best Regards,
    Arminda Jack

  • How to add new columns in materialized view

    We are using Oracle 10g Release2.
    We need to add new columns to a prebuilt fast refresh materialized view. We want to add 4 new columns in this table and make them part of select statement in the materialized view. We can drop the view but we cannot do complete refresh after that because the paymentsInfo table has a creation_timestamp column which is populated by before row insert trigger with systimestamp. If we did the complete refresh, all values in this column shall be changed.
    CREATE MATERIALIZED VIEW  paymentsInfo
    ON PREBUILT TABLE
    REFRESH FAST
      ON DEMAND
      START WITH SYSDATE
      NEXT SYSDATE+5/1440
      WITH PRIMARY KEY
    DISABLE QUERY REWRITE AS
    SELECT PAYMENT_ID,BATCH_REFERENCE, TRANSACTION_REFERENCE, NO_OF_TRANSACTIONS, DEBIT_ACC_NUM,... from payment@dblink
    I want to know is there any other way to add new columns without losing any changes from the master table.
    Thanks.

    There is no way to add new Columns to Materialized view. To add new columns, it has to be dropped and re-built again.
    Extract from Oracle Documentaion:
    Use the ALTER MATERIALIZED VIEW statement to modify an existing materialized view in one or more of the following ways:
      To change its storage characteristics
      To change its refresh method, mode, or time
      To alter its structure so that it is a different type of materialized view
      To enable or disable query rewrite
    If you have a problem of Complete refresh, then It may be beneficial to get the backup of the MView; Drop and re-create it with modified definition; Restore the backup data leaving the new columns untouched (assuming they are to be kept as fetched from the Master site).

  • How to add leading 0 for material contain alphanumeric

    The requirement: display material with 10 digits. 
    At first I used,  l_matnr+8(10), but there is a problem if the material less than 8 digits.
    I tried this function:CONVERSION_EXIT_MATN1_INPUT to add leading 0,but it works for material contain number only.
    I have material like 43R1784, how can I ensure it display as 00043R1784.
    Thanks!

    Hi,
    The following sample is for your reference:
    data: lv_matnr(10) type c value '43R1784',
          lv_length type i,
          n type i.
    lv_length = strlen( lv_matnr ).
    n = 10 - lv_length.
    do n times.
      concatenate '0' lv_matnr into lv_matnr.
    enddo.
    write: lv_matnr.
    Regards,
    Chris Gu

  • How To Add Days into a Date from java.util.Date class

    I have a problem when i wants to add 2 or days into a
    date object geting by java.util.Date class. so please help me resolve this issue?
    for e.g i have a date object having 30/06/2001,
    by adding 2 days i want 02/07/2001 date object ?
    Code
    public class test2
    public static void main(String args[])
    java.util.Date postDate = new java.util.Date();
    myNewDate = postDate /* ?*/;
    Here i want to add 2 date into postDate

    Use Calendar...
    Calendar cal = Calendar.getInstance();
    cal.setTime(new Date());
    cal.add(Calendar.DAY, 2); // I'm not sure about that "DAY"

  • How to add attribute Pricing ref material (PMATN) to 0MAT_SALES in BW

    Hi there
    I need to create reports with the use of pricing ref. material (PMATN) showing the material numbers where PMATN has been used.It will have to be an attribute to infoobject 0MAT_SALES. It is not available in BW, but in table MVKE in R3. How do I do a handover to BW? And can anyone give an idea of what infoprovider should be used so I can load data and create reports with the best performance?
    Cheers,
    Marit

    BAPI_SALESORDER_CREATEFROMDAT1
    "(obsolete from 4.6 version)
    BAPI_SALESORDER_CREATEFROMDAT2
    please see the version  and change the BAPI
    reward  points if it is usefull ....
    Girish

  • How to add the expenses to material cost

    Hi
    i want to add the packing expenses to material cost
    Which account key i had to assign to the the packing condition type so that the packing cost is added to material cost
    Krishna

    hi
    is there any accrual tick in ur packing condition if yes remove it and do not use any acct key for it
    i havent try it  , try it and reply back
    or try coping new condition from std condition for surcharge and use it so ur cost will get load on ur mat cost
    regards
    kunal

  • Jquery how to add days to a date and display in a sharepoint field

    hi
    I have a column 'Date' , where user will select the date . Another column Grace Period where user enters number. I have a column 'Due Date' = Date + Grace Period
    I cannot use out of the box calculated column as it is not displayed in the newform.aspx.
    Is there any way to achieve it
    Thanks

    To get & set value via jquery, you first need to download jquery and save query in your site. Later add jquery ref to your script then get the column value. Refer below thread:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a9fb3163-109c-4309-96d2-4f2f19e6824a/sharepoint-and-jquerygetting-setting-sharepoint-form-fields?forum=sharepointgeneralprevious
    http://stackoverflow.com/questions/8559559/javascript-to-get-sharepoint-form-field-value-to-a-variable
    Since you are new so i would suggest you that first try with simple query on page then build the advance.
    http://sympmarc.com/2011/05/03/adding-jquery-to-a-sharepoint-page-step-one-always/
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to add days to a date?

    Dear all
    I work with jdeveloper 11.1.4
    I have created my BC.
    I have 3 attribute on Vacation entity.
    startDate
    numberOfDays
    endDate
    I want to set the endDate value to be startDate+numberOfaDays
    Can any one helps me.

    You can achieve the same by writing a small piece of code in EntityImpl class or backing bean,depends on the use case.
    if (VO.getCurrentRow().getAttribute("startDate") != null){
    Calendar cal = Calendar.getInstance();
    cal.setTime(convertDomainDateToUtilDate((oracle.jbo.domain.Date)VO.getCurrentRow().getAttribute("startDate")));
    cal.add( Calendar.DATE, numberOfDays);
    oracle.jbo.domain.Date domDate = convertUtilDateToDomainDate(cal.getTime());
    VO.getCurrentRow().setAttribute("endDate",domDate );
    In the above code the utility method "convertDomainDateToUtilDate" just converts the jbo.domain.Date to java.util.Date and "convertUtilDateToDomainDate" method does the reverse.
    The code above holds good for backing bean but if You need to implement the same in EntityImpl then you just have to tinker around the code to get the proper entity attribute and set them properly.
    Hope this helps.
    -Sanjeeb

  • How to add days to a date value in SQL plus

    I would like to perform what ADD_MONTHS does, but for days.
    I have tried ADD_DAYS with no result. It sais it doesnt recognise the column.

    Subtracting two dates gives the number of days beteen them. So, adding or subtracting a number and a date will increment or decrementthe date by that number of days.
    If you really want a function, then:
    CREATE FUNCTION add_days (p_date IN DATE,
                              p_days IN NUMBER) RETURN DATE AS
    l_ret_dt DATE;
    BEGIN
       RETURN (p_date + p_days);
    END;and you would cal it like:
    SQL> SELECT sysdate, add_days(sysdate, 5) FROM dual;
    SYSDATE     ADD_DAYS(SY
    29-NOV-2005 04-DEC-2005However, a function is certainly overkill for something that can be done simply as:
    SQL> SELECT sysdate, sysdate + 5 FROM dual;
    SYSDATE     SYSDATE+5
    29-NOV-2005 04-DEC-2005TTFN
    John

  • How to add days to a DATE variable?

    Hi,
    I want to run a query based on my date variable with subtracting 7 days from it. Thanks.
    p_date DATE;
    Select * from table where theDate between to_date(p_date , 'yyyy/mm/dd') to_date(p_date - 7, 'YYYY/mm/dd');
    Thanks.

    If p_date is a DATE data type variable why are you using TO_DATE? It is, by definition, already a date.
    WHERE theDate BETWEEN (p_date-7) AND p_date;

  • How do I add family members to my plan?

    I have an existing Verizon Wireless account. I'd like to add my girlfriend and my son to my plan.  Can't seem to find info on how to add them, or what the acual cost will be per month.   And the "live chat" button seems like it is perpetually unable to function.  Getting frustrated.

    Search for Assumption of Liability. That's what you want to do to add them if they are already Verizon Wireless customers. If they are on another carrier, then you would be adding the appropriate number of lines to your account and porting the existing numbers in.

  • I am using numbers in the new iWork. Just bought it 10 days back. I am not able to figure out how to add serial umbers from 1 to 100( for example) also i need to freeze the top header like in windows so that we can browse down without the heading going of

    i am using numbers in the new iWork. Just bought it 10 days back. I am not able to figure out how to add serial umbers from 1 to 100( for example) also i need to freeze the top header like in windows so that we can browse down without the heading going off. Can some one help?

    Hi Jay,
    Be aware that "Freeze Header Rows" and "Freeze Header Columns" apply only to rows and columns that are Header rows or Header columns. You can have up to five Header rows, Five Header Columns (and five Footer rows) on a Numbers Table.
    "Header rows" is a special designation. Besides being able to be frozen, Header and Footer rows are not included in formulas referencing whole columns, making it possible to place formulas such as =SUM(B) at the top (or bottom) of column B without causing a self-reference error, These designated rows are also not included in sorts of the rows in a table.
    Regards,
    Barry

  • XSLT Mapping: how to add one day to TimeStamp

    Hello Experts,
    My requirement is to add one day to current timestamp. Used $TimeSent to get the currenttimestamp. In Expired field, the need to add one day
    say Created= 2011-03-30T20:29:13Z
           Expired = 2011-03-31T20:29:13Z
         <xsl:param name="TimeSent"/>
         <created><xsl:value-of select="$TimeSent"/></created>
         <expired>2011-03-31T20:29:13Z</expired>
    How to add one day to the current timestamp. I am new to XSLT mapping and need some help with the code.
    Thanks
    Shikha Jain
    Edited by: Jain Shikha on Mar 30, 2011 8:34 PM
    Edited by: Jain Shikha on Mar 30, 2011 8:36 PM

    Hello All,
    Thanks for your reply. i tried the function and the code is working when i am testing in stylus studio. But the same code gives error when i  tested the xslt mapping in PI (Error: TransformerConfigurationException triggered while loading XSLT mapping).
    $TimeSent function is working when code is tested in PI , but it doesnot give value in stylus studio. Also Current-dateTime() function is doesnot give value in PI but works in stylus studio. Is there any difference in the functions used in stylus studio and XSLT mapping in PI?
    Also if i remove the code used for function(to add one day to timestamp), and use constant value(2011-04-02T23:24:56.763Z)the code is working fine in PI. Please help me to find out where the code is going wrong when tested in PI.
    Below is the XSLT code i am using
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ds="http://xsltsl.org/date-time" xmlns:functx="http://www.functx.com" xmlns:xs="http://www.w3.org/2001/XMLSchema">
       <xsl:function name="functx:next-day" as="xs:date?">
          <xsl:param name="TimeSent" as="xs:anyAtomicType?"/>
          <xsl:sequence select="xs:date(current-date()) + xs:dayTimeDuration(&apos;P1D&apos;) "/>
       </xsl:function> 
    <xsl:template match="/">
          <xsl:param name="TimeSent"/>
          <soapenv:Envelope xmlns:olsa="http://www.skillsoft.com/services/olsa_v1_0/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
             <soapenv:Header>
                <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
                   <wsu:Timestamp wsu:Id="Timestamp-191900" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
            <wsu:Created>
                         <xsl:value-of select="$TimeSent"/>
               </wsu:Created>
    <wsu:Expires>
         <xsl:value-of select="concat(substring(functx:next-day($TimeSent) ,1,10) ,&apos;T&apos;, current-time())"/>                  </wsu:Expires>
                   </wsu:Timestamp>
                   <wsse:UsernameToken wsu:Id="UsernameToken-19030197" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
                      <wsse:Username>ABC</wsse:Username>
                      <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">XYZ</wsse:Password>
                      <wsse:Nonce>erDTBNoUWv7GdHDaErrLwA==</wsse:Nonce>
                      <wsu:Created>2011-02-15T23:24:56.763Z</wsu:Created>
                   </wsse:UsernameToken>
                </wsse:Security>
             </soapenv:Header>
             <soapenv:Body>
                <olsa:GetMultiActionSignOnUrlRequest>
                   <olsa:customerId>ABC</olsa:customerId>
                   <olsa:userName>XYZ</olsa:userName>
                   <olsa:actionType>launch</olsa:actionType>
                   <olsa:assetId>222499_eng</olsa:assetId>
                   <olsa:groupCode>testgrp</olsa:groupCode>
                </olsa:GetMultiActionSignOnUrlRequest>
             </soapenv:Body>
          </soapenv:Envelope>
       </xsl:template>
    </xsl:stylesheet>
    Thanks
    Shikha Jain
    Edited by: Jain Shikha on Apr 2, 2011 9:51 PM

Maybe you are looking for

  • VGA to HDMI cord=no image

    I made the right connections, chose the right option on my tv and I still have no image. I did the same thing with an dvi to hdmi connection and I still have no image. Any suggestions? I have an Olevia 26" lcd tv.

  • Order Details Report

    hello abapers,    i've created an ALV GRID report to get - Customer no, name, order date, order no, po no, delivery date, delivery no, invoice date, invoice no. in this report i'm getting order which done delivery and invoices, which means complete o

  • I cannot install Elements Premiere 10 brand ne.  Error messages posted.  Does anyone have advice?.

    -------------------------------------- Summary -------------------------------------- - 0 fatal error(s), 8 error(s), 7 warning(s) WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and h

  • Available memory

    In preferences, PS CC is telling me that I only have 3.255GB of available memroy whereas I have 8/ GB installed. Before I installed CC , my old CS5  was recognising hte 8GB. If I go to AE CS5, it recognises all 8GB. Does anyone know what might be cau

  • Stock relased from QA

    Good day, Please can you assist. I would like to know if there is a report that can show stock received to QA location, and then number (qty) of stock that has been processed via transaction code QE51N, with the name of the person who did this transa