InputFileUpload field reset

Does someone know how to prevent the MyFaces inputfileupload-fields to be reset after validation errors?
We have a form containing some fields with the required attribute set on "true" and one InputFileUpload field. When required fields are left blank, the InputFileUpload field is being reset, which is quite annoying. I tried with a binding and a valuechangelistener, but nothing helps.
Any help would be appreciated/

Hi, there's a web page with a similar question here:
http://marc.theaimsgroup.com/?l=myfaces-user&m=115107482801503&w=2
"Is there a way to store the inputFileUpload file even if there are process validation errors on other components? I don't want the user to
have to re-upload a file if they forgot some other required field, for example.
Thanks"
The guy seems like he solved the problem in the end through a suggestion so it might help ye.
Here's the example he made afterwards:
http://wiki.apache.org/myfaces/Setup_For_File_Uploads
Cheers,
Illu
Message was edited by:
Illu

Similar Messages

  • How to SQL to create a new field reset by new value

    Table only got 1 field eg.
    company_name
    DELL
    DELL
    DELL
    HP
    HP
    IBM
    IBM
    IBM
    How create a SQL to create a running number field that reset for a value? Thanks.
    It should look something like this :
    SNO company_name
    1 DELL
    2 DELL
    3 DELL
    1 HP
    2 HP
    1 IBM
    2 IBM
    3 IBM

    Hallo,
    SELECT row_number() over (partition by company_name order by company_name), company_name
    FROM company
    Regards
    Dmytro Dekhtyaryuk

  • Partial Submit button and fields resetting

    Hello
    I have a button with partialsubmit=true
    In the button's action listner event I open a popup and this popup contain RichInputText fields.
    Before open the popup I am reset all of these RichInputText values by
    this.geRichInputText1().resetValue();
    AdfFacesContext adfFacesContext = AdfFacesContext.getCurrentInstance();
    adfFacesContext.addPartialTarget(this.geRichInputText1());But each time I open this popup I don't see these RichInputText figures are reset. It just show off what was in the previous.
    when button's partialsubmit=false, this works.
    Is there a way to reset with partialsubmit=true
    Thanks
    Edited by: deshan on Jan 31, 2011 2:45 PM

    Try setting the contentDelivery property of your popup to "lazyUncached". Otherwise the content of the popup is cached by default.
    For more info check this: http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12419/tagdoc/af_popup.html

  • OBIEE field reset

    Hello,
    I will try to illustrate my problem below:
    TextBox -> information_generated(containing id) -> TextBox2 -> information_generated_based_on_previous_id.
    The problem is the fact that, after i input new information in
    TextBox and new information is generated, TextBox2 contains the id
    from the last search. For example :
    I insert in TextBox a number, let's say 12. Based on this,
    information is generated, let's say a few rows with different
    fields, among them a field called id. This id is inserted in
    TextBox2, let's say 23. Based on this i get new informations.
    Now i repeat the entire process, but when i want to insert new
    information in TextBox2, i see that it already contains a value,
    the same a previous one, 23. My problem is how can i clean that
    field so after i repeat the process, TextBox2 would not contain
    any
    information.
    Best regards,
    Answers Seeker.

    If you do not have any default values set up in the dashboard prompts, then page options--> clear my selections will get rid off all the selected items in the prompts.
    But as you mentioned you were able to populate the second dashboard prompt value based on the first dashboard prompt selection? That can be done by using a constraint option but I was wondering how were you able to populate a default value(23) in the second dashbaord prompt based on the first dashbaord prompt value(1h2)
    Thanks
    Prash

  • Viewing and Removing the Time part of the Date field

    Hi,
    I have Date field in a table.
    but in SQL plus when I do
    select date from table
    this gives me only the Date values and not the timestamps in the date.
    I believe Oracle stores 'Date' and 'Time' in fields with Data Type 'Date'.
    How do I print the timestamps also in the SQL query?
    Moreover, if I have to extract the date field, reset the timestamp to 00:00:00, and store back the date field (with 00 time), how do I do that?
    Thanks in advance
    - Manu

    Hi,
    If you want to retry date and time you can:
    SELECT TO_CHAR(DATE,'YYYY/MM/DD HH24:MI:SS') FROM TABLE;
    If you want truncate time when inserting in a table simply use TRUNC function
    INSERT INTO TABLE (DATE) VALUES (TRUNC(YOUR_DATE));
    To extract and insert with time 00:00:00
    INSERT INTO TABLE1 (SELECT TRUNC(DATE) FROM TABLE2);
    I hope this help you.

  • Reset button hides image box

    I have a dynamic form where the users can import jpg images into the form.  This works just fine, but when they reset the form, the image box minimizes and the users are unable to re-use the box without exiting the program and re-entering.  Basically, my users are going to create a flowchart in Paint or Word, save the image as jpg and place it into the form.  They will be using Adobe Reader, so it appears the field needs to be an image field.  Is there any way I can make the field reset to it's starting size and position?  A copy of the form is attached.

    Hi,
    A couple of things are going on here. When I used the ".h" property that overrode the expand to fit height. The trouble then was to change this to the ".minH" property; however when the imageField is null the min height went to zero.
    Therefore I have left the script in the click event as it was (just the full reference for the exhibit imageField:
    DiagramText.rawValue = null;
    DiagramText.h = "0.8782in";
    Diagram.rawValue = null;
    Diagram.h = "0.6813in";
    Exhibit.ExhibitBox.rawValue = null;
    Exhibit.ExhibitBox.h = "0.6813in";
    Then in the mouseUp event of each imageField I had the following which restored the "expand to fit height" functionality.
    this.minH = "0.6813in";
    Appears to work now. Good luck,
    Niall 

  • Conditionally coloured fields

    Hi
    I have a client who has asked whether fillable fields on an Acrobat form can be colored until they are filled in. So for example the unfilled form would initially have all the fields fill colour set to red. Then, as each field has information entered into it, the fill colour would change to none.
    As well as this, they have a requirement to have all the fields reset to red when they reset the form (ideally combined with a button that I already have that triggers the built in reset form function).
    From what I have gleaned on these forums and elsewhere, it looks like this is possible, but I haven't managed to work out exactly how.
    Any pointers would be much appreciated.
    Thanks.

    Yes. If you know the RGB or CMYK values you can use color arrays instead of one of the predefined colors. For example:
    event.target.fillColor = event.value ? color.white : ["RGB", 218/255, 25/255, 125/255];
    event.target.fillColor = event.value ? color.white : ["CMYK", 0, 0.794, , 0.427, 0.145];

  • Place a "reset form" button using livecycle

    I Placed a button on a form called "Clear Form" Now what do I do to reset the form when clicked?  Can I also add a "Are you sure message" with another ok button?

    Thanks for the script. I have a form with radio buttons that make certain fields appear visible/invisible mattering on wheather user chooses yes or no. I used actions to perform the visible/invisible function.
    When using your script i get the Yes/no option in a popup and if I choose yes it correctly clears all my rado buttons and also resets any fields.
    However the no fuction does not seem to be working. If I choose no it still clears out everything, the radio buttons and resets any fields made visible by said radio buttons. As you suggested I added xfa.form.remerge(); which made the visible fields reset.
    Heres the code i used.
    var
    answer = xfa.host.messageBox("Are you sure you want to reset the form?","Confirmation Required !!!",2,2);
    if
    (answer ==4)
      xfa.host.resetData();
    xfa.form.remerge();

  • Grand total and total in all page

    page 1
    colum1 | cloum2
    4 | 55
    1 | 6
    in Footer page1
    5 | 61
    page 2
    colum1 | cloum2
    2 | 3
    1 | 6
    in Footer page2
    3 | 9
    --------- i want
    in Footer page2
    8 | 70
    plez help me
    Message was edited by: azmi
    user490620

    What do you want exactly?
    Your subject says other thing then your actual question.
    Any how it snot difficult.
    Put summery Columns calculating the SUM of both fields (reset at report)
    & Set there property "print object on" to "last page".
    Hope it 'll work.
    Capri...

  • Acrobat 9.5.5 Pro - odd font won't go away

    I began creating a new form and hadn't checked the default font.  After making about 10 fields I used Preview to enter some text.  Not liking the result, I had a look at the font being used.  Something called, "KozMinPr6N-Regular," which is Japanese.  Never heard of it - have never used it.  Not sure how it became a default.  I changed the font for those 10 fields, reset the default to Helvetica and created another 60 or so fields.
    The form printed fine in Acrobat Pro, but when I opened it in Reader (11.0.06) and tried to print using the Print Dialog, I received the message that "The document could not be printed."  I clicked OK (the only option) and a new box opened that said "There were no pages selected to print."  This after I "Selected All" in the print dialog and saw the preview of the document as a thumbnail.
    At one point I was instructed to go to the Adobe website to download a font since "the author hadn't included it."  Well, I was the author and apparently it was referring to this Japanese font.
    Back to Acrobat, and opening Document Properties > Fonts I see that Japanese font is included, as well as Helvetica.  Yet I've checked ALL of the field properties and there's ONLY Helvetica in use.  Short of starting all over from scratch, how can I fix this?
    Also, I looked up Embedding Fonts in the Help dialog, but that's of NO help since it doesn't tell me how to do so - only the pros and cons.
    I'm running OS X 10.9.2.
    Thoughts?  Thank you!

    I see, I misread your reference to Reader 11 to mean you were using Acrobat 11, but it looks like it worked out anyway.
    The base-14 fonts are special in PDF because they are guaranteed to be available even if they are not embedded. If you select a non-base-14 font for use with a form field, the entire font usually gets embedded, since each glyph it contains has to be available for use with the field. This can take up a lot of space if you do this a lot, and the space isn't reduced if you change back to a base-14 font later because the internal reference to it is not removed. This is caused by the bug I mentioned.
    In your case, however, the entire font doesn't get embedded because fonts like it (e.g., large asian fonts with a lot of glyphs, Arial Unicode) would take up too much space if fully embedded. If it did, a 100KB PDF could bloat to 20MB with that one change. Instead, users are expected to have such fonts installed on their system, which is why you were prompted to install the font pack. This despite the fact that the font was not actually used by anything in your document, it was simply the orphaned reference to it that triggered this. This should get fixed in Acrobat eventually so this type of thing doesn't happen again.

  • How to get Guid of all form libraries

    I have  a requirement where i should get guid of all form libraries so that i dont need to hardcode the Guid of form library in server object model.How can i achieve this..

    Hi Hemandra..
    Thanks for the response,I am looking to relink documents using the code below...Code is working well for single form library but i have 4 to 5 form libraries for which the code should be executed..how can i get this done.I am working with Infopath forms.
    protected
    void btnsubmit_Click(object
    sender, EventArgs e)
    if (RelinkDocuments())
    Label3.Text =
    "Success!!!";
    else
    Label3.Text =
    "Failure";
    private
    bool RelinkDocuments()
    try
    SPSite site =
    SPContext.Current.Site;
    SPWeb spWeb = site.OpenWeb();
    SPList spList = spWeb.Lists[new
    Guid("8E023C18-DAA3-4743-81B7-E034111544BC")];
    SPDocumentLibrary doclib = (SPDocumentLibrary)spList;
    string solutionUrl =
    SPHttpUtility.UrlPathEncode(spWeb.Url
    + "/" +
    doclib.DocumentTemplateUrl, true);
    foreach (SPListItem
    spItem in doclib.Items)
    //loop through the list items
    SPFieldCollection spFields = spItem.Fields;
    foreach (SPField
    spField in spFields)
    //loop through fields resetting them
    if (spField.Type !=
    SPFieldType.Computed &&
    spField.Type !=
    SPFieldType.Invalid && !spField.ReadOnlyField)
    try
    spItem[spField.InternalName] = spItem[spField.InternalName];
    catch (Exception
    e)
    SPContentType spContentType = spList.ContentTypes[(SPContentTypeId)spItem["ContentTypeId"]];
    if (spContentType !=
    null)
    //try to update the item with the content type's template url which is the updated one
    if (spContentType.DocumentTemplate.StartsWith("http://")
    ||
    spContentType.DocumentTemplate.StartsWith(
    "https://"))
    spItem[
    "TemplateUrl"] =
    SPHttpUtility.UrlPathEncode(spContentType.DocumentTemplate,
    true);
    else
    if (spContentType.DocumentTemplate.StartsWith("/"))
    spItem[
    "TemplateUrl"] =
    SPHttpUtility.UrlPathEncode(spWeb.Site.MakeFullUrl(spContentType.DocumentTemplate),
    true);
    else
    spItem[
    "TemplateUrl"] =
    SPHttpUtility.UrlPathEncode(spWeb.Url
    + '/' + spList.RootFolder
    + '/' + spContentType.DocumentTemplate,
    true);
    else
    //no content type found so default template url to solution Url
    spItem[
    "TemplateUrl"] = solutionUrl;
    spItem.Update();
    return
    true;
    catch (Exception
    ex)
    return
    false;

  • Clear form after submitting, Adobe X Standard

    I am trying to set up a form in Acrobat X standard that will clear the fields after it has been submitted. The form is on a local network and is being distributed using the Forms tool. Employees need to fill in the form then click the submit button on the top right side of Adobe reader, not a button field in the form. I am trying to keep employees from having one person answer the questions  then letting others change the name and resubmit. Is there a script that can do this? I am new to Javascript so I have no idea how to do this or if it can be done.

    I guess I'm not making myself clear about a major problem I have. I do not know anything about Java or JavaScript programming. I understand what document level means but I have No idea how to write a script. I can open the debug console but that is as far as it goes. With that said, I would like to figure this out but it will take a lot of hand holding. The way I see it, I need to know how to call the Adobe Reader "Submit" button, "not a form field" so that when it is clicked on "mouse up" it starts a timer. After the form has been submitted the "resetForm" command activates and all fields reset.
    So how does all that get to be a JavaScript? I have no clue..........

  • Issue with index on table

    Hi,
    We have created an index(assume z2) on table CATSDB with 2 fields. There is an other index(Z1 assume) with the same fields and the order is also same. When a report accesing the table it is taking more time to run when index Z2 is on table. But when deleted then the report ran quickly. Is it with the duplicate index created???
    Please let me know
    Regards
    Shiva

    Hi
    i am giving total index and buffering concept details by seeing this you can understand how we can achive performance through these
    <b>reward if usefull</b>
    <b>Performance during table access</b>
    <b>Indexes</b>
    Primary and secondary indexes
    Structure of an index
    Accessing tables using indexes
    <b>Table buffering</b>
    Advantages of buffering
    Concept of buffering
    Buffering types
    Buffer synchronization
    <b>Primary and secondary indexes</b>
    Index: Technical key of a database table.
    Primary index: The primary index contains the key fields of the table and a pointer to the non-key fields of the table. The primary index is created automatically when the table is created in the database.
    Secondary index: Additional indexes could be created considering the most frequently accessed dimensions of the table.
    <b>Structure of an Index</b>
    An index can be used to speed up the selection of data records from a table.
    An index can be considered to be a copy of a database table reduced to certain fields. The data is stored in sorted form in this copy. This sorting permits fast access to the records of the table (for example using a binary search). Not all of the fields of the table are contained in the index. The index also contains a pointer from the index entry to the corresponding table entry to permit all the field contents to be read.
    When creating indexes, please note that:
    An index can only be used up to the last specified field in the selection! The fields which are specified in the WHERE clause for a large number of selections should be in the first position.
    Only those fields whose values significantly restrict the amount of data are meaningful in an index.
    When you change a data record of a table, you must adjust the index sorting. Tables whose contents are frequently changed therefore should not have too many indexes.
    Make sure that the indexes on a table are as disjunctive as possible.
    (That is they should contain as few fields in common as possible. If two indexes on a table have a large number of common fields, this could make it more difficult for the optimizer to choose the most selective index.)
    <b>Accessing tables using Indexes</b>
    The database optimizer decides which index on the table should be used by the database to access data records.
    You must distinguish between the primary index and secondary indexes of a table. The primary index contains the key fields of the table. The primary index is automatically created in the database when the table is activated. If a large table is frequently accessed such that it is not possible to apply primary index sorting, you should create secondary indexes for the table.
    The indexes on a table have a three-character index ID. '0' is reserved for the primary index. Customers can create their own indexes on SAP tables; their IDs must begin with Y or Z.
    If the index fields have key function, i.e. they already uniquely identify each record of the table, an index can be called a unique index. This ensures that there are no duplicate index fields in the database.
    When you define a secondary index in the ABAP Dictionary, you can specify whether it should be created on the database when it is activated. Some indexes only result in a gain in performance for certain database systems. You can therefore specify a list of database systems when you define an index. The index is then only created on the specified database systems when activated
    <b>Database access using Buffer concept</b>
    Buffering allows you to access data quicker by letting you
    access it from the application server instead of the database.
    <b>Advantages of buffering</b>
    Table buffering increases the performance when the records of the table are read.
    As records of a buffered table are read directly from the local buffer of the application server on which the accessing transaction is running, time required to access data is greatly reduced. The access improves by a factor of 10 to 100 depending on the structure of the table and on the exact system configuration.
    If the storage requirements in the buffer increase due to further data, the data that has not been accessed for the longest time is displaced. This displacement takes place asynchronously at certain times which are defined dynamically based on the buffer accesses. Data is only displaced if the free space in  the buffer is less than a predefined value or the quality of the access is not satisfactory at this time.
    Entering $TAB in the command field resets the table buffers on the corresponding application server. Only use this command if there are inconsistencies in the buffer. In large systems, it can take several hours to fill the buffers. The performance is considerably reduced during this time.
    <b>Concept of buffering</b>
    The R/3 System manages and synchronizes the buffers on the individual application servers. If an application program accesses data of a table, the database interfaces determines whether this data lies in the buffer of the application server. If this is the case, the data is read directly from the buffer. If the data is not in the buffer of the application server, it is read from the database and loaded into the buffer. The buffer can therefore satisfy the next access to this data.
    The buffering type determines which records of the table are loaded into the buffer of the application server when a record of the table is accessed. There are three different buffering types.
    With full buffering, all the table records are loaded into the buffer when one record of the table is accessed.
    With generic buffering, all the records whose left-justified part of the key is the same are loaded into the buffer when a table record is accessed.
    With single-record buffering, only the record that was accessed is loaded into the buffer.
    <b>Buffering types</b>
    With full buffering, the table is either completely or not at all in the buffer. When a record of the table is accessed, all the records of the table are loaded into the buffer.
    When you decide whether a table should be fully buffered, you must take the table size, the number of read accesses and the number of write accesses into consideration. The smaller the table is, the more frequently it is read and the less frequently it is written, the better it is to fully buffer the table.
    Full buffering is also advisable for tables having frequent accesses to records that do not exist. Since all the records of the table reside in the buffer, it is already clear in the buffer whether or not a record exists.
    The data records are stored in the buffer sorted by table key. When you access the data with SELECT, only fields up to the last specified key field can be used for the access. The left-justified part of the key should therefore be as large as possible for such accesses. For example, if the first key field is not defined, the entire table is scanned in the buffer. Under these circumstances, a direct access to the database could be more efficient if there is a suitable secondary index there.
    With generic buffering, all the records whose generic key fields agree with this record are loaded into the buffer when one record of the table is accessed. The generic key is a left-justified part of the primary key of the table that must be defined when the buffering type is selected. The generic key should be selected so that the generic areas are not too small, which would result in too many generic areas. If there are only a few records for each generic area, full buffering is usually preferable for the table. If you choose too large a generic key, too much data will be invalidated if there are changes to table entries, which would have a negative effect on the performance.
    A table should be generically buffered if only certain generic areas of the table are usually needed for processing.
    Client-dependent, fully buffered tables are automatically generically buffered. The client field is the generic key. It is assumed that not all of the clients are being processed at the same time on one application server. Language-dependent tables are a further example of generic buffering. The generic key includes all the key fields up to and including the language field.
    The generic areas are managed in the buffer as independent objects. The generic areas are managed analogously to fully buffered tables. You should therefore also read the information about full buffering.
    Single-record buffering is recommended particularly for large tables in which only a few records are accessed repeatedly with SELECT SINGLE. All the accesses to the table that do not use SELECT SINGLE bypass the buffer and directly access the database.
    If you access a record that was not yet buffered using SELECT SINGLE, there is a database access to load the record. If the table does not contain a record with the specified key, this record is recorded in the buffer as non-existent. This prevents a further database access if you make another access with the same key
    You only need one database access to load a table with full buffering, but you need several database accesses with single-record buffering. Full buffering is therefore generally preferable for small tables that are frequently accessed.
    <b>Synchronizing local buffers</b>
    The table buffers reside locally on each application server in the system. However, this makes it necessary for the buffer administration to transfer all changes made to buffered objects to all the application servers of the system.
    If a buffered table is modified, it is updated synchronously in the buffer of the application server from which the change was made. The buffers of the whole network, that is, the buffers of all the other application servers, are synchronized with an asynchronous procedure.
    Entries are written in a central database table (DDLOG) after each table modification that could be buffered. Each application server reads these entries at fixed time intervals.
    If entries are found that show a change to the data buffered by this server, this data is invalidated. If this data is accessed again, it is read directly from the database. In such an access, the table can then be loaded to the buffer again.

  • ABAP Webdynpro Rendering issues after ECC Upgrade

    Dear All,
    We recently upgraded ECC to EHP 7 (Netweaver 7.4)  but our Portal is still at Netweaver 7.0 EHP2 SP16.
    The ABAP Webdynpro iViews in Portal have the following issues. ( We use IE11).
    1. The ABAP Webdynpro Table filtering is not working. When I click the filter button it does nothing.  
    2. The cursor in the  Input fields reset back to the first position while typing and create a big mess.
    Any help appreciated.
    Thank you.
    PK

    Hi N_niki
    There is no resolution as such.
    We had raised a Customer message with SAP and were informed that this was expected as the procedure to execute the reports was changed in ECC when compared to 4.6 (technical changes) and hence this issue shall remain for some queries wherein the old changes need to be brought back using an option in the SAP Query.
    Please refer to SAP Note # 723577 which could provide a better explanation for the issue.
    Hope this helps.
    Thanks
    Vinodh Sudhakaran

  • Using States and the includeIn-property for UI-elements inside my mxml-composide-component

    Hi,
    unfortunatly I am looking for a way to use States in a mxml-component. I’m working with the flash builder 4.6 (means as3).
    Because this did not work when I did use the normal mxml tags for the states inside my VGroup-composite-component, I added a creationComplete-Handler in the Script part of my component in which I instanciated the states and the states-Array via as3. I copied
    this of an internet- article from 2006 that was already dealing with
    as3, but at that time the States were part of the mx-namespace. How ever when I wrote: newState1: State= new State(); my development environment did not know the class State. Did I forgot to import anything or to use a namespace in my Script block ? I imported the AS3 Finite State Machine from meekgeek.com.
    But these states have no name-property insted they got a key-property, but this did not work either though I imported correct and did use the correct namespace. I did not find any State-class-description at Adobe's doku either. All I’m trying to do is to use the standard State-includeIn-properties of UI-Components inside
    my mxml-composide-componend. I’d be much obliged if You may help me in this point.
    Best regards,
    Timan Bracht

    Thanks for the answers so far.
    I can show now the correct KmLimit on the field, thanks to a javabean method, so this problem is solved - even I don't know why on hell it does not show it automatically, since I did give to it literal/expression default value in the attribute properties of the transient field; but never mind.
    The current problem: we use a task flow, that shows an input form to enter new records. This form has a LOV, from where I get a value from, which will be then saved once the submit button has been pressed.
    So far, so good.
    I enter some values in the input fields. If now I save the record, it will be saved, and all the form fields reset to null. Perfect.
    But. If I don't press the save button, instead I pick another value from the LOV list, the values of the input fields does not reset to null, instead, they remain with the last entered value.
    It does not seem there's more to change in the task flow properties that would reset the fields automatically.
    So we're stuck with this issue, the fields remain filled, even if I do set it to null. The value is really null - I set it to null with fieldName.setValue(null) and show it in the console with fieldName.getValue() - but the form still shows the old value in the field.
    Any help is greatly appreciated,
    Sergio.

Maybe you are looking for

  • Solaris Management Console and root pasword

    I upgraded to Solaris 10 last night and tried to perform some admin work to user accounts, using Solaris Management Console. When performing the task, Solaris wants to verify user and password, the root password fails. The root pasword is correct bec

  • Obm-xdg won't show anything in the Openbox menu [SOLVED]

    I put the code: <menu execute="obm-xdg" id="obm-xdg" label="xdg"/> in ~/.config/openbox/menu.xml just like it says to do universally. It does not show any menu. Every other menu item in the file works. I can edit them and they change. obmenu can see

  • Vista laptop sees printer but won't connect

    Vista laptop sees printers on xp server network but won't let me connect telling me "access denied" and "you do not have sufficient rights to perform this operation". What's up with this?

  • Textedit quits unexpectedly

    This seemed like the best place to post this question, so please correct me if I'm wrong and I need to move it. I am a writer, and I use textedit for my word processing needs since it is simple and does not have the dreaded autoformatting that word h

  • Development Configurations- SAP NWDS

    Hi all... while developing a new JAVA based product with SAP Netweaver.. i created 2 DC's for my software component. However while creatind DC's i made some mistakes. now i want to delete them. But donot know how to do it as i cud't find out any opti