Display GR blocked details.

Hi frds
In ABAP report wants to display GR No,GR Date,Material No,Material Desc,Vendor Name and Vendor No.with corresponding to pending GRs agains Blocked Stock.
we can get the blocked stock in MB51(T.code) or PO Line item in ME23n(T.code),in that goto purchase order history tab check for material movement in that ,if the value is 103 its blocked stock.
kindly any one give me some tips for doing this report its urgent.
thanks
Pari Vendhan.R

Check table MKPF & MSEG

Similar Messages

  • Display image in detail groups in jheadstart 11.1.1.3.35

    Hi, I've been trying to make a project that should display one picture in one of the detail groups. but when i generate the jheadstart definition editor and run the project, it shows an empty box for the image (image is not loaded).
    I've seen the source code and every thing seems right and when i use that detail group as a master group the image display just fine.
    is jheadstart 11g have a problem for displaying image in detail groups? because I've heard this option works in 10g pretty fine.
    please help me how i can fix this problem and i have to say my project deadline is coming :(

    We are not aware of such a problem.
    To really check whether it is related to a detail group, can you temporarily make the detail group a top-level group, generate and run your application to see whether the problem goes away?
    Make sure you first uncheck the Same Page checkbox before you drag and drop the detail group to become a top group.
    There is a known ADF issue that when you upload a new image, the new image is only shown when you restart the session.
    Steven Davelaar,
    JHeadstart Team.

  • Function module for display production order details

    Hi All,
           I want to display production order details including operation,sub-operations and components using standard FM.I checked 4 FMs, but some are not displaying my require details. I found PM_ORDER_DATA_READ function module, it is displaying all details.But you can execute the function module 2 times for different orders it is giving ABAP dump 'itab_error'. Please get back to me if any one faced this problem or know solution.I am also checked BAPI_ALM_ORDER_GETDETAIL FM.
    My require fields are
    AUFNR, WERKS, PLNAL, PLNFL, VORNR,UVORN, ARBPL, KTSCH,
    LTXA1,OFFSTB,VGW01 etc.
    I am using SAP 4.7 release. Please send me either standard FM or BAPI to display all details of production order.
    Thanks in Advance
    Shaik Basha

    Hi,
    I had the same problem this morning and I found out a FM you have to run to fix this problem.
    FM: CO_IT_SET_FLG_ITAB_NEW
    Rgds,
    Parise

  • How can I display content blocked by an invalid security certificate?

    I am using Firefox 30.0 which I installed to replace IE8. I log in to my health insurance site. When I try to go to the Provider Directory Search (PDS), nothing happens. I thought the PDS might be a pop-up so I tried both making the web page a pop-up exception and then also just turning the pop up blocker off completely. Neither helped.
    I then tried to access the same PDS page via IE8 and IE8 displayed a “Content was blocked because it was not signed by a valid security certificate” error page. Also, IE8 displayed a bar with options that allowed me to display blocked content regardless of the status of the security certificate. The PDS page then displayed.
    I went back to FF30 and tried again. The PDS page did not display and no error message nor options bar was displayed. Next, I tried finding an option related to this problem. Options/Security had nothing for Security Certificates. Options/Advanced/Security seemed to deal with security certificates my copy of FF30 would provide to web sites and not the web sites certificates provided to me. I tried clicking on the “lock” icon of the page from which I should be transferred to the PDS page. The security certificate information displays but I could not see any option that would help me and this is the security certificate from the previous page anyway and not the PDS page that is being blocked.
    If I could just get a Security Certificate error to display, I was hoping I would then be given the option of displaying the blocked content anyway. Without even an FF30 error condition being displayed (as does IE8), I am unable to proceed.
    Ideas about what to try would be greatly appreciated. Thanks, Claude

    You can inspect the certificate chain via a site like this:
    *http://www.networking4all.com/en/support/tools/site+check/

  • What is the signiface of Account Assignment (Coding) Block: Details

    Hi what is the signiface of Account Assignment (Coding) Block: Details
    what is its effect in PO

    Hi,
    Material are procured as stock or non-stock materials. When you procure material which can be used in production of finished product ,stock is maintained.
    Account assignment category describes how the procured material is being used (for eg: Cost Center, Sales Order, etc). It also determines how the accounting entries made when a GR document or IR document is posted.
    When you use the Account Assignment Category "K", it means the material is allocated to a cost center for consumption. The Materials is accounted to the particular cost center.
    Account Assignment Category "P" is used for materials that are required for the project related.
    Hope it helps.
    Regards,
    Bijoy Kumar

  • Displaying a Master Detail Relationship in a Panel Accordion or Tabs

    Hi,
    Is it possible to display a Master-Detail relationship in a Panel Accordion or Panel Tab or other component that visually divides the display?
    Say I have a Department - > Employees master detail relationship and I want each tab in my accordion to represent each
    departments and when I clicked the tab, the list of employees associated with that department is displayed.
    I am exploring this idea but I cant get to find a resource on how to move forward. I am using JDev 11.1.1.4. Thanks

    Hello,
    I recently faced the same problem and did not find a clean solution either. So I implemented it a bit more "dirty". :-)
    Instead of using the Department > Employee view link, I just created a new view object (say EmployeesFromDept), that has a bind parameter called p_DeptId:
         SELECT ...
         FROM   EMPLOYEES e
         WHERE  e.DEPARTMENT_ID = :p_DeptIdThe Data Control of this VO will have an ExecuteWithParams operation that takes the department id as input. Create an action binding in your page definition that binds to this operation, called "RefreshEmployeesForDept":
         <action IterBinding="EmployeesFromDeptIterator" id="RefreshEmployeesForDept"
                InstanceName="MyAMDataControl.EmployeesFromDept"
                DataControl="MyAMDataControl" RequiresUpdateModel="true"
                Action="executeWithParams">
          <NamedData NDName="p_DeptId" NDValue="" NDType="java.lang.String"/>
        </action>In your page, add the current DepartmentId to each showDetailItem using an attribute and add a disclosureListener:
         <af:iterator id="i1" value="#{bindings.Departments.collectionModel}" var="row">
                <af:showDetailItem text="#{row.DepartmentName}" disclosureListener="#{pageFlowScope.myBean.toggleDisclosed}">
                   <f:attribute name="currentDepartmentId" value="#{row.DepartmentId}"/>
                              <af:table value="#{bindings.EmployeesFromDept.collectionModel}" var="row"
                          rows="#{bindings.EmployeesFromDept.rangeSize}"
                          emptyText="#{bindings.EmployeesFromDept.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.EmployeesFromDept.rangeSize}"
                          rowBandingInterval="0" id="t1">
                   //Lots of mapping column here
                        </af:table>
                </af:showDetailItem>
         </af:iterator>Now each showDetailItem that is generated knows the DepartmentId it "belongs to". In the toggleDisclosed(DisclosureEvent disclosureEvent) method, first fetch this attribute, so that you know the dept id of the showDetailItem that was clicked. Next, programmatically call the RefreshEmployeesForDept action binding if the current event is "disclosing the showDetailItem":
         public void toggleDisclosed(DisclosureEvent disclosureEvent) {
              String currentDepartmentId = disclosureEvent.getComponent().getAttributes().get("currentDepartmentId").toString();
              if(disclosureEvent.isExpanded()){
                   DCBindingContainer bindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
                   OperationBinding operBinding = bindings.getOperationBinding("RefreshEmployeesForDept");
                   if(operBinding != null){
                        operBinding.getParamsMap().put("p_DeptId", currentDepartmentId);
                        operBinding.execute();
        }Now, each time a showDetailItem is opened, the bind variable of the iterator belonging to your list of Employees will be refreshed with the correct DepartmentId. Ie the department that the showDetailItem represents.
    Hope this helps! If you find a cleaner solution, please let me know. :-)
    Regards,
    Chris

  • Display the material details in alv grid based on material(in mara)

    hi,
    display the material details when get input of material from user in mara table using alv-grid display.
    give some examples.
    Thanks of advance.

    Hi
    For your help i am just giving you few hints.
    1. Create a selection screen.
    2. Select matnr from mara into an internal table.
    3. use fm Reuse_Alv_grid_display to display your entries from the internal table
    Please read about all of this step by step in the forum.

  • Report to display proces order details

    Hi Frnds,
      I need to create a report for displaying process order details like process order,  Line (Resource), material, product group,batch and Order movement data (movement type,qty ). I tried to get Item level materials from AFPO..but it contains only header level material.
    Now my question is that in which table can i get order movement data for all header and item level materials.
    I will wait for ur reply..
    Thanks in advace..
    Rgds
    ravindra

    Try with 0PUR_C01 and 0PUR_C03
    Jayasudha

  • Display of DPR details in PO history.

    Dear Friends,
       I wanted to display the DPR details in PO history tab.
    means whenever i do f-47 or f- 48 the PO history tab will be upadted with that and by click on the document will able to see the details.
    i found on SDN many result were come but have not proper solution for the same..
    can anyone pls provide the details for the same...
    Thx N Regds
    VB

    Hi Jurgen,
      actuly is showing in my 140 send box client but in DV client.
    could u pls let me know how do I activated the business fuction LOG_MMFI_P2P in my DV client.
    Thx
    Varna

  • In the metadata repository, display the object detail links don't work

    We've upgraded to 7.3 and when we lick on display the object details links we get the following message.  I've looked in SICF and everything looks active and is set up
    Service cannot be reached
    What has happened?
    call was terminated because the corresponding service is not available.

    HI LMM
    I have also same Problem . I thing SICF  is working fine but SAP BW 7.3  Metadata Repository is not available (Not maintained) the corresponding service is not available that why  System shows An error.
    Regard's
    R.S.Reddy

  • Function module to display the card details for the tcode BCA_CN_card_03

    HI all,
       I need to know the function modules to create the card data  and also to display the card details in accounts management in CRM.
    Points will be awarded.
    Thanks and regards,
    vinoth.

    1 BUPA_ADDRESS_GET_DETAIL
    2 BUPA_IDENTIFICATION_GET_DETAIL
       BUPA_IDENTIFICATIONDETAILS_GET
    3  BUPA_TAX*
    4,5 BUPA_PCARD*

  • Displaying 3 blocks in a report

    hi
       please tell me how can i display  3 blocks in a report by using reuse_alv_list_display.
    thanks & regards
    sekhar rao

    Hi Sekhar ,
    You can use Functin module 'REUSE_ALV_BLOCK_LIST_DISPLAY".
    With the help of these you can display more than one block at a time...
    Hope this helps you..
    Thanx,
    Navin...!

  • I want to display the Employee details in table format without using iGrid

    Hi all,
    Can anybody help me that I want to display the Employee details return by transaction in table  format without using iGrid.

    Hi, view the link below.
    http://help.sap.com/saphelp_xmii115/helpdata/en/Advanced_Topics/Customizing_Output/Customizing_Output.htm
    Hope this help.
    Danilo Santos

  • I want to include/display the absence details for employee

    Hi
    I want to display the absence details for an employee in the payslip.
    Please guide.
    Minal

    Hi
    I think you got the solution .
    Please do one thing tell the note number and close the thread.
    So that it may be useful for others.
    Manoj Shakya

  • How to print the display 2D Barcode details in Oracle Reports

    Hi Experts,
    Can you pleas share the approach to print the 2d Bar code in reports
    we have requirement from our Customer to
    display 2D Barcode details in Oracle Reports (In the Invoice print or in
    Annexure).
    Following are details we have carried out so far :-
    1. We have got JAR file from the Vendor.
    2. We have loaded the JAR File in the FND_TOP.
    3. Then we tried to call the same in the report.
    But we got struck here, didn't know how to proceed further because the
    JAVA Class is not loaded in Oracle Database.
    Kindly help us as to how to achieve the same.

    What jar is it? What is fnd_top? To load java in the database there are several methods. Please use google to find them, or oracle documentation.
    Version of reports?
    Edited by: Lars Sjöström on Nov 25, 2012 11:37 PM

Maybe you are looking for

  • Mac OS X 10.6.8 software updates quites unexpectedly, any idea??

    Mac OS X 10.6.8 software updates quites unexpectedly, any idea?? Process:         Software Update [15049] Path:            /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update Identifier:      com.apple.SoftwareUpdate Versi

  • Printer Share Migrations when SCCM DP is replaced with new name

    we are inprocess of replacing the remaining office servers which are SCCM 2012 SP1 DPs with replacement servers that are Svr 2012.  in the past when we did this for the 2003 server we were able to use printmig to create a script that the user only ha

  • Dought in data migration

    Hi Guys ,            I have a small dought related to data migration . Like i have a field  FISCPER - Fiscal Year /Period is available in the Datasource (Example, 0FI_GL_6) but not available in BSEG,BSEG_ADD ,ZTABLES, FAGLFLEXA Tables.. How to get in

  • Can someone review my working program and..

    Let me know if I wrote this out clearly and if it seems to be written alright for someone with a few days of Java. Just looking for advice or comments. Do not need anything fixed or anything like that its working how I need it to. Thanks you guys are

  • Sound doesn't work

    Hello, Yesterday I decided to do a fresh Arch install. Everything worked fine, except my sound. Here's what I did: - Added myself to group audio when I created my account - Installed amarok-base with xine and gstreamer engines. - Found out that amaro