GR Posting Date-not modifiable

Hi Friends,
We have business requirement to have GR posting date should always default to the current date and not modifiable.  Business client does not wants anyone to receive goods in the past. Please tell me how to achieve this settings?.
Thanks
Abdul

Hi
Try Field selection for MIGO transaction
Path:SPRO-MM-IM--->field selection for header -->Select display option for doc date.
Vivek
Edited by: Vivek N on Dec 29, 2008 3:52 PM

Similar Messages

  • Posting date not open

    posting period 001 2007 is not open
    this is what i get trying to post an inbound mbgmcr idoc
    i use posting date 20070115
    when i look in trans omsy for my company code 3000
       i see 2007 2  2007 1  2006 
    how can i open this period up

    Hi
    I have no MM consultant.  I am it.
    So  
    I actually think it is the format i am using
    in transaction omsy  i see 3000  2007   3   2007  2
    so in we19 for processing inbound mbgmcr goods movement i am trying to use a posting date of 20070215
    i have tried lots of combinations but it says
    posting only possible in periods 2007/03 and 2007/02 in cc 3000
    so what format combination should i use in the posting date in we19
    thank you so much

  • Future Posting Date Not Allowed

    Dear Gurus,
    Is there any way to restrict the future posting date while issue materials using T/Code MB11 ?
    I don't want to know the restriction of document date .
    I could not find any sweetable answer from the forum.
    With Best Regards
    Som

    Use the BADI   : MB_DOCUMENT_BADI    , with the help of abaper ,you  can  put your validition in the code , so that Posting date should not be greater than System date.

  • GL_JE_HEADER table : Posted date not update properly

    Hi All,
    I have seen that for few of the journals created inside GL,  The posted date inside the GL_JE_HEADER table is update with a date instead of time stamp.
    i.e  the posted date column is updated as '7/08/2013'  instead of  '7/08/2013 4:40:39 AM'
    This has caused some problem in te system.
    was wondering if you could help me to get an answer for this.
    regards
    Amit

    i am thinking that you want to include the time when you query the column post_date from table. if you are using SQL*Plus the default display for the date does not include the time. to include the time when you do a select on any data column use the ALTER SESSION SET NLS_DATE_FORMAT command.
    e.g.
    SQL> select sysdate from dual;
    SYSDATE
    18-SEP-13
    SQL> alter session set nls_date_format = 'dd-mon-yyyy hh:mi:ss am';
    Session altered.
    SQL> select sysdate from dual;
    SYSDATE
    18-sep-2013 11:57:17 am
    SQL>

  • Clearing after posting date not required in FF67

    Hi
    I have given posting date as 31.01.2010 in FF67 (manual bank reconciliation statement).
    But in-spite of the posting date is given as 31.01.2010, all the entries posted with posting date of February in incoming account / outgoing account is also considered for clearing.
    So is it possible to restrict the same.

    Hi,
    You might have entered an amount of a document, which is posted with FEB posting date, while entering the bank statement items in the next screen of FF67.
    The clearing date can be earlier than the posting date while FF67.
    The actual posting date (FEB date) will become the value date for the reconciliation posting entry to the main bank account line item. (Line item generated by system by doing FF67)
    Please check.
    Thanks,
    Srinu

  • R/3 posted data not picked up in BW delta load

    All,
    We have a Delta process for loading ledger data from R/3 to BI.  It works fine unless a document is posted in R/3 and we run the delta process before an hour has passed.  If that happens then the document posted in R/3 will not be picked up.  It is picked up later in the day on a subsequent run.
    The information we have gotten is that this is delivered functionality.
    Is that correct?  Is there any documentation for this delay?  Can it be changed?
    Thank for your help
    Bill L.

    Hi.........
    Check you datasource.............
    1) Check the delta-specific field and the type for this field.There are three type : Time stamp,calender day, nemeric pointer.........
    2) Check the delta type...........whether it is New status for changed records or Additive Delta.....
    Check this link :
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    Hope this helps you............
    Regards,
    Debjani..............

  • BAPI_ACC_DOCUMENT_POST posted data not reflected in BKPF or BSEG

    Friends,
    I am using BAPI_ACC_DOCUMENT_POST, for posting the  FI bad debts data through FB01. I am using BAPI_ACC_DOCUMENT_CHECK for checking the input data and subsequently BAPI_ACC_DOCUMENT_POST and BAPI_TRANSACTION_COMMIT for committing the data posted. 
    After using BAPI_ACC_DOCUMENT_POST, the commit bapi is also successful.  The bapi return the document no. posted.  But if you see the data in the tables BKPF and BSEG the data is not found. 
    It is really frustating, what could be the reason.  Anyone of you faced such problem before.  Any help on this issue.
    regards
    Bill Joseph

    Hi,
                  CALL FUNCTION 'BAPI_ACC_DOCUMENT_CHECK'
                       EXPORTING
                            documentheader    = it_hdr
                       TABLES
                            accountgl         = it_gl
                            ACCOUNTRECEIVABLE = act_rec
                            currencyamount    = it_curr
                            return            = t_result.
                  LOOP AT t_result WHERE ( type = 'E' OR
                                           type = 'A' ).
                    EXIT.
                  ENDLOOP.
                  IF sy-subrc <> 0.
                    REFRESH t_result.
                    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
                         EXPORTING
                              documentheader    = it_hdr
                         TABLES
                              accountgl         = it_gl
                              ACCOUNTRECEIVABLE = act_rec
                              currencyamount    = it_curr
                              return            = t_result.
                    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
                  ENDIF.
    See the above code.
    And check wether you are checking for right company code and year that which you are checking in tables.
    Thanks.

  • Little help with FORM POST data not in UTF-8 (JSP/servlet)

    Hello,
    I am trying to update a MySQL database record with UTF-8 characters with my JSP application.
    1) I have MySQL correctly configured to handle UTF8 and have tested insert/update/select with UTF8 characters
    2) I have an "editRecord.jsp" page. At the top of the page, I specify:
    <% request.setCharacterEncoding("UTF-8"); %>
    3) I have an input form which is specified in that page which follows:
    <form action="<c:url value="/updateRecord.jsp"/>"
    name="updatetForm" method="post"
    ACCEPT-CHARSET="UTF-8"
    enctype="multipart/form-data">
    4) I have a servlet filter that takes every HttpServletRequest and modifies that object in
    doFilter(...){
    request.setCharacterEncoding("UTF-8");
    chain.doFilter(...)
    5) In updateRecord.jsp, I fill a JavaBean with the form data. Here's an example of the form input:
    name = Company
    Comments=Here's some unicode text: "&#1610;&#1606;&#1610; &#1573;&#1606; &#1576;&#1604;&#1575;&#1583;&#1607; &#1605;
    6) When I put a breakpoint and inspect the contents of the UpdateBean after posting the form, running the request through the filter, I see
    I see:
    name = Company
    Comments=Here's some unicode text: &#132;������...."
    Where could I possibly be missing something to force UTF8 encoding of these values?

    If you have to use the following code to fix the encoding:
    String value = new String(item.getString().getBytes("ISO-8859-1"), "UTF-8"); ...
    then you are just putting a band aid on something that is broken somewhere else (since this code creates a byte array in 8859-1 and then creates a string from that byte array, but assuming that the array is encoded in UTF-8). That will only work if the string you start out with is mangled.
    In many cases such a fix will actually "work" (in the sense that you may end up with something that is correctly encoded in the end), but you run the risk of breaking if the source of the original corruption is removed.

  • Posting date filed not available to modify in invoices from SRM

    Hi there.
    When we try to create an invoice from SRM ITS, the field posting date it is as displayed field, we can not populate it with another date. The value of this field is always the actual date.
    Is it possible to activate this field in order to modify the content?
    Thanks and regards.
    Raúl.

    Hi All-
    Though this is claimed to be standard in SRM 5.0 in the release notes, the Posting Date field is not displayed in the SRM Invoice Basic data screens or is not editable rather. We had the same issue and SAP created an OSS note for us.
    The OSS Note number is OSS note 1082248.
    Pls assign points for usefull answers !!
    Sundeep

  • OB52 :- Open and Close Posting periods Due to not modifiable of  PRD system

    Dear All,
    Due to not modifiable status two transaction could't be done in the PRD  System.
    This is IMG activity under the following.
    1. OB52 :- Open and Close Posting periods (FA -> FA Global Setting -> Document ->Posting -> Open and Close Postinfg periods
    2. OB08 :- Enter Foriegn exchange rate. (Gen Settings) Enter foriegn exchange rate
    These transaction are to be executed regularly and directly in the ECC6.0 Production system is not possible due to non modifiable status.
    Please help me regarding this issue

    Check Note 77430 - Customizing: Current settings
    Markus

  • EBS currency translation not "posting date"

    Hello,
    We implemented EBS ealier this year.  The currency translation date on the FF_5 postings is taking the "document date" and not the "posting date" when determining which currency exchange rate to use.  This is only an issue for a couple days at month end when the document date is in the current month, but the posting date is in the prior month.
    What do we need to do to change the currency selection back to "posting date".  I have never seen SAP use anything but posting date.  I have tried reviewing all the configuration of doc type and other set up during EBS implementation and cannot see how we have triggered this date.
    Any help appreciated.
    Regards,
    Morgan

    I neglected to mention that we are calling this currency translation through a WAD button using the SET_CURRENCY_TRANSLATION command.  I did do a test by applying the currency conversion within query key figure.  This seems to work.  So it appears the issue is with how the WAD is processing the variable, not the query.  When I display the variable in a drop down item within the WAD it does have the default value that I have assigned in user exit.

  • Error in document date & posting date-- Posting period 001 2008 is not open

    hi guru's
    while doing vendor creation in XK01, i m not getting the data screens like address, ..etc.i m getting error..posting period not open". what does it mean..
    What date i need to give in both fields...?
    can anybody send a set of data for me to create a vendor to test for my bdc/lsmw?
    can any help me step by step vendor creation in xk01,
    I am getting this below....
    Posting period 001 2008 is not open
    Message no. F5201
    Diagnosis
    Period 001 of fiscal year 2008 is not open for posting for the variant of posting period 1000.
    System Response
    Processing cannot be continued.
    Procedure
    The error can have several causes. In order to eliminate the error, proceed as follows:
    1. Check whether the posting date was entered correctly. The system determines the posting period by means of the date.
    2. Check whether the required posting period is open for posting for the variant of posting period 1000 and account type +. Make sure that the period is open for posting.
    To do this, specify a period interval in which the required period for the variant of posting period 1000 and account type + is contained.
    Proceed
    thanks

    Hi
    Kris is right, that message means you can't post a FI document in the period 1 (probably Gennuary) of the 2008, but this can't mean you can't create a new vendor.
    So are you sure on trx?
    If the trx is right perhaps somebody has inserted a control in a user-exit.
    Max

  • While creating miro error message posting date 009 2011is not open

    sir
    while creating miro the error message is not open open for the posting date 009 2011

    Hi,
    The date format you have mentioned 009 2011 won't be supported by SAP system. Please enter it in correct format. If the format is OK an not working means MM posting periods are not open for this month this error will come.In MMPV give company code and specify the period to close  and save.Again go to same transaction open the period for this month. I hope this will resolve your issue. Thanking you.
    Edited by: Padmasri Garapati on Sep 16, 2011 6:58 AM

  • Photoshop CC on Windows 7 is saving the file "date" as the created date not the modified date

    I have been using a much older version of PS (CS2) and just decided to update to PS CC. I have installed the trial version of PS CC and will begin the CC subscription as soon as the trial expires.
    I have noticed that PS CC saves the (main) date of the files as the "created date" not the "modified date" as it pertains to Windows Explorer and the Windows OS.
    Here is what is happening: I have a file that I created in 2007 that I use for a template. It is sized to specific dimensions, etc. and when I do my save as, it automatically saves into the desired file folder, so that's why I use this as a template. I setup a new photo and then drag and drop it into my template, flatten the image and save as. When doing this with PS CS2, the date for the newly saved file was assigned as the modified date (current date and time). So, when I searched for the file in Windows Explorer or when I went to open the file, the date shown for the file was the modified date. NOW, with PS CC when I perform the exact same process and do a save as, the file date shown in Windows Explorer and/or when I go to open the file is showing as the created date (3/9/2007), the date that I created and saved the template I use. This is aggravating to me because now when I want to open a file and sort by date, the date shown in Windows Explorer is not accurate. As far as I can tell, this only happens in PS CC. When I open an old file with ID CC and do a save as, it applies the current date, not the created date. And, when I was using PS CS2, whenever I did a save as the current date was applied as well.
    In summary, when performing a save as, the created date is being applied as the main date instead of the modified date. The question is: Is there a way to change this so that the modified date can be applied as the main date for the file when performing a save as?

    Below are two files created the exact same way on the exact same computer: the top one was saved in PS CS2 and the bottom one was saved in PS CC. Both were saved using the "Save As" command. You will notice that when the "Save As" command was used in CS2 it updated the "Created:" date, however, in the CC version the "Created:" date was not updated, only the "Modified:" date was updated. Is there a way to update the "Created:" date when performing a "Save As" in PS CC?

  • MIR7 exchange rate is not modefied with respect to posting date

    Hi Experts,
    In our SAP system , we use MIR7 to create park invoice at first ,and then use MIR4 to change the parked invoice and post it.
    but when creating parked invoice, it's in say June and the exchange rate is 100, and when we create real invoice from parked invoice, it's October and exchange rate turns to 115.
    Then I change the posting date in the invoice from June to Ocetober, but the exchange rate is still 100 it is not changing according to the new posting date. How can I solve this problem, please give me a solution a.s.a.p.
    Thanks in advance for your help.
    Regards
    Sunil

    Hi Pankaj,
    There are so many options e.g you can check in oinm select that particular item sort on docdate and check inqty and compare with your goods issue date if it is same then send same transaction to approval if you want.
    Thanks
    Sachin

Maybe you are looking for

  • Events in a view or viewcluster

    Hi @all, i have a viewcluster containing of 2 views. When I create a new entry in the "first" view, some default entries should be created in the "second" view. I know, I can control such thing with the events of the view. I also found event 05 (at n

  • Problem in downloading the alv on spread sheet..... ??

    Hi Expert gurus.. When i am running the report in foreground and downloading the output on spreadsheet ... the output layout is coming fine....NO. OF COLUMNS AND ROWS ARE COMING SEPERATELY But when i am running the report in background and the downlo

  • Building a function in JSP ???

    Hi, im fairly new to JSP... Well, you will see by this question... Anyway... Im trying to built a function to test for NULL String. Here is wath i got : checkForNullParam( strLang, strMailID ); // The Call of the function function checkForNullParam(

  • Block File Types from KM Repository

    Is there any way to block particular file types (i.e. .avi, .wmv) from KM repositories?  We do not want users to be able to load particular types of files to our SAP Portal environment.

  • Why when I log in to my virtual classroom with the admin account it appears a white screen?

    The meeting room is: meet18787284.adobeconnect.com The admin account it is e******@*******.net It appears a white screen like the image I attached Which number can i dial to have asistance from México? The number in the oage is 800-422-3623  i tried