Limit PO - Confirmation with Time and Material

To All:
We are in SRM 7.0 - Classic Scenario and ECC 6.0 EHP4.
We implemented the use of Limit PO in SRM to enable us to create a PO for Services that will give us the Value Limit and Expected Value functionality. In our scope the Limit PO can be confirmed in SRM for Time Entries and Material(s). Unfortunately we can only enter time and if we add material by clicking Add Item dropdown and choose As Free Description. We are getting an error message Inconsistent Parameter During Method Call after we enter the item type as material and the of measure as ea.
We did not implement SUS and if we do it in ECC through ML81N transaction, we can create Service Entry Sheet with time and materials.
Any direction on how to resolve this issue is appreciated.
Thank you all very much.
Mike

Hi
to understand SAP design funtionality . not to solve your issue
Note 502176 - Confirmation for mixed Backend goods/service purchase order
Symptom
1. When you enter a goods/services confirmation, the system displays the same purchase order several times in the search result.
2. When you expand the service purchase order item in the search, the system displays the material items.
3. When you create a confirmation for the "material portion" of the purchase order, the system proposes the services of the first service purchase order item.
Other terms
eCommerce, Enterprise Buyer professional, EBP, BBP, B2B, BBPCF01, BBPCF02, BBPCF03, BBP_CF, SAPLBBP_CF, Backend, service
Reason and Prerequisites
You enter the confirmation for an (R/3)-Backend purchase order which contains both material items and service items.
Solution
Ad 1:The display in the search result is correct!
An entry is generated in the search result for EVERY service item. In addition, ONE other entry is generated for the total of all material items.
Background:You cannot post any mixed goods and service confirmations in the R/3 system.
Every Backend service purchase order item can include one or several service items as well as a limit, however, which are NOT broken down in the search result.Ad 2 and ad 3:Implement the attached program corrections.
Muthu

