Query about data fetched by MB51 report

Hi Gurus,
I am raising this discussion for better understanding about this issue.
I deliberately created a material doc. in MIGO with 311 mov.type, on today's date.  Keeping the destination and supplying storage location  same.
It shows a warning message M7104. that both s.locs are same and creates a doc after accepting the message.
The doc. in created as I can see in mb03 and in MSEG table  but  MB51 does not list this doc.
I am using MB51 , giving material, posting dates(today +/- 30 days),  It does not list the material doc.
Can anyone suggest a note for this? OR explain what MB51 checks in the tables to fetch and filter material doc.
I ensure, I am using correct parameters in MB51.
Many Thanks!!
Regards,
Umang

MB51 reads the table MKPF and MSEG, if you selection criteria does match with these table entries, then you can see the entry in MB51 list.
Please post the screen shot of material document number from MIGO and post the screen shot of selection criteria of MB51.

Similar Messages

  • How to display the SQL query's date parameters to the report

    Hi all,
    I'd like to take the date parameters that are contained in my query and have them appear on the report and/or have the sysdate appear on the report. Any ideas on how to do this? Thanks!

    Hi..
    To display parameters which are part of SQl Query in the output..
    http://blogs.oracle.com/xmlpublisher/2008/07/where_are_the_parameter_values.html
    HTH..

  • Query about data source 0fc_bp_items

    Hi,
    I have a requirement in which i have to show the open items, module is FI-CA, i have zerored in on two datasource 0FC_BP_ITEMS and 0FC_OP_01. Our logic is such that we have to extract the data from DFKKOP and DFKKOPW  (contains the data about breakdown ).
    Kindly tell me which datasource will satisfy my requirement best or i have to go for Z develpoment.

    Hi Jason,
    Check this below link:
    http://help.sap.com/saphelp_nw70/helpdata/en/27/42073e774a4329b6dd6bab21eef613/content.htm
    Regards,
    Arvind

  • Query about date comparison

    Hi,
    I have a database table with a date field called 'ENDDAT'
    How do I write a select query that selects all records whose difference between sy-datum and 'ENDDAT' is greater than 7.
    If I do the normal date comparison for eg.
    select * from <databasetable> where enddat - sy-datum > 7
    or
    select * from <databasetable> where (enddat - sy-datum) > 7
    It throws error that '-' is not a valid comparison operator.
    Can anyone help????

    I've never seen that done before.  You can do as joseph has suggested.   If you can do it in the select statement, I'm not really sure that you'd want to put that kind of processing on the database.
    data: begin of itab occurs 0,
          enddat type sy-datum,
          end of itab.
    select * into corresponding fields of table itab
           from <databasetable> .
    data: cdatum type sy-datum.
    Loop at itab.
    cdatum = enddat - sy-datum
    * if <= 7, then delete from itab.
    if cdatum <= 7.
    delete itab.
    endif.
    endloop.
    Regard,
    Rich Heilman

  • Query about Data Model Design, UPDATED_ON

    hi on a *.ppt called ODTUG2007_Advanced_APEX.ppt, that i found on google <www.oracle.com/technology/products/database/application_express/ppt/ODTUG2007_Advanced_APEX.ppt>, i found a something that might be very interesting in using in my APEX app... it said something about some Standard Columns, and "phrases" (created_by, created_on, updated_by, updated_on) that i would like to see and learn how to implement.
    So i do appreciate if anyone has got an example, or can explain them to me...
    Best regards.
    Jaison González

    Jaison,
    There's another way to do that might work for you:
    1. Create the fields updated_by and updated_on in the table;
    2. Create in the page the items PX_UPDATED_BY and PX_UPDATED_ON of type "Text field (saves state)";
    3. Go to the properties of the item.
    PX_UPDATED_BY
    Source:
    - Source Type: Database column;
    - Source Value or expression: updated_by
    - Post Calculation Computation: :APP_USER
    Default:
    - Default value: &APP_USER.
    PX_UPDATED_ON
    Source:
    - Source Type: Database column;
    - Source Value or expression: updated_on
    Default:
    - Default value: sysdate
    - Default value type: PL/SQL Expression
    When the user submits the changes, the table fields are updated.
    Regards,
    Ricardo Stumpf
    Brasília - Brazil
    Message was edited by:
    Stumpf

  • OBIEE 11g - Data Fetch Issue.

    Hi,
    I am facing this weird issue regarding data fetching while executing Reports in OBIEE 11.1.1.5. When I login to the BI user interface and execute any report for the first time, everything is working fine. Bt after that I am not able to execute any report later. Even the report executed for the first time, when I rebuilt and execute it I cannot see the data this time. The Results user interface says - The layout of this view combined with the data,selections,drills or prompt values choosen resulted in no data.
    Thanks in advance.
    Regards,
    Dev.

    Hi,
    I also encounter the same issue. When I view combined layout, I get the No Results message. But when I edit the table layout, I see that there are records returned. Does anyone had any luck in resolving this issue?
    Thanks!

  • How to have date parameters nullable in fetch xml crm report

    Hi All ;
    Below is my report parameter query
    <fetch distinct="true" mapping="logical">Date.getTime()
    <entity name="new_programmeoutput">
    CrmDateTime @Search = new CrmDateTime { Value = String.Format("{0:MM/dd/yyyy}", DateTime.Now) };
    CrmDateTime @Search1 = new CrmDateTime { Value = String.Format("{0:MM/dd/yyyy}", DateTime.Now) };
    <attribute name="new_claimdate" />
    <filter type ="and">
    <condition attribute="new_claimdate" operator="ge" value="@Search" />
    <condition attribute="new_claimdate" operator="lt" value="@Search1" />
    </filter>
    <order attribute="new_claimdate" />
    </entity>
    </fetch>
    which works fine if the start date and the end date is entered
    but if the start date and end date is made null ... it doesn't display any values
    In fact if these ( start date and end date)parameters are made null i need to display all the values in the report irrespective of the date parameters
    Any help much appreciated
    Thanks
    Pradnya07

    Unfortunately, not works :(
    <fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
    <entity name="activitypointer">
    CrmDateTime @dFrom = new CrmDateTime { Value = String.Format("{0:dd.MM.yy}", DateTime.Now) };
    CrmDateTime @dTo = new CrmDateTime { Value = String.Format("{0:dd.MM.yy}", DateTime.Now) };
    <attribute name="activitytypecode" />
    <attribute name="subject" />
    <attribute name="statecode" />
    <attribute name="prioritycode" />
    <attribute name="modifiedon" />
    <attribute name="activityid" />
    <attribute name="instancetypecode" />
    <attribute name="community" />
    <attribute name="regardingobjectid" />
    <attribute name="stageid" />
    <attribute name="ownerid" />
    <attribute name="modifiedby" />
    <attribute name="createdon" />
    <attribute name="actualstart" />
    <attribute name="actualend" />
    <attribute name="actualdurationminutes" />
    <order attribute="modifiedby" descending="false" />
    <order attribute="modifiedon" descending="false" />
    <order attribute="activitytypecode" descending="false" />
    <filter type="and">
    <condition attribute="modifiedon" operator="on-or-after" value="@dFrom" />
    <condition attribute="modifiedon" operator="on-or-before" value="@dTo" />
    </filter>
    </entity>
    </fetch>
    when run report, receive error:
    The date-time format for 22.01.2015 0:00:00 is invalid, or value is outside the supported range.
    Default values are correct (=22.01.15).
    No any limitations on values

  • Report Query - XML data source empty

    Hello!
    I built a report query, using the wizard, under Shared Components and when I test the query using bind variables I get the correct data, but as I click Apply Changes and get to the screen where it gives me the option to Download the data source for the report layout, the file is empty. I've repeated the steps multiple times, each time getting correct data when testing the query, yet nothing in my xml file.
    Any ideas on why this is happening?
    Thank you.

    Hello! Thank you for responding!
    I actually am having problems on the "Report Queries" section under "Shared Components"...my query doesn't return any data when I try to download/open the xml file. Once I'm able to get this fixed, I'll be able to open my report on the page that has the branch.

  • Setting pl/sql procedure as the data source in a Report Query

    Is there a way to set PL/SQL as the data source in a Report Query? we want to
    able to use the ReportQuery function and query results returned by a PL/SQL procedure.
    thanks

    Not exactly sure what you want to do, but on a ReportQuery you can set either a StoredProcedureCall, or an SQLCall.
    query.setCall(new StoredProcedureCall(...));
    query.setCall(new SQLCall("begin; my_proc(); end"));
    Now, a stored procedure in Oracle cannot return a result, so using a ReportQuery which requires a result may not make sense.
    You could instead use a DataModifyQuery.
    If you return results through output parameters (you must use a StoredProcedureCall for this) you could use a DataReadQuery or a ReadAllQuery/ReportQuery if you wish to build objects from the data.
    James : http://www.eclipselink.org

  • Data discrepancy between Webi Report and same Query fired on SQL Server 2k5

    Hi ,
    We are facing an issue in BO XI R2.
    We need to run a Webi report in which negative values for forecasting data for year 2011 and 2012 should be displayed.
    When we are running this report for negative values, we are getting message u2018There is no data corresponding to this queryu2019.
    Then we tried executing the same query on Database. Here at db level we got the correct required result.
    So now we are not able to find the reason for data discrepancy .
    Why the same query generated by Webi is providing correct data when fired on reporting database and not when running the Webi Report.
    Checklist we have gone through for this troubleshooting is-
    -Connections of Universe (Is universe pointing to same database or not)
    -Any filter condition present at universe level and at report level.
    Could anyone please help on this.
    Regards,
    Vaibhav

    Vaibhav,
    Have you tried the following when you are in WebI: go under the Edit Query panel, click on the "SQL" icon, and review the query that is getting generated?  At this point you can also click on the "copy" option, then paste this query into your SQL application analyzer and run to see what results are generated.  To me, it sounds like the portion trying to generate the "minus" sign might be getting tripped up causing the disconnect....
    Thanks,
    John

  • Firefox Version 27 Reporting Services Action Menu Error. An error has occurred with the data fetch.

    Hello, since I've updated to Firefox 27.0.1 on Windows 7, I'm encountering a problem with Reporting Services on a Sharepoint site. It is a Sharepoint 2010 site with SQL Server Reporting Services 2012 Sharepoint Integrated mode. I was previously on Firefox version 26 and didn't encounter this problem.
    When a report is open and you use the Actions link on the Reporting Services toolbar, I receive the following error messages.
    An error has occurred with the data fetch. Please refresh the page and retry.
    I've tried updating to Firefox 28 beta but the same error occurs. I see another user is having the same problem here. http://sharepoint-community.net/forum/topics/reporting-service-and-firefox-27
    Any help would be appreciated. Thanks!
    Ryan

    Rachel, I did perform the Sharepoint file alteration discussed in the other article and it did stop Firefox from producing the error. I've done some testing on some other browsers and have yet to encounter any problems with the fix however I'm hesitant to perform that workaround in a production environment.
    Thanks for looking.
    Ryan

  • How to fetch MIR4 data based on MB51 refrence number

    hi Experts.
    i want to fetch MIR4 data based on MB51 refrence number.
    I want to fetch below fileds in MIR4 TCODE.
    1.  RBKP-BELNR (Invoice Document NUMBER)
    2. DRSEG-MENGE ( quantity )
    3. DRSEG-WRBTR ( Amount in document currency)
    As mentioned above DRSEG is structure.
    please help me how to fetch 3 data fileds based on my MB51 refrence.( mkpf-xblnr ).
    In MIR4 , Number of External Delivery Note( DRSEG-XBLNR ) is same as my MB51 refrence ( mkpf-xblnr).
    This is the only link avilable to fetch above 3 fields.
    kindly give any suggestions .
    thanks & regards,
    hari priya

    Hi ,
    can anybody give me suggestions .
    What is the table name for fetching above 3 fileld data  . 
    DRSEG  is structure .
    Thanks & regards,
    Hari priya

  • Is possible to see group currency data in SAP provide report or query ?

    Dear experts:
             Is possible to see group currency data in SAP provide report or query for Assets. When the Depreciation area currency is different with the group currency?
    My SAP version is ECC 6.0.
    Depreciation area currency: USD,
    Company code currency: USD,
    Second local currency: Group currency(TWD)

    You must have defined an additional dep area for group valuation too.
    then only you can get the asset values in TWD curency.

  • Complete data not displayed in Report

    Hi forum,
    I have a cube based on data source 0FI_AR_4,which is updated via an ODS.I have created a query for ageging analysis.The query uses Referrence number ( invoice number) to display the receivables of various customers and number of days from due date.
    To my surprise many invoice numbers are not being displayed in the query, but when i restrict the query to the invoice numbers which are not being displayed the report generated is able to display all the doccuments.
    I have checked the data in the cube and all the invoice numbers are flowing well fro R/3.
    My only way of saying thanks to the people who solve the issue or provide helpful answers is by assigining points.
    Regds
    Suhel

    hello
    This is simple problem
    The result the query fetches is not able to display in the number of cells provided in the excel sheet
    So when you restrict the data, the query is able to show all the data fetched by accomadating in the columns available in the excel.
    Here in your case , there are not enough columns in the excel sheet to display all data
    Regards
    N Ganesh

  • 'Driver]Parameter missing' Error while trying to pass parameter to MS query & Return Data to Microsoft Excel

    I am trying to set up a parameter query using ODBC-Microsoft Query
    to BMC Remedy The ODBC connection is "AR System ODBC Data Source".
    I want to pass a parameter to modified date field and get all the remedy tickets for which the modified date is<= to the passed parameter date.
    So in MS query, SQL- 
    the query looks like
     WHERE ("Trouble Ticket"."Create Date">={ts '2014-10-01 00:00:00'}) AND ("Trouble Ticket"."Modified-date"<=?)
    I am getting the data fetched from database in the MS query window, but unfortunately
    When I click File-Return Data to Microsoft Excel, its showing an error: Driver]Parameter missing
    I set the connection properties- parameter-Prompt for value using the following string.
    Please help

    Hi,
    Based on the error message, I recommend we try the suggestion: Replace all "..."  with [...]
    http://www.pcreview.co.uk/forums/error-parameter-query-odbc-remedy-bmc-software-com-t3232964.html
    Then, if you want to connect the Remedy's oracle database, please see the thread:
    http://www.tek-tips.com/viewthread.cfm?qid=1123112
    We may try the workaround: Write an Excel macro which connects to the database and fetch the data based on the SQL query.
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If you have further question about write macro, I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • XFL wont open in Flash

    I am hoping someone can help me with this problem opening XFL documents in Flash. I have exported an XFL document from After Effects which all works fine. When I open this XFL file in Flash however I get an error message: "An error occured when openi

  • IBOTS work in a strange manner in OBIEE 10G why..?

    Hi All, I have set up an IBOT and define my email id as well as email id of user B in my accounts. I clicked on my email id radio button. Now i created IBOT and in receipent tab I defined Me and specfic user from list i.e. B When I run the IBOT both

  • Transfer of purchases to new ID

    Okay so as the title states, I wish to know if once I create a new apple ID can I permanently transfer all paid apps from old account to new account, so after the transfer the apps would no longer be availble to old account and only to new account?

  • ISE : Machine/user ActiveDirectory group retrieving

    Hello, We are migrating our ACS 5.1 to ISE 1.0.4. - On ACS we were doing 802.1x Authentification over an Activedirectory, assigning Vlan according to computer/user group. In some case the user vlan could be different from the computer vlan (ex admin

  • Cisco ISE Guest Sponsor Portal Isssue

    Dear all , We have insatalled 5 ise 3315 boxes IOS 1.0.4 in our network where in two of them are admin node , two of policy services and one is mnt node. We are using guest sponsor portal for wirless guest user where in we have integrated WLC 5508 wi