KM with DMS to markup a simple drawing

We have a need to display and markup a simple drawing and store the marked up drawing with a document. I read where you can use DMS with a viewer to "redline" a document and that is stored in a layer not changing the original. We would like to do a similar markup in the portal. But do we need DMS viewer do this.  I had thought that there was a better way with KM in the Portal to keep track of unstructured data. If we can call up a simple drawing put in the fixes and markup and then save the markup with a document or on a document that would be all we need.

Hi Peter,
First you need the content manager role and the content admin role
If you go to the tab content manager, you'll see that you have a subtab "forms builder"
this is a tool to create your own forms, it is very easy to use
This link describes how to get started with the xmlform builder:
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ee639033-0801-0010-0883-b2c76b18583a
Don't forget to generate the project to make it available to your portal...
Afterwards you go to content administration -->portal content --> choose a folder where you want to save your IViews --> New iview --> from template --> KM navigation IView
You have to fill in the fields <b>layoutset</b> (NewsExplorer and NewsBrowser are standard, NewsBrowser is read-only, and with NewsExplorer you can edit your forms and create new ones)
Set the <b>layoutset Mode</b> to exclusive
Fill in the <b>XML Forms Project Path</b> (always /etc/xlmforms/yourproject)
Afterwards you have to create a page and add the iView to that page
Then you can add the page to an existing role or create a new one
If you create a new role, you have to give permissions to your users for that role and add the role in the user administration tab to the user(group)s
Let me know if you need some extra help

