Checking of min. quantity, works erroneously in last purchase and templates

Hi,
We are running SRM4 and SAP CCMv2.
We do a minimun quantity check in the catalog via BADI. It works fine, but when we do a shopping cart using the old purchases & templates option, an user error appears about the quantity.
It isn't correct because the quantity is correct in the former shopping cart but when we chose the position, the catalog is open, the quantity is set to 1 anf for that reason my check show an error, about the quantity is bellow that the minimum quantity.
Is possible to distinguish when I am working in the catalog and when I am working with the last purchase orders and template.
Thanks
Jorge

One little bump then to death it goes.
I just no longer know what to google, and the vim help pages aren't helping.

Similar Messages

  • Please help to get onhand stock report with last purchase and billed date warehouse and item wise

    please help to get onhand stock report with last purchase and billed date warehouse and item wise

    Hi Rajeesh Ambadi...
    Try This
    SELECT distinct T0.ITEMCODE , t1.ItemName, T0.ONHAND as 'Total Qty',  
      T1.LASTPURDAT ,t1.LastPurPrc
    FROM OITW T0 INNER JOIN OITM T1 ON T0.ITEMCODE = T1.ITEMCODE
    INNER JOIN OITB T2 ON T1.ITMSGRPCOD=T2.ITMSGRPCOD left join ibt1 t3 on t3.itemcode = t0.itemcode and t3.whscode = t0.whscode
    WHERE
    T0.ONHAND>0
    AND T0.WhsCode ='[%0]'
    Hope Helpful
    Regards
    Kennedy

  • My iPod says there's a problem with my last purchase and every time I try to look at my history to clear the problem it says there no connection to ITunes

    When I log into my acc it ammediatly says there's a problem with my last purchase and to go to my purchase history to clear it.  When I hit continue its suppose to take me to the history but it just loads then says cannot connect

    the itunes says that it knows that there isan ipod there, but it doesnt recognize it. I have reset the ipod, restarted my computer, and reinstalled itunes.
    Doublechecking. Have you tried a complete uninstall of both iTunes and all the other related software components (Apple Mobile Device Support, Apple Application Support, etc ...) and then a reinstall? If not, try the instructions from the following document:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

  • I'm using iPhone 4S and it was working fast once I purchased and after few months I update my phone since to 7.0.1 since then neither my wifi is working nor my Bluetooth and even my phone is working slow, after than many new updates came I did but nothing

    I'm using iPhone 4S and it was working fast once I purchased and after few months I update my phone since to 7.0.1 since then neither my wifi is working nor my Bluetooth and even my phone is working slow, after than many new updates came I did but nothing works. Kindly help me out how to solve this problem.

    Hi Sameer alamgir!
    Here are two articles that can help you troubleshoot these issues with your Wi-Fi and Bluetooth connections:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    iOS: Troubleshooting Bluetooth connections
    http://support.apple.com/kb/TS4562
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Apple TV has no sound when mirroring from Mac mini,sound works when mirroring from iPad and iPhone

    When I mirror from Mac mini to Apple TV there's no audio from Apple TV to my av amp,it works fine from iPhone and iPad,is there something I need to do in the airplay settings?

    Here's what finally solved my issue:
    https://discussions.apple.com/message/24436903#24436903
    From this Apple Community User:
    https://discussions.apple.com/people/Winston%20Churchill
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router. (Also try removing it’s power cord for at least 30 seconds)
    Reset the Apple TV (Settings > General > Reset > Reset all settings)
    Restore the Apple TV (Settings > General > Reset > Restore)
    Apparently there is an issue if you push the Apple Remote before you set your computer to mirror.  Whatever I did, it had locked it in that state.  Once I stopped mirroring, then went onto the TV screen and restarted the Apple TV (#1 above) it then allowed me to choose mirroring on my Mac and the audio automatically switched from the computer to the TV (making the computer now mute), BTW the volume needs to be maxed on the computer as that will transmit to the TV if your volume is low on the computer.  Then you can raise or lower it the way you want on your TV.
    Yay!
    Hope this helps others.....

  • Last purchase and sales price

    Dear Experts,
    I do require a report in which we can compare last purchase vs sales price of same item.
    Item Code,  description, last purchase rate, last sales rate ,     Profit  ,     %
    1234 ,            furniture   ,   1500.00  ,             1800.00  ,            300.00 ,    20%
    I can find last purchase price from master data but couldn't find last sales price.
    Any inputs will be highly appreciated.
    Regards,
    Ravi

    Hi,
    Try this query:
    SELECT case when T1.[ObjType] = 17 then 'OR' end as DocType,
    T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price] FROM OCRD T0 INNER JOIN ORDR T1 ON T0.CardCode = T1.CardCode INNER JOIN RDR1 T2 ON T1.DocEntry = T2.DocEntry WHERE T2.[ItemCode] = [%0] and T0.[CardCode] = [%1] Group by T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price],T1.[ObjType]
    union all
    SELECT case when T1.[ObjType] = 15 then 'DN' end as DocType,T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price] FROM OCRD T0 INNER JOIN ODLN T1 ON T0.CardCode = T1.CardCode INNER JOIN DLN1 T2 ON T1.DocEntry = T2.DocEntry WHERE T2.[ItemCode] = [%0] and T0.[CardCode] = [%1] Group by T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price],T1.[ObjType]
    union all
    SELECT case when T1.[ObjType] = 23 then 'QT' end as DocType,
    T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price] FROM OCRD T0 INNER JOIN OQUT T1 ON T0.CardCode = T1.CardCode INNER JOIN QUT1 T2 ON T1.DocEntry = T2.DocEntry WHERE T2.[ItemCode] = [%0] and T0.[CardCode] = [%1] Group by T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price],T1.[ObjType]
    union all
    SELECT case when T1.[ObjType] = 13 then 'AR' end as DocType,T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price] FROM OCRD T0 INNER JOIN OINV T1 ON T0.CardCode = T1.CardCode INNER JOIN INV1 T2 ON T1.DocEntry = T2.DocEntry WHERE T2.[ItemCode] = [%0] and T0.[CardCode] = [%1] Group by T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price],T1.[ObjType]
    union all
    SELECT case when T1.[ObjType] = 16 then 'SR' end as DocType,
    T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price] FROM OCRD T0 INNER JOIN ORDN T1 ON T0.CardCode = T1.CardCode INNER JOIN RDN1 T2 ON T1.DocEntry = T2.DocEntry WHERE T2.[ItemCode] = [%0] and T0.[CardCode] = [%1] Group by T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price],T1.[ObjType]
    union all
    SELECT case when T1.[ObjType] = 14 then 'AR' end as DocType,
    T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price] FROM OCRD T0 INNER JOIN ORIN T1 ON T0.CardCode = T1.CardCode INNER JOIN RIN1 T2 ON T1.DocEntry = T2.DocEntry WHERE T2.[ItemCode] = [%0] and T0.[CardCode] = [%1] Group by T1.[DocNum], T0.[CardCode], T1.[DocDate], T2.[ItemCode], T2.[Dscription], T2.[Quantity], T2.[Price],T1.[ObjType]
    Thanks & Regards,
    Nagarajan

  • I recently purchased a book and according to my bank account the payment went through buy now when I try to download anything iTunes says there was a problem with my last purchase and won't let me download how do I fix this please?? Do I have to pay again

    I Recently purchased a book from iTunes and according to my bank account the payment was successfull but now when I try to sownload anything it says there was a payment issue with my last purchase! How do I fix this? Do I have to pay again??

    Contact the store support staff at: http://www.apple.com/emea/support/itunes/contact.html for help.

  • TS1702 the walking dead in-app purchase won't work?  just says purchasing and nothing happens for over an hour?

    I just purchased a new IPAD.  App store works fine to purchase apps but when I play THE WALKING DEAD it will not allow me to purchase in-app levels??  It just says "purchasing" and nothing happens for over an hour.  I have reset, redownloaded the first version, all software is updated.  The full game can not be purchased in ITUNES so please help!

    Nobody can help you without proper system and version information or other technical details. if the update is botched, then run the cleaner tool and reinstall from scratch.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

  • Hi my iPad mini was working fine but now is just a blank screen will not respond to any buttons or connect to I tunes

    My iPad mini was working fine then screen black and will not. Respond to any buttons or connect to iTunes

    Plug it into the wall charger an wait for at least 30 minutes.
    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • My iPad mini was working very fine from last 9 months....but suddenly today I found it discharging from 100% to 34% though I didn't use it at all...and also found my mini is slightly heated up at the bottom..any help regarding this would be greatful

    My iPad mini was working very fine from last 9 months....but suddenly today I found it discharging from 100% to 34% though I didn't use it at all...and also found my mini is slightly heated up at the bottom..any help regarding this would be greatful

    Same thing happened to me with my peruvian credit card in the peruvian app store, I want to buy an app, but it says that my credit card is "not supported in the Peruvian app store"

  • My ipad mini was working fine until i installed this last update, now it wants me to reset it and it want let me , What do I need to do?

    my ipad mini was working fine until i installed this last update, now it wants me to reset it and it want let me , What do I need to do?

    Try resetting the phone:
    Press the Sleep/Wake button & Home button at the same time, keep pressing until you see the Apple logo, then release.

  • No sound.  Mute is not checked, volume all the way up on iTunes and on status bar.  What am I doing wrong or missing?  I restarted last night and it worked before that but not since, any one have any ideas?

    No sound.  Mute is not checked, volume all the way up on iTunes and on status bar.  What am I doing wrong or missing?  I restarted last night and it worked before that but not since, any one have any ideas?
    Thanks, Rob

    First off did you go to System Preferences > Sound > Output > And is the correct output selected?
    Any red light coming out of the headphone jack? If so, you'll need to re-set the little switch in there by inserting a 3.5mm jack carefully in & out 20 odd times. Or grab a toothpick (non-conductive) and a flashlight.
    Tried anything else that produces a sound? On restart do you get the chime? Perhaps check into Audio Midi Setup to ensure your output is selected correctly using the cog at the bottom left.

  • HT201250 I've been working on a newsletter and have the final version. But I wanted to check something in a version I did last week. If I choose the day in Time Machine, is there any way I can view that document without "restoring" it to replace the final

    I've been working on a newsletter and have the final version. But I wanted to check something in a verssion I did last week. If I choose the day in Time Machine, is there any way I can view that document without "restoring" it to replace the final version?

    You can drag and drop a file from TM to the desktop.
    Let's say your newsletter is on the desktop. First thing to do is to add something to the file name, say Newsletter_1.
    Next open TM as if it is just another external drive by double clicking the icon. (This is not the same as "Enter Time Machine" which you do when you want to restore.) The file hierachy in TM follows the same logic as on your hard drive. Navigate to the date you want, find the file you want, and drag and drop it where you want it to be. Because you changed the name of the most recent version you can both files in the same space.
    I do this often.
    But remember if you make a back up now you will end up with both versions in TM.

  • ITunes radio was working last night and now today I get the message An error occurred while contacting the radio tuning service. Check your internet connection, or try again later" What's up?

    ITunes radio was working last night and now today I get the message "An error occurred while contacting the radio tuning service. Check your internet connection, or try again later"
    What's up?

    Two things to try, first, reset your PRAM.
    Next, try rebooting your computer.
    Please post back with results,

  • Help my Mac mini wont work with the airpot

    I have got the Mac mini Intel Core Solo G5 model and ive got a ibook G4 my G4 works great and fine but my mac mini does not. I connect to the base station fine useing the drop down bit on the taskbar in finder and enter the password and it connects. But when i do network assistant and it asks for me to eneter the password again it just basicly frezzes for a min then says invalid password when i know that it is the write base station password. It did work once but froze again and said could not connect. and when i go into the airport utlity it can't descover the base station even though it says it is connected with a full signal, im doing the excatly same things i did with my ibook but it just wont work. Please can someone help me and tell me what i have to do or give me some support this is my last hope as apple aren't intrested. I will be very gratful!

    The software update was for Intel based Mac computers and does not specify Core Duo or Core 2 Duo:
    AirPort Extreme Update 2007-001
    This update is recommended for all Intel-based Macintosh computers and provides compatibility with AirPort Extreme base stations and networks.
    This is the update that generated a fix at www.macfixit.com because some folks have been having issues with connection with their internet provider and some people have had issue with their airport systems just shutting down.
    It was part of an auto update that was received. One of my Macs is a MacBook Pro Core Duo (not Core 2 Duo) and this upgrade (download) was part of the update check that is automatically performed.

Maybe you are looking for

  • How to tell if a machine is compromised?

    Is there a definitive way to confirm that a machine has been compromised and and allowing an outside user hidden access? I'm not quite sure what the limits are on how much the reality can be distorted. I know teh logs can be altered and system binari

  • Ipod won't sync with itunes, wiped itself, won't leave apple logo screen

    I think the problem showed up after I plugged my ipod classic into a Belkin (I think) ipod speaker dock. The next time I plugged it into my computer, it wouldn't sync with itunes. When there's no ipod plugged into the computer, itunes opens fine, but

  • Error occured in the accounting process

    Dear Gurus, Following is the error message i am getting: Starting to account all the events created ... ORA-06508: PL/SQL: could not find program unit being called occurred in AP_ACCOU NTING_MAIN_PKG.Create_Accounting_Entry<-AP_ACCOUNTING_ENGINE_PKG.

  • PDF not opening for ESS PZ11 Pay Stubs in ECC 5.0

    We are in the process of converting from 4.6C to ECC 5.0.  We use a few of the ESS applications including heavily-customized PZ11 to let our employees view their pay stubs.  In ECC 5.0, the first time the Acrobat pay stub appears, it displays a very

  • Forms personalization error

    Hello all, I am trying to personalize the Transact Move Orders form in Inventory. Business need is to make the button - "*View/Update allocation*" not displayed in the form. For this, the "*DISPLAYED*" property of this item (*TOLINES_CONTROL.OPEN*) "