Cannot find the Revision Level field in the item details

Hi All,
1) I have created a PR with 2 items in the R/3 Backend using the me51n transaction in which for one of the items i have updated the Revision Level field.
2) To transfer the purchase requisitions created in the above step to the SRM system(sourcing cockpit) i executed  the report BBP_EXTREQ_TRANSFER with transaction SE38.
3) Now when i go to the SRM portal and navigate to find the external requirement in the sourcing cockpit, I am not able to find the Revision Level field entered in the backend.
Can some one help.
Regards
Sam

Hi
Please go through this ->
Version Management in R/3
http://help.sap.com/saphelp_47x200/helpdata/en/8a/60b43bb7492147e10000000a114084/frameset.htm
Versioning in SRM
http://help.sap.com/saphelp_srm50/helpdata/en/42/c92d6e3ed16babe10000000a1553f6/frameset.htm
Prerequisites for Version Control in SRM
I)        You have activated the version control so that the system creates historical versions.
See the path in the IMG: SRM Server  ®  Cross-Application Basic Settings  ®  Switch On Version Control for Purchasing Documents
II) You have set up and activated the workflow for the approval of changes to active purchasing documents. See also: Approval Workflows for Documents and Objects
( Related link -> http://help.sap.com/saphelp_srm50/helpdata/en/5a/af5efc85d011d2b42d006094b92d37/frameset.htm )
Some related SAP OSS Notes ->
Note 1030548 - Revision level in SRM 6.0 connected to ERP 2005
Note 1026021 - EXTREQ interface: Data transfer structures
Note 122105 - ME51, RM06BBI0: Revision level is not filled
Hope this will definitely help.
Regards
- Atul

Similar Messages

  • Revision Level Field at the Haeder Level

    Hi,
    I want to see the revision level field in SUS at the header level(Am able to see it at the item level)
    Please let me know how to view the same at the header level.
    Best regards,
    Manu

    Hi All,
    Could anyone please provide some insight?
    Is there any userexit that I could ue or will I have to develop a call transaction to edit the PR and change the revision level??
    Regards
    Deepak

  • Cannot find row from context to build the RowKey

    I have a table with 8 attributes!
    6 attributes are varchar2(20), so the input is just in textfields, the other 2 are booleans varchar2(1)!
    To select the boolean I made 2 comboboxes with the displayvalues Yes/No and datavalues Y/N!
    When I change 1 of the 6 attributes with the textfield, everything goes fine, but when I want to edit 1 of the 2 boolean attributes I get the following error:
    oracle.jbo.JboException: Cannot find row from context to build the RowKey
    The strangest thing is that all the settings from the attributes are the same and also the code in the dataeditcomponent.
    Does anyone knows what the error means and especially how to solve it!?
    If I change a boolean value the change is saved, but the error comes before you can see the changes!

    Hi Steve,
    thanks for your help.
    These are my steps to build the application:
    0.) JDev 904, WindowsXP, IE6.x, FireBird 0.7
    1.) New Project and Wizard 'New Business Components Package',
    only DeptImpl, default VO and default AppModule
    2.) New Project, Wizard 'Complete Struts-Based JSP Application'
    only default settings
    3.) Customize config of AppModule: Referenced Pool Size = 1
    4.) Start application, connect with two different browsers (IE and firebird)
    5.) Browse page DeptView1_Browse with both browsers
    1. Browser: Link Edit --> edit&update attribute Loc of Dept 10 (no commit)
    2. Browser: Link Edit --> edit (no update) attribute Loc of Dept 20
    6.) 2. Browser: update ==> Error Message: Cannot find row from context to build the RowKey
    I have also tested JDev 9034/9033 with no error :-)
    I have build the same application in JDev 10g with ADF (no migration from other projects)
    and ran into another error message (same steps as above):
    JBO-29000: Unexpected exception caught: java.lang.reflect.InvocationTargetException, msg=null
    I don't know if my ADF-Struts project is assembled correctly but it works with just one session.
    My intention to set Referenced Pool Size = 1 was to test my code against some session releated bugs.
    I wanted to associate user information like name, role and PK with the SessionCookie instance (during login), via
    SessionCookie.setUserData(myInfos). The Information is used in VOs to get only the user related data
    and in EOs to store the real user name in an attribute like modifiedby/createdby
    (I use Tomcats as deployment platform):
    getApplicationModule().getSession().getUserData() -or-
    getDBTransaction().getSession().getUserData()
    Is there a better way to link own data to a 'session' on the level of business components?
    Can you reproduce my results?
    Ciao Markus

  • I recently upgraded to Mavericks and now don't have access to iphoto.  I cannot find my iphoto library to back the photos up before upgrading the iphoto but see the photos when I try to change screensaver?  Where are my photos so I can back them up?

    I recently upgraded to Mavericks and now don't have access to iphoto.  I cannot find my iphoto library to back the photos up before upgrading the iphoto but see the photos when I try to change screensaver?  Where are my photos so I can back them up?

    The iPhoto library should be in your user folder/Pictures unless it was moved.

  • Since I downloaded Maverick, I cannot find my External Hard Drive in the "Finder" area. I have to unplug all the time the hard drive to be recognized by my iMac. How can I fix this problem? Thank You.

    Since I downloaded Maverick, I cannot find my External Hard Drive in the "Finder" area. I have to unplug all the time the hard drive to be recognized by my iMac. How can I fix this problem? Thank You.

    Check Finderr->Preferences->General and ensure that HDs are selected for display. If so and they still don't, Reset the NVRAM/PRAM and Reset the SMC, and see if that does the trick.

  • To find the date type fields in the row and validate those date fields

    TYPES : BEGIN OF TY_MARA,
              MATNR TYPE MARA-MATNR,
              ERSDA TYPE MARA-ERSDA,
              ERNAM TYPE MARA-ERNAM,
              LAEDA TYPE MARA-LAEDA,
              MTART TYPE MARA-MTART,
            END OF TY_MARA.
    DATA : it_mara TYPE STANDARD TABLE OF ty_mara,
          it_mara1 TYPE STANDARD TABLE OF ty_mara,
           wa_mara TYPE ty_mara.
    loop at it_mara into wa_mara.
      describe field wa_mara-ersda type c_data.
    if c_data eq 'D'.
      CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
        EXPORTING
          date                            = wa_mara-ersda
       EXCEPTIONS
         PLAUSIBILITY_CHECK_FAILED       = 1
         OTHERS                          = 2
      IF sy-subrc eq 0.
    wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
        else.
            wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
      ENDIF.
      endif.
      endloop.
    This issue regarding how to find the date type fields in the row and validate those date fields.If its not a valid date ,i have to assign initial value to that.
    I've tried that for single field using describe field.Please help me do that for all fields.

    Hi Sam,
     I believe we had discussed the same issue in the below thread. Can you please refer the below one?
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d93e16ff-c123-4b36-b60b-60ccd34f6ca7/calculate-time-differences-in-infopath?forum=sharepointcustomizationprevious
    If it's not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Is there an "Access Level" field on the "Send for Shared Review" screen (Pro X)?

    I'm using Pro X, but haven't come across the "Access Level" field expalined in this on-line video http://tv.adobe.com/watch/learn-acrobat-x/getting-started-the-basics-of-reviewing/
    Is this something you can enable?

    It's only available if you select Acrobat.com as the review server.

  • I cannot find information to help me change the orientation of a video filmed in portrait format but only able to be played back lying on its side  (landscape) instead of upright. All the rotation buttons for iPhoto are not 'engaged' when it is in video .

    I cannot find information to help me change the orientation of a video filmed in portrait format but it can only able to be played back lying on its side  (landscape) instead of upright. All the rotation buttons for iPhoto are not 'engaged' when it is in video .

    Thanks OT,
    I tried the Export function but it would not allow me to choose the option of exporting to iMovie. I think you are right about needing Quicktime Pro. I opened iMovie and imported the clip from iPhoto and with some searching found the 'cropping, rotation' mechanism. So I now have a copy in the correct orientation. I plan to import/export it back to iPhoto because I want to have a copy on my iPhone to show people and I wanted to have it available as part of a slideshow I am making in iPhoto of my recent overseas trip. It is a pain that there is no simple orientating tool for the movie clips downloaded to iPhoto with the photos from the one camera.

  • Cannot find where to accept cookies in the security tab in preferences

    I cannot find where to accept cookies in the security tab in preferences.  Can someone guide me?

    If you're using safari - click on Safari -Preferences - then to privacy - and select whether to accept or deny cookies

  • Please help me to find the table for fields where the descriptions are give

    please help me to find the table for fields where the descriptions are given below
    Customer Support Administrator
    first line Support indicator

    You could also try table DD01T. In se 16,put in the description thats needed,you will get to know the respective data elements.
    Then you can use DD03L to find the respective table. This would work if the data element is not generic.
    Regards,
    Anubhav.

  • HT2688 I cannot find 'Turn on Home Sharing' in the advanced menu.  Why not?

    I cannot find 'Turn on Home Sharing' in the advanced menu.  Why not?

    I have this issue as well however to make things work I either have to stop and restart the home sharing on the iTunes Library or re logon to the iTunes account via the Apple TV......these solutions suck but they do work.

  • I cannot find confusion by new order from the film blade? please help

    I cannot find confusion by new order from the folm blade? Please help

    Nodgey,  What  country are you in?  It is available on the iTunes USA Store:
    http://itunes.apple.com/us/album/blade-music-from-motion-picture/id517531868
    However, the iTunes Store restricts it to "Album Only" purchases.  If you just want that track, you can buy it separately at Amazon MP3:
    http://www.amazon.com/Confusion-Pump-Panel-Reconstruction-Explicit/dp/B006YJNFYE /ref=sr_1_1?ie=UTF8&qid=1349220920&s=dmusic&sr=1-1

  • Cannot find an overload for "PeopleManager" and the argument count: "1".

    Every time getting following error
    Cannot find an overload for “PeopleManager” and the argument count: “1”.
    at following line
    $people = New-Object Microsoft.SharePoint.Client.UserProfiles.PeopleManager($context)
    I am referring userprofile dll from 16 hive...

    Hi,
    Can you provide the complete script in use for a further research? It would make others easier to find out the root cause of this issue.
    Here is a working demo which works in my environment, you can take it for a try:
    #Specify tenant admin and URL
    $User = "[email protected]"
    #Configure Site URL and User
    $SiteURL = "https://tenant.sharepoint.com/sites/mysite"
    #Add references to SharePoint client assemblies and authenticate to Office 365 site - required for CSOM
    Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"
    Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
    Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.UserProfiles.dll"
    $Password = Read-Host -Prompt "Please enter your password" -AsSecureString
    $Creds = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($User,$Password)
    #Bind to Site Collection
    $Context = New-Object Microsoft.SharePoint.Client.ClientContext($SiteURL)
    $Context.Credentials = $Creds
    #Identify users in the Site Collection
    $Users = $Context.Web.SiteUsers
    $Context.Load($Users)
    $Context.ExecuteQuery()
    #Create People Manager object to retrieve profile data
    $PeopleManager = New-Object Microsoft.SharePoint.Client.UserProfiles.PeopleManager($Context)
    Foreach ($User in $Users)
    $UserProfile = $PeopleManager.GetPropertiesFor($User.LoginName)
    $Context.Load($UserProfile)
    $Context.ExecuteQuery()
    If ($UserProfile.Email -ne $null)
    Write-Host "User:" $User.LoginName -ForegroundColor Green
    $UserProfile.UserProfileProperties
    Write-Host ""
    Thanks 
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • The length of the password entry field in the BEx Analyser

    Hi,
    The password is 8 characters in the BW system.
    When users changing their newly assigned passwords. When logging into the BEx Analyser, and prompted to change the password, a password entry box is displayed, with an entry field longer then 8 characters. Some users are therefore entering passwords longer then 8 characters. This is fine when they first login, but when they try come back to the system, their logon fails.
    Can something be done to restrict the length of the password entry field in the BEx Analyser?
    Many Thanks
    Jonathan

    Hi Jonathan
    we are having the same problem - did you find a way to resolve this?  I did not find any SAP notes referring to the issue.
    Regards
    Hayley

  • How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values?

    How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values? I'm using the Integrator named "Projects - Transaction Import" and a custom Layout created based on the seeded Layout named "Transaction Import - Accounted". Do I need to somehow change my Layout to make the Document accept numerical values instead of requiring alpha-numeric values? I need to be able to populate the Document with a large amount of transactions and cannot feasibly go through every transaction to add the alpha-valued name of the account segment to every segment that requires it. The segments in particular causing the problem are "Expnd Type" and "Organization Name" which are both alpha-numeric and as such contain the segment number and name; I need to be able to only have to enter the Natural Account Number (6-digit number only) and the Organization Number (5-digit number only).

    How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values? I'm using the Integrator named "Projects - Transaction Import" and a custom Layout created based on the seeded Layout named "Transaction Import - Accounted". Do I need to somehow change my Layout to make the Document accept numerical values instead of requiring alpha-numeric values? I need to be able to populate the Document with a large amount of transactions and cannot feasibly go through every transaction to add the alpha-valued name of the account segment to every segment that requires it. The segments in particular causing the problem are "Expnd Type" and "Organization Name" which are both alpha-numeric and as such contain the segment number and name; I need to be able to only have to enter the Natural Account Number (6-digit number only) and the Organization Number (5-digit number only).

