Export Transports from WebAS6.2 BSP Minisap

I have installed in my notebook the WebAS 6.2 minisap BSP system. It is working very fine, but now I am planning to remove it before installing the NSP (6.4).
The problem I have is that I have a lot of custom code there that I would like to port to the new version. For that I was planning to release a transport requests and catch the COfile and Data files from the trans directory.
It doesn't work. I guess it is because I am exporting to knowhere and since there are no routes I don't see the files in my TRANS directory.
Any suggestions to be able to export a transport requets from BSP system so I can import it to NSP?
What do I need to configure? (TMS is already configured)
Thanks
Message was edited by: Leonardo Araujo

You will need to setup a virtual transport route.
http://help.sap.com/saphelp_nw04/helpdata/en/c4/6045377b52253de10000009b38f889/frameset.htm

Similar Messages

  • Exporting Tables from BSP to Class Methods

    Afternoon Everybody,
    in true SAP OSS Message style I post this question on it's own thread to enable maximum value from the reward points.
    Question:
    I have a BSP, in an event in my BSP I call a method in my class.
    I have mastered Exporting parameters to the methods from the BSP and Importing parameters back to the BSP from the methods, but now, I need so Export a table to the method and I don't know how to.
    Also, in combination with this, when I create the method I am able to setup the importing parameters, but how can create/define the importing table ?
    If this is not clear I will add more info.
    Thanks for your help,
    Tomas.

    Tomas,
    The key to problem is always to learn a few "nice" things defined in the system. So let me see. The first problem you have is that methods are declared of the form:
    method <parm> <direction> TYPE [REF TO] <t>
    parm = the name of the paramter
    direction = IMPORTING|EXPORTING|CHANGING|RETURNING
    t = type of parm
    However, in this type it is not possible to write that you want "type of table". You can only use predefined types (either internal or indictionary).
    Having said this, most people with extensive ABAP experience before the OO-wave, tend to use character types all the time. However, we nearly always use only type string. And exactly for this type there is a type string_table.
    So the code would be:
    <u>Declaration:</u>
      method lines changing type string_table
    <u>Calling:</u>
      DATA: t TYPE string_table.
      APPEND 'Hello' TO t.
      APPEND 'World' TO t.
      class=>method( CHANGING lines = t ).
    <u>Method Implementation:</u>
      DATA: line LIKE LINE OF lines.
      LOOP AT lines INTO line.
        TRANSLATE line TO UPPER CASE.
        MODIFY lines FROM line. " write back
      ENDLOOP.
    <u>Better Method Implementation (works directly on row):</u>
      FIELD-SYMBOLS: <line> LIKE LINE OF lines.
      LOOP AT lines ASSIGNING <line>.
        TRANSLATE <line> TO UPPER CASE.
      ENDLOOP.
    These two types <b>string</b> and <b>string_table</b> goes a long way. The other two types that I often use are <b>ihttpvnp</b> and <b>Tihttpvnp</b> (table): they are good for name/value pairs of strings.
    Now is the time that you should invest 30 minutes reading each time that you run into a problem. You have the framework, just check up on one aspect each time. (I usually use online help, for example to understand MODIFY for writing this text.)

  • Import and Export transport requests on Netweaver 2004s Sp11 Sneak Preview

    Hi Experts,
    I have configured the transportation system <STMS> in order to import and export transport requests on the NSP system. The configuration is working properly as files can be imported and exported out of the C:\sapmnt\trans directory. (configuration distributed by STMS -> Overview -> Systems -> Extras -> Distribute TMS Configuration, Folder SAPMNT shared).
    The problem I'm facing with the import of some example transports is given by the hanging import queues. In phase 'Import ABAP Dictionary Objects' I have the following message for almost all objects -> '... was not imported in this step'.
    I tried to solve this issue by running SE38->RDDNEWPP with DDIC user to schedule job RDDIMPDP for TP imports. I also made the config in TP_DOMAIN_NSP.PFL with SYSTEM_PF = C:\SAP\NSP\SYS\profile\DEFAULT.PFL.
    The error is still in logfile SLOG0732.NSP
    ERROR:       The following call returned with exit code 7:
    ERROR:         sapevt.exe SAP_TRIGGER_RDDIMPDP -t name=NSP
    and logfile dev_evt
    ERROR ***: MsSndTypeOnce, rc = -20
    ERROR ***: Event raise failed
    With the exports there is a similar issue in the EXPORT phase, given the note
    0 entries from WDY_APPLICATIONT exported.
    Batch process is available (parameter rdisp/wp_no_btc = 1)
    Profile has been activated by rz10->utilities->import profile->ofactive servers.
    Any ideas what still can be wrong? Does the import export and DDIC activation really work with the sneak preview?
    Thanks
    Christoph

    Hi Peter
    First of all thanks for your advice.
    I did No. 1. 2. 3. steps.
    Step 4. reacts with the folowing error message.
    Transport control program tp ended with error code 02008.
    Errors: error in transportprofile (param missing, unknown).
    My  license expires in four days. I tried to extend it via http://www.sap.com/minisap
    1. System-ID *   
    2. Hardware-Schlüssel (HWID) *   ?
    3.Systemnummer  ?
    What is to be entered in 1 and 2.
    Where should I look for HWID and Sysnr ?
    Thanks a lot again for your help
    With regards
    Fisseha

  • Moving XI transports from QA to Prod server

    Hello,
    We are getting ready to send our XI transports from the QA server to the production server.  We are currently using the file transfer method - we have not yet finished setting up the CMS server. 
    Now my question is this:
    For the Integration Repository, am I supposed to send the same file created from our dev server to the production server, or do I create a new transport file from our QA box and send that file to production?  Same question applies to the Integration Directory. 
    For example, the FileA.tpz gets created in the dev server, exported to the QA server.  Developers are done testing in QA and want to move the objects to production.  Should I export the same FileA.tpz to the production box OR generate a new transport file from the QA server (FileB.tpz) and send that to production box instead?
    Thanks in advance.

    Joy,
    Ideally you should move from Dev  to QA and from QA to Prod. Then everything will be in sync. If you move directly from Dev to Prod and if there any changes then they will not be in QA. So this should not happen.
    Because only after developement you will move to QA. Once when you test in QA then you will move to Production from QA.
    Check this weblogs for further info:
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    /people/marion.schlotte/blog/2006/03/30/best-practices-for-nwdi-track-design-for-ongoing-development
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    ---Satish

  • How to open a web page from a BSP ? Or swap from the actual URL to another?

    Hi,
    I have a BSP, executing some data loading. It works fine.
    I am trying to enhance it by adding a call to another URL, at the end of the program.
    The same code works when I execute it from transaction SE38. However, when this is executed from the BSP itself, the return code of the function CALL_BROWSER is 2.
    I made som debugs, and the CALL_BROWSER function executes another function which is WS_QUERY. And there, SAP seems not being able to find wich system it is running on.
    Has someone done that before?
    Here is the code of my BSP (the same that works in SE38):
    DATA : appname      TYPE string,
           ls_page_name TYPE string,
           cb_true      TYPE boolean,
           cb_false     TYPE boolean,
           url          TYPE string,
           c_url(2054)  TYPE c.
        MOVE : 'ZPC_STKVTES'     TO appname,
               'zpc_stkvtes.htm' TO ls_page_name,
               'X'               TO cb_true,
               '-'               TO cb_false.
        CALL FUNCTION 'UPWB_GET_APPLICATION_URL'
          EXPORTING
            application          = appname
            page                 = ls_page_name
            ib_additional_params = cb_true
            ib_in_subgui         = cb_false
            ic_preview_type      = 'B'
          IMPORTING
            url                  = url.
        CONCATENATE url '&bps-design_messages=X' INTO c_url.
        CALL FUNCTION 'CALL_BROWSER'
          EXPORTING
            url                    = c_url
            window_name            = ' '
            new_window             = 'X'
          EXCEPTIONS
            frontend_not_supported = 1
            frontend_error         = 2
            prog_not_found         = 3
            no_batch               = 4
            unspecified_error      = 5
            OTHERS                 = 6.
    Regards
    Laurent
    Message was edited by: Laurent THIBERT

    > Thanks, but can I use such technology within Abap?
    YES with report programs or dialog programs but not in BSP framework
    > I use the Event OnProcessing of the BSP to execute
    > many tasks, and then only I want to open or swap to
    > antoher URL.
    in that case you can either use
    navigation->goto_page(<url>) .
    or if you want to open the page in a new window.
    inoninputprocessing after all your processing done youc an set a varialbe say opennewwindow = 'YES'
    and in the layout write this code.
    <% if opennewwindow = 'YES' . %>
    <script>
          window.open( '<%= url %>', target='_balnk');
          </script>
    <% endif . %>
    Regards
    Raja

  • How can i call a zreport from my bsp page.

    Hi friends,
    How can i call a zreport from my bsp page.
    Moosa

    Hi Friend,
    These are the codings  to be wirtten in BSP for transferring values to the REPORT
    DATA:wf_date TYPE ztable-ID.
          data:seltab type standard table of rsparams,
           wa_seltab like line of seltab,
         event TYPE REF TO if_htmlb_data.
    DATA:p_value TYPE REF TO CL_HTMLB_INPUTFIELD.
    event = cl_htmlb_manager=>get_event( runtime->server->request ).
    p_requ ?= CL_HTMLB_MANAGER=>GET_DATA(
                                            request  = runtime->server->request
                                            name     = 'inputField'
                                            id       = 'i1'
    if p_requ is not initial.
      wf_date = p_requ->value.
    endif.
    clear wa_seltab.
    if wf_date is not initial.
      wa_seltab-selname = 'P_REQU'.
      wa_seltab-kind = 'P'.
      wa_seltab-option = 'EQ'.
      wa_seltab-low = wf_date.
      append wa_seltab to seltab.
    endif.
    submit *ZSAMPLEAP1* with selection-table seltab AND RETURN  .(ZSAMPLEAP1 refers to the report name and AND RETURN for coming back to the BSP page after the completion of its operation in Report )
    IMPORT int_name TO int_name FROM MEMORY ID '*zid*'.(For importing the obtained value from Report)
    In Report
    REPORT  ZSAMPLEAP1.
    SELECT-OPTIONS: p_requ FOR ztable-id  NO INTERVALS.
    SELECT SINGLE name from ztable into int_name WHERE id = p_requ-low.
    WRITE:int_name.
        EXPORT int_name TO MEMORY  ID 'zsharmila'.
    With Regards,
    SHARMILA BRINDHA.M

  • Reg: Error while transporting from Quality to Production

    Hi ,
    I am facing a problem while transporting ODS from quality to production.. The same works perfectly when i transport from Dev to quality.
    The Error Displayed while transporting is
    Start of the after-import method RS_ODSO_AFTER_IMPORT for object type
    The creation of the export DataSource failed
    Password logon no longer possible - too many failed attempts
    Error when creating the export DataSource and dependent Objects
    Error when activating DataStore Object
    The creation of the export DataSource failed
    Password logon no longer possible - too many failed attempts
    Error when creating the export DataSource and dependent Objects
    Error when resetting DataStore Object to the active version
    Kindly give me some suggestion ..
    Thanks in advance
    Regards
    Guru

    go to the source system RFC connection in SM59 and do a remote login - if you get the login page there then there is an issue with the RFC connection. also check if any other system is using the same RFC.. we had a situation where th R/3 connection was being used by 3 BI instances and everytime we reset the password , another system would lock the sme , ultimately we identified the systems and did a password reset in all the systems and then the issue got resolved.
    but then we also faced the same issue you faced and it was related to login issues - check the remote login and that will tell you.

  • Calling a WebService from a BSP

    Hi,
    I have to call a web service published in another web server from a BSP (SAP WAS 620). I know how to use the WAS as client and I also know how to create the XML. The problem is that I dont know if there is some technique or function module or something like this to create the SOAP message to send to the webservice publisher (something to automate the process).
    Also If someone has some code to share it will be welcome...
    Thanks
    Ariel
    Message was edited by: Ariel Ferreiro

    The following is the code example.  We just put all of our input parameters on the request URL.  The response body then contains the results which we parse out.  This is very similar to the HTTP interface to SAP's own content and cache server.  This example happens to be a SMS Message Provider in Eastern Eurpoe.
    data:  client    type ref to if_http_client,
             url       type string.
    ****Build the Sending URL
      concatenate
        page_srv-send_url
        `&Message=`
        message
        `&Class=`
        class
        `&Number=`
        sms_number
        `&Priority=`
        priority
        `&Project=`
        page_srv-project_name
        `&Sendingnumber=`
        page_srv-sending_number
        into url.
    ****Create the HTTP client
      call method cl_http_client=>create_by_url
        exporting
          url    = url
          ssl_id = page_srv-ssl_id
        importing
          client = client
        exceptions
          others = 1.
    ****Set the Request type to GET
      client->request->set_header_field( name  = '~request_method'
                                 value = 'GET' ).               "#EC *
    ****Make the call
      client->send( ).
    ****Receive the Response Object
      call method client->receive
        exceptions
          http_communication_failure = 1
          http_invalid_state         = 2
          http_processing_failed     = 3
          others                     = 4.
    ****Get the response content in Character format
      p_content = client->response->get_cdata( ).
      data: result_string type string,
            id_string     type string,
            junk          type string.
    ****Pull out the Result and the ID
      split p_content at `&` into result_string id_string.
      if result_string cs `Result`.
        split result_string at `=` into junk status.
      else.
        raise unknown_error.
      endif.
    Hope this helps.

  • Passing data from one bsp application to another

    Hi,
    I have few queries that most of you would have done in ur projects:
    1. I want to pass data from one bsp application to another:
    eg based upon selected row of table view which populates material no and descriprion to another application which open the entire material master data.
    Now, i have both the pages in diff bsp applications in place but unable to pass the selected material code to the second bsp application.
    Had it been two different pages of same application I was able to achieve it with set parameter()
    2. To stop the application from reprcessing the data:
    eg: Suppose I have a bsp page where user fill details of a customer and on submitinng the details a customer is created in background and the entire page is disabled by my code. Even now if the user press refresh (F5) button then another customer gets created in the background. So basically i want to avoid the reprocess of the onSubmit event
    Few lines of sample code would be very helpful.
    Best Regards,
    Saurabh Tripathi

    Hi,
    When I am writing the following code in appl1/page1:
            export abc from transactionID
            to data buffer lv_page_data.
            CALL METHOD CL_BSP_SERVER_SIDE_COOKIE=>SET_SERVER_COOKIE
              EXPORTING
                NAME                  = 'TRANSACTIONID'
                APPLICATION_NAME      = RUNTIME->application_name
                APPLICATION_NAMESPACE = RUNTIME->application_namespace
                USERNAME              = ls_name
                SESSION_ID            = runtime->session_id
                DATA_VALUE            = lv_page_data
                DATA_NAME             = 'lv_page_data'
    and following code in appl2/page2:
      CALL METHOD CL_BSP_SERVER_SIDE_COOKIE=>GET_SERVER_COOKIE
        EXPORTING
          NAME                  = 'TRANSACTIONID'
          APPLICATION_NAME      = RUNTIME->application_name
          APPLICATION_NAMESPACE = RUNTIME->application_namespace
          USERNAME              = ls_name
          SESSION_ID            = runtime->session_id
          DATA_NAME             = 'lv_page_data'
        CHANGING
          DATA_VALUE            = lv_page_data
       IF lv_page_data IS NOT INITIAL.
         IMPORT abc to transactionid
           FROM data buffer lv_page_data.
       ENDIF.
    still the code doesn't work. Please explain and guide
    Best Regards,
    Saurabh Tripathi

  • Solman project transport from one server to another

    Hi All,
    i have a small query , regarding project management . I have a Template project with some manually designed tamplate inside that. and test case created.
    Now i want to move this project with all config. , selected template and test case from one server my another solman server.
    I am hoping transport icon given below in solar_project_admin will work for me . please confirm me and let me know if other options too available   . can i use solar_migration for this activity ??
    please suggest all possible way for export (transport) this project from one server to another.
    Thanks
    gyanP

    Unfortunately, transaction SOLAR_MIGRATION is  not released to be used in the Solution Manager 4.0/7.0  and therefore is not supported.
    See also the PDF-document: 'SAP Solution Manager - Content Transfer'
    which can be found at:
    http://service.sap.com/solutionmanager
    -> Media Library
      -> Technical Papers
    Besides the "Transport Project" functionality in SOLAR_PROJECT_ADMIN for projects and the transport of testpalns from transaction STWB_2 there is no other function available/supported at the moment.
    you have to make sure that you have in the source system the corrections from the notes:
    for Projects:
    1147186  Unreleased documents are not transported
    1119462  Problems transporting projects
    1134578  Document types missing when transporting projects
    For Testplans/testpackages:
    1224283  Test plan incomplete after transport
    1246383  Transport connection for test documents in test plan

  • Transport from Non-Unicode to Unicode system

    I'd like to transfer program from SAP 4.6c to SAP ECC 6.0.
    But source system is Non-Unicode, and target system is Unicode.
    I exported transport request from SAP 4.6c into files:
    K920948.D51
    R920948.D51
    then importing into SAP ECC 6.0 by STMS and getting error:
    "Program ZRM06EF00: Syntax error in line 000000
    The program 'ZRM06EF00' is not Unicode-compatible,according to its program attributes."
    What should i do?

    Hi:
    It is required to make the change accordingly of UCCHECK.
    So upload in the higher version, and check its syntax error first and then activate.
    Regards
    Shashi

  • Transporting from DEV server to Production Server

    Dear Experts,
    Like in ABAP and other SAP modules we are having Transport Requests to transport from Dev server to Production server In XI how can we transport all the configuration done by me from Dev server to Production server.

    Hi,
    In XI we can transport in two ways :
    1) File Transport
    2) Using CMS which needs configuration to be done
    Using the File Transport you can easily the Export the Objects and Import the Objects in the Target system.
    Select the Object in the Design or Configuration ->right Click you will find Export option.
    When you select the It creates the .tpz file which can be imported in the Target System
    Using file transfer or CMS we transport xi objects.
    Transporting XI from DEV to QA
    Look into this blog for how to export / improt IR and ID objects,
    XI Software Logistics II: Overview
    XI Software Logistics 1: SLD Preparation
    Transporting IR,ID Objects using File System
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/frameset.htm
    Regards
    Ganga

  • Transporting from DEV to QA

    We have 3 different sld's for DEV,QA,and PRD systems.
    i need to transport my XI objects from DEV to QA.i'm working on standard XI contents.
    i need answers for my following questions.
    1.if i use full export for transporting SLD from DEV to QA,can i use the same tecnical systems and business systems in QA?
      Can T.S and B.S also get transported from DEV to QA?
    2.In such case how to define business systems groups and transport targets?
    pls don't send any blogs..i've all the blogs
    thanks
    Abhijit

    Hi,
    1.if i use full export for transporting SLD from DEV to QA,can i use the same tecnical systems and business systems in QA?
    Can T.S and B.S also get transported from DEV to QA?
    You can use same technical systems and Business systems.
    1. Go to Dev SLD and Export all your SWCV, Products, Technical and Business Systems. This is nothing but saving of the SLD objects as a CIM file on your local machine. You would also need to export the Technical And Business System poitning to your XI integration server .
    2. Go to the QA SLD and then import these objects exported in Step 1 in QA SLD
    3. Now, create the QA Tech and Business Systems in the QA SLD
    4. Go to the Dev Business systems imported on the QS SLD and you will have an option Transport Targets. In this map the Source Business System to the Target Business Systems.
    Make sure that all Dev Business Systems have the correspodning Transport Targets for the QA Business SYstems
    5. Now if you import the ID objects in QA , the business systems name will be renamed automatically.
    2.In such case how to define business systems groups and transport targets?
    You need to create Transport Groups on your QA SLD. One for Dev and One for QA. You can create Transport Groups only for Integration Server Business Systems.
    And this is why you would need to export the Dev XI technical System and Business System from the SLD of Dev and Import it into the QA SLD.
    2. Create the transport groups and then assign all Dev Business Systems to Dev Group, all QA Business Systems to QA group and then create the transport targets.
    You use the Option related Integration server in the Business Systems to assign a Business System to a Group.
    Refer
    Problem regarding xi transport
    Thanks
    Swarup
    Edited by: Swarup Sawant on Feb 26, 2008 11:55 AM

  • Display Qualifications from Performance BSP

    Hi,
    I am having an issue with the link (button) - "Display Qualifications"
    I am selecting this link from the BSP document_todo.htm -> BSP document of appraisal template.  When I select the link, I receive an error message regarding single sign-on.
    However, if I use the Free Enhancement to Add Qualification, by clicking the create icon on the BSP, I am able to view an additional pop-up with object type Q - Qualifications from a list.
    thanks for your help,
    Adam P.

    user9088233,
    Your request interested me so I gave it the old college try. There are several ways to go about this task but here's one that is fairly quick and easy.
    I carefully read your description of what you need from P6. I've built a test layout using the fields that you outlined. Here's what I came up with. This should bypass the issue of having to create a P6 export. My solution is to build a customized layout in P6 and copy that info and paste it into an Excel spreadsheet.+
    Open P6
    Open neccessary projects & open a new layout containing these columns:
    ....Project, WBS,Activity ID, Activity Name, Perf. %, & (any codes or user defined codes)
    Group & Sort by: Project, WBS
    ....*Display Options* = "Show Group Totals" & "Show Summaries Only", Choose "OK"
    ....*Edit*, Select, All, Copy
    Open Excel
    ....Paste Highlighted data into your new worksheet.
    Hope this helps but it's usually hard to understand exactly what you need unless I can view your data,
    Good Luck & let me know how it turns out,
    p3_scheduler
    Edited by: p3_scheduler on Feb 8, 2010 2:40 PM

  • Transport from one System to another

    Hello,
    I want to transport from one XI-System to another XI-System. I tried to make a import from the SLD but that doesn´t work, why? When i make a file transport and make changes of the transported Software-Component will there be the changes of the original Objekts in the sld?
    Thanks in advance,
    Frank

    Hi all,
    In the case when we have multiple SLD's for Dev/QA/Prod ..There has been a case of manual business system creation in QA for some scenarios. Now I need to move a new scenario into QA and I would like to do an SLD export from Dev to QA..
    1.Will this overwrite the existing business systems in QA?I have re-created the QA business sytems  in DEV with a QA target..
    2. I am taking a Backup of QA SLD before doing this.
    Any advise..
    -Teresa

Maybe you are looking for

  • Renaming files using a list of names in a txt or csv file

    Hello everyone, I'm trying to use AppleScript (although I'm a total noob to it) to rename the files in a folder (if possible using something like this - set folder to choose folder) to coincide to a list of names (in a txt or csv - can be any extensi

  • Alchemy - how to get start?

    I download the Alchemy to in Fedora 12. Possible to use in Fedora linux? How can i get this installation fix? [sun@example bin]$ uname -a Linux example 2.6.32.12-114.fc12.i686 #1 SMP Tue Apr 27 21:29:58 UTC 2010 i686 i686 i386 GNU/Linux [sun@example

  • Import Word to InDesign while keeping lay-out

    Hello I want to import a Word-file into InDesign, but I want to keep my lay-out, and I want that it's possible to still edit my Word text, in InDesign. Can anyone help me please? Grts Jay

  • Using locations in OWB

    hi, i have problem deploying the target module created in OWB 10g release 1. I have created the location and its connector but in the database location for that connector it does not show its own location name. so what does it exactly mean. how do we

  • WinPE version in W2K12 WDS?

    Trying to figure out what version of WinPE is in W2K12 and Windows Deployment Services (WDS) role installed? A command from deployment console that displays the WinPE version would be nice. Any suggestions?