What is purpose of .dtc folder in NWDS

Hello,
In NWDS -> Windows -> Preferences -> Java Development Infrastructure.... I am able to see a value :
C:/Users/saurabh.agarwal/.dtc
When I opened this folder...to my surprise I observed that the projects I created in NWDS also exist in this folder...!!
The workspace that I am using is :
C:\Users\saurabh.agarwal\Desktop\New folder
So the project that I created in NWDS exist in 2 places...1 is in my workspace and second is in this DTC folder.
What is significance of DTC folder....considering that I do not use NWDI....and deploy my application to some remote J2EE server....

But in my case I do not have NWDI..
But still when I create a local DC in NWDS...a folder for same is created in .dtc directory.....
still I am not able to understand wh there is this .dtc folder.......

Similar Messages

  • NWDS change the .DTC folder path name

    Hi,
    The .dtc folder can be found by navigating to the DTR workspace, usually located at: C:\Documents and Settings\<Machine_User_Id>\.dtc
    How do I change the location to be under c:\.dtc ?
    Thx

    Hi,
    why do you want to change?.
    take backup of the old folder and remove all configurations which exists in your local nwds.
    NWDS Windows->Prefernces->development configuration->URL.
    change .dtc path in the url and restart NWDS.
    Regards,
    Koti Reddy

  • Send for shared review - What type of Web server folder works?

    Hello all,
    Can someone please explain to me what type of web server folder works with "Send for shared review"?
    I have created a folder on my GoDaddy server account with full permissions... http://webservername.com/Adobe_Test but after clicking Next, I see the error, "The Shared Folder Location is not valid. Click OK and check the Status field for more information."
    1) It isn't valid? What are the valid server requirements?
    2) "...check the Status field for more information."? What Status field?
    It would have been great if I could use a Google Docs folder but that failed as well.
    What must I do to unlock this neat feature?
    Thank you

    Thanks CtDave.
    I ended up building a WebDAV server and I am now encountering a bunch of new issues. Such as:
    From my workstation, working with Acrobat.
    - After making comments. I click the top button "Publish Comments" - this works well - no errors. But when I attempt to exit the PDF, Acrobat wants to save the document. Attempting to Save results in a read-only error. After trying this, Acrobat gets into a loop where there doesn't appear to be a way to exit Acrobat (other than by Save As new file name):
    Even worse... I understood that reviewers only required the Adobe Reader in order to comment. This doesn't seem to be the case.
    When I emailed a test document for review, this is the message that pops up:
    All that is available is the original content (none of the review comments are available).
    Any ideas?

  • What does a blinking file folder with a question mark indicate?

    What does a blinking file folder with a question mark indicate?  I cannot get past it or do anything with the unit.

    glamiera wrote:
    What does a blinking file folder with a question mark indicate?
    That's the firmware telling you it can't find the operating system it's been assigned to boot from.
    It could be because it forgot somehow, or the operating system is no longer there or readable or the hardware holding the operating system has failed.
    Hold the power button to force a hardware shutdown, then reboot holding the option/alt key held down on the wired or built in keyboard, icons will hopefully load on the screen and if OS X appears, click the arrow to boot from it.
    Once in OS X, head to System Preferences > Startup Disk and select your boot drive so it can remind the firmware.
    If there is no OS X boot volume, just recovery or Bootcamp (if Windows installed) then you need to perform more work.
    Create a data recovery/undelete external boot drive
    To get a copy of your files off the drive.
    Step by Step to fix your Mac
    To fix your machine and find out (hardware test) if it's a hardware issue of some sort.

  • What is the use of FOLDER NODE in SMARTFORMS?

    what is the use of FOLDER NODE in SMARTFORMS?
    please explain.

    Hi,
    By using a folder node and checking the 'protect' checkbox, everything in that folder will be page protected.
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    Here is the procedure
    1. Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
    First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
    Here, you can specify your title and page numbering
    &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
    Main windows -> TABLE -> DATA
    In the Loop section, tick Internal table and fill in
    ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name Type assignment Reference type
    ITAB1 TYPE Table Structure
    Global definitions
    Variable name Type assignment Reference type
    ITAB2 TYPE Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g. HD_GEN for printing header details,
    IT_GEN for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by : SAP Hints and Tips on Configuration and ABAP/4 Programming
    http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Reward all helpfull answers
    Regards
    Omkar

  • What does a grey file folder and ? mark blinking mean on my macbook?

    What does a grey file folder and ? mark blinking on my macbook mean and how do I fix it???

    With 10.4, 10.5 or 10.6 put your install DVD into the optical drive (CD/DVD drive) and reboot. Be sure to either use the disc that came with your Mac, or, if you installed a later Mac OS X version from disc, use the newer disc. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option Key until the Install Disk shows up) until the apple shows up. That will force your MacBook to boot from the install DVD in the optical drive.
    When it does start up, you'll see a panel asking you to choose your language. Choose your language and press the Return key on your keyboard once. It will then present you with an Installation window. Completely ignore this window and click on Utilities in the top menu and scroll down to Reset Password. After resetting the password use Startup Disk from the same menu to choose your hard drive for startup and restart.
    With 10.4, 10.5 or 10.6 if you don’t have an install disk check this article. http://www.macyourself.com/2009/08/03/how-to-reset-your-mac-os-x-password-withou t-an-installer-disc/
    If you're running 10.7 Lion check this article
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/
    With 10.8 restart holding the Command and R keys, then from the drop down
    of actions, choose Terminal.  When Terminal opens type:
    resetpassword
    and press enter.
    You will get a reset password window from which you can select the user you want to reset, the admin account in your case.  Type a new password twice, do not do anything with the hint box.  Click Save, then confirm you want to do this reset.  Then click apply to the user's home directory, and click the apple in the left corner, and choose Restart.

  • What is purpose of session variables in obiee

    what is purpose of session variables in obiee and how to use it in obiee

    whenever a user logs in, a session variable is initialized for that particular user.
    The session variable can hold values such as Username, loglevel.
    For example, if you have 10 obiee users and u want to set different loglevels depending on their roles, you can create system session variable LOGLEVEL which will be initialized dianamically depending on the initialization block.
    Edited by: Vishal on Jul 5, 2011 10:30 PM

  • Whats the purpose of files with the prefix .SM.gul?

    Whats the purpose of files with the prefix .SM.gul and who creates them?

    Neurobasher wrote:
    Whats the purpose of files with the prefix .SM.gul and who creates them?
    No idea, but have a look what Linc has to say about them in this thread, it may help.
    https://discussions.apple.com/thread/3358529?start=0&tstart=0
    Good Luck

  • What is the default iTune Folder Structure for iTunes 10?

    What is the default iTune Folder Structure for iTunes 10? As far as I can tell in windows 7 it goes something like.
    My Music\iTunes\iTunes Media\Music
    Other folders for downloads, pod casts, mobile applications are all in the iTunes Media folder, however the iTunes library database files are located in the iTunes Folder.
    The reason I ask is that I am re-doing my music collection and I set up the folder structure mentioned above, but iTunes re-arranded everything and copied all of my music into the iTunes Media folder.
    Anyone have any idea how iTunes does it by default?

    Here are typical layouts for the iTunes folders:
    If you have upgraded from version 8 (or earlier) to iTunes 9 (or later) at some point, then your media folder (everything inside the red outline) may still be called iTunes Music instead of iTunes Media. The extra Music folder inside the media folder is used if you have allowed iTunes to Upgrade to iTunes Media Organization (iTunes 9) or used File > Library > Organize Library > Reorganize files in the folder "<Media Folder>" (iTunes 10). Depending on your choices for Keep iTunes Media folder organized and Copy files to iTunes Media folder when adding to library plus a little bug in which one build changed the name of the file storing the choice of layout it is quite easy for some of your files to be organized according to one layout and some the other.
    Assuming you're happy letting iTunes organize your files the following steps should tidy things up (should it be necessary):
    1. Select File > Library > Organize Library... > Tick Reorganize files in the folder "<Media Folder>" and click OK. Skip if this option is greyed out (already upgraded) or you prefer the older layout.
    2. Select File > Library > Organize Library... > Tick Consolidate files and click OK. This will bring any files currently organised outside the designated media folder into it.   NB This will create duplicate copies of any file that needs to be consolidated, and you will need to manually clean up afterwards. If space is at a premium try my scripts Unconsolidated to find out what would need moving and ConsolidatebyMoving to move rather than copy it.
    3. Select Edit > Preferences > Advanced tab, uncheck Keep iTunes Media folder organized and click OK.
    4. Select Edit > Preferences > Advanced tab, check Keep iTunes Media folder organized and click OK. This triggers iTunes into reorganizing everything according to your preferences.
    5. (Optional) Close iTunes, rename the folder iTunes Music as iTunes Media then restart iTunes. Check under Edit > Preferences > Advanced tab that the location has automatically updated. If you can't access the media for any reason just undo the folder rename.
    6. (Optional - Windows only) If Windows Media Player has ever had access to your files it may have liberally scattered folder artwork files about which iTunes won't tidy up when it reorganizes things, thus leaving behind a heap of folders with artwork and no media. I've written a script for cleaning this mess up called CleanDeadArt.
    PS If you really prefer the older layout, but it is already in the new one then edit the file called .iTunes Preferences.plist in your media folder and change the integer from 1 to 0 before doing step 3.
    tt2

  • What is purpose of common division?

    what is purpose of common division? give
    some examples

    Dear Mr Raj,
    Regarding common division let me try to offer an example:-
    A petrol pump offers both petrol and diesel, of  different grades and brand names.
    There are certain pumps that are located inside cities, that do not have much diesel sales, and so confine themselves to selling petrol.
    There are other pumps, located on highways that cater solely to large commercial vehicles, that are run exclusively on diesel.
    Both products are supplied from the same depot of a petroleum product refiner.
    Vehicles from depots to the pumps, may carry either one or both of the products, concurrently, for delivery at the same or at different pumps, from the point of view of optimally utilising the capacity and similar services of the vehicle.
    Both the products are defined as different divisions, within the respective material master.
    To cater to such a scenario, the provision of common division is used, where one of the products is used as common division, say petrol for both petrol and diesel.
    It practically works as follows:-
    A common sales order may be entered for both the products indented together by the same pump.
    A common billing document would be generated.
    This is as far as convenience of order entry and billing go.
    Further, in case of pricing, terms for local levies like octroi can be set up together bringing down the maintenance of pricing conditions.
    Trust this serves to illustrate the use of common division for order entry and pricing.
    Regards,
    K Gopidas

  • What is purpose of creating the ztables?

    what is purpose of creating the ztables.
    Title was edited by:
            Alvaro Tejada Galindo

    Sometimes you need to create your own structures...That's when you need ZTABLES...Otherwise, you need to use standard tables provided by SAP...And those tables will not always fulfill your needs...
    Greetings,
    Blag.

  • Whats the purpose of the USB cord on the REVERE?

    I just bought the REVERE and was excited when I noticed the dual charge/USB cord. But when I tried connecting to my laptop I was informed of no drivers found. Upon further searching I read that I can't even transfer pics from phone to computer or visa verse. So really, whats the point of the USB?.

    this is from another thread, and i believe is the best response i've seen:
    Re: Transfer pictures from the LG Revere?
    Verizon4now Apr 10, 2012 10:57 AM (in response to BruceBox)
    BitPim is a program that will access the directories in your phone. You must have your phone's drivers on your computer for BitPim to work. The software on your phone may need upgraded. An LG software upgrade assistant can be found on this page also.
    Click here to download the drivers, manuals, software upgrades for your mobile device:
    http://www.lg.com/us/support-mobile/lg-LGVN150
    Download BitPim to open folders in your phone:
    http://www.bitpim.org
    Open BitPim
    Click "Filesystem"
    Click folder in the second panel
    Click "Synced"
    Click "My Pictures"
    Right click on desired photos
    click save
    it is a hassle, but the usb cord can serve a purpose. you just need the current version of the software on the phone, and the drivers for it must be installed on your pc. however, once you have the drivers installed and bitpim installed, it makes it VERY nice to be able to access the directories.

  • What does a greyed out folder mean? (after failed file copy from Time Capsule)

    I did a clean install of Mavericks and I'm trying to copy my files back from my Time Capsule.
    The transfer rate is terrible, despite being a direct link via gigabit ethernet.
    I have about 800GB of Logic projects on the Time Capsule, so I set it off to copy them over.
    After 2 days and 233GB copied across, my iMac hung and I had to do a hard reset.
    I now have a 233GB folder on my desktop that is lighter in colour and I can't open it. Nothing happens.
    Is there any way to resume the copy, or am I looking at starting again, leaving my iMac untouched for 5 days and hoping for the best?
    The tech just doesn't work reliably, despite being a fresh install of Mavericks and an offical Apple Time Capsule 2TB. No idea what I'd do if I had 2 or 3GB of data...

    Phil,
    If you haven't already you may want to try to restart the TC first to ensure that it doesn't think that that folder or it's contents are still in use in some way.
    If that doesn't allow deletion, then you may need to use terminal to delete it regardless of permissions.  Be careful when doing the following and make sure that all spaces and typing are done exactly as given below:
    1) Log into the mac as an account that is an Administrator
    2) Open Terminal, then arrange Terminal and Finder so you can see them both
    3) Open a Finder where you can see the grayed-out folders on the TC
    4) In terminal, type the following, including a [space] at the end (but don't hit enter yet)
    sudo rm -r
    5) From Finder, drag the bad folder to the terminal window and release.  This will type the correct path into terminal.  Ignore and leave any backslashes that are added to the path.  You should end up with a command that looks like this:
    sudo rm -r /Volumes/MyTC/ParentFolder/BadFolder
    6) Hit enter ONLY if the path looks correct and ends in the name of the bad folder you are trying to kill.  If the path looks wrong or does not end in the targeted folder name, then do not hit enter and close terminal.
    7) Once you hit enter you will be prompted for the password of your currently logged in user.
    8) it should then blow away the folder.
    9) Close terminal

  • What is "Publish To New Folder?"

    Captivate's *Edit/Preferences/Global* preferences include
    options for the user to review a confirmation dialog before the
    software proceeds to execute a variety of user actions, mostly
    actions that would delete an asset or change an important setting.
    "Publish to New Folder" is one of those confirmation-optional
    preferences. One customises Captivate either to require
    confirmation before executing some underlying command or to proceed
    with its execution unhindered.
    But what is the underlying "Publish to New Folder" command?
    What does it do? Where do I find it? There doesn't seem to be
    documentation about it, or discussion of it in the user community.
    Oddly, one would think that publishing to an *existing* folder
    would be the more concerning action. entailing as it does the
    possibility of files being overwritten. What possible harm,
    necessitating verification, could possibly be done publishing
    something to a brand new folder? And what does Captivate mean by
    "publish" in this instance: Is it a reference to the limited menu
    of export-as-SWF or as projector.EXE options, or does it refer to
    some other export, save or archiving function?
    Having been at considerable pains to create a Captivate
    project which deploys multiple graphic and audio assets I now would
    like to wrap them all up and deliver them efficiently to an
    archive, a function most other multi-asset authoring platforms
    allow one to do with a mouse click or two. (See PremierPro, for
    example, although neither Flash nor FrameMaker is so
    sophisticated.) Can this be accomplished by some hidden "Publish to
    New Folder" command?
    Thank you.

    Hi Ruth3rf0rd
    Captivate 3 introduced an unwelcome feature that forces you
    to create a folder named identically to your .SWF and ,HTM files
    when creating your .SWF output. (Oddly enough, this doesn't happen
    if publishing to .EXE).
    Aside from simply naming the project what you want the folder
    named, there isn't any underlying process you are missing. The
    option you see in the preferences area simply turns the
    intermediate dialog off and on. And you did mention that it could
    theoretically be more dangerous to overwrite files. That option is
    there as well.
    Because I come from the RoboHelp HTML/Web Authoring
    background, I find the whole notion of "Publishing" to be wrongly
    named. For Captivate, the act of Publishing is taking the source
    material and compiling it to produce the output format.
    In the Web Development world, the act of Publishing is taking
    content that has already been created from the source and copying
    it to another location. Most often, a Web Server.
    Hopefully this helps... Rick

  • What is purpose of having an iTunes Library when I already have purchased apps?

    I am new to the Apple ecosystem, so please pardon my ignorance here. I am using iTunes on Windows desktop, but I have the same problem on my Mac laptop.
    I have some apps purchases that show up when I am in iTunes and select  Purchased or Apps.
    But when I select the option of My iPhone Apps at the middle top of the screen, or select My iPad Apps, the list of apps is empty. Yet, I clearly have purchasesd some, because they show up under "Purchased."
    And when I run the Apps app in my iPhone, it shows the purchased items that are NOT on my iPhone but are ready for downloading to my iPhone.
    So, this is making me wonder: What is the purpose of having an iTunes Library for storage or syncing, when I could use the Purchased list?
    Am I misunderstanding the reason for having the Library?
    thanks

    So, it sounds like I should move them to the iTunes Library for both my iPhone and my iPad. I found that if I click the app, it appears in the library. Among the apps that I have purchased, there are some apps that I don't want anymore. So I assume that I should NOT click (i.e. move) those to the Library, right?