Maybe you are looking for

  • PC user converting to Mac!

    I have recently bought a Mac Book and am probably going to need plenty of help when I get it! This is the 1st Mac I will have owned and I need some details as to whether or not I have made the right purchase. I originally bought it to strat developin

  • Why won't 110 min video not fit DVD when using Compressor Best 120 min

    I have a standard DV video lasting 110 minutes. I have exported it as a DV clip and imported that clip as an asset in DVD Studio Pro 4. Build fails with a not enough room on the output media message. I have also exported from FCP using Compressor set

  • User Exit  for ko01 ( Creation of Internal Order )

    Hi, My requirement is to validate the Business Area & Profit Center based on the Responsible Cost Center entered. EVEN if the Business Area & Profit Center are valid entries as per the data, they should be replaced by the Business Area, Profit Center

  • Unable to read sounds in my library.

    hello, I have a little problem, when I open a new audio track, none of my library sounds works, I can't read them. whereas when I open a software instrument track, everything works. what can I do? what manipulation have I got to do to read the sounds

  • Converted iVMP user...how to best catalog in Aperture

    version 1.5 got my attention. I have played around with it some, but am not 100% sure about it. I am currently using iView MP and like the very deep organization that is possible. Granted I sure don't need it. A bit about how I do things.... -Files a