Creating a new HTML document - removing "todos"

When creating a new HTML document in a KM repository (i.e. Folder > New > HTML File...), I get a form where I name my HTML document and enter the content etc. I can also choose, from a dropdown box, the document type between a Normal document or a "todos". My questions are the following:
1) What is "todos" in this case? (I don't think it means "To Do's".)
2) As a portal admin, how can I remove "todos" from the dropdown box or disable the dropdown box completely.
Thank you

Hi Mick,
sorry, quite late, but better than never
> how can I remove "todos" from the dropdown box or
> disable the dropdown box completely.
System Administration - System Configuration - KM - Configuration - CM - Global Services - Resource Types - Delete "todos".
> What is "todos" in this case?
> (I don't think it means "To Do's".)
I think that in fact some SAP developer wanted to mark this place that there would be more work to be done (Resource Types to be defined or so).
Hope it helps
Detlev

Similar Messages

  • How  To create a new word document and to serve bookmarks

    how To create a new word document and to serve bookmarks

    there is an example :
    http://www.must.de/default.html?Javactpe.htm
    howerver ,I don't kown how to use in jsp!!

  • How can I create a new Numbers Document through AppleScript?

    How can I create a new Numbers Document through AppleScript?
    I try this:
    tell application "Numbers"
    make new document with properties {template name:"blank"}
    end tell
    But don't work.
    Where can I find documentation about it?
    Thanks

    If you try to invent your own syntax, you are starting on very wrong basis.
    The required syntax is defined by the Numbers AppleScript's dictionary.
    This one doesn't know what is a template.
    This is why, in the link posted by badunit, I use an other scheme to create a new document.
    I know that it's awful but it's the only one available at this time.
    Yvan KOENIG (VALLAURIS, France) samedi 4 juin 2011 11:25:25
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Creating a new reports document

    Hi everyone,
    Iu2019m having an issue using In-Proc RAS when creating a new report document in .NET. The following code (C#) will fail (Saying that it requires a Loaded RPT file to do anything against that member)u2026
    CrystalDecisions.CrystalReports.Engine.ReportDocument myTest = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    myTest.ReportClientDocument.New()
    How are you suppose to create a new blank document using the CrystalReports engine? The only way I can do anything with the above object is to actually load a .RPT file. Itu2019s different then when using the RAS SDK which goes like:
    ReportClientDocument objClientDoc = new ReportClientDocument(); //this is a ReportAppServer object
    u2026Set The Report Server Nameu2026
    objClientDoc.New();
    Thanks for the help!
    Peter

    Hi Peter,
    If you are using ReportDocument object then you need to load the object with a report name.
    //define the object
    ReportDocument rdocument = new ReportDocument();
    //load the report
    rDocument.Load(path of the report);
    //View the report
    CrystalReportViewer1.ReportSource=rdoc;
    However if you use the RAS then you need to use the ReportClient document object for it.
    //define the object
    CrystalDecisions.CrystalReports.Engine.ReportDocument rdoc1 = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    // assign it to the reportclient object
    ISCDReportClientDocument rClient1 = rdoc1.ReportClientDocument;
    //Load the report
    rdoc1.Load(path of the report);
    //View the report.
    crystalReportViewer1.ReportSource = rdoc1;
    So I do not see any reason why we would need the New() method.
    Does that help?
    AG.

  • Why can't I create a new landscape document in Pages on the ipad?

    I can create a keynote landscape page on my iPad. I can create a landscape pages document on my Mac, email to myself, open on the iPad and it is there, yet I cannot create a new landscape document on my ipad, this is crazy?

    Sheila,
    I'm using Version 9.0p230. Windows OS.
    Yes, the COMMANDS pop up does not pop up!
    Yes, I rebooted but I had the same problem. I ended up entering a new name directly in the Character tag field from the Designer and was able to create it that way. Thanks

  • Why should we create a new sales document type

    I want to know the actual reason behind creating new sales document type when the standard document is available

    General procedure when setting up sales document types
    You have three options for configuring new sales document types:
    1. Change an existing sales document type.
    2. Copy an existing sales document type and change it according to your requirements.
    3. Create a new sales document type.
    Recommendation
    For small changes, SAP recommends that you copy similar existing sales document types in the standard SAP R/3 System and make the appropriate changes. Small changes might, for example, be, a changed description, a different number range or a different increment for the numbering of items.  The name is to start with the letter Z as SAP keeps this range free in the standard system.
    This procedure has the following advantages:
    All the specifications of the existing sales document type are copied. In particular, the data concerning, for example, partner determination, pricing or document flow which you would otherwise have to edit manually is copied.
    You can test your new sales document types in respect to the settings made without having to edit the other settings.
    When copying sales document types, item categories and schedule line categories, the SAP R/3 System automatically creates a log with the copied data. Using the log, you can check whether all of the copied data applies to your sales document type or whether you need to make changes.
    Actions
    1. If you need to make further changes, you should define new sales document types. To do this, you enter an alphanumeric key with a maximum of four characters for a sales document type and a textual description for the key.
    2. Maintain the specifications on the detail screen according to your requirements.

  • Create a new HTML file by changing attributes

    Hello, I am going to add some attributes to create a new html file.
    Such as
    <div id="globalWrapper">becomes
    <div id="globalWrapper" style=...>I have completed partial task, but I have trouble on how to save it to a new file.
    Please look at my code.
    import java.awt.Point;
    import java.io.*;
    import java.util.*;
    import javax.swing.text.EditorKit;
    import javax.swing.text.MutableAttributeSet;
    import javax.swing.text.html.HTML;
    import javax.swing.text.html.HTMLDocument;
    import javax.swing.text.html.HTMLEditorKit;
    import javax.swing.text.html.HTMLEditorKit.InsertHTMLTextAction;
    import javax.swing.text.html.parser.ParserDelegator;
    public class ReadTest extends HTMLEditorKit.ParserCallback
         public void handleStartTag(HTML.Tag t, MutableAttributeSet a, int pos){
             if     (
                         (t == HTML.Tag.BR)   ||
                         (t == HTML.Tag.DIV)  ||
                         (t == HTML.Tag.P)    ||
                         (t == HTML.Tag.UL)   ||
                         (t == HTML.Tag.UL)   ||
                         (t == HTML.Tag.DD)   ||
                         (t == HTML.Tag.BR)   ||
                         (t == HTML.Tag.H1)   ||
                         (t == HTML.Tag.H2)   ||
                         (t == HTML.Tag.H3)   ||
                         (t == HTML.Tag.H4)   ||
                         (t == HTML.Tag.H5)   ||
                         (t == HTML.Tag.H6)  
             a.addAttribute(HTMLEditorKit.ParserCallback.IMPLIED,"style=");// right or wrong? Then what?
             System.out.println(a);
        public static void main(String argv[]) {
        try {
            Reader r = new FileReader("C:/test.html");
            ParserDelegator parser = new ParserDelegator();
            HTMLEditorKit.ParserCallback callback = new ReadTest();
            parser.parse(r, callback, true);
            EditorKit kit=new HTMLEditorKit();                       
            HTMLDocument doc=(HTMLDocument)kit.createDefaultDocument();  
      } catch (IOException e) {
            e.printStackTrace();
    }Thanks

    The first two concerns are the source footage and then the Project/Sequence Preset.
    What are these? This answer will direct others on how they suggest that you proceed.
    For OOS issues, having your source footage in the proper format will go a long way to solving such issues. For "fixing" OOS, this ARTICLE might be useful.
    Good luck,
    Hunt

  • How to create a new pdf-document in cfolder

    I'm trying to add, via an abap program,  a new Pdf-document as a document in the cfolder-environment. Has anyone information on currently available standard Abap-classes/functions that can be used to do this. If possible some code excerpts that clearly show how to do it.
    The data to be used to create this PDF is stored in an internal table created by the function module 'CONVERT_OTFSPOOLJOB_2_PDF'.
    Edited by: Van Gorp Jan on Oct 25, 2010 3:02 PM

    What is the result of running this code from  the console window:
    this.setPageBoxes("Media",this.pageNum,this.pageNum,this.getPageBox("Crop",this.pageNum));
    this.getPageBox("Media",this.pageNum);
    is the new Media Box the same as the Crop?  It should be.
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • Can't create a new report document

    Hi All,
    Creating a new
    ReportDocument
    throws this exception:
    System.TypeInitializationException: The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw
    an exception. ---> System.IO.FileNotFoundException: Retrieving the COM class factory for component with CLSID {059AC10F-
    0010-4C43-8876-1FC7BEAF218B} failed due to the following error: 8007007e.
       at CrystalDecisions.CrystalReports.Engine.ReportDocument..cctor()
    The environment us VS2008 and CR2008 SP3/FP3.1.  Opening the report in the designer works.
    We need to get a new release out today and I could really use some help in resolving this issue.
    Thanks,
    Jim

    Hi Ludek,
    I added a report viewer control to a new default web application it placed the following in web.config:
    <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.ReportAppServer.Controllers, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.ReportAppServer.DataDefModel, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    I then added a reference in the project to each of the above and added the following code in default.aspx.cs:
    protected void Page_Load( object sender, EventArgs e )
        ReportDocument doc = new ReportDocument();
    That's it and I get the exception.  I get the same exception in our full application that worked with SP2.
    I'll try the example you referenced too.
    Jim

  • Block document flow update when creating a new sales document by reference

    Hi,
    I have set up copy rules to copy a quotation to a new quotation. However, my customer does not want the reference quotation to appear in the document flow. Could you please help me with this.
    I have so far:
    - Removed the value from 'Update document flow' in the item
    - Put an empty value in 'Copy item number from reference' and 'Complete reference' at the header level
    Could you please help me,
    Thanks,

    Simply,
    Create sales order (va01)
    Goto  EDIT in menu bar then choose Propose Item or press CTRL + f11 from key board.
    Then provide Sales Document with default with/without quantity or selection list.
    Hope it can assist you.
    Thanks & Regards
    JP

  • Creating a new PR document type in SPRO

    I am presently doing over the Release strategy for PRs within our company but there are some new departments to be added.
    I need to create new PR doucment types for these new departments,how do i do this?
    I am presently in SPRO,pathway Purchasing>Purchase Requisition>Release Procedure>Set up procedure with classification>release strategy.
    Transaction <b>OMGQ</b>. How do i create a PR type for a new department,
    e.g.Decision Support Services will need a PR type ZDEC to be created.
    Any ideas ppl?
    Thanks

    Hi
    Have you replicated the Same document type rom R/3 into the SRM system.
    Are you using Extended Classic Scenario (ECS) ?
    The solution proposed in this post won't work in your case:
    Using the BADI BBP_TARGET_OBJECTS to determine the backend doc type will only allow you to determine the follow-on doc type for each SC item: RS or PR or PO.
    With this BADI, you set 1, 2 or 3 in ITEM_DATA-OBJ_TO_GEN.
    But it does not provide you with the choice of the R/3 doc type (PR01 or PR02) for each "follow-on" doc type (PR).
    There is a BADI to change de backend Doc type or the backend doc number: BBP_SC_TRANSFER_BE Determine Number Ranges and Grouping in Backend Documents
    You can, independent of the standard, use the method GROUP_RQ to create a separate grouping for purchase requisitions.
    In the standard, the system creates only one purchase requisition in the backend for all purchase requisitions with the same backend document type . If the document types are different, the standard creates a separate purchase requisition for each document type.
    So you can use this BADI and its method GROUP_RQ to group material items in one side, and service items on the other side.
    <b>Please go through the link for more details -></b>
    <u>
    Document Types for PR created in R/3</u>
    Do let me know.
    Regards
    - Atul

  • Applescript : how to create a new numbers document

    I know you have to use +make new+ command. But how to specify the path and name. I tried +at, properties+ nothing helps.
    My code:
    *tell application "Numbers"*
    * make new sheet at "Macintosh HD:Users:Nimmy" with properties {name:"test"}*
    *end tell*
    I get an error "Numbers got an error: Can’t make "Macintosh HD:Users:Nimmy" into type location reference". I don't know what should follow (isn't +location specifier+ path to the file?). I would be grateful for anybody who can help.

    (a) it seems a bit odd to try to make a sheet before making a document.
    (b) I assumes that to make a document the location would be a folder, not a string
    (c) to make a document, it would be useful to pass a legal document's name "test" is not one of them.
    I tried with
    make new document at folder "Macintosh HD:Users:yvan_koenig:Desktop:" with properties {name:"test.numbers"}
    This time all seems to be OK but the command failed.
    Normal as it was already described.
    As far as I know, at this time, to create a document we must rely on GUIscripting.
    set myNewDoc to my makeNewDoc("test.numbers", path to documents folder as text)
    on makeNewDoc(n, d)
    tell application "Numbers" to activate
    tell application "System Events" to tell (first process whose title is "Numbers") to tell menu bar 1 to tell menu bar item 3 to tell menu 1 to click menu item 1
    (* menu bar item 3 for menu File *)
    (* menu item 1 for New *)
    tell application "Numbers" to save document 1 as n in file (d & n)
    return (d & n) as alias
    end makeNewDoc
    Yvan KOENIG (from FRANCE samedi 14 février 2009 15:44:20)

  • Problem With Creating a Huge HTML document In Portal

    Hallo,
    I am trying to insert a 735 lines long HTML into Portal. When I press the finish button I get the following error message:
    The requested URL /pls/portal30/PORTAL30.wwv_builder.accept was not found on this server.
    If I then go back and take out one of the forms I have in the HTML file and press the finish button, Portal accepts this.
    I am sure the problem is related to the size and not code because I have tested the form alone in Portal and it works.
    Would anyone know of a way around this problem?

    when i write the tow statements the first one didn't run but the second one run
    SQL> select to_timestamp('02/04/08 11:00:00.00 AM', 'DD/MM/RR HH12:MI:SS.FF PM') from dual;
    select to_timestamp('02/04/08 11:00:00.00 AM', 'DD/MM/RR HH12:MI:SS.FF PM') from dual
    ERROR at line 1:
    ORA-01855: AM/A.M. or PM/P.M. required
    SQL> select to_timestamp('02/04/08 11:00:00.00', 'DD/MM/RR HH24:MI:SS.FF') from dual;
    TO_TIMESTAMP('02/04/0811:00:00.00','DD/MM/RRHH24:MI:SS.FF')
    02/04/08 11:00:00.000000000 Õ
    when i used the second one in the job this error appear
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    job_name => 'first_job',
    job_type => 'executable',
    job_action => 'C:\Documents and Settings\mohamed.sallam\Desktop\Calculator.lnk',
    start_date => 'to_timestamp('02/04/08 11:00:00.00', 'DD/MM/RR HH24:MI:SS.FF')',
    repeat_interval => 'FREQ=HOURLY;INTERVAL=12',
    end_date => 'to_timestamp('02/04/09 11:00:00.00', 'DD/MM/RR HH24:MI:SS.FF')',
    comments => '-------');
    END;
    0552: Bind variable "MI" not declared.

  • The app? How do I open/create a new PDF document using Adope Reader

    How do I use the Adobe Reader app on my android tablet to create a PDF document.  Can the Reader app convert an existing *.docx document to a *.pdf?

    Currently this feature is not available in Adobe Reader.
    Thanks,
    -vaibhav

  • I create a new Teksteditor document in the Cloud. Then, when I go to my Cloud account, I see only Pages, Numbers and Keynote doc.No Teksteditors.

    When I make a new doc. in Texteditor, I chose to make it in the Cloud, and not on my Mac.
    Later, when I go to iCloud.com and sign in, I cannot find texteditors doc. Only Pages, Numbers en Keynote docs.
    Where do I go to to find my Texteditor-doc in the Cloud?

    Text edit documents are only available on a Mac.

Maybe you are looking for

  • Itunes won't open i keep getting  a problem report i press respond, but the report reappears and nothing else happens

    the itunes on my mac wont open.  I keep getting a problem report fro itunes, which i press the respond option. the box closes for approx 10 seconds then comes back. I have looked in the force close box but it is not appearing here.

  • Fetching all text components for query - RSRREPDIR / RSZELTXREF / RSZELTTXT

    Hi all, I am developing a tool to fetch all the text components for a BI query. The texts are then to be translated and uploaded back to the BI system, but right now we are first focusing on downloading the texts. In the tool, the user inputs the que

  • Creating a Web Service From an existing Java Project

    Hi folks, I'm new to web services and SAP Netweaver so I need to know if I can use my exisiting Java codes (not EJB's though) for creating web services and the WSDL. I've already gotten the codes working and all and just need to make them into web se

  • Data set Line feed

    Hi I am writing a file using data set. But the each line doesnot start in a new line. how do i make it possible? Points will be rewarded thanks My code is ...   OPEN DATASET p_unixfile FOR OUTPUT IN text mode  ENCODING DEFAULT.   LOOP AT i_opfile INT

  • No internet connection after software update

    Yesterday I did for the first time my Nokia E51software update. I followed after instruction, update has installed properly. After update I backed up my data and settings. But there is one problem. After update my phone lost internet connection. Ever