Maybe you are looking for

  • Defining CMS Track Data for 4 systems landscape

    Hi all, We are configuring CMS for 4 system landscape (DEV - TEST - QA - PROD). The Track Data only allow 3 system landascape , as we can see "Landscape Configurator " and also in the following documentation: http://help.sap.com/saphelp_nw04/helpdata

  • Flash CS3 MP3 Player

    Could anyone give me the code for an MP3 player for Flash CS3? The back-end actionscript code. Or could anyone give me a brief tutorial on how to setup an MP3 Player?

  • Convert report 2k to 9i

    Hi i'm got porblem..if anyone can help me to solve this problem.. act..i'm converting from oracle 2k report to 9i report..but..i can't run trough the web.. this is what appear when i'm run the report Wed Mar 30 11:53:19 SGT 2005 javax.servlet.jsp.Jsp

  • Metadata templates - changing titles

    Hello, I'm not sure if it is possible or not, but when adding metadata in photoshop/bridge, can you change the photoshop settings for what each item is called? i.e. when it states Author..... Can i change the title Author to Photographer instead? Als

  • SWFs not working in Player 10

    I have almost 40 swfs that are not working in Flash Player 10. They were developed in Flash 8 and only contain basic AS2 code. I'm not sure what is wrong but some don't even show up and others do, but with components missing or blocked out. The only