We want to the whether the below functionality exists in SRM

We want to the whether the below functionality exists in SRM.
In the shopping cart when we click on the details against any item and get in to the follow-on documents. We have two options. 1) Display as Graphic 2) Display as table.
When we select graphic display, we get hyperlink for the order number. When we click on this link we get details pertaining to only to that specific item only that too in a tabular form (in the same screen). Is this the standard SRM functionality? Or   is there a way that when we click on this link do we get the PDF copy of the order showing all the items along with terms and conditions whcih can be saved on to our desk top.

Hi,
This is the standard behavior. If you click on the item link in SRM 5.0, it will open there in tabular form with less details. In SRM 7.0, if you click on the Related Documents tab and then PO number, system will open the PO in new window where you can Export it to Excel or Print it using Print Preview and then save it in PDF. I don't think in SRM 5.0 if there is functionality to directly save PO in PDF through SC.
Thanks,
Anshuk Saxena

Similar Messages

  • Purpose of all the below Function Modules?

    Hi All,
    What is the Purpose of all the below Function Modules?
    CALL FUNCTION 'K_REPO_PCA_AUTHORITY_CHECK'
    CALL FUNCTION 'K_PCA_RESP_AUTHORITY_CHECK'
    CALL FUNCTION 'G_CURRENCY_FROM_CT_GET'
    CALL FUNCTION 'GET_CURRENT_YEAR'
    CALL FUNCTION 'BDC_OPEN_GROUP'
    CALL FUNCTION 'BDC_INSERT'
    CALL FUNCTION 'MESSAGE_TEXT_BUILD'
    Akshitha.

    Hi,,
    G_Buffer_ReSET-->Deleting Buffer in Set Manager
    G_SET_ENCRYPT_SETID-->Conversion of Combination of Characteristics in a Set ID
    G_SET_GET_INFO-->Checks whether Set exists and Provides Information about Set
    Reward IF useful

  • Where does the supplier details exist in SRM

    Hi gurus,
      I need to know the table name in which the details of the supplier stored.
    Ex: I need the address of the supplier, Supplier Approved or not,payment terms and payment terms description
    Regards,
    Ramalakshmi.G

    Hi !
    I think not very much sure... just see ........
    You get the information in BBPMAININT service. If you're looking for the storage location, it is stored in table VENMAP
    You can get all details in VENMAP & BUT000 tables.
    Take Partner GUID from VENMAP and get all details from BUT000 table with that GUID .
    Refer these pdf also can get more clue ...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0b6ccae-71e7-2a10-4f99-b02c1d5c0ff9
    Check note 672960
    Regds
    Abhishek

  • The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.

    The below function is giving me the hours difference what I wanted, but today it is giving us the below error: 
    Msg 535, Level 16, State 0, Line 1
    The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.
    Please Help..
    ALTER FUNCTION [dbo].[GetHoursExcludingWeekdays](@StartDate datetime2,@EndDate datetime2)
    returns decimal(12,3)
    as
    begin
        if datepart(weekday,@StartDate) = 1
            set @StartDate = dateadd(day,datediff(day,0,@StartDate),1)
        if datepart(weekday,@StartDate) = 7
            set @StartDate = dateadd(day,datediff(day,0,@StartDate),2)
        -- if @EndDate happens on the weekend, set to previous Saturday 12AM
        -- to count all of Friday's hours
        if datepart(weekday,@EndDate) = 1
            set @EndDate = dateadd(day,datediff(day,0,@EndDate),-2)
        if datepart(weekday,@EndDate) = 7
            set @EndDate = dateadd(day,datediff(day,0,@EndDate),-1)
        declare @return decimal(12,3)
        set @return = ((datediff(second,@StartDate,@EndDate)/60.0/60.0) - (datediff(week,@StartDate,@EndDate)*48))
        return @return
    end
    ReportingServices

    You'll get this error if the difference between the start and end date is greater that about 68 years due to the "second" DATEDIFF specification.  Perhaps the dates are greater than the expected range due to a data quality issue. 
    Taking the advice from the error message, you could use minutes instead of seconds like the example below the version below.  This could still result in the error of the difference is greater than a couple of hundred years, though.  You might consider
    validating the dates and returning NULL if outside expected limits.
    ALTER FUNCTION [dbo].[GetHoursExcludingWeekdays](@StartDate datetime2,@EndDate datetime2)
    returns decimal(12,3)
    as
    begin
    if datepart(weekday,@StartDate) = 1
    set @StartDate = dateadd(day,datediff(day,0,@StartDate),1)
    if datepart(weekday,@StartDate) = 7
    set @StartDate = dateadd(day,datediff(day,0,@StartDate),2)
    -- if @EndDate happens on the weekend, set to previous Saturday 12AM
    -- to count all of Friday's hours
    if datepart(weekday,@EndDate) = 1
    set @EndDate = dateadd(day,datediff(day,0,@EndDate),-2)
    if datepart(weekday,@EndDate) = 7
    set @EndDate = dateadd(day,datediff(day,0,@EndDate),-1)
    declare @return decimal(12,3)
    set @return = ((datediff(minute,@StartDate,@EndDate)/60.0) - (datediff(week,@StartDate,@EndDate)*48))
    return @return
    end
    GO
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Some problems with the count function

    Hi Guys,
    I am trying to return following:
    2009 GUESTS NIGHTS between 1 and 5 = 80 guests
    2009 GIESTS NIGHTS between 5 and 10 = 100 guest
    Whe I use the combine with a similar report option (union), I issue the following query:
    SELECT saw_0 saw_0, saw_1 saw_1, saw_2 saw_2, saw_3 saw_3 FROM ((SELECT Resort.Resort saw_0, Time."Year" saw_1, "Non Revenue Facts".Nights saw_2, count(Guests."Guest Name") saw_3 FROM GUEST WHERE "Non Revenue Facts".Nights BETWEEN 1 AND 5 GROUP BY saw_1, saw_2, saw_0) UNION (SELECT Resort.Resort saw_0, Time."Year" saw_1, "Non Revenue Facts".Nights saw_2, count(Guests."Guest Name") saw_3 FROM GUEST WHERE "Non Revenue Facts".Nights BETWEEN 1 AND 5)) t1 GROUP BY saw_1, saw_2, saw_0 , saw_3 ORDER BY saw_0
    The query return just the results for nights between 1 and 5.
    I need two columns showing the count of the guests with nights till 5 and one other column showing the count of the guests with nights from 5 to 10.
    Any help would be really appreciated.
    Regards
    Giuliano

    Sorry I did not get this.
    I should still use the union statement and than build the below function in the nights fields?
    What I am trying to achieve is simply how many guests do i have with at least 1 night and max 5 nights
    and how many guests i have with at least 5 nights and a max of 10 nights.
    I should have 2 columns:
    1 label Nights between 1 and 5
    2 label Nights beween 5 and 10
    the count(guests) column should than show how many guests in the first range and how many in the second.
    Regards
    G.

  • What can be the Tech design for the following functional points

    Hi All,
    What can be the Technical Design preparation for the below Functional Design Points!
    <b>1. Search table Z100
    Select all records where
    Status (Z100-ZSTATUS) = “G”
    Date (Z100-ZDATE ) = current month minus 1
    Total price (Z100-ZTOTPR) => $5000.
    Select Z100-MATNR
    List Z100-MATNR and ZTOTPR</b>
    <b>2. Then, for each MATNR, list all equipment records where
    Equipment type (EQUI-EQTYP) = “S”
    List Material (EQUI-MATNR)
    WBS (EQBS-PS_PSP_PNR)
    UID (EQUI-UIINR)
    Serial Number (EQUI-SERNR)</b>
    <b>3. Then compare the equipment record WBS  (EQBS-PS_PSP_PNR) to the Contract Line Item WBS (VBAP-PS_PSP_PNR)
    From VBAP, select the Sales Document (VBAP-VBELN) and Contract Line Item (VBAP-POSNR)</b>
    <b>4. Then compare the Sales Document on VBAP (VBAP-VBELN) to the Sales Document on VBAK (VBAK-VBELN).
    From VBAK, select the UID indicator (VBAK-UID) and Contract Number (VBAK-BSTNK).</b>
    <b>5. If VBAK-UID is initial, go no further. No entry is required to the table.
    If VBAK-UID is not initial;
    Create 3 new rows on table Z200</b>
    <b>6. Select the UID number EQUI-UIINR
    If no record exists in table with UID number, create three new rows in table Z200 populate fields per the following table mapping.   The table mapping shows “default” values, or sources in SAP, and parameters if needed. </b>
    Can anybody tell me what is the technical design we can write for above finctional design.
    Thanks in advance.
    Thanks & Regards,
    Prasad.

    Hi,
    The functional design is very detailed and has covered almost the technical part as well. I dont think you need to add anything more. If you need to add anything then it would probably be the Selects statements. But i dont think they are required.
    But once you collect the data in internal table, what should be done. Should it be sent to smartform/script or a report output should be displayed. Or are any tables to be updated.If so, then specify the same.
    Best regards,
    Prashant

  • Node function exists - Behaviour

    Hi ,
    I want to use the simple function "exists" for checking if the Node exists. But when input is null the output is also null.. My expectation would have been that if the input is null output of the function would be false...
    What am i missing ?
    -Mahesh

    Hi,
    You can also use that logic in checking for a node.
    Also do i get maptodefault to return a boolean and check for it in an IF statement ?
    Yes, you can use it to automatically set a value to false if the node is not existing, however, the other values will not be of boolean. A complete mapping could be like this
    node --> mapWithDefault: false --> fixValues --> your if logic
    fix values should be:
    Default value: true
    key: false
    value: false
    Also if its a bug then is there a known SAP note ? ( I am on SAP pi 7.1 EHP1)
    I just tested it, it is not a bug. example,
    Root
    Parent (0..unbounded)
    --> child (0..1)
    If you use mapWithDefault to the child, but the parent is not existing. It will return a null. But if you use mapWithDefault to the parent, it will return a false if the parent is not existing. This is, of course, using normal contexts.
    Hope this helps,
    Mark
    Edited by: Mark Dihiansan on Mar 2, 2011 3:18 AM

  • HT4587 I bought an Airport Express from a supplier who told me I'd need at least iOS 5.4 on my iPad.  My first generation iPad is apparently up to date but the iOS is only 5.1.1.  Before I unpack the device I want to know whether it will work with this ea

    I bought an Airport Express from a supplier who told me I'd need at least iOS 5.4 on my iPad.  My first generation iPad is apparently up to date but the iOS is only 5.1.1.  Before I unpack the device I want to know whether it will work with this earlier version.

    Apple says that a minimum of iOS 5.0 is required. See the support document below. Look for Requirements on the left hand side of the page about half way down.
    Requirements: Compatible with iPhone, iPod touch, and iPad. Requires iOS 5.0 or later.
    https://itunes.apple.com/us/app/airport-utility/id427276530?mt=8

  • I want to be able to totally block the FaceTime functionality in my home network.  I would like to do this at the router level.  Does anyone know the hostname or IP address that the FaceTime application uses? Or which port it connects to?

    I want to be able to totally block the FaceTime functionality in my home network so my 4 kids aren't using the Facetime feature- It was easy for Skype just had to enter the work Skype on my Router Security list- and it denies access. I would like to do this at the router level for FaceTime? Only site I find in init.ess.apple.com - is this the startup site for Facetime?   Does anyone know a site I can block, hostname or IP address that the FaceTime application uses? Or which port it connects to?

    I would presume so, but it might be worth your while to experiment and play around with different combinations to see if you can block FaceTime while keeping Game Center open.  Good luck!

  • I want to upgrade my storage plan in icloud. Before that i want to know whether synchronization of data in my PC and data in one of the applications of ipad is possible through icloud or not

    I want to upgrade my storage plan in icloud. Before that i want to know whether synchronization of data in my PC and data in one of the applications like "phone drive" of ipad is possible through icloud or not?

    The Photos app doesn't currently support subfolders, it only has the one level of folder/album. You will either need to change your folder structure on your computer to be just one level, see if there is a third-party photo app in the store that copes with subfolders, or just make do. You can try leaving feedback for Apple : http://www.apple.com/feedback/ipad.html

  • I wanted to know whether i can diffuse music to the bluetooth only speakers from a airport extreme-connected hard drive through my mac?

    I'm interested in the new soundlink mini Bose wireless speakers that function only via bluetooth. I wanted to diffuse music to them from an airport extreme connected hard drive through my macbook air. I don't want to stoc music on my mac given the limited flash drive and don't want to go though wires again. Is that possible? Also I can't go with airport express since those speakers don't have the airplay function.
    Thanks a lot for your help or ideas

    Hello jeri004,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes for Mac: Moving your iTunes Media folder
    http://support.apple.com/kb/ht1449
    Best of luck,
    Mario

  • How do I reorganize my photos on iPad 2?  I need to move (not copy) photos from one album to another.  When I use the copy function to another album, and then try to delete an image from the original album, the system wants to delete the photos from all a

    How do I reorganize my photos on iPad 2?  I need to move (not copy) photos from one album to another.  When I use the copy function to another album, and then try to delete an image from the original album, the system wants to delete the photos from all albums.  Please help.

    You can't do it directly on the iPad - the new album functionality basically only allows you to copy photos into those new albums, you can't move them. The way that I think of it as working is that you are just creating pointers to the photos in those new albums, so if you then delete the original photo on the iPad you therefore automatically delete all the pointers to it.
    If you want to re-organise your albums then you will need to do it on your computer and then sync those albums over to the iPad

  • I want to transfer files from a functioning hard drive in a nonfunctioning MacBook Pro to an external drive. I have an IDE/SATA drive adapter. The files won't fit on the drive for a working computer I have. Can I use it to transfer files to the external?

    I want to transfer files from a functioning hard drive in a nonfunctioning MacBook Pro to an external drive. I have an IDE/SATA drive adapter. The files won't fit on the drive for a working computer I have. Can I use it to transfer files to the external drive?

    Good luck and you are welcome.
    Like I said, I bought one of their inexpensive enclosures and now can use the hard drive just as a source for the files that are on it...my external drives are much larger and faster so I just plug that drive in when I need something from it.
    This one is on sale for $16 http://eshop.macsales.com/item/OWC/ES2.5BPU2S/

  • I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    Hi there. Hear are some other options . Hold down for click on the track pad while restarting and keep it down all the way thru boot. Or use right click on a mouse. If it's stuck, sometimes sticking a business card in top edge of slot while trying the eject option can work.

  • I am considering the purchase of an iMac or macbook and want to know whether I can import my iTunes library of  400 albums from my Windows PC over my Home Network?  300 of these albums have been imported from CD's, so would not want to have to do that aga

    I am considering the purchase of an iMac or Macbook and want to know whether I can import my iTunes library of  +400 albums from my Windows PC over my Home Network?  300 of these albums have been imported from CD's, so would not want to have to do that again.

    Just copy the entire /Musci/iTunes/ folder from old computer to /Music/ on new computer.
    The libraries will be identical (date added, ratings, artwork, etc.).
    You can do this easily over the network.

