Stock details with old date.??

Hi experts,
How to know the stock details  with old date (not period)
date 2 months back or 4 months back.
with material,wih material group or plant..?
how to know the total stock details
MB5L  is for just  last one period stock only we can get..??
how can i get with any old date?'
Regards,
Anthyodaya.
Edited by: anthyodaya Reddy Nagaram on Apr 5, 2010 12:52 PM

Check the report
S_P00_07000139
Change layout as per your requirement

Similar Messages

  • How to get stock details as on date

    Dear All
    How to get opening stock and closing stock   details as on date .
    Tell me any function module is there  to get as on date.
    Moderator Message: FAQ. Please search in the forums before posting your question.
    Edited by: Suhas Saha on Nov 4, 2011 3:13 PM

    Hi
    By using transaction MB5B-Stock on posting date,you can arrive stock statement as on given date for Itemwise,plant,receipts,issues and balance availabel with value.
    Regards
    M P D Kamath

  • JSP page is coming back with old data even when DB updated

    Hello,
    I am updating an existing record on a database using an HTML form and the changes update the ACCESS database immediately, but the .jsp page is picking up
    old data.
    But but when i do a manual REFRESH, the correct data comes back fine!
    Thanks very much for any insights!
    Summary of the code:
    1. InputEmployeeInfo.html - enter change data, call update....jsp
    <HEAD> <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/> </HEAD>
    <FORM NAME="updateInfo"
    ACTION="./UpdateEmployeeInfo.jsp" >>>>>2.
    METHOD="POST">
    2. UpdateEmployeeInfo.jsp: - call bean, update database, forward to present..jsp
    <HEAD> <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    </HEAD>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0); %>
    <jsp:useBean id="empInfo"
    class="com.ora.jsp.beans.employee23.EmployeeInfoBean" >>>>>3.
    scope="request"/>
    <jsp:setProperty name="empInfo" property="*" />
    <% empInfo.updateDatabase(); %> >>>>>3b.
    <jsp:forward page="PresentChangeOfEmployeeData.jsp" /> >>>>>4.
    </BODY>
    </HTML>
    3. com.ora.jsp.beans.employee23.EmployeeInfoBean - Bean-update DB with change data
    public class EmployeeInfoBean {
    public void updateDatabase(){                                            <----3b.
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    String sql = "UPDATE EMPLOYEEINFO SET " +
    "NAME=?, ADDRESS=?, PHONE=? WHERE ID=?";
    PreparedStatement statement = conn.prepareStatement(sql);
    statement.setString(1, name);
    statement.setString(2, address);
    statement.setString(3, phone);
    statement.setInt(4, id);
    statement.executeQuery();
    statement.close();
    conn.close();
    4. PresentChangeOfEmployeeData.jsp - read database and display changes <----4.
    <HEAD> <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    </HEAD>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0); %>
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    Statement statement = conn.createStatement();
    String sql = "SELECT * FROM EMPLOYEEINFO WHERE ID = " + employeeID;
    ResultSet rs = statement.executeQuery(sql);
    while(rs.next()){
    %>
    <TR><TD ALIGN="right" WIDTH="50%">Name:</TD>
    <TD WIDTH="50%"><%= rs.getString("NAME") %></TD>
    ================================================================================
    Complete code listing:
    1, InputEmployeeInfo.html
    <HTML>
    <HEAD>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <TITLE>Change of Information</TITLE>
    </HEAD>
    <BODY>
    <TABLE WIDTH="100%" BORDER="0" BGCOLOR="navy">
    <TR ALIGN="center">
    <TD><FONT SIZE="7" COLOR="yellow">Employee Information</FONT></TD>
    </TR>
    </TABLE>
    <CENTER>
    <FONT SIZE="5" COLOR="navy">
    Please Enter Your Information<BR>
    Fill in all fields
    </FONT>
    </CENTER>
    <TABLE WIDTH="100%">
    <FORM NAME="updateInfo"
    ACTION="./UpdateEmployeeInfo.jsp" >>>>>>>>>2.
    METHOD="POST">
    <TR><TD WIDTH="40%" ALIGN="right">Current ID: </TD>
    <TD WIDTH="60%"><INPUT TYPE="text" NAME="id"></TD>
    </TR>
    <TR><TD WIDTH="40%" ALIGN="right">New Name: </TD>
    <TD WIDTH="60%"><INPUT TYPE="text" NAME="name" VALUE="Mickey"></TD>
    </TR>
    <TR><TD WIDTH="40%" ALIGN="right">New Address: </TD>
    <TD WIDTH="60%">
    <INPUT TYPE="text" NAME="address" VALUE="St. Louis, MO">
    </TD>
    </TR>
    <TR><TD WIDTH="40%" ALIGN="right">New Phone: </TD>
    <TD WIDTH="60%">
    <INPUT TYPE="text" NAME="phone" VALUE="555-555-1234">
    </TD>
    </TR>
    <TR><TD COLSPAN="2" ALIGN="center">
    <INPUT TYPE="submit" NAME="btnSubmit" VALUE="Update Profile"></TD>
    </TR>
    </TABLE>
    </FORM>
    </BODY>
    </HTML
    2. UpdateEmployeeInfo.jsp:
    <HTML>
    <HEAD>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <TITLE>Updating Employee Information</TITLE>
    </HEAD>
    <BODY>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>
    <jsp:useBean id="empInfo"
    class="com.ora.jsp.beans.employee23.EmployeeInfoBean" >>>>>>>>>>>>>3.
    scope="request"/>
    <jsp:setProperty name="empInfo" property="*" />
    <% empInfo.updateDatabase(); %> >>>>>>>>>>>>>3b.
    <jsp:forward page="PresentChangeOfEmployeeData.jsp" /> >>>>>>>>>>>>>4.
    </BODY>
    </HTML>
    3. com.ora.jsp.beans.employee23.EmployeeInfoBean <-------------3.
    package com.ora.jsp.beans.employee23;
    import java.sql.*;
    public class EmployeeInfoBean {
    private String name, address, phone;
    private int id;
    public void setName(String input){
    name = input;
    public String getName(){
    return name;
    public void setAddress(String input){
    address = input;
    public String getAddress(){
    return address;
    public void setPhone(String input){
    phone = input;
    public String getPhone(){
    return phone;
    public void setId(int input){
    id = input;
    public int getId(){
    return id;
    public void updateDatabase(){                                       <-------3b.
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    String sql = "UPDATE EMPLOYEEINFO SET " +
    "NAME=?, ADDRESS=?, PHONE=? WHERE ID=?";
    PreparedStatement statement = conn.prepareStatement(sql);
    statement.setString(1, name);
    statement.setString(2, address);
    statement.setString(3, phone);
    statement.setInt(4, id);
    statement.executeQuery();
    statement.close();
    conn.close();
    catch (Exception e) {}
    4. PresentChangeOfEmployeeData.jsp <---------4.
    <HTML>
    <HEAD>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <TITLE></TITLE>
    </HEAD>
    <BODY>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>
    <%@ include file="CompanyBanner.html"%>
    <%@ page import="java.sql.*" %>
    <jsp:useBean id="empInfo"
    class="com.ora.jsp.beans.employee23.EmployeeInfoBean"
    scope="request"/>
    <CENTER>
    <FONT SIZE="5" COLOR="navy">
    Your New Information
    </FONT>
    </CENTER>
    <TABLE WIDTH="100%" BORDER="1">
    <%
    int employeeID = empInfo.getId();
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance(); <--------4b,
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    Statement statement = conn.createStatement();
    String sql = "SELECT * FROM EMPLOYEEINFO WHERE ID = " + employeeID;
    ResultSet rs = statement.executeQuery(sql);
    while(rs.next()){
    %>
    <TR><TD ALIGN="right" WIDTH="50%">Name:</TD>
    <TD WIDTH="50%"><%= rs.getString("NAME") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Address:</TD>
    <TD WIDTH="50%"><%= rs.getString("ADDRESS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Phone Number:</TD>
    <TD WIDTH="50%"><%= rs.getString("PHONE") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Work Status:</TD>
    <TD WIDTH="50%"><%= rs.getString("WORKSTATUS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Total Sick Days:</TD>
    <TD> <%= rs.getString("TOTALSICKDAYS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Taken Sick Days: </TD>
    <TD><%= rs.getString("TAKENSICKDAYS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Total Personal Time(in hours): </TD>
    <TD><%= rs.getString("TOTALPERSONALTIME") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Taken Personal Time(in hours): </TD>
    <TD><%= rs.getString("TAKENPERSONALTIME") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Health Care Plan:</TD>
    <TD WIDTH="50%"><%= rs.getString("HEALTHCAREPLAN") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Dental Plan:</TD>
    <TD WIDTH="50%"><%= rs.getString("DENTALPLAN") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Vision Plan:</TD>
    <TD WIDTH="50%"><%= rs.getString("VISIONPLAN") %></TD>
    </TR>
    <% }//end while loop
    } // end try block
    catch (Exception e) {};
    %>
    </TABLE>
    <%@ include file="ch24_SiteNavigator.html" %>
    </BODY>
    </HTML>

    <%
    String dept_name=request.getParameter("D1");
    String itmp,itmcd,sn;
    %>
    <%
    Connection con;
    PreparedStatement ps;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:acc");
    Statement stmt=con.createStatement();
    ResultSet rs=stmt.executeQuery("select * from item_details where Item_Name='"+dept_name+"'
    %>
    <td> Product name</td>
    <td>Product description</td>
    <td><Product code</td>
    <td>Product price</td></tr>
    <form method=post action="mycreate.jsp">
    <%
    while(rs.next())
    %><tr>
    <%=rs.getString(1)%></td>
    <%=rs.getString(4)%></td>
    <td><font color="#ffffff" size="3" face="arial unicode
    ms">    <%=rs.getString(3)%></td>
    <% String temp=rs.getString(3);%>
    <%=temp%>
    <td>
    <%=rs.getString(5)%></td>
    <td><input type=submit value="Add to cart"></td></tr>
    <form method=post action="mycreate.jsp">
    <%
    con.close();
    %>
    </tr>
    </table></tr></table></tr></table>
    </form>
    </form>
    I want the value of rs.getString(3) in a variable

  • HT4597 I want to continue having my PC as the master and my iTouch as the slave in syncing Calendar, photos, music. Will iCloud allow that to happen or will it try to override my newly synced iTouch data with old data in iCLoud?

    I want to always sync my iTouch by what is held on my PC, not what is held in iCloud. To me, iCloud is an emergency back up. Will this be able to be done and do I need to do anything in particular to make sure that the data held on the PC, synced to my iTouch, will always take precedence over what is in iCloud? I want to continue to get email, use the internet wirelessly, etc but am worried that iCloud will try to take over. I want the data held by iCloud to be taken from my iTouch and not return old data to my iTouch.

    Restoring will not put it back to iOS 5, it will remain on iOS 7. The 'restore from backup' will replace your current content of your iPad (music, apps and their content, films etc) with what was in that backup (the backup picks up your apps, music, films etc from your iTunes library, not from within the actual backup, so you will need those in your iTunes library for the restore to be able to copy them back). If you currently have important documents/photos on the iPad then copy then copy them off first.
    There is this page, specifically about iPhones but it applies to iPads as well, about syncing to a new computer : Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Cannot connect to database (10.2 XE) with old data files

    Hi,
    I was running my database for a while but a couple weeks back it started failing - as in I can no longer connect to it. I tried moving the datafiles (all files under \oraclexe\oradata\XE ) and reinstalling and that makes everything run again with the default database files but when stop the database and copy my old files back in and restart - presto I can no longer connect either by jdbc or by apex ( 127.0.0.1:8080/apex ). My css log file has this in it after I resttart the database and try to connect to apex:
    [  OCRUTL][3280]u_set_comp_error: Parameter was NULL
    [  OCRUTL][3280]u_set_ocr_error: Parameter was NULL
    2011-12-28 17:07:20.084: [  OCROSD][3280]utgdv:1:could not open registry key SOFTWARE\Oracle\ocr os error The system could not find the environment option that was entered.
    [  OCRUTL][3280]u_set_gbl_comp_error: Parameter was NULL
    [  OCRUTL][3280]u_set_gbl_comp_error: Parameter was NULL
    2011-12-28 17:07:20.084: [  OCRRAW][3280]proprinit: Could not open raw device
    2011-12-28 17:07:20.084: [ default][3280]a_init:7!: Backend init unsuccessful : [33]
    [  OCRUTL][3280]u_set_ocr_error: Parameter was NULL
    2011-12-28 17:07:20.084: [ CSSCLNT][3280]clsssinit: error(33 ) in OCR initialization
    So, how can I rescue my data or fix what I assume is a corrupted datafile? I had a backup on dvd but now I can't find the dvd so I'm stuck.
    Edited by: user4272861 on Dec 28, 2011 2:09 PM

    Hi,
    Thanks for the replys,
    My instance is running in the exact place as before.
    When I try to run the commands in the trc file I get up to a point but then get errors.
    The following commands seem to work:
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "XE" RESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 292
    LOGFILE
    GROUP 1 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_4WK0TDM0_.LOG' SIZE 50M,
    GROUP 2 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_4WK0TL5T_.LOG' SIZE 50M
    -- STANDBY LOGFILE
    DATAFILE
    'E:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
    'E:\ORACLEXE\ORADATA\XE\UNDO.DBF',
    'E:\ORACLEXE\ORADATA\XE\SYSAUX.DBF',
    'E:\ORACLEXE\ORADATA\XE\USERS.DBF'
    CHARACTER SET AL32UTF8
    -- Configure RMAN configuration record 1
    VARIABLE RECNO NUMBER;
    EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('RETENTION POLICY','TO REDUNDANCY 2');
    -- Configure RMAN configuration record 2
    VARIABLE RECNO NUMBER;
    EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CONTROLFILE AUTOBACKUP','OFF');
    work but I can't get past it...
    -- Commands to re-create incarnation table
    -- Below log names MUST be changed to existing filenames on
    -- disk. Any one log file from each branch can be used to
    -- re-create incarnation records.
    -- ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC';
    -- ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_%U_.ARC';
    -- ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_%U_.ARC';
    -- Recovery is required if any of the datafiles are restored backups,
    -- or if the last shutdown was not normal or immediate.
    eg the command : RECOVER DATABASE USING BACKUP CONTROLFILE
    produces this:
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE ;
    ORA-00279: change 38947104 generated at 12/26/2011 01:56:02 needed for thread 1
    ORA-00289: suggestion :
    E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_765_
    %U_.ARC
    ORA-00280: change 38947104 for thread 1 is in sequence #765
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE ;
    ORA-00279: change 38947104 generated at 12/26/2011 01:56:02 needed for thread 1
    ORA-00289: suggestion :
    E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_765_
    %U_.ARC
    ORA-00280: change 38947104 for thread 1 is in sequence #765
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00308: cannot open archived log
    'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_765
    _%U_.ARC'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    and the command ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC';
    produces this:
    SQL> ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA
    \XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC';
    ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\A
    RCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC'
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level
    What is the trick to getting it to open an archived log?

  • Updating DPAYH-VALUT with old date during FPY1 run

    Hi All,
    The requirement is, while generating Disbursement document through FPY1 transaction i need to populate the DPAYH-VALUT with some other value. As of now system populating the current date in this field.
    Can any body help me which FQ Event we can use to achieve this?
    Appreciate your help.
    Regards,
    Veera.

    Any thoughts on this?
    Regards,
    Veera.

  • Cloning a new instance with old data

    I have a instance on Windows which is not functioning as many of the .exe and .dll files (including those in FND_TOP, FNDLIBR.exe also) have been deleted and relinking is failing with serious adrelink errors as i described in the thread Re: relinking fails
    I tried a lot of solutions to overcome the relink issue but could not.
    now instead of wasting further time on this, what I am planning is that I can backup all the files on DB and Apps Tiers on an external drive, reinstall the Windows, Cygwin and MS Visual Studio and clone the instance back. I have not backed up the instance before patching because its a Sandbox Test instance used without any strict protocols.
    Will this work ? As many executables and dll files are missing from the Apps Tier, will the cloning be successful ?
    or can I copy the effected Product Tops from some other instance ?
    or can I just copy the whole Apps tier from some other instance and clone it with the existing database. I doubt that will work because these file versions and other information of the apps tier is stored in some database tables and using database of one instance with the apps tier of another instance can cause serious mismatch issues.
    please suggest me the best workaround possible for this. I can't afford to loose any data.
    Thanks.

    Hi,
    Will this work ? As many executables and dll files are missing from the Apps Tier, will the cloning be successful ?If you have issues with the current instance, then do not expect cloning to work. You better fix the relink issue, then clone this instance.
    or can I copy the effected Product Tops from some other instance ?I would not recommend this as you may not be able to track what products have changed. However, you may give it a try and see if it helps.
    or can I just copy the whole Apps tier from some other instance and clone it with the existing database. I doubt that will work because these file versions and other information of the apps tier is stored in some database tables and using database of one instance with the apps tier of another instance can cause serious mismatch issues.As you said, this will not work.
    Thanks,
    Hussein

  • Ink cartridges with old dates?

    Hello.
    Is it a bad idea to be using old, un(us/open)ed ink cartridges, that were dated years ago, in old printers like HP Photosmart 8450?
    Thank you in advance.

    If they work, they work.  If they don't, they don't.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Plant Stock details for a given date

    At present we are using MB52 for latest stock position of a plant. Is there any code for getting stock details for earlier date.
    As we are facing lot of problems while audits....

    Hi
    Please check the following link
    Re: No stock showing in Inventory on date stock report
    Cheers
    Chandra

  • Warehouse stock with production date of batch

    Hello,
    Can somebody tell me any report where user can see warehouse stocks along with production date of a batch. User wants to do FIFO while doing inventory transactions. And user wants to first transfer oldest produced batch first.
    Please suggest.

    Hi Sudhir,
    Thanks for your response. LX02 shows only GR date for quant- for certain quant GR date is updated as todays date if some stock transaction is done for that quant.
    User wants report
    He will then be able to move oldest stock based on production date.  Example quant has GR date as 24th Feb 2011. But its production date is 24th Feb 2010. So ideally this stock should be moved in FIFO method based on production date.
    To summarise, I require standard SAP report  stock in LX02 as well as production date/receiving date of a batch in quant.

  • Regarding MB5B(stock details) transaction

    Hi all,
        there is a standard report in SAP for Stock details on posting date in MB5B transaction. If you go in to this, there is a field 'layout'. what is meant by that layout and how can we add to any report?? after executing we will get a list. but i need to dispaly all field in ALV grid. i am copying standard prog to our prog and doing modifications. Is there anybody developed the same functionality, please send me that code. becuase this is some what urgent..
    Thanks in advance
    chandu

    Hello Chandu,
    For a moment forget about this <i>Layout</i> field on the initial screen of the transaction MB5B. Just give the other input parameters on the selection screen and execute.
    You will see the results in a list format. There's a Menu Option here called <i>Settings-->Layout.</i> Just try that option out and you'll discover that the layout of the list can be changed and also saved. When you have saved at least one such Layout, you would be able to enter the name of the layout in the initial screen of the transaction the next time you execute it.
    Unfortunately, there's no option here to see the list in an ALV Grid. There has been a similar post sometime back: MB5B IN ALV FORMAT
    And the Layout option in the case of this transaction has been impe=lemented manually, using the function modules from the Function Group SKBS.
    Hope that helps. If this solves your doubt, then please reward the points accordingly and mark the thread as answered. Else get back with further doubts.
    Regards,
    Anand Mandalika.

  • Query Not reflected with Updated Data

    Dear Experts,
    I am facing a Problem in query data updation.    Data has been daily updating in infoprovider successfully ,But when user run query through Bex he is always shown old data.  Then I go to RSRT and generate the query and data got updated.
    Every Time for new data updation I need to Generate the query.
    What could be reason for this.  Is this related to cache data ?
    Any Advise .
    Thanks in Advance.

    Dear Michael,
    This problem is coming only for one Multiprovider.   Running this program would affect all other queries also . This will Delay the reporting.
    Any other reason why query is reflected with old data Though infoprovide is loaded with new data.

  • Inventory: Movement after count with post date before the count date.

    Hi,
    We have stock movements all the days of the week.
    We conduct physical inventories on Sunday mornings. There are not stock movements on Sunday mornings (stock movements on Sunday starts at night).
    Usually we create the SAP Physical Inventory Document on Fridays, assigning Saturday as the Planned Count Date.
    We enter the SAP Physical Inventory Count on Sunday (at the end of the count) or on Monday.
    How you recommend us to use SAPu2019s Physical Inventory feature in order to calculate the Book Inventory considering all stock movements with posting date less than or equal to Saturday?
    Please, suggest us a solution that If we register a movement after we enter the count but with post date before the count date (and the count is not posted yet), the Book inventory is modified accordingly.
    Thanks in advance for your support!!

    SAP takes the book inventory in the moment you enter the count.
    Best you set  block movements , this block will be removed automatically when you enter the count. So you can prevent users from posting until you have entered the count.
    If you set the freeze book inventory, then SAP takes the book inventory in the moment you create the document.
    This is not a good way if you still have movements after inventory document creation and actual count.
    You have to make sure - organisational  wise, outside SAP - that all movements that happened before inventory count  are posted before you start entering the count. There is nothing in SAP that can help you in this case.

  • ISync/Palm HotSync replaces w/old data

    Hey. This may be better suited for Palm support because it doesn't really seem like an iSync issue, but I use iSync/e2sync to Sync my Palm-based phone (Samsung i500...R.I.P). I have been having an ongoing issue that if I don't sync almost daily, that if it has been, say a week or so, since my last sync, Hotsync overwrites all of my data with OLD data and reinstalls all my programs. VERY frustrating. It never did this before Tiger and DOESN'T do this on my work laptop when I Sync. At work I just use Hotsync with an Entourage Conduit for my Entourage data. This machine does NOT have Tiger installed. At home, where Tiger IS installed and where this strange overwriting is happening, I bought e2sync hoping that would mix this overwriting problem. I checked "do nothing" for "backup" in Hotsync Conduit Manager and it is still overwriting if it has been a while since my last sync. Is there ANY explanation for the overwriting?

    NO, I am not using .Mac for anything.
    NO, my intention is not transfer the data between the two computers using my device as a "transport device".
    My intention is to have all my contacts and calendars on my device populated with information from my home and work computers. This is a problem that existed BEFORE I syncronized my device with two different computers. When I do sync and information conflicts it (iSync) warns me and asks me what to do. The overwrite problem is NOT coming from iSync it seems to be a Hotsync issue that may or may not be caused by TIger.

  • Stock report with value and qauntity for given date not month wise

    Hi gems,
    can any body give me the standard report for Stock value and qauntity for given date not month wise at storage location level

    Hi
    check the report S_P00_07000139 with the option inventory and raw material report- detail and selection date (from, to date same). List will give opening & closing balances with goods movment and their values.
    Thanks

Maybe you are looking for