Have a problem with exporting & importing project.

Hi all,
I have created my web dynpro project in my system. i tried to exported as zip file. and import in to my laptop. unfortunatly it asks, where to import this zip file and i have given my workspace in my laptop. but it doesn't accept it. Any one can help me by step by step. forget about what i have done. please give me your sugisstions.
thank you
Regards
Ravi

Hai,
Right Click on You project select export as -->zip file select location finish.
to import that one.
create new project with same name (the project old name)
file-->import -->zip file Select your zip file --> select the new project nad click finish
regards,
naga
Message was edited by:
        Naga Raju Meesala

Similar Messages

  • Problem with export / import

    Hi everybody, I am having a problem with an import. I am doing an export with a value in an user exit:
    EXPORT V_NLQNR = V_NLQNR TO MEMORY ID 'QUANTL'
    And after I call import in another program:
    IMPORT V_NLQNR = V_NLQNR FROM MEMORY ID 'QUANTL'.
    But when I check the sy-subrc I am getting 4, so I don't get anything.
    Does anybody why?? Is there a problem if I call the export from an user exit??
    Thanks in advance.

    Hello,
    I think you have the right idea.
    As a suggestion I would name my variables to make it clear which data is being
    exported/imported. I would also use different names on the left and right side of the = sign. 
    Here is a working example from programs that I use:
    In the first program
       EXPORT intercodata FROM g_data_exp TO MEMORY ID 'INTERCOWOS'.
         where g_data_exp is declared as a global variable
    In the second program
       IMPORT  intercodata TO g_data_imp FROM MEMORY ID 'INTERCOWOS'.
         where g_data_imp is declared as a global variable
    The syntax that you use ( p1 = dobj1 )  should work as well, just make sure that the variable v_nlqnr to the right of the equal sign has a value before the export.
    Regards
    Greg Kern

  • Problem with EXPORT IMPORT PROCESS in ApEx 3.1

    Hi all:
    I'm having a problem with the EXPORT IMPORT PROCESS in ApEx 3.1
    When I export an application, and try to import it again. I get this error message
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 16, column 28: PLS-00103: Encountered the symbol "牃慥整㈰㈯⼴〲㐰〠㨷㐵㈺′䵐" when expecting one of the following: ( - + case mod new not null <an identifier> <a double-quoted delimited-identifier> <a bind variable> avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp in
    As a workaround, I check the exported file and found this
    wwv_flow_api.create_flow
    p_documentation_banner=> '牃慥整⠤㈰㈯⼴〲㠰〠㨷㠵㈺′äµ
    And when I replace with this
    p_documentation_banner=> ' ',
    I can import the application without the error.
    somebody knows why I have to do this??
    Thank you all.
    Nicolas.

    Hi,
    This issue seems to have been around for a while:
    Re: Error importing file
    I've had similar issues and made manual changes to the file to get it to install correctly. In my case, I got:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful.<br>ORA-02047: cannot join the distributed transaction in progress<br>begin execute immediate 'alter session set nls_numeric_characters='''||wwv_flow_api.g_nls_numeric_chars||'''';end;There are several suggestions, if you follow that thread, about character sets or reviewing some of the line breaks within pl/sql code within your processes etc. Not sure what would work for you.

  • Problem with export/import in back ground

    Hi Experts,
    I am having a requirement in which i am exporting an internal table to memory from one program and importing that in another program. in foreground it is working fine. But in background it is not working. Is there any work around.
    Here is sample code.
    Program1:
    types:
      begin of tab_type,
        para type string,
        dobj type string,
      end of tab_type.
    data:
      id    type c length 10 value 'TEXTS',
      text1 type string value `IKE`,
      text2 type string value `TINA`,
      line  type tab_type,
      itab  type standard table of tab_type,
        itab1  type standard table of tab_type.
    line-para = 'P1'.
    line-dobj = 'TEXT1'.
    append line to itab.
    line-para = 'P2'.
    line-dobj = 'TEXT2'.
    append line to itab.
    free memory id 'TD'.
    export itab to memory id 'TD'.
    Program2:
    types:
      begin of tab_type,
        para type string,
        dobj type string,
      end of tab_type.
    data:
      id    type c length 10 value 'TEXTS',
      text1 type string value `IKE`,
      text2 type string value `TINA`,
      line  type tab_type,
      itab  type standard table of tab_type,
        itab1  type standard table of tab_type.
    refresh itab.
    import itab from memory id 'TD'.
    free memory id 'TD'.
    clear line.
    loop at itab into line.
      write: / line-para, line-dobj.
      clear line.
    endloop.
    Thanks,
    Jyothi

    Thanks for your links Venkat.
    My problem is solved by using the SHARED BUFFER.
    Here is the code i used inthe first program
            DATA: wa_invdata(10) TYPE c VALUE 'INVDATA'.
            DATA: wa_month(10) TYPE c VALUE 'MONTH'.
            DATA: wa_process(10) TYPE c VALUE 'PROCESS'.
            EXPORT wa_month_end TO MEMORY ID 'MONTHEND'.
            EXPORT e_process = it_inv_data[]
            TO SHARED BUFFER indx(st) ID  wa_process.
            EXPORT e_month = wa_month_end
            TO SHARED BUFFER indx(st) ID  wa_month.
            EXPORT e_invdata = it_tab[]
                TO SHARED BUFFER indx(st) ID wa_invdata.
         EXPORT it_inv_data TO MEMORY ID 'PROCESS'.
            DATA: number           TYPE tbtcjob-jobcount,
                  name             TYPE tbtcjob-jobname VALUE 'CRDR_ ',
                  print_parameters TYPE pri_params.
            CONCATENATE name
                    sy-datum
                    INTO name .
    *CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
       no_dailog              = 'X'
       archive_mode           = '3'
    IMPORTING
       out_parameters         = print_parameters
       out_archive_parameters = archi_parameters
       valid                  = valid_flag
    EXCEPTIONS
       invalid_print_params   = 2
       OTHERS                 = 4.
            CALL FUNCTION 'JOB_OPEN'
              EXPORTING
                jobname          = name
              IMPORTING
                jobcount         = number
              EXCEPTIONS
                cant_create_job  = 1
                invalid_job_data = 2
                jobname_missing  = 3
                OTHERS           = 4.
            IF sy-subrc = 0.
              print_parameters-pdest = 'locl'.
              SUBMIT zsd_crdr_monthend_back_process
                      TO SAP-SPOOL
                      SPOOL PARAMETERS print_parameters
                      WITHOUT SPOOL DYNPRO
                      VIA JOB name NUMBER number
                    AND RETURN.
              IF sy-subrc = 0.
                CALL FUNCTION 'JOB_CLOSE'
                  EXPORTING
                    jobcount             = number
                    jobname              = name
                    strtimmed            = 'X'
                  EXCEPTIONS
                    cant_start_immediate = 1
                    invalid_startdate    = 2
                    jobname_missing      = 3
                    job_close_failed     = 4
                    job_nosteps          = 5
                    job_notex            = 6
                    lock_failed          = 7
                    OTHERS               = 8.
    Second Program
    Program zsd_crdr_monthend_back_process.
      DATA: wa_invdata(10) TYPE c VALUE 'INVDATA'.
      DATA: wa_month(10) TYPE c VALUE 'MONTH'.
      DATA: wa_process(10) TYPE c VALUE 'PROCESS'.
      IMPORT e_invdata = it_tab[]
      FROM SHARED BUFFER indx(st) ID  wa_invdata.
      IF sy-subrc NE 0 OR it_tab[] IS INITIAL..
       No data found for the Month end processing
        MESSAGE s398(00)
           WITH 'No Data Found'.
        STOP.
      ELSE.
    found the data
        IMPORT e_process = it_inv_data[]
        FROM SHARED BUFFER indx(st) ID  wa_process.
        IMPORT e_month = wa_month_end
        FROM SHARED BUFFER indx(st) ID  wa_month.
    Thanks for your help.

  • Problems with export/import

    Hi People,
    I'm fairly new to the world of Oracle, I wonder if you could help me.
    * Imported a dump file into Oracle 8.1.7 R3
    ( Came from Oracle 8.1.7 running on HP/UX, importing onto another HP/UX
    system. Dump file is from one user and contains approx 7GB of data )
    Once imported this leaves me with approx 10% of my disk left ( its a 9GB
    partition ).
    * Ran a purge script against the user's tables that removes transactional
    data over 60 days old. This should get rid of 50-60% of the data.
    * I then exported the table data out to a dmp file
    ( Compressing Extents )
    * removed original user
    * removed rollback segments
    * removed tablespace
    * recreated tablespace
    * recreated rollback segment
    * created user
    * ran imp with the newly created dmp file
    The problem i've got, is that once I import the newly created dump file,
    it fills the disk up completely and the import never finishes.
    Please forgive me, as i'm sure i'm doing something fundamentally wrong.
    Can someone explain what i'm doing wrong and how to rectify it ?.
    regards
    /Lars

    It seems the import is failing because the export to memory fails also.
    Can you explain?
    Did you check the extended debugger facilities like memory areas?
    What is the structure/amount of data for ex- and import, same name, same data object?
    Just reveal what you are really doing, post a few code lines.
    Or not.
    Regards,
    Clemens

  • Problem with Export/Import  in background

    Hi Experts,
    I am having a requirement in which i am exporting an flag to memory from one program and importing that in another program. in foreground it is working fine. But in background it is not working. Is there any work around.
    Report 1:
    DATA:l_flag type c value 'X'.
    free memory id 'ZFLAG'.
    EXPORT L_FLAG TO MEMORY ID 'ZFLAG'.
    LEAVE PROGRAM.
    Report 2:
    DATA:L_FLAG TYPE C.
      import l_FLAG from memory id 'ZFLAG'.
      free memory id 'ZFLAG'.
      IF l_FLAG = 'X'.
      LEAVE PROGRAM.

    Hi,
    You can export the flag to database ..it is not required to be a internal tabel. You can refer to this link..
    It is explained with example
    http://help.sap.com/saphelp_45b/helpdata/en/34/8e73a36df74873e10000009b38f9b8/content.htm
    Here obj1 can be single variable..
    EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key
    This will work in Background not the Export to MEMORY statement.

  • Anyone have any problems with their FlashHelp Project displaying in different font sizes?

    I have created a Help Project with FlashHelp as the layout.  All topics were created in the same font and font size.  However, when this generated layout displays some topics appear in a much larger font.  Also some topics are displaying with mixed font size.  Any ideas on what is causing this?

    Hi all
    The first usual suspect to check is to ensure your style sheet is properly attached and being used. Following that, double check to ensure there aren't any inline styles that may be overriding what the external or linked CSS specifies. I'd be doubtful that's the case, however, as it would seem that you are only noticing a difference in output. If you had inline styling you would see it on the source side as well.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • I have a problem with my iPhoto: I want to import my photo's from my iphone to my Mac, but the program of iPhoto stucs what to do?

    I can't go further with importing my photo'sfrom my iphone > Who can help me?

    If you want help you’ll need to give us more information. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • URGENT : Problems with exporting a translated application

    Hi ! I have a problem with exporting a translated application. Effectively, I exported both applications (The normal and the translated version). I want now to apply the translation XLIFF. I want to know if it is possible to apply my old XLIFF file. The problem is that I can't select the same ID for my application.
    I really have problems!
    Anyone can help me ?

    When I import the translated version, the translation works a little bit. Effectively, all my reports appear but there is no item that appears.

  • Problem in export/import work repo !!!

    Hi All,
    Good Morning.
    I have a problem with exporting and importing repositories. The description of the problem is given below,
    I have a remote machine in that sunopsis is installed and all the developments,implementations,testing are happening there.
    Now i need to stimulate the same environment in my local desktop(ODI is installed and master,work repo is created).
    When i export the work repo from my remote machine and trying to import it in my local machine (from designer level import->work repo) after a while its saying "snp_lschema does not exists" error.
    Any one have idea why this is happening?
    Thanks,
    Guru

    Hi Julien,
    Thanks for your input. It really helpful for me.
    I need some more clarifications,
    Actually i exported my master and work repo from my remote machine (as a zip file) and saved it in my local drive (say D:/downloads/deploy.zip...)
    So when i tried to import master repo from topology ( browsing the zip file and said OK) its not doing anything, i mean nothing happens after i said OK.
    Should i have to copy this master repo zip in the Sunopsis installation folder (in IMPEXP directory) and then import it? Am i doing right?
    Please advise.
    Thanks,
    Guru

  • Problem with export files

    Hello,
    I have got the version 5.3, original.
    I have a problem with export files. After work with a lot of picture in dng format, I try to export all picture in jpg format, but the number of pictures exported are less than the original number.
    Why?
    Thank you in advance

    There is nothing you are doingt wrong, the web people need to check their Flash stuff, most importantly realyl include al lthe files you provide them with. there's a reason why it spits out 4 files...
    Mylenium

  • Issues with Export/Import using Database & Shared buffer

    Hi All,
    I have a method that calls a program via a job and I am having issues passing data between the two.
    Note that two different users process the method and program (via job) resp. This is how I am calling the second prog-
    SUBMIT ZPROGRAM
                 VIA JOB     l_jobname
                     NUMBER  l_jobcount
                     USER    i_user
                 AND RETURN.
    I need to pass data from method to  the second program and vice versa and then the method continues its processing with the data acquired from the second program.
    I have tried using Import/Export using database and also shared buffer. What I have found is that most of the times I am able to pass data from method to program. However the job takes a couple of min to execute and I think that the data is not making back to the method in time.
    I have looked at some useful forum links-
    Problem with export/import in back ground
    Re: EXPORT/IMPORT  to MEMORY
    but havent been able to find an answer yet. Any solution? Thanks in advance for your help!
    Liz

    Hi Suhas, Subhankar
    I have tested the scenario without the job previously itself and it works. Thats the reason, i am trying with the job now as my requirement is that I need to change the user while executing the second report.
    Here is an example of my import/export - I am passing the return value from the second report to the first.
    Code in second report-
    DATA: INDXKEY LIKE INDX-SRTFD VALUE 'RET1'.
    INDX-AEDAT = SY-DATUM.
    INDX-USERA = SY-UNAME.
    EXPORT RETURN1 TO SHARED BUFFER INDX(ST) ID INDXKEY.
    Code in first report -
    SUBMIT ZPROGRAM
                     VIA JOB     l_jobname
                         NUMBER  l_jobcount
                         USER    i_user
                     AND RETURN.
    Once Job close FM is executed successfully, I import the values as follows
    IMPORT RETURN1 TO RETURN1 FROM SHARED BUFFER INDX(ST) ID INDXKEY3.
    INDXKEY is having value RET1.
    However Return1 is not having any values in first report. It has some value in executed without the job
    Please note that I have tried Export/import with Database too and I am getting the same results.
    Thanks for your suggestions.
    Regards, Liz

  • Hello, i have a problem with my macbook air. When i try to open my iPhoto i should wait about 3mins to get opened it and also in it just appeared around 57000 photos! in which i have 2000. they are not mine, the photos are pics of other people or things

    hello, i have a problem with my macbook air. When i try to open my iPhoto i should wait about 3mins to get opened it and also in it just appeared around 57000 photos! in which i have 2000. they are not mine, the photos are pics of other people or things

    If you want help you’ll need to give us more information. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • I have a problem with my MacBook Pro is the almost of my app not working at all like a app store and terminal and other important apps please if u can help me as fast as you can cuz i don't wanna format it that's why am on Mac now not win ?

    i have a problem with my MacBook Pro is the almost of my app not working at all like a app store and terminal and other important apps please if u can help me as fast as you can cuz i don't wanna format it that's why am on Mac now not win ?

    Abdussalam.A,
    you mentioned that Terminal does not work at all for your MacBook Pro. What currently happens when you run Terminal? In what way does it not work?

  • Hi Guys, I have a problem with Importing Pictures onto my Mac mini with Lion installed by using a Card Reader, What is the problem here so I can get Pictures onto my Computer. ,

    Hi Guys,
    I have a problem with Importing Pictures onto my Mac mini with Lion installed by using a Card Reader,
    What is the problem here so I can get Pictures onto my Computer. ,

    Hi Noob Søren
    There are a few things that are confusing in your question.
    As far as I know, you dont have to install Time Machine on this OS as it is already installed for you. You only need to connect a hard drive to your computer via firewire or usb, click on the Time Machine icon, Open Time Machine Preference in the drop down menu and select a disk: your connected hard drive.
    You can of course reformat this connected device, partition it into a few volumes to organise data if you so wish.
    I find it strange that your mac's hard drive is divided into two volumes... perhaps this was created through bootcamp?
    You can access the configuration of your hd through Applications/Utilities/Disk Utilities.
    Clicking on one of the icons on the right hand panel will bring the details of the contents of your hardDrive and volumes. From there you can decide to erase a partition, reformat etc....
    If your hd contains more than one volume, and one of them is empty, you could decide to remove it. Back up all your important data before doing so.
    Hope this helps
    WN

Maybe you are looking for

  • How do I use my IMac as a second moniter for my Macbook Pro?

    Okay, So I would like to use my IMac as a monitor for my mbp. The IMac is a 2010 model and the Macbook is 2012 (Not the retina). I'm a music producer and I'm sick of having to switch devices so I just want to keep all my stuff on the macbook but the

  • Music app in landscape mode unusable

    Now that I have an iPhone 6+ I keep my phone in landscape mode on my dash mount in my car. As far as I can tell this renders my music control unusable. Two questions. 1. is there a simple way to put the music player controls in landscape mode. 2. if

  • Music and videos start playing fine but randomly stop and the volume bar disappears

    I have an iPhone 4S and run 6.1.3.  I start to play music or videos (youtube, ESPN, Netflix, any) and they start to play fine but then randomly stop.  The volume bar disappears as well.  But then it reappears and I can play it again.  When I do so it

  • New releases

    I would like to use in jdev 10.1.3 some Oracle components like Reports and Oracle Business Intelligence Beans. But in this release these components aren't yet integrated. A new release of developer suite is planned to do this integration? Maybe with

  • Someone else used my account

    I recently received an email stating that My apple ID was used to download NY: Hidden Crimes from the App Store on a computer or divice that had not previously been associated with that  Apple ID,  the download was initiated in Taiwan and I am in Can