Any functional spec or technical spec for  MB5B report??

Guys,
Please send me any Functional Spec or Technical Spec of the standard SAP report  with tcode MB5B ( Stock as on posting date). Any document explaining logic or technical flow is very much useful to me..I need to understand the logic and what are all the underlying tables used. I will assign more points to anyone who help me.

I got some help from the abaper.table/field details of the input screen and output screen
input screen
MATERIAL NUMBER       MARD     MATNR
COMPANY CODE      T001     BUKRS
PLANT                       T001W                    WERKS
STORAGE LOCATION     T001L     LGORT
BATCH     MCHB     CHARG
VALUATION TYPE     MBEW     BWTAR
MOVEMENT TYPE     MSEG     BWART
SPECIAL STOCK INDICATOR     MSEG     SOBKZ
SELECTION DATE     MKPF     BUDAT
output screen
STORAGE LOCATION     T001L     LGORT
MOVEMENT                     MSEG      BWART
MATERIAL DOCUMENT     MKPF     MBLNR
ITEM                                      MSEG     ZEILE
POSTING DATE                      MKPF     BUDAT
QUANTITY                                      MSEG     MENGE
PLANT                                       MSEG     WERKS
MATERIAL                                    MSEG     MATNR
In the input screen
i have three radio buttons :
         STORAGE LOC/BATCH STOCK
          VALUATED STOCK
          SPECIAL STOCK
and  following checkboxes
WITH OUT OPENING STOCK,WITH OUT CLOSING STOCK(WITH MOVEMENTS)
WITHOUT OPENING STOCK,WITH CLOSING STOCK(WITH MOVEMENTS)
WITH OPENING STOCK, WITH OUT CLOSING STOCK(WITH MOVEMENTS)
WITH OPENING STOCK, WITH CLOSING STOCK(WITH MOVEMENTS)
WITH OPENING STOCK, WITH CLOSING STOCK: UNCHANGED(WITH MOVEMENTS)
WITH OUT OPENING STOCK,WITH OUT CLOSING STOCK(WITH OUT MOVEMENTS)
WITH OPENING STOCK,WITH CLOSING STOCK(WITH OUT MOVEMENTS)
can you help me in understanding which field in what table should be taken
into consideration if need to implement the above radio button or check box.
For example if the user clicks on "WITH OPENING STOCK,WITH CLOSING STOCK(WITH OUT MOVEMENTS)"   checkbox
what is the linking field  which i should restrict my logic to ?
It would be helpful if you can give me atleast some information that you have ..

