SRM Contract Download - Multiple contracts in one shot

For one contract we can click on Download button while viewing the contract (Use Firefox instead if IE6 or 7. Does not work in IE) to download contract to Excel.
Is there any mechanism by which we can download a bunch of contracts in one shot to Excel ( I have > 150 contracts that need to be download). Going one by one is a time consuming affair.
Thanks

Hello Ajay,
There is no standard feature to download multiple contracts in one shot.
You will have to develop it by yourself.
Take care about performance if you download 150 contracts at same time.....
Rgds
Christophe

Similar Messages

  • Download multiple reports in one hit

    I am just wondering if there anyway to have apex to download multiple reports with one button?
    The normal way I deal with reports is create the query within shared components, and then create a button on a page that links to the print URL of the report. What I am wondering if there is anyway to have a button that will download all reports in one go?
    Thanks for help in advance,
    Trent

    Trent,
    Let's say you have two Report Queries, Employee and Department then if you want them to download with single button click
    Set button target as URL
    In URL section
    javascript:download_reports();In page HTML Header
    <script type="text/javascript">
    function download_reports()
    window.open('f?p='+'&APP_ID.'+':0:'+'&SESSION.'+':PRINT_REPORT=Employee');
    window.open('f?p='+'&APP_ID.'+':0:'+'&SESSION.'+':PRINT_REPORT=Department');
    </script>Regards,
    Hari

  • Download multiple files in one step

    Hi,
    my first try with acrobat.com with uploading some pictures which I like to share with friends led me to the question, how they can download my 18 pictures in one step. I put them in a workspace and gave them access. You can mark all files, but there is no menu point which offers you to download all files in one step.
    Is there a way to do this in one step?
    Greetings
    Mario

    Hello Mario,
    Thank you for posting. Unfortunately, there is currently no way to download multiple files at once; this functionality is high on our list of planned enhancements, so I encourage you to stay tuned for future releases.
    Best regards,
    Rebecca

  • How to delete multiple InfoObjects in one shot?

    Hello Experts,
    Is there any way to delete a bunch of InfoObjects / ODSs in one shot?
    Scenarios:
    1. We have thousands of custom IO which are no use any more and we want to get rid of these IO to save space. How to do it?
    2. We have thousands of custom ODS too which need to be deleted. We want to delete ODS which are not used any more and also the InfoObjects in ODSs which are not used by any other ODS or any other places. How do I do that in one shot?
    BTW way our BW is 3.1 version but will be upgrading soon.
    Regards,
    Mau

    Hi,
    goto RSD1 and mark the option "Free Selection of IObjs"
    Hit the Maintain button In the next screen Select your IObjs to be maintained (at this stage the system will lock the selected IObj !!)
    In the next screen mark the IObjs you want to delete
    Then Menu Characteristics / Delete (shift + F2)
    this should work.
    Alternatively, try developping an ABAP based on function module RSDG_IOBJ_MULTI_DELETE.
    hope this helps...
    Olviier.

  • How to download multiple sheets in one excel workbook

    Hi All,
            I have requirement to download multiple sheets in excel workbook. I had
    successfully downloaded multiple sheets in excel. But it was downloaded only in
    my desktop. My requirement is user selects the path and i have to download the
    data in specified path.
    Could you please help me on this?
    Thanks in Advance,
    Basha Shaik

    >>My requirement is user selects the path and i have to download the
    data in specified path.
    For this..use CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
      EXPORTING
        WINDOW_TITLE         = TITLE
       DEFAULT_EXTENSION    =
       DEFAULT_FILE_NAME    =
       WITH_ENCODING        =
        FILE_FILTER          = '.|.'
       INITIAL_DIRECTORY    =
       PROMPT_ON_OVERWRITE  = 'X'
      CHANGING
        FILENAME             = W_FNAME
        PATH                 = W_FILEPATH
        FULLPATH             = W_FULLPATH
       USER_ACTION          =
       FILE_ENCODING        =
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        others               = 4.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF NOT W_FULLPATH IS INITIAL.
      FILE_NAME = W_FULLPATH.
    ENDIF.
    regards,
    priya.

  • Fetch the characteristic of multiple  BATCHs in one shot

    Dear Expert,
    I am facing performance issue in custom report and on analysis i have found that this because of  calling the function module 'CLAF_CLASSIFICATION_OF_OBJECTS' in loop to get batch characteristics .
    Report is calling the function module  more than 60,000 to get batch characteristics.
    Is there any function module, BAPI or any class to get the all batch characteristics in one shot instead of calling individual batch .
    Thanks & Regards,
    Arun

    Directly fetch characteristic values from AUSP table instead of using FM in Loop.
    Thanks,
    Anmol.

  • Greying out multiple fileds in one shot?

    Hello,
    I am developing a interactive form (visitor info form) with webdynpro ABAP.
    In the initial screen of my_webdynpro, there are couple of radio buttons, US, Europe, Asia.
    If user selects US radio button: I have to greyout & readOnly the below 4 input text fields (pls. note these input fields are SCATTERED all around the FORM at different positions, subforms, pages, corners)
    VISITOR.Page_1.Subform_1.TextField_4.fillColor = "192,192,192"
    VISITOR.Page_1.Subform_6.TextField_17.fillColor = "192,192,192"
    VISITOR.Page_4.Subform_13.TextField_24.fillColor = "192,192,192"
    VISITOR.Page_5.Subform_21.TextField_31.fillColor = "192,192,192"
    If user selects Europe radio button: I have to greyout & readOnly the below 3 input text fields
    VISITOR.Page_2.Subform_23.TextField_21.fillColor = "192,192,192"
    VISITOR.Page_4.Subform_35.TextField_37.fillColor = "192,192,192"
    VISITOR.Page_5.Subform_39.TextField_41.fillColor = "192,192,192"
    I can achive my requirement, by writing the below code at input text field LEVEL
    if (this.rawValue == "US")
    then
    VISITOR.Page_1.Subform_1.TextField_4.fillColor = "192,192,192"
    endif
    As its tediuos, code redennecy, I want to do all US stuff (greying out all 4 fields) IN ONE SHOT, pls let me know is there any option for me, i guess GROUPing will not work for me?
    Thank you

    Hi,
    First of all, instead of greying out the fields, you could make them Read Only in this way..
    TextField1.access = "readOnly";
    To make them editable again, you could use
    TextField1.access = "open";
    As for your current problem, I think there is some amount of code that has to be repeated..
    But I have small solution in mind. Maybe it would be useful.
    1) Create 3 hidden text fields - one each for the radio button value.. (US, Europe, Asia etc)
    2) As soon as the radio button is selected, set the corresponding hidden text field to readOnly or open accordingly..
    3) In each of the text fields's 'Calculate' event , write the following script.
    this.access = Hiddenfield_US.access;
    Regards, Amith

  • SRM MDM - store multiple pricing for one entry and have it select the price based on a users site

    I've had an interesting request. We have a region where they have one supplier who will support some products for multiple sites. The sites are in different cities and so the pricing varies based on the location of the user. I know how to do price scaling in SRM MDM but wasn't sure if there was a way to have one part that could someone pick the right price based on the user. I don't think this can be done since we don't pass any "user" information in the OCI connection.
    Has anyone run into this scenario and was there some other way to not duplicate the entries or create a separate view just because the pricing was different for the same product but different site? I'm open for suggestions. I'm looking to make long term maintenance of the data as easy as possible.
    We are still running SRM MDM 5.5 SP6
    Thanks,
    Cathy

    Tom,
    Check if the below given link can give you some lead.
    http://help.sap.com/saphelp_NW04/helpdata/en/dc/dc7614099b11d295320000e8353423/content.htm
    Thanks,
    K.Kiran.

  • Background processing- download multiple itabs into one excel with tabs

    Hello,
    I want to run a report as a background job and download the outputs in excel file into different tabs.
    Problem is OLE does not run in background mode.
    Are there any other alternatives for that?
    I searched the forum and did not get any useful answer for background procesing. All the topics use for foreground processing.
    (Old query for reference:- )
    [background processing] multiple work sheets in single attachment file
    Thanks.

    Hi,
    Even i had the same issue before, what i did is, i written a program which will run in the background and stores the data in application server file, and also it sends the email to user saying that 'the data is soted in application server, to veiw please run the ZXXXX transaction code to view,
    The second transaction code is having the OLE code which will download the data into an excel sheets with more than 1 tab.
    Thanks
    Sudheer

  • Download Multiple Files in one specified location

    Hi All,
    Suppose there are many documents which user wants to download in one specified location in local system.
    So is it possible in Web Dynpro Java?
    I have read documents on FileDownload UI Element and experimented on it. But I was not able to achieve the requirement.
    I was able to download single file at a time. So that means if there are 3 file to be downloaded, user will have to click on 3 different
    FileDownload UI Element, specify the path and download it.
    Can't we make it simple for user where he/she click FileDownload once and then all files get downloaded in that path.
    Best Regards,
    Gopal

    Hi Gopal,
    Using Filedownload UI Element, you can only able to download one file.
    But if you want to download group of files once. simply use java ZIP API(java.util.zip.*) to compress all the files into .zip format and download using the filedownload UI element.
    Regards,
    Naga

  • Download Multiple Reports into one Export in APEX 3.2

    Hi,
    I have one IR and 2 SQL Report. I want to download all reports data into one CSV file instead downloading 3 times, i need all data in one file. Could anyone help me how to reslove this? if anyone have any procedure how to do, please let me know..
    Thanks Advance
    Sri

    Does any one knows abt my issue?

  • Multiple recording in one shot

    Hello all,
    I'm using captivate 8 and here is my huge problem:
    I want to do a demonstration (Software Simulation) of a software in multi languages (3 languages-> FR, EN, DE)
    Is there a solution to launch only one software simulation (demonstration) and retrieve 3 projects in my 3 different languages (tooltips + background) ?
    If it's not possible with Captivate, should I do 3 recordings for a software with 3 languages, or 10 recordings if my software has 10 different languages ? ...
    Is there a simple solution ?
    Thank you very much for your help.

    Try this (not my instructions and I haven't tried it, but it apparently does work):
    "Using the 'send unix command' send the following; run as root:
    dscl . -passwd /Users/username newpassword
    (replacing username with the short name of your local user account and newpassword with ... well ... the-new-password)
    Also take care in using some characters (like spaces, single quotes, double quotes and others) since they may do things in the unix shell that you're not going to expect. In short TEST this with a single host (then maybe 2 and then 3 or 4) first before trying to change 100 machines all at once. In fact, it might just pay to have a 2nd local admin account just in case things get really mucked up.
    Also remember that if you're changing the password of the account you're using to run ARD you'll need to re-authenticate with the machine('s) using the new password before ARD will be able to work with them again."

  • Is it possible to download/Upload more that one AOL objects using FNDLOAD.

    Hi,
    I need to download responsibilities and then its will need to migrate in PRD using fndload.
    in my case, i have more 50 responsibilities. i want to download all responsibilities in one shot using FNDLOAD commnad. same way to upload in other instance in one shot.
    Is it possible to download/upload more than one AOL object like Repsonsibilities,menu, function, lookup, flexfield etc using FNDLOAD in Oracle Apps R12.
    configuration :
    EBS : r12.1.2
    DB : 11gR3.
    Thank you,
    Nitin

    Try this
    $ FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct file_name.ldt FND_RESPONSIBILITY RESP_KEY="%SYS%"
    Log filename : L2117062.log
    Report filename : O2117062.out
    $ more L2117062.log
    L2117062.log
    +---------------------------------------------------------------------------+
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    module:
    +---------------------------------------------------------------------------+
    Current system time is 25-MAR-2013 11:48:55
    +---------------------------------------------------------------------------+
    Downloading FND_RESPONSIBILITY to the data file file_name.ldt
    Downloaded FND_APPLICATION WMS
    Downloaded FND_RESPONSIBILITY WMS DW_SYSADMIN
    Downloaded FND_RESPONSIBILITY WMS LSP_SYSADMIN_KEY
    Downloaded FND_APPLICATION CS
    Downloaded FND_RESPONSIBILITY CS CS_KB_SYSTEM_ADMIN
    Downloaded FND_RESPONSIBILITY CS CS_KB_SYS_ADMIN
    Downloaded FND_APPLICATION ICX
    Downloaded FND_APPLICATION FND
    Downloaded FND_RESPONSIBILITY ICX SYSTEM_ADMINISTRATION
    Downloaded FND_APPLICATION PA
    Downloaded FND_RESPONSIBILITY PA PROJECTS SYSTEM ADMINISTRATOR
    Downloaded FND_APPLICATION SYSADMIN
    Downloaded FND_RESPONSIBILITY SYSADMIN XX_SYSADMIN_CUSTOM
    Downloaded FND_RESPONSIBILITY SYSADMIN SYSTEM_ADMINISTRATOR
    Downloaded FND_APPLICATION PV
    Downloaded FND_RESPONSIBILITY PV SYS ADMIN
    Downloaded FND_APPLICATION CSS
    Downloaded FND_RESPONSIBILITY CSS CSS_DEF_SYS_ADMIN_RESP
    Downloaded FND_RESPONSIBILITY CSS CSS_DEF_SYS_ADM
    Downloaded FND_APPLICATION FLM
    Downloaded FND_RESPONSIBILITY FLM SYSTEM_ADMINISTRATOR-71451394
    Downloaded FND_APPLICATION GMA
    Downloaded FND_RESPONSIBILITY GMA OPM_SYSTEMS
    Downloaded FND_APPLICATION IBU
    Downloaded FND_RESPONSIBILITY IBU IBU_SYS_ADMIN
    Downloaded FND_APPLICATION IBY
    Downloaded FND_RESPONSIBILITY IBY IBY_OAUI_ADMIN_SYS_RESP
    Downloaded FND_APPLICATION JA
    Downloaded FND_RESPONSIBILITY JA JAI_SYSADMIN
    Downloaded FND_APPLICATION JTF
    Downloaded FND_RESPONSIBILITY JTF JTF_FM_SYSTEM_MANAGER
    Downloaded FND_APPLICATION MSD
    Downloaded FND_RESPONSIBILITY MSD MSD_EOL_SYSADMIN
    Downloaded FND_RESPONSIBILITY MSD MSD_SOP_SYSADMIN
    Downloaded FND_RESPONSIBILITY MSD MSD_SYSADMIN
    Downloaded FND_APPLICATION XDP
    Downloaded FND_RESPONSIBILITY XDP OP_SYSADMIN
    Downloaded FND_RESPONSIBILITY XDP OP_SYS_ADMIN
    Downloaded FND_APPLICATION XNP
    Downloaded FND_RESPONSIBILITY XNP NP_SYS_ADMIN
    Downloaded FND_RESPONSIBILITY XNP NP_SYSADMIN
    Downloaded FND_APPLICATION AHM
    Downloaded FND_RESPONSIBILITY AHM OHM_SYSTEM_ADMINISTRATOR
    Downloaded FND_APPLICATION CN
    Downloaded FND_RESPONSIBILITY CN CN_INC_SYS_ADMIN
    Downloaded FND_APPLICATION IMT
    Downloaded FND_RESPONSIBILITY IMT IMT_SYSADMIN
    Downloaded FND_RESPONSIBILITY IMT IMT_SYS_MONITOR
    +---------------------------------------------------------------------------+
    Concurrent request completed successfully
    Current system time is 25-MAR-2013 11:48:55
    +---------------------------------------------------------------------------+HTH
    Srini

  • Download multiple rows as pdf

    Can you download multiple rows at one time as pdf's or do you have to do them each individually?  It would save a ton of time. 
    Thanks,
    kristin

    Sorry this is not a supported feature.
    Andrew

  • Creation of multiple contracts in ERP backend from 1 GOA in SRM

    Hello fellow SRM'ers, we are on SRM 5.5 and we have a scenario where we create a GOA in SRM and it get's created as a contract in the ERP backend system.  This is working fine.  Now our client would like to have multiple contracts created in the backend, one for each company when the GOA is saved.  I found OSS note 646903, statement #2 that explains how to code the badi bbp_ctr, but is this all that is required to do this?  It seems to me that the code in BBP_CTR will only create 1 contract/idoc.  Can anyone tell me how we generate an idoc/contract that we want to create in ERP backend?  Or is this how it's done?
    Points will be rewarded for usefull answers.  I have read most of the posts on this forum and have not found any answers yet.
    Thanks,
    Marty

    Hi,
    Please go through the below explanation from SAP documentation which says the no of contracts that would be created in the backend depends on
    --If you activate grouping logic for locations in GOA from SPRO under cross aplication settings, items belonging to the same release-authorized purchasing organization, but different locations, can be grouped together into one backend contract. This requires a 1:1:1 relationship between an item, the release-authorized purchasing organization, and the location. This means that for each item, you can only assign one release-authorized purchasing organization, and one location, in order to release the GOA.
    If you do not select this indicator to activate the grouping logic for location, a separate backend contract is created for each item belonging to the same release-authorized purchasing organization, but with different locations. Only items referring to the same release-authorized purchasing organization and location can be combined into one backend contract.---
    So the bottomline is by default, when we distribute one separate contract is created for each location.
    Hope this clarifies.
    Regards,
    RRK

Maybe you are looking for

  • Proxy - ABAP mapping - file with content conversion

    Scenario goes from ECC (proxy) to XI then I do ABAP mapping.  I have tested the ABAP mapping with SXI_mapping_test transaction.  My ABAP mapping puts the payload back into XML and then the data goes to a file adapter where I also use content conversi

  • ADF Tree with several sublevel : how to dinamically change labels ?

    Hello, I defined a tree (not treetable) like this Label (12)   Sublevel (5)     Another (0)   Second (1) Label Two (5) ...  The number is corresponding to the number of element present in the corresponding level, number could be different depending o

  • Only Customized payment terms in selection list

    Dear all, What are settings/customization reqd. for only customized payment terms to appear on selection list in any of the purchasing documents ?

  • Display an Image in a Java application !

    Hi all ! Really i want to display an image in a java application , i know how to do it in applets but this method does not work in applications so please help me to do that in an application ,thanks .

  • Easing in onRollOut function

    How would I work Easing into this? mcFloat.onRollOut = function(){ this.play(); Where mcFloat is floating across the screen on a guide, onRollOver it stops, onRollOut mcFloat would continue on its way, but I'd like to use easing to give the effect th