Similar Messages

  • Looking for a simple drawing application for my grand-daughters

    Well, that's more or less it, I'm looking for a simple drawing application for my grand-daughters. In the children section of iTunes store, there's only a few books and nothing more. I bought the iPad mainly for my grand-children to teach them a bit and I don't find interesting things for them.
    Can anybody help me with that?
    Pedro Godfroid Goffin

    Brushes is a nice finger drawing app. Since you didn't say how old they are, I don't know if the interface is to difficult for them to use.
    Sketchbook is another nice drawing app.
    Neither are free.
    Glor

  • Simple Drawing Application?

    I am trying to work out a loading of a ship with all the dimensions I have...
    Is there a simple drawing app like Visio for windows (which comes with office) for the Mac??
    I would like to do it to scale, looked on version tracker/ mac update but cannot find anything!
    Thanks

    Hi there Dirtydog.
    The two roughly equivalent programs I know of are Omnigraffle, and ConceptDraw.
    http://www.omnigroup.com/applications/omnigraffle/
    http://www.conceptdraw.com/en/
    Neither of them are free I'm afraid.

  • Simple drawing/sketch(/chat) solution, 2 computers simultaneously

    Hi!
    Topic already says it: I'm searching for a simple drawing/sketch/chat solution, 2 computers simultaneously. Priority about like this:
    1) Simplicity
    2) Responsiveness
    3a) Would be neat to have two working, independent mouse pointers & keyboard "foci" that work at the same time and visible on both PC's
    3b) Well, one shared pointer would do it, too then I'd use irc or something to "coordinate"
    X) advanced drawing / networking features I don't really need, but as long as they don't get in the way...
    I'm not planning on drawing a masterpiece with that, nor do I want to set up an encrypted server that allows 1000 people to draw at once - just two computers, simple sketches, simultaneously.
    Now...: What's the solution for this that fits best?
    - should I just try to figure out how to have X-windows in general register with two x-servers at once and use GIMP - although I don't need even one 10th its abilities for this? I don't know yet if it's possible/intended to do that like this, but if it is and someone can tell me a good search term, google should be able to teach me.
    - Is there some program that is really specialised on doing something like that? All I could find were various "online - pen&paper - chat/sketch/rolldice"-tools and none of them looked too comforting (plus: they mostly look a bit... silly... for a more general purpose, but that shall not hold me back nor shall the "random treasure chest" menu entry, for I have to power to just ignore it! ) but if someone can recommend a specific one that is suited well, I'll give it a try!
    - Anything else that can help me find the right way for me to do that?
    Thanks!
    Last edited by whoops (2009-07-07 12:13:41)

    You should search thru this or the AS3 forum for a posting from last year (or several from the same person) looking to do what you wanted to do.  I believe multiple postings resulted from this person refusing to accept they wouldn't be able to do it, or at least that no one was going to take the time to figure out a solution and give it away.  Logistically and technically it would be a complex design if it could be implemented.

  • Simple drawing app...

    i want to create a simple drawing app.... the user can draw
    rectangles on the screen with drag and drop mouse action...
    when a recatngle is drawn... the user can
    1) stretch the size of the rectangle and
    2) can 'drag' it around the screen with the mouse.
    can any one help me with this... thanks.

    hey kglad....
    i got something like this so far.....
    still a bit stuck on drawing a recatangle that can be
    scalable by the user and can be draged around the screen...
    will i have to keep on creating movie clips for every
    rectangle the user wants to create....
    im trying to buld a simple room map app, where the user can
    draw a plan of a house.. each room will be a rectangle.
    onMouseDown = function () {
    this.createEmptyMovieClip("rectang", 1);
    rectang.lineStyle(1, 0x000000, 100);
    rectang.moveTo(_xmouse, _ymouse);
    onMouseMove = function () {
    rectang.clear();
    //draw rect here...
    onMouseUp = function () {
    };

  • Making a simple drawing tool, help appreciated

    hi, i'm trying to make a simple drawing program, but the graphics line are quite dotted if i'm not taking it really slow. FPS is set at 120 (max), but this doesn't seem to help me. I have a button to erase, and one to draw, all I need is template for one of them. down below are the code necessary for executing the operation:
    stage.addEventListener(MouseEvent.MOUSE_MOVE, moveLine);
    drawButton.addEventListener(MouseEvent.CLICK, clickPencil);
    graphics.lineStyle(2, 0x000000, 1);//linecolor = black
    function moveLine(evt:MouseEvent) {
        if (mouseX<670) {//this will make it stop functioning before hitting sidepanel
            graphics.moveTo(mouseX, mouseY);
            graphics.lineTo(mouseX-1, mouseY+1);//makes the lines appear
    function clickPencil(evt:MouseEvent) {
        graphics.lineStyle(2, 0x000000, 1);
    But the second problem is that it keeps drawing when I go to the eraser. Tried using MouseEvent.MOUSE_DOWN, to make it only draw when I held down the mousebutton, either that, or I want it to draw only when combined with some KeyboardEvent...is this possible?
    I also wonder if it'd be possible to make smoother lines, almost like the ones drawing in Flash itself....

    Looks like you heed to change it to something like this:
    drawButton.addEventListener(MouseEvent.MOUSE_DOWN, clickPencil);
    graphics.lineStyle(2, 0x000000, 1);
    function moveLine(evt:MouseEvent):void {
        if (mouseX < 670) {
            graphics.lineTo(mouseX-1, mouseY+1);
    function clickPencil(evt:MouseEvent):void {
         graphics.moveTo(mouseX, mouseY);
         stage.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
         stage.addEventListener(MouseEvent.MOUSE_MOVE, moveLine);
    function stopDrawing(evt:MouseEvent):void{ 
         stage.removeEventListener(MouseEvent.MOUSE_MOVE, moveLine);
         stage.removeEventListener(MouseEvent.MOUSE_UP, stopDrawing);
    As for smoothness, you probably need to come up with some trigonometric algorithm that takes into account mouse move direction and make curveTo() call. I am not sure it is worth it though.

  • Error while using BAPIs that deals with DMS

    Hi everybody,
    We are developing a portal with Web Dynpro and trying to call from our java code BAPIs that deals with DMS:
    BAPI_DOCUMENT_CREATE2 - to create a new DMS document and checkin an original.
    CVAPI_DOC_CHECKIN - to checkin an original to an existing DMS document.
    CVAPI_DOC_CHECKOUT - to checkout an original from the DMS.
    While using other bapi's that deals with DMS but do not deals with originals (like creating a new document, retrieving metadata about documents and originals) we don't have any problem.
    Only when trying to checkin or checkout originals we get the following message (from the DMS?): RFC_START_PROGRAM
    the full message is: com.sap.aii.proxi.framework.core.BaseProxiException:RFC_START_PROGRAM error key:RFC_ERROR_PROGRAM.
    does anybody knows the meaning of this message?
    by the way - those BAPIs works well while called from the R/3. only when we call them from the portal we have this problem.
    thanks for any information, Adi.

    Hello,
    BTW, You have BAPIs for Doc. checkin and checkout.
    BAPI_DOCUMENT_CHECKIN
    BAPI_DOCUMENT_CHECKIN2
    BAPI_DOCUMENT_CHECKOUTSET
    BAPI_DOCUMENT_CHECKOUTSET2
    Can you use these and give a try?
    You have a detailed documentation maintained for these BAPIs.
    Hope this helps you.
    Best Regards, Murugesh AS

  • How to link c-Folder with DMS?

    Hello,
    I'm a new in this tool and i would like to know somethings.
    1) What the Object Type i use to link c-Folder with DMS?
    2) Can I do this if I install C-Folder in a separate server other than SAP R/3?
    Regards
    Pedro Sasso

    Hi,
    DO you mean via the 'Object Linking' feature in DMS?
    If yes, please ensure that the 'c-projects Elements' object has been selected for the particular document type in DC10.
    Also, to view the attached DIR in c-projects, ensure that the RFC is established b/w c-projects and DMS.
    Yes..you can,since c-Folders has functionality of maintaining public and private collaboration scenarios so c-Folders is being used to communicate between Suppliers and Vendors.
    c-Folders is not like webDMS, it is a separate application for which the link can be created from portal itself.
    In c-Folders user ID and password can be created which need not have any licenses.
    Hope it helps you.
    Thanks
    Arbind Prasad

  • New to SAP PLM7.0 integration with DMS

    Hi Friends,
    i am new to SAP Solution PLM7.0, and also about the integration with DMS.
    i wish to learn about this, so pls assist me and forward some links and documents.
    that would be helpfull for me.
    thanks,
    udhayasurian

    Ajaykumar,
    You have BI and BO installed and running on good environment,Correct??
    Only you need SAP Integration Kit installed.
    After installing successfully.
    Create master BEx query. Go to Properties -->> Extended tab -- Allow external access to OLAP (Incase of BW3.x)
    Create master BEx query. Go to Properties -->> Advanced tab -- Allow external access OLAP (BI7.0)
    Now go to Universe Designer:
    -->> Name Universe and Click on Connection -- New
    -->> Connection parameter dailog box -- It prompt for many options like:
    Authentication Mode:User/Pass or BO mappings or SSO
    User Name:
    Password:
    Language:EN
    Application Server: <SAP BI system details--IP address>
    System ID:<SAP BI ID>
    System No:<SAP BI NO>
    Logon Group:(greyed out)
    Message Server:(greyed out)
    -- Click on Next
    -- Here, you can see all OLAP cubes ($Infocubes) and Folders for BEx query based/Multiproviders.
    -- Select the required one.
    -- Click Next -- Next -- FINISH
    OK
    Now you can see lict of *Classes and Objects* and not Universe structure as we are on SAP BI system.
    (In Universe Designer window)
    Go to -- File -->> Export -- (Select any folder, where you have access)
    Now, *logon to Infoview*:
    -- Document list
    -- New-->> New Web Intelligence Document
    It will list out all Universe those are exist in repository.
    Choose the exported one.
    Now you are in *Web Intelligence Report panel*.
    -- Drag any objects like Dimension/Detail or Measure to Result Objects pane (to see them in Report)
    or
    Drag them to Query Filters section to restrict the data.
    --Click on Run Query
    -- Now Report you can see.
    If you want to create Report 2:
    Just Right click on Report1 and say Duplicate or New Report.
    Hope I cleared all your doubts.
    Thank You!!

  • Configure content server with  DMS

    i have a content server setup by BASIS team , i need to use this server as a storage category for DMS to store Documents on it .
    what is the required configurations to integrate the content server with DMS . 

    Dear Reda,
    for this information please see the online documentation at
    Knowledge Provider (BC-SRV-KPR) - SAP Library
    SAP Library - SAP Content Server
    I hope that this could answer your questions and help your basis team.
    Regards,
    Christoph

  • Simple drawing surface - Edge

    Hi I wants to do a simple drawing surface that you can easily pop into your pages, similar to the basic windows paint program.
    I find A jQuery paint plugin (http://wpaint.websanova.com) but i can't use it. Please help me or prepare me dome file or something like that.
    THX
    Daniel Poland

    hey kglad....
    i got something like this so far.....
    still a bit stuck on drawing a recatangle that can be
    scalable by the user and can be draged around the screen...
    will i have to keep on creating movie clips for every
    rectangle the user wants to create....
    im trying to buld a simple room map app, where the user can
    draw a plan of a house.. each room will be a rectangle.
    onMouseDown = function () {
    this.createEmptyMovieClip("rectang", 1);
    rectang.lineStyle(1, 0x000000, 100);
    rectang.moveTo(_xmouse, _ymouse);
    onMouseMove = function () {
    rectang.clear();
    //draw rect here...
    onMouseUp = function () {
    };

  • Problem with simple drawing program - please help!

    Hi,
    I've only just started using Java and would appreciate some help with a drawing tool application I'm currently trying to write.
    The problem is that when the user clicks on a button at the bottom of the frame, they are then supposed to be able to produce a square or circle by simply clicking on the canvas.
    Unfortunately, this is not currently happening.
    Please help!
    The code for both classes is as follows:
    1. DrawToolFrame Class:
    import java.awt.*;
    import java.awt.event.*;
    public class DrawToolFrame extends Frame
    implements WindowListener
    DrawToolCanvas myCanvas;
    public DrawToolFrame()
    setTitle("Draw Tool Frame");
    addWindowListener(this);
    Button square, circle;
    Panel myPanel = new Panel();
    square = new Button("square"); square.setActionCommand("square");
    circle = new Button("circle"); circle.setActionCommand("circle");
    myPanel.add(square); myPanel.add(circle);
    add("South", myPanel);
    DrawToolCanvas myCanvas = new DrawToolCanvas();
    add("Center", myCanvas);
    square.addMouseListener(myCanvas);
    circle.addMouseListener(myCanvas);
    public void windowClosing(WindowEvent event) { System.exit(0); }
    public void windowOpened(WindowEvent event) {}
    public void windowIconified(WindowEvent event) {}
    public void windowDeiconified(WindowEvent event) {}
    public void windowClosed(WindowEvent event) {}
    public void windowActivated(WindowEvent event) {}
    public void windowDeactivated(WindowEvent event) {}
    2. DrawToolCanvas Class:
    import java.awt.*;
    import java.awt.event.*;
    public class DrawToolCanvas
    extends Canvas
    implements MouseListener, ActionListener {
    String drawType="square";
    Point lastClickPoint=null;
    public void drawComponent(Graphics g) {
    if (lastClickPoint==null) {
    g.drawString("Click canvas first",20,20);
    } else {
    if (drawType.equals("square")) {
    square(g);
    else if (drawType.equals("circle")) {
    circle(g);
    public void actionPerformed(ActionEvent event) {
    if (event.getActionCommand().equals("square"))
    drawType="square";
    else if (event.getActionCommand().equals("circle"))
    drawType="circle";
    repaint();
    public void mouseReleased(MouseEvent e) {
    lastClickPoint=e.getPoint();
    public void square(Graphics g) {
    g.setColor(Color.red);
    g.fillRect(lastClickPoint.x, lastClickPoint.y, 40, 40);
    g.setColor(Color.black);
    public void circle(Graphics g) {
    g.setColor(Color.blue);
    g.fillOval(lastClickPoint.x, lastClickPoint.y, 40, 40);
    g.setColor(Color.black);
    public void mouseEntered(MouseEvent e) {}
    public void mouseExited(MouseEvent e) {}
    public void mousePressed(MouseEvent e) {}
    public void mouseClicked(MouseEvent e) {}
    Any help would be appreciated!

    Some of the problems:
    1) nothing calls drawComponent(Graphics g)
    2) Paint(Graphics g) has not been overriden
    3) myCanvas is declared twice: once as an instance variable to DrawToolFrame, and once local its constructor. Harmless but distracting.

  • Can I create a simple Drawing App with Crayon, Marker, Paint Bucket and Eraser in Edge?

    I need to create an 'app' that allows user to 'color'/'paint' in simple colorbook pages with a specific color palette or if I can have an expanded color palette great..
    any thots
    I have found the code to do it, but I am not a coder that is why I am investigating Edge...
    Many thanks

    Hi, mark-
    It's going to be hard to do without code in Animate.  Yoshoika Ume-san did a little project in an earlier version of Animate that did it, but it was heavily code centric.
    Thanks,
    -Elaine

  • Possible to do plugin automation with BCF2000? or can I Draw it?

    Hi, I get a BCF2000. It works in Logic Control emulation with STP now, but I don't know how to use it to control STP's plugin automation curve. Anyone knows it?
    If not possible, can i just use mouse to drag an automation curve - not by dragging breakpoint to breakpoint one, but just like drawing with a pen tool?

    The new version of GarageBand is only compatible with 10.9 and above.
    If your Mac can run MacOS X 10.6.8, it probably can be upgraded to Yosemite, if you don't have to stick to Snowleopard for other reasons.
    Is it possible to still get the older version?
    Amazon or eBay are still selling iLife '11 installer disks, and you could reinstall GarageBand from these DVDs. But it will be expensive.
    Have you checked your backups, if you can restore GarageBand from a backup?
    OR, can I get another copy of the startup CD that came with my computer so that I can reinstall GarageBand?
    Sometimes the AppleStore Support will replace missing installer CDs for a fee.

  • Looking for very simple drawing app for tablet [Solved]

    Hey,
    Im running Arch with XFCE on an Asus T91MT tablet/netbook, with a resistive screen & pen.
    I'm looking for a very basic, lightweight, tablet-oriented drawing/sketching/doodling app, to make notes, draw ideas/concepts, etc.
    I've tried MyPaint, which doesn't work because the screen isn't pressure sensitive (I would only need one pen size anyway), and a few other apps.
    SmoothDraw (windows app) is exactly what i'm looking for, but it doesn't install on wine. And wine doesn't help with the "keeping it light" idea, so I would prefer something native.
    Any suggestion is welcome!
    Last edited by Feroxium (2011-07-29 01:13:00)

    Feroxium wrote:Yup, solved
    umm...yeah, edit the first post in this thread and append [SOLVED] to the thread subject/title.
    That way others looking for similar info, might be able to quickly gauge if a solution is available in the thread or not.

Maybe you are looking for