Maybe you are looking for

  • Arch linux resolution

    Hello, Im having a problem with resolution at arch linux. I can't put anything else than 800x600 or 640x480. I installed ati drivers and I still have the same problem. Here is the output of xrandr [root@myhost ~]# xrandr Screen 0: minimum 640 x 480,

  • IPod locks up computer when plugged in.

    I have a iPod Shuffle first generation and tonight it randomly started to lock up my system when I plugged it in. The odd thing is that it will only lock up applications [aside from the Finder] that try to utilize it. I've tried restarting and all of

  • Geotag for photos shows up in the wrong arena

    I took some photos in HP Pavilion in San Jose, CA but it says they were taken in Tacoma Dome in Washington. I have an iPhone 5. It seems like all my other photo geotags are right. It doesn't bother me that much but I wanted to report the glitch.

  • I need help for repair dmg file in illustrator 5.0!

    Hi everyone, I just un-pluged my hard drive with out select eject that dmg all the my homework AI files. I tried open new file> place. I tried open with Acrobat X. I tried open and place with photoshop. I tried Recovery Toolbox for Illustrator. all o

  • How is Processing time calculated in Simulation

    Hi, How is processing time calculated for every simulation-relevant object? say for example, i have 2 objects of person type (p1 and p1) 4 human tasks (T1, T2, T3, T4) T1 assigned to p1, processing time 2hrs T2 assigned to p1, processing time 2hrs T3