Similar Messages

  • Functional specs and technical specs

    Hello friends can any one send me some functional specs and technical specs to my email id [email protected]
    shankar thanks for ur help please send me some documents to my email id.

    Hi S.K.B
         I am also looking for such docs, plz forward if you have any
         Mail ID : [email protected]
      Thanks.
    - Raveendra Hegde

  • If any function like greatest or least for addition,subtraction and multi?

    if any function like greatest or least for addition,subtraction and multi?
    there are two columns 'a' and 'b'...i have to add the values in column wise
    a b add
    10 30 -->40
    20 40 -->60
    IS there any function?

    Hi,
    794244 wrote:
    if any function like greatest or least for addition,subtraction and multi?
    there are two columns 'a' and 'b'...i have to add the values in column wise
    a b add
    10 30 -->40
    20 40 -->60
    IS there any function?Do you mean something like
    FUNCTION_X (a, b, c, d, ...)that would return the sum of all those numbers?
    No, not that I know of. If there were, it would be harder to use than
    a + b + c + d + ...The first is a comma-delimited list of columns, with a function name and parentheses.
    The second is a +-sign delimited list, with nothing else needed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to convert Functional spec to Technical spec

    Hi ABAPer's
        Pls Sought me out, how generally the  functional spec can be converted into technical spec.(provide me steps).
    thanks in advance
    Swathi

    every project/company has its own Template for FS, TS etc...
    Take the TS template, u can see many contents in that.
    FS in the Functionality of the requirement.
    TS is the Technical solution for that requirement.
    u need to write the Pseudocode in the TS, how can you implement the technical solution for the requirement into its corr. content or  paragraph.
    generally any TS consists of the foll: as its content:
    (this is an example for a report)
    1. DETAIL DESIGN SPECIFICATIONS OVERVIEW     
       a. BUSINESS FUNCTIONALITY     
    b .MAJOR FEATURES     
    USER PROCEDURES     
    CHECK LISTS     
    ASSUMPTIONS:     
    CONSTRAINTS:     
    SECURITY CONSIDERATIONS     
    OBJECTS:     
    LTS SECURITY REQUIREMENTS:     
    RESTART/RECOVERY STRATEGY     
    PERFORMANCE CONSIDERATIONS     
    PROGRAM & DATA FLOW INTERACTION     
    PICTORIAL VIEW     
    INPUT DATA     
    COMMENTS     
    2. DETAILED PROGRAM DESIGN SPECIFICATIONS     
      PROGRAM DESCRIPTION     
    EXECUTION METHOD     
    PROGRAM TYPE     
    COMMON SUBROUTINES     
    EXCEPTIONS TO PROGRAMMING STANDARDS     
    LIST OF OBJECTS IMPACTED     
    INPUTS / OUTPUTS     
    ERROR MESSAGES AND CLASSES     
    BDC SESSIONS     
    STRUCTURES     
    DETAILED LOGIC     
    3. DETAILED REPORT DESIGN SPECIFICATIONS     
    (REPORT PROGRAM NAME)     
    REPORT DESCRIPTION     
    REPORT INVOCATION METHOD     
    REPORT APPLICATION     
    REPORT TYPE     
    REPORT CLASSIFICATION     
    REPORT MEDIUM     
    REPORT FREQUENCY     
    REPORT REQUEST METHOD     
    REPORT TIMING     
    REPORT ORIGINATOR     
    REPORT RECIPIENTS     
    REPORT PROCESSING ENVIRONMENT     
    REPORT LAYOUT     
    REPORT LAYOUT DESCRIPTION     
    REPORT SORT INFORMATION     
    REPORT CONTROL BREAKS     
    REPORT PAGE BREAKS     
    REPORT SUMMARY STATISTICS     
    REPORT MESSAGES     
    REPORT NUMBER OF PAGES / LINES / COPIES     
    REPORT PRINTING INFORMATION

  • Any function modules or user exit for confirmation mail

    Hi,
        I am in SAP system , there is data distribution happening with SAP and non SAP system through middleware XI system.
    pls help me suppose there is an error happens how SAP can send
    an email to nonsap system or suppose data updated it should be
    an confirmation email. pls help me regarding this

    Hi,
    i have alredy implement EXIT_SAPMM06E_013 but the program do not stop there.Do i miss something?I activete the project and saw that  EXIT_SAPMM06E_007 EXIT_SAPMM06E_013 and EXIT_SAPMM06E_016 are implemented and active.

  • Any way to find parameter value for a report?

    CS2008 SP3 - version 12.3.0.601
    Is there any way parameter value of a report can be found? The following code doesn't return parameter value but returns name.
    Fields existingReportParameters = null;
                            IDataDefinition dataDefinition = reportDocument.getDataDefinition();
                            existingReportParameters = dataDefinition.getParameterFields();
                            if (existingReportParameters != null) {
                                  for (int i = 0; i < existingReportParameters.size(); i++) {
                                        IField field = existingReportParameters.getField(i);
                                        if (field instanceof ParameterField) {
                                              ParameterField pa = (ParameterField)field;
                                              String paramName = pa.getName();
                                              //Values values = pa.getValues();
                                              //Object value = values.get(0);
                                              //System.out.println("*** repName Parameter - " + paramName + ":" + values);
                                              System.out.println("*** repName Parameter - " + paramName);
    Need to find a solution soon. Thanks in advance.

    Hello,
    Try searching, I have post code snippets on how to get values. I don't know for sure though if that code will work in CR 2008.
    Don

  • Functional and technical design for reports

    Hello BW gurus,
    I am responsible for creating/developing few reports in Prod Planning and Inventory Mgmt.
    Is there a template for the Functional Design and Technical Design for the reports?
    How do I go about making the functional and technical design?
    Thanks

    jackofalltrades,
    If you could give us the stage of the report -
    1. whether you are reporting from existing cubes and this report would be an additional one on a existing cube or
    2. The report has to be designed from the ground up ...
    Depending on the same - the entire lifecycle will be different and also whether the query is to be shown on the web or through excel will  be helpful.
    You could have a look at ASAP Templates in the meanwhile.
    Re: ASAP Methodology
    Arun

  • NEED FUNCTIONAL/TECHNICAL SPEC FOR GL CONVERSION

    Can someone please email me the functional and also technical spec for GL conversion. I need to give the functional spec to the Abaper to do LSMW.
    Any advise and guidance in this regard will be greatly appreciated.
    Please send me documentation on the spec sheet for gl conversion. I need to prepare one and give to the technical person by tomorrow. Email it to me at [email protected]
    Please send me asap
    thanks a lot
    Lakshmi

    Lakshmi, can you please send me the format of that func spec, if possible?

  • How to prepare functional specs? and technical specs?

    Hi All,
    How to prepare functional specs and technical specs
    please send me if u have any documents at [email protected]
    Thanx in advance,
    Ravi Alakuntla.

    Hi again,
    Take a look at a possible 'Table of Contents' for a Functional Specification document.  This a generic - All the items need not be filled in all the time.  The key items are 2, 3, 4, and 9.  If you do not have template, you may create a template in Word.
    1     Reference to Development List
    2     Description of Business Process
    3     Justification
    4     Functional Design
    5     Assumptions / Notes
    6     Authorization Specifications
    7     Transactions
    8     Layout and Data Mapping
    9     Unit Test
    9.1     Unit test
    10     Technical Specification     
    10.1     Program Category:     
    10.2     Program details     
    10.3     Authorization Objects
    10.4     Custom Tables
    10.5     Custom Transaction Codes
    10.6     Custom Menus
    11     Programmer Comments
    BR/
    Mathew.

  • Bussiness logic/technical flow for  report with tcode MB5B

    Guys,
    Please send me any Functional Spec or Technical Spec of the standard SAP report with tcode MB5B ( Stock as on posting date). Any document explaining logic or technical flow is very much useful to me..I need to understand the logic and what are all the underlying tables used. I will assign more points to anyone who help me.

    MB5B - Stock on posting date
    The report Stock for posting date lists a company's own stocks in a particular time period (earliest date/Time 00:00, latest date/time 24:00).
    The posting date is used for selection. Note that the posting date may be different from the entry date (date entered in the system) as well as the document date.
    Starting with the current stock balance, the report uses the material documents to calculate the stock balance for the specified posting date.
    Requirements
    You need authorization to display material documents for all chosen plants (authorization object Material documents: plant, activity 03).
    Output
    Thisreport issues a list with the following information for each material:
    Stock quantity and stock value on first date
    Total and value of all receipts
    Total and value of all issues
    Stock quantity and stock value on last date
    List of the material documents that were posted in the specified time period
    To go to the detail screen for the material document item, place the cursor on a material document and choose Goto -> Document item
    If you require more data and want a detailed evaluation, you can enhance the current layout or choose another existing layout via Settings -> Layout.
    Tables Used :
    t001; t001w; t001l; mchb, mbew,mseg.
    Thanks

  • MB5B Report table for Open and Closing stock on date wise

    Hi Frds,
    I am trying get values of Open and Closing stock on date wise form the Table MARD and MBEW -Material Valuation but it does not match with MB5B reports,
    Could anyone suggest correct table to fetch the values Open and Closing stock on date wise for MB5B reports.
    Thanks
    Mohan M

    Hi,
    Please check the below links...
    Query for Opening And  Closing Stock
    Inventory Opening and Closing Stock
    open stock and closing stock
    Kuber

  • How to use a table- valued function as a datasource for SSRS report?

    CREATE FUNCTION [dbo].[GetNetSheetRegionNetPerCapitaRow](@WeekBeginDate smalldatetime)
    RETURNS @RegionNetPerCapitaRow TABLE 
    (WTD1 DECIMAL(18,6),PYWTD1 decimal(18,6),percentDiff1 float,diff1 float,WTD2 decimal(18,6),YTD2 decimal(18,6),percentDiff2 float,Diff2 float,YTD3 decimal(18,6),PYTD3 decimal(18,6),percentDiff3 float,Diff3 float)
    how to use the above function as a data source for SSRS report instead of a stored procedure ?

    Hi,
    In the Dataset - > Query Type - >  Text - >
    SELECT * FROM [dbo].[GetNetSheetRegionNetPerCapitaRow](@WeekBeginDate)
    sathya - www.allaboutmssql.com ** Mark as answered if my post solved your problem and Vote as helpful if my post was useful **.

  • Data target technical name for a query

    Hi
    Can some one tell me how to find the respective data target technical name for a report (query)?
    Thanks
    Abhi

    Hi,
    Create a View on tables RSZCOMPDIR and RSZCOMPIC and take fields INFOCUBE,COMPID and keep join condition
    1) RSZCOMPDIR-COMPUID = RSZCOMPIC-COMPUID.
    2) RSZCOMPDIR-COMPUID = RSZELTDIR-ELTUID.
    and keep condition RSZELTDIR-DEFTP = 'REP'.
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by: Anil Kumar Sharma
    Message was edited by: Anil Kumar Sharma

  • Whether any Standard Bex query for MIS report of PP in BW

    Dear All,
    Please let me know , Whether any Standard Bex query is available for  MIS report of PP in BW.
    Thanks
    Regards,
    Sai.

    Dear All,
    Please let me know , Whether any Standard Bex query is available for  MIS report of PP in BW.
    Thanks
    Regards,
    Sai.

  • AIM Document for Discoverer Reports

    Hi All,
    I want to know if there are any Oracle's standard (AIM) documents for Discoverer Reports, similar to MD Documents for Oracle Reports?
    Can you send me any such document? Or where can I find them?
    You can send me on "[email protected]" if you have any.
    Thanks!
    Yogini

    Hi Pradeep,
    Thanks a lot for your reply. I have the table names but I need to create a functional specification document for reports like:
    1. RG23A Part 2
    2. RG23C Part 2
    3. ER1
    4. RG1
    5. PLA
    For all these reports we had already suggested the option for dowload to excel but client wants the reports to be created. Can I get some sample functional spec. for some of the above mentioned reports.
    Regards,
    Sriram

Maybe you are looking for