VKM1 not showing consignment orders

VKM1 not showing drop ship consignment fill up orders. We use Item Category ZTSP ( 3rd party item cateogry with Credit active check in VOV7) for KB ( consignment fill up) orders. Once after order created, system is doing automatic credit check and it shows credit blocked under SO header status tab. Where as these orders are not appeaing in VKM1.
for normal items it is working fine. What triggers this????

I got the problem through debug, index table V_VMVAH not updated due GBSTK field. GBSTK will be updated when you have delivery or billing relevant item. I change the billing relevance for my item category from Proforma to billing (F).  This solved the problem. Thanks.

Similar Messages

  • CN41N and S_ALR_87013533 report not showing Production order planned cost

    Hi Experts,
    I am having issue to get total planned production order values in my CN41N or S_ALR_87013533 cost report. I am facing 2 issues :
    1. CN41N repoet does not show individual material cost planned in BOM.
    2. CN41N report and S_ALR87013533 report does not show total value but only picking fixed value.
    Example :
    1. CN41N report :
    Above screenshot shows no values in Project plan cost & Order cost column but it shows total cost as a lumpsum on top for project. I need to know how can i get material cost populated here for Project Valuated stock material?
    2. S_ALR_87013533
    This report shows Total Cost of BOM as 1 line under Material Procurement activity similar to CN41N report. Also Order value is picking from Fixed cost from planned order and total cost is added on top. How can i get Total cost picked from production order?
    Is there any Setting in PS config which allow me to pick the detail production order plan cost in both report under planned cost.
    Thanks in advance.
    Ashish

    Hi Ashish,
    I doubt whether Item level reporting  in S_ALR... (hierarchy report) is possible or not because I haven't seen item level cost in them only the lump-sum cost because they are summarized at cost object level itself. Navigation path are there which we use to go into details of cost.
    Please check the following links:
    https://scn.sap.com/thread/1743833
    (In the above thread,focus on  Mr. Mohamed Rafi comment.)
    http://scn.sap.com/thread/3530080
    http://scn.sap.com/thread/1311820
    Order cost plan in report CN41N
    Display of plan cost., CN41N | ABAP, SAP, benX AG, benXBrain,&…
    Just an additional pointer ,have a look on your costing variant and variation variant settings for material section.
    Regards
    Saurabh

  • Not showing Net Order Value in PO Currency in ALV report

    Dear all,
    Good day.
    In my ALV report i want to display net order value in PO currency which comes from ekpo-netwr field. But this field is showing 0.00 for all records. i,e value is not coming here. Please tell me how to show the value in ALV and how to show blank space when value is not in database.
    Thanks.
    Best regards.

    Hi,
    Place a break-point just before you call the ALV display "Reuse_alv_*".
    Check the value here in the column price.
    Most probably you do not have a value here which is why there is no value displayed.
    Regards,
    Jovito

  • PO Output For communication does not Show 'Purchase Order Layout' parameter

    Hi,
    I am working on Implementing PO PDF with XML data and RTF Template. I have created a new template in XML Publisher and followed the following set up steps
    Setup / Organizations / Purchasing Options / Control TAB / set 'PO Output Format' = 'PDF'
    setup / purchasing / document types / select "Standard Purchase Order" / Set the Document Type Layout to your new template.
    When I view the document from PO Summary > inquire > View Document, I get an adobe reader error
    'File does not begin with '%PDF-', how ever when I preview it from the template definition, it opens fine.
    I tried running PO Output for communication with my custom template but I don't see the parameter 'Purchase Order Layout'. The last parameter in the list is 'Include Blanket'.
    Am I missing any set up steps? However when I use the standard Purchase Order Layout in Document Types set up, the Inquire > View Document created a PDF output.
    Any help is greatly appreciated.
    Thanks,
    Sharmila

    Hi,
    I am not using a barcode font. I am using RenderX's XSL stylesheets to generate the barcode. As I said, the barcode generate's fine in the PDF on my computer but does not appear in the PDF when the code is moved to Oracle.
    Thanks,
    Suzanne

  • BEx variables not showing correct order despite ordering at query level

    Dear Experts,
    I am using a workbook with 2 queries sharing same variables.
    The Queries variable order for display in the popup screen has been re-arranged at Query designer level (query properties > variable sequence). Regenerated queries. Relogin to BEx . Re-run workbook. Same old order.
    Please advise what could be the cause. I am also wondering if this is due to personalisation.
    regards
    Bass

    Hi Bass,
    You mentioned workbook.
    If the query itself also has this problem, it can be a bug as SAP Note 1568815.
    Symptom
    The sequence of the variables in the variable screen is lost.
    You may implement the correction of this note via transaction SNOTE if the SP of your system fits.
    After that, you need to regenerate the query in RSRT.
    Regards,
    Patricia

  • Extension data not showing in order.jsp & order_change.jsp

    Hi Experts,
    My requirement is to display the gross weight of the order in Order.jsp,Order_change.jsp. I have implemented the BADI CRM_ISA_BASKET_HEAD and method GETHEAD_GET_DATA to get the gross weight.
    In the BADI I am using CRM_ORDER_READ to get the value gross weight of the order.
    Here is the code to get the extension data in Order.jsp
    <input class="textInput" 
                type="text"
                name="ZGRWT"
                value="<%= JspUtil.encodeHtml(ui.header.getExtensionData("ZGRWT")) %>"/>
    Not sure after doing this both order.jsp & order_change.jsp simply not displying any thing in the page.
    To get the extension data should I write any custom action? Not sure about the issue.

    Hello sirivaram!
    I think you should use custom action.
    You can do it like this:
    1) create custom action class extended BaseAction
    2) in this class you should pass values from ExtensionData to request.
    3) use request attributes instead extensionData() on the jsp page
    4) do not forget register your action before standart ShowBasketAction in config.xml
    My last message Re: Display String Variable on ISA JSP page, that gets value from Z java class. can help you with points 2 and 3.
    For point 4 you have to replace this code in file config.xml:
    <action path="/b2b/showbasket" type="com.sap.isa.isacore.action.order.ShowBasketAction">
    <forward name="showbasket" path="/b2b/order.jsp"/>
    </action>
    with this code:
    <action path="/b2b/showbasket" type="foo.bar.Z_ShowBasketAction">
    <forward name="success" path="/b2b/z_showbasket.do"/>
    </action>
    <action path="/b2b/z_showbasket" type="ru.sng.isa.isacore.action.order.Z_ExtShowBasketAction">
    <forward name="showbasket" path="/b2b/order.jsp"/>
    </action>
    About your issue - I suppose that ui.header can't have to access to ExtensionData or ui.header.getExtensionData("ZGRWT") return null. Anyway you will be able to debug your application and check value of ExtensionData only if you will take your own action.
    Hope this helps.
    Regards, Lev

  • MD04 Does not show Service orders for owned equipment

    Hi,
    Is there a way to make MD04 - Material Stock Requirements List, to show a particular type service order? Our loaner equipment is owned by us and goes through Repair after it comes back from a customer. We create service orders for those materials and when running MD04 we would like to see those service orders as supplies.
    Thank you very much,
    Sergiy

    Unfortunately, third party purchase orders have nothing to do with my issue. My case is service orders, repair orders for the materials we own. MD04 shows requirements as these loaners are going out to customers on customer repair orders. When they get back they get repaired and put back into our own stock and then shipped to another customer on a loaner program. If the service order is scheduled to be completed we would like to know how many are coming back into stock and make decisions based on requirements in MD04. Therefore, I would like to have MD04 show those service orders as supplies.

  • Photos not showing in order of date

    Since a recent update of iphoto, the photos in albums appear in mixed order rather than in date order which makes it difficult to find and select groups of photos. Anyone else have this problem and a solution?

    view menu ==> sort events
    LN

  • Ordered item is not showing in MD04

    Hello SAP Gurus,
    My requirement is like one material is in the sales order but dose not show as ordered in MD04.
    Could someone please help me on this.
    Thanks
    Sha

    Go to your sales order and note the schedule line category of the line item which you want to check
    In t code VOV6 for the schedule line category there is a check box for transfer of requirements near to Availabilty check tick box, If you tick that then this order for this line item will appear in MD04

  • Sales order not showing in VKM1 & VKM3

    Hi All,
    Sales document blocked for credit check, Status (VBUK) "B" is updated. But sales document number is not showing in VKM1 and VKM3  release t codes.  Header Credit status : Not approved.
    Pricing and documents perfectly completed. No issue logs in sales orders.
    I have tried those correction programs for SD documents : SDVBUK00, SDRQCR21, RVV05IVB still am not getting the document.

    Read the following OSS Notes
    1) Note 400311 - RVKRED77: Reorganization credit data, new documentation
    2) Note 735791 - Composite SAP Note: Credit update incorrect, 500
    3) Note 735163 - Composite SAP Note: Incorrect credit update, Release 4.70
    4) Note 1176872 - Composite SAP Note: Incorrect credit update, 60*
    Depending on the SAP version ,select one from 2-4.
    From note 1), it looks this program takes long time to complete. depending on the selection criteria. So I would recommend you run the program on Sunday during which most of the users would be off the system.
    The difference between 77 and 88 report looks, in the 88 report run the system won't lock SD tables.
    Regards,

  • Specific sales order not showing in VKM1

    I have this sales order that is not showing in VKM1 even the credit status in not approved just wondering because there is other sales order with the sames credit account and credit status which show in VKM1. So there are two sales order with credit status not approved with the same credit account and same credit control area but only 1 of the 2 sales orders shows in VKM1. What are the cause of this scenario?
    I check the 2 sales order in VKM4 the only difference is field OlIt (Status of credit check against oldest open items) the sales order that shows in VKM1 got status approved while the sales order that doesnt shows in VKM1 got status not approved. Is this a possible cause? Please help where I can find this status in the sales order header

    In VBUK you can check Header - Over all credit status
    In VBUP you can check the same at item level.
    VKM1 will show documents with over all credit stats = B Credit check not OK.
    The document which is not shwoing in VKM1, CHECK IN table VBUK for the over all credit status.
    Regards
    Sai

  • The billing doc is not showing in the order  documnet flow in SAP CRM 7.0

    Hi CRM Experts,
    Our CRM system has been upgraded from 4.0 to 7.0 recently.
    We have come across with one strange issue; for some orders  which are billed in ECC6.0 are not showing as next document in the CRM order under document flow in SAP GUI. Only preceding document and replicated document are showing in the CRM document flow.
    Appreciate for yor valuable solution at the earliest.
    Best Regards
    Succhi

    I have the same problem!!!   Did anyone solve this???

  • Fields for selection in FPCJ : Bank details not showing for Postal Order

    Hi Sap Gurus,
    I have a requirement in which while recieving the payment from FPCJ of type postal order i am not able to enter the bank details.
    which are available for Cheque payments.
    In our system the fields to determine the bank account and bank details fields are not showing in FPCJ for PO type payments.
    Kindly help me as to our client wants to put in the details of the bank in the FPCJ screen.
    Regards,
    Ankit

    Hi Ankit,
    I don't think there is a configuration to make the fields available for postal order in FPCJ. It needs to be customized.
    Check this link which is little bit relevant to your posting.
    BDT & Cash Desk (FPCJ) -- Removal of Postal Order Tab
    Thanks,
    VR

  • HT1551 I ordered a rental movie on my computer and want to watch it on my 1st generation apple TV and it is not showing up there...any suggestions?

    I ordered a rental movie on my computer and want to watch it on my 1st generation apple TV and it is not showing up there...any suggestions?

    I had same problem last night with a movie rental not showing up under the 'Rented' tab in iTunes/Movies on my iMac: as I had no other rentals, there was no 'Rented' tab at all.
    In iTunes 11, the Downloads icon only appears next to the Search bar while there is an active download. Once any  downloads are finished, the icon disappears.  I had no icon so I had to assume the downloading had finished (in the previous UI you could check download progress even after they had finished).
    My movie rental did, however, show up under 'Rented Movies' under the 'Movies' tab in iTunes/Devices/(select any i/device) so I knew it was somewhere in my iTunes.  Yet, we couldn't access it via Apple TV.
    I fiddle around for a bit, restarting iTunes, restarting the iMac, to no avail.  Then I did a little housekeeping and moved a different movie I'd imported awhile ago, from the 'Home Videos' tab under iTunes/Movies.  Under File/Get Info, the 'Media Kind' was incorrectly set to 'Home Video' so I changed it to 'Movie'.  Thus the file was moved over into the Movies tab.  Hey Presto!  The Rented tab suddenly showed up, and there was my rented movie!
    This is the second time a movie rental did not show up after downloading.  Unfortunately my husband initiated the download so we figured he must've messed up somehow as he's not as familiar with iTunes as me.  Hence we opted to download the movie under a different iTunes account, which worked the second time with no problem.  Needless to say the invoice for the original download had no problem in finding us, hence we were effectively being charged twice for the same movie!  We have to contact apple support (such a hassle) but hopefully they will understand the issue (that's the difficult bit) and they are usually good at refunding when they finally accept the customer is genuine in their claim.
    In case anyone is tempted to critique my method, we download rentals through iTune on our computer as we had too many problems trying to rent via Apple TV.  Often the movie was not available to watch for many hours after it was rented, even though we'd start 'download' halfway through the day and sit down at night to watch it!  We have also had problems with movies that kept stopping during viewing because it wasn't streaming fast enough.  We'd give some time and come back to viewing, only to encounter the same.  One time we gave gave up and tried again the next evening, only to find the movie expired.  There is meant to be 48 hours after you've started viewing to resume watching a movie.  Apple's only response to this was to advise we needed a broadband internet connection to stream the movie - this was despite me already telling them we have broadband.
    Anyway, I hope this helps anyone experiencing similar issues with movie downloads.

  • The Airplay icon does not show, regardless that it is clicked on display. How can I do to see the Airplay Icon in order to connect my apple TV with my Mac Pro?

    The Airplay icon does not show on my Mac Pro, regardless that it is clicked on display. How can I do to see the Airplay Icon in order to connect my apple TV with my Mac Pro?

    To check your model go to About This Mac (by clicking on the Apple icon, top left) and then select more info. If you wish to use mirroring you will need one from 2011 or later running OSX 10.8 or later. The alternative would be to use 3rd party software like Airparrot.
    About AirPlay Mirroring in OS X

Maybe you are looking for