Similar Messages

  • I am trying to find an app that will track the usage on my iphone with times and dates to see what was accessed on my phone when I was away from it and what if anything was done eg deleted messages viewed facebook etc?

    Hi! I am trying to find an app that with track everything that is done on my phone with times and dates? im not really woried about call usage and texts sent I need it to view what has been done - for example:
    Messages received
    Messages deleted
    Facebook viewed
    Messages viewed
    Internet viewed and what?
    I just have an issue with someone using my phone - I used to track this through double clicking the home button and roughly knowing in what order I had been on things but they have sussed this one!
    Thank you!!

    No way to do that on a non-jailbroken iPhone. Why don't you just passcode protect your phone? That way no one but you can use it...unless they know your passcode.

  • Resource Related Billing: Time and Material Scenario

    Can we use internal resource time through CATS for Resource Related Billing: Time and Material Scenario instead of external time of resources through service entry sheet

    Yes you can
    Please read sap help for more details

  • ESS-portal integration with Time and Travel management(HR) in R/3

    Hi,
         Im doing with ESS-portal configuration with Time and Travel Management in R/3,So please kindly send me Documents for integration part.I'll b so thankful if u people send me docu as soon as possible.
    send me documents to [email protected]
    thanks
    pavi

    Hi
    Please go through this functional module HRMS_BIW_EXTRACT_PY1 in r/3 side to know the exact table where u r getting the data.
    There are lot of tables involved in HR-payroll info types.
    As far as your problem is concerned you take one employee and go to PA20 and analyse the payroll for each week or twice a month (depends up on ur client)
    run the report on the payroll cube and find out exactly what u want.
    Thanks
    Roopa
    Assign points if help full

  • HT4623 After updated to iOS 7.1.1, my iPad went wrong with time and date. How can I solve this?

    I have updated my iPad mini to iOS 7.1.1 recently. After updated, it went wrong with time and date even I tried to restart it or set manual time/date or set auto time/date. How can I solve this problem?

    Hello Phirum OL,
    Here is an article that will help you adjust the date and time settings on your iPad:
    iOS: Troubleshooting issues with date and time
    http://support.apple.com/kb/ts3920
    Learn the steps to take if your device has any of the following issues with the date and time.
    Incorrect date or time
    Wrong time zone being set automatically
    Issues related to automatically switching with daylight savings time
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Time and material registration application

    Hi there
    I'm a contractor, and looking looking for a time and material registration application for iPhones
    Any suggestions?
    It does NOT have to be free.
    Thanks!

    Here's mine: if you want to run this app resident on the iPhone you'll need to wait until the Apps Store and version 2.0 are available in "early July" and see if there is one there.

  • Screensaver that interacts with time and date

    Hi all
    I have been asked to create a screensaver that will show a different movie/message all week, then at the end of the week I would need to have it revert back and do the same all over.
    All 7 movies (one for each day of the week) will be located inside the SWF file, I just need to know if it's possible for the movies to change over with the computers time and date.
    Thanks
    Matt

    I do apologize for my lack of scripting chops, I'm more on the designing side so I panic a little when it comes to this kind of stuff. But would I be on the right track If I began with the following script? I have got the document set up with each days movieclip on its own keyframe (7 in total) but it's just activating that keyframe on the given day that I'm finding difficult to work out. I assume it's a condition followed by a gotoAndPlay command?
    var today_date : Date = new Date();
    var dayOfWeek_array : Array = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
    var day_str : String = dayOfWeek_array[today_date.getDay()];

  • Oracle equals_path condition NOT working with table and materialized view

    The user i am using is xdb with dba role.
    1.When i try to use the statement
    SELECT PATH FROM xdb.path_VIEW
    WHERE
    EQUALS_PATH(res, '/home/OE/PurchaseOrders/2002')=1
    the result is
    /home/OE/PurchaseOrders/2002
    2. When i drop the path_view and recreated it like materialized view with statement
    create MATERIALIZED view path_view as
    select /*+ ORDERED */ t2.path path, t.res res,
    xmltype.createxml(xdb.xdb_link_type(NULL, r2.xmldata.dispname, t.name,
    h.name, h.flags, h.parent_oid, h.child_oid),
    'http://xmlns.oracle.com/xdb/XDBStandard.xsd', 'LINK') link,
    t.resid
    from ( select xdb.all_path(9999) paths, value(p) res, p.sys_nc_oid$ resid,
    p.xmldata.dispname name
    from xdb.xdb$resource p
    where xdb.under_path(value(p), '/', 9999)=1 ) t,
    TABLE( cast (t.paths as xdb.path_array) ) t2,
    xdb.xdb$h_link h, xdb.xdb$resource r2
    where t2.parent_oid = h.parent_oid and t2.childname = h.name and
    t2.parent_oid = r2.sys_nc_oid$
    then the equals_path condition STOP working !!!
    3. The same experiment, but i recreate it like table
    create table path_view as .... using the rest of the statement ...
    Can someone help me to understand why equals_path is NOT working on table and materialized view !

    Thanks Jonah. I was under the impression that I already had it but seems like it has to be a direct priv - thru a role doesn't work.
    I granted the reqd privs and then it worked fine. Thx for your help!

  • Reset while loop with time and button?

    I am trying to get the while loop to stop and reset with a button or if time runs out. So when I switch the button it should stop the indicator; when I switch the button back on it should reset the time and start reading data again. Likewise, when time runs out it should stop the indicator and I want to flip the switch to start a new run and reset the time again. I have attached my vi for some clearification. If you have trouble understanding please let me know and Ill try and explain more. Thanks.
    Attachments:
    reseting_time_whlloop.vi ‏70 KB

    Relient wrote:
    I know my program is not efficient at all, Im inexperienced with labview and my company needs it soon so I'm trying to get it out quick. Attached is what I have so far. It is very messy!!  However it is nearly working how we want. The producer/ consumer design is needed because I am implementing this into my other program and each loop  has a different job than the other loops. This is just a mock version as I am trying to figure out the process.
    The stop buttons aren't needed but the button labeled boolean should reset the time and stop the run. When the run is stopped I want to re-enter a 'test time' and hit the button again for a new run. I just need to be able to reset the original time... Is the producer/consumer the best way to connect while loops because it seems messy?
    Again sorry if it is hard to follow and if its not the best way to go about it; I'm doing the best with what I know. Thanks for the help.
    I realize you may need this soon but you will regret it later (or the next person to touch this code) when you need to touch it again. It is overly comnplicated, messy and not very well designed. Doing a bad job quickly is never the right answer. A little extra time spent up front to do it right can save tons more time later on.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Convert  DV-AVI file from the sony camcorder into MPEG2 with time and date

    I want to capture or convert a raw DV-AVI file from the sony camcorder into MPEG2 format...this i want frame by frame conversion and i also want the metadata i.e. time and date to be captured at the same time when the conversion is done....so i want to know that which is the JAVA tool available for that ?
    pls.. kindly reply mi on the emaiID: [email protected] my contact no. is:09869256073
    with regards,
    nilesh hardikar

    I read a whole bunch of random responses to similar questions ... here's some
    Try opening the file in iMovie
    Try changing the filename extension to ".dv"
    Here's an interesting one: http://discussions.apple.com/thread.jspa?messageID=6172027
    But my personal favorite idea is to just re-export the file from a PC in a better supported codec
    (BTW If you don't have access to a PC then you can easily install Bootcamp on your Mac .... you can even download a free prerelease copy of Windows 7 to install on the Bootcamp partition if you're quick)

  • Systemic error with times and dates across all. please help

    So, having recently made the switch to the world of Apple, I am starting to get my teeth into things - however, struggeling on a couple of fronts. The first and most frustrating for me at the moment is the fact that the time on my messaging and calanders would all appear to be the same.
    When I send and receive messages on skype - they all apear with the same time on them.
    When I open my ical (tried to sync calendars with my ipad2 myself - and initially felt very please with myself) only to find that ALL events had sat as the time...throughout the entire day, and within the event box, the time (the same time as that which appears in skype) appears inside and at the begining of every entry.
    I have tried to change the date and time settings - the clock at the top right of my screen is correct and changes as the hours go by......but still no change in the skpye messaging or in ical.....so frustrating - I use skype as a business tool and at present I am not able to copy and paste peoples messages into anythign else as the time is incorrect.
    Please help

    http://forums.macrumors.com/showthread.php?t=1373272
    https://discussions.apple.com/thread/3434340?start=0&tstart=0

  • I am attempting to create a function with time and having difficulty with it

    Hello there.
    I'm trying to retrieve on B5 a number from column C corresponding to the given time on A5.
    Does anyone knows how it could be helped?
    Thank you

    Hi Alex,
    For a brief moment your screenshot came thru so here is my response:
    I added a column after "A" because a time or a date in Numbers is always both. when you type 16:45 Numbers also attaches a date. We need to strip the date out. We do that with:
    TIMEVALUE(A1)
    we put this into our new column  B and fill down. When you are done this column can be hidden. I could also have but this into the LOOKUP formula but I think this is clearer for now.
    I made your row 5 into a footer since this is where our formula is. Lets try a screenshot:
    We don't really need your column B (my C). The formula in C5 is:
    LOOKUP(B5,B1:B4,D1:D4)
    This looks for the value of B5 in B1:B4 and returns the corresponding value from D1:D4.
    Anything lower than 16:45 will return an error. You can trap that error in different ways if it bugs you. Anything above 19:45 will return the value in D4. You can decide what you want that to be.
    Hopefully the screenshot came thru; if not let me know what is not clear.
    quinn

  • Check table with Plant and material type

    xperts,
    i m trying to find a check table with fields werks and mtart.

    Hi,
    NO ,its not possible to get from only one table...
    werks  -
    T001W
    mtart----
    t134.
    Regards,
    Rohan.

  • Creating a simple graph with time and values?

    I think I'm probably just plain stupid that I can't seem to get this done, but I've been trying now for two hours and tryed the help section so some one please help!
    I have a table with quite a lot of columns.
    First column is the years, the other column are prices values for different regions.
    Why can't I pick two regions and plot them against the years????
    I can pick two regions and plot them, but then I don't get the years underneath.
    When I try to add the years, it also ends up as a value on the y-axis, while I want those as the x-axis.
    This can't be difficult... even in Excel it took me five minutes to get it, so why not here??????
    null

    A Scatter Graph takes an extra step (or two).
    Make Table with Header Row and create Columns for each data pair.
    Select data.
    Select Scatter Graph.
    Adjust X-Axis Ranges and Steps (Select Labels).
    Regards,

  • Extract time and data with a regular expression

    Hi,
    I have a string with time and date in a HTML statement.
    String s =">19:59, 18 August 2006</a> ";
    // I hope get
    String s1="19:59, 18 August 2006";or
    String s =">18:37, 4 September 1998</a>"Because of different length of months, so how use regular expression to extract it.
    The second question is how to write the string into a file.
    filename =  "A.txt";
                    File file = new File(filename);
              out=new BufferedOutputStream(
                        new FileOutputStream(file));
                   byte[] buffer = new byte[1024];
    // then what?Thank you in advance!

    If "WARNING" can never occur in the input then wedon't have to worry about making the regex not match
    it.
    Hmm, how about fool-proof? :)Bad idea, and impractical or impossible to implement. Excessively defensive coding leads to bloated, hard to maintain code, and a greater likelihood of bugs.
    Code so that you code works correctly provided the preconditions are met. It's the caller's responsibility to meet them. Don't waste time and gunk up your code trying to handle inputs that aren't allowed to occur.

Maybe you are looking for

  • Is there any template framework to generate flex pages at runtime?

    Earlier I have worked on Apache Velocity project. With a single velocity template I was able to render 800+ different jsp pages at runtime. Is there any framework/functionality similar to Velocity or Freemarker framework, in flex?

  • Error - Cannot add data to "unknown document"

    I have had this happen to me twice in two days. The file which I save constantly as I'm working on, comes up with this error and I can't open the .indd file.  I don't have any network, new external drive or installed any new updates that might affect

  • Is it possible to automate software instrument parameters in a MIDI region? And alias the region with the automation?

    I am trying to track down a detail about how automation works in Logic Pro X. What I want to know is: 1. Can I draw control-point curves (and smoothly bend them) in a MIDI region to automate a software instrument parameter (and/or smart controls)? 2.

  • Vectors - editing objects

    If i have an object and 2 vectors like below: obj O = new obj; vector V1 = new Vector(); vector V2 = new Vector(); if i then add the obj to both vectors V1.add(O); V2.add(O); then later on if i return O from V1 and edit it, eg. obj temp = (obj) V1.ge

  • How to reconcile Projects module with GL module?

    Dear Experts / Dina, If someone of you can help me in understanding the (Oracle provided) / (workaround) / mothod or procedure to reconcile Projects costing module with General ledger module ? Does Oracle Provides seeded mothods for reconcilling proj