PLM7.0 with easyDMS and cFolders

Hi,
Could someone please describe how SAP PLM7.0 solution interfaces with easy DMS and cFolders.Has anyone used these components together? Please share your thoughts.
thanks,
Rahul

Hello Rahul,
The easy dms folder structure can be viewed from the Document Information Record in PLM 7.0
Coming to cFolders,
PLM 7.0 can be accessed from Enterprise portal, so your suppliers can access the product data which is required for them from it.
Otherwise cFolders can be used to exchange the product data as usual.
Regards
Prasad K

Similar Messages

  • CProjects and cFolders

    Hi People
                       Please enlighten me about cFolders  and Cprojects. I am bit curious to know about this.
    Thanks and Kind Regards
    Mohan

    Hi Mohan,
    <b>CFolders:</b>
    cFolders is the Web-based collaboration platform for the PLM area. The application enables teams that work in product development in cross-enterprise scenarios to communicate and cooperate with each other. cFolders makes it possible for teams to exchange structured information as bills of material, data sheets, or customer-defined structures, for example. This approach improves the consistency of your data when communicating with external partners and suppliers which in turn reduces the duration of the project.
    cFolders is integrated in SAP document management (DMS). It is also possible to use cFolders in the SAP Bidding Engine as a container for technical specifications.
    <b>Collaboration Projects (cProjects)</b>
    In order to cope with the high demands of complex development and consulting projects on an enterprise, planning solutions are required that support progressive project management methods and therefore have a positive influence on project duration and quality. Furthermore, it is important to have tools that are easy to use and implement and that enable project participants to work together.
    cProjects covers the whole range of project management activities, from planning and execution to the final stages of the project.
    cProjects integrates cFolders for exchanging documents with external partners
    For More details follow below link
    <u><b>http://help.sap.com/saphelp_cpro31/helpdata/en/home.htm</b></u>
    Regards
    Rehman
    Reward your suitable Points to all of them.

  • FTP Sub Command: Local Error with EasyDMS

    We have been using DMS for several years.  We have a vault setup and are able the checkin files with FTP via SAPGUI with no problems.  Recently we have been looking at EasyDMS.  We have it installed and can login ok.  When we try to drag a file into the windows explorer the popup appears and we can enter the META data.  When the file is checkin via FTP we get FTP Sub Command: Local Error.
    Any suggestions would be appreciated.

    Tom,
    We have encountered the exact same siituation with EasyDMS, we currently have had an OSS call to SAP for 2 weeks that ended up with the developers in Germany and bouncing the issue back to technical support and stating that they have no idea!
    We are also interested in an answer, sorry I can't help you, but you are not alone.

  • Is there a way to create a year at a glance with detail and print?

    Is there a way to create a year at a glance with detail and print?

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    Thanks.  The reason this has become an issue is that I recently bought a new Macbook Air that the iPad is not synced to.  The one is was synced to was stolen.  If I want to sync this iPad to the new Air, won't it be wiped before I'm able to copy these films or am I wrong about that?

  • Problem with xfce and/or mouse and keyboard

    Hi!
    Two days ago I've turned on my laptop with Arch and the display manager Slim has frozen immediately. Later on Single-User mode I've uninstalled it. Now in normal mode when I type "startxfce4" everything is showing up, but the mouse and keyboard don't work. I know it's not frozen, because animation of mouse and CPU Frequency Monitor is on.
    Strange fact is that laptop is not connecting with the Internet, so now I don't know where the problem is.
    It's happening when I start xfce both from user and super user.
    Just before those troubles I've updated everything with "pacman -Syu", but I haven't seen anything strange. Also the computer could have been roughly turned off (by unplugging power supply), when was turning on.
    Thanks,
    Gaba

    Sorry for not replying, but I didn't have access to my laptop by this time.
    On grub I have only normal mode and 'fallback' mode, so I have result from 'journalctl' from normal mode.
    I'm sending the fragment of this file where you can see everything after I typed 'startxfce4' in console:
    http://codepad.org/8pYIj8qC
    I see that something is wrong, but after some attempts I don't know how to fix this ^^
    Edit:
    Oh, I forgot to write, that I've tried activate some drivers from 'lspci -k' (there were no "Kernel driver in use:..." in almost every device), but it didn't fi anything.
    Last edited by gargoyle (2015-03-15 23:20:18)

  • Problem with JFrame and busy/wait Cursor

    Hi -- I'm trying to set a JFrame's cursor to be the busy cursor,
    for the duration of some operation (usually just a few seconds).
    I can get it to work in some situations, but not others.
    Timing does seem to be an issue.
    There are thousands of posts on the BugParade, but
    in general Sun indicates this is not a bug. I just need
    a work-around.
    I've written a test program below to demonstrate the problem.
    I have the problem on Solaris, running with both J2SE 1.3 and 1.4.
    I have not tested on Windows yet.
    When you run the following code, three JFrames will be opened,
    each with the same 5 buttons. The first "F1" listens to its own
    buttons, and works fine. The other two (F2 and F3) listen
    to each other's buttons.
    The "BUSY" button simply sets the cursor on its listener
    to the busy cursor. The "DONE" button sets it to the
    default cursor. These work fine.
    The "SLEEP" button sets the cursor, sleeps for 3 seconds,
    and sets it back. This does not work.
    The "INVOKE LATER" button does the same thing,
    except is uses invokeLater to sleep and set the
    cursor back. This also does not work.
    The "DELAY" button sleeps for 3 seconds (giving you
    time to move the mouse into the other (listerner's)
    window, and then it behaves just like the "SLEEP"
    button. This works.
    Any ideas would be appreciated, thanks.
    -J
    import java.awt.BorderLayout;
    import java.awt.Cursor;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class BusyFrameTest implements ActionListener
    private static Cursor busy = Cursor.getPredefinedCursor (Cursor.WAIT_CURSOR);
    private static Cursor done = Cursor.getDefaultCursor();
    JFrame frame;
    JButton[] buttons;
    public BusyFrameTest (String title)
    frame = new JFrame (title);
    buttons = new JButton[5];
    buttons[0] = new JButton ("BUSY");
    buttons[1] = new JButton ("DONE");
    buttons[2] = new JButton ("SLEEP");
    buttons[3] = new JButton ("INVOKE LATER");
    buttons[4] = new JButton ("DELAY");
    JPanel buttonPanel = new JPanel();
    for (int i = 0; i < buttons.length; i++)
    buttonPanel.add (buttons);
    frame.getContentPane().add (buttonPanel);
    frame.pack();
    frame.setVisible (true);
    public void addListeners (ActionListener listener)
    for (int i = 0; i < buttons.length; i++)
    buttons[i].addActionListener (listener);
    public void actionPerformed (ActionEvent e)
    System.out.print (frame.getTitle() + ": " + e.getActionCommand());
    if (e.getActionCommand().equals ("BUSY"))
    frame.setCursor (busy);
    else if (e.getActionCommand().equals ("DONE"))
    frame.setCursor (done);
    else if (e.getActionCommand().equals ("SLEEP"))
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    else if (e.getActionCommand().equals ("INVOKE LATER"))
    frame.setCursor (busy);
    SwingUtilities.invokeLater (thread);
    else if (e.getActionCommand().equals ("DELAY"))
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    System.out.println();
    Runnable thread = new Runnable()
    public void run()
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.println (" finished");
    public static void main (String[] args)
    BusyFrameTest f1 = new BusyFrameTest ("F1");
    f1.addListeners (f1);
    BusyFrameTest f2 = new BusyFrameTest ("F2");
    BusyFrameTest f3 = new BusyFrameTest ("F3");
    f2.addListeners (f3); // 2 listens to 3
    f3.addListeners (f2); // 3 listens to 2

    I've had the same problems with cursors and repaints in a swing application, and I was thinking of if I could use invokeLater, but I never got that far with it.
    I still believe you would need a thread for the time consuming task, and that invokeLater is something you only need to use in a thread different from the event thread.

  • Problem with installing and running some applications or drivers

    When installing and installing some items, towards the end of the installation I get this message:
    /System/Library/Extensions/comcy_driver_USBDevice.kext
    *was installed improperly and cannot be used. Please try reinstalling it or contact product's vendor for update*
    The end result is that some things do not seem to work properly, such as my HP printer. Would anybody have any ideas on how to fix this problem?

    Thank you for your response. Originally, I had a problem with Airport and ended up reinstalling Snow Leopard. Since then, when downloading upgrades etc, such as HP printer drivers, iTunes etc., towards the end of the download when its running the script, I get this message: /System/Library/Extensions/comcy_driver_USBDevice.kext
    +was installed improperly and cannot be used. Please try reinstalling it or contact product's vendor for update+
    Sometimes, the download hangs and is unable to complete. The main problem I've encountered so far with an application is when I use the printer to scan an image via Preview, it's blank: there's nothing there.

  • Customer/Vendor A/C with line item details and with opening and closing Bal

    Dear Sir / Madam,
    Is it possible to have a customer and / or vendor Sub-Ledger account-
    with line item details and with opening and closing balance detail
    for a particular period.?
    Regards
    Chirag Shah
    I thank for the given below thread which has solved the same problem for G/L Account
    Re: Report to get the ledger printout with opening balances

    Hello Srinujalleda,
    Thanks for your precious time.
    I tried the referred T-Code
    But this report is not showing Opening balance, closing balance detail.
    It only gives transactions during the specified posting period and total of it.
    Please guide me further in case if I need to give proper input at selection screen or elsewhere.
    Client Requires Report in a fashion
    Opening Balance as on Date
    + / -  Transactions during the period
    = Closing Balance as on date
    As that of appearing for G/L Account by S_ALR_87012311
    Thanks once again & Regards
    Chirag Shah

  • Customer Statement with opening and closing balances

    Dear Forum,
    The users want to generate the Customer Statement with opening and closing balances like the traditional one. The statement now generated gives the list of all open items as on date, but the users want the statement with opening balances as on the date of the begining of the range specified and the closing balance at the end of the period for which the statement is generated. Is there a way to generate the same from the system.
    Thanks for the help.
    Regards,

    Hi,
    SPRO> Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Line Items > Correspondence > Make and Check Settings for Correspondence
    You can use the program RFKORD10 with correspondance type SAP06 for your company code
    This program prints account statements and open items lists for customers and vendors in letter form. For account statements, all postings between two key dates, as well as the opening and closing balance, are listed.
    Regards,
    Gaurav

  • Vendor Line item with Opening and Closing Balances report regarding

    Dear All,
    I need a report for vendor line items with Opening and Closing balances.
    Thanks in advance
    Sateesh

    Hi
    Try S_ALR_87012082 - Vendor Balances in Local Currency
    Regards
    Sanil Bhandari

  • HT5622 I have kids with iPod and iPad. Should I have one apple ID for the family?

    I have an iTunes account and an iPhone. I have kids with iPad and iPods.  Should I keep the family on a single apple ID? 

    Yes usse the same ID. However, they will need their own email addresses for FaceTime and Messages
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime

  • Is Verizon going to acknowlege the problems with FIOS and Windows Vista

    For months now, I have been reading the numerous problems Fios internet customers are having with Fios internet/Actiontech Router and Windows Vista and there has been no acknowledgement by Verizon of this current major issue.
    I have also experienced the exact same issue for months now since I switched to Verizon FIOS internet. Previously I had Comcast HSI using my Windows Vista laptop.  I had their service for over a year and I NEVER has a problem with the Windows Vista globe icon disappearing and loosing internet connection. The Globe always stayed on and never went away and I never lost connection when I had Comcast
    I had Verizon FIOS installed last September with my Windows Vista computer and my wireless internet connection started to drop from day 1 and it has been a daily occurrence for over 5 months now.  It has gotten so bad, I have had to hardwire my laptop to to be able to use the internet uninterrupted.
    This is what daily scenario is:
    When I turn on my laptop(with Windows Vista, I can initially get full internet access(with the globe on and it says "Local and internet). After about 10 minutes or less, the globe switches to "local only" and I can still get  internet access.  After another 5 or so minutes, a large X covers the globe and I lose internet connection entirely. The actiontech router wireless signal is no longer listed as one of the wireless networks.  The only way for me to regain internet access is either to restart my laptop or reboot the actiontech router.
    Numeorus posts here, over by DSL forums(Broadband Reports),Microsoft's website and a few othere websites detail this issue.
    I am extremely shocked and surprised that Verizon has not tried to fix this issue by working with both the makers of the Actiontech Router as well as Microsoft to find out what the problem is and how to fix it.
    I would just like to reiterate I strongly believe this is primarily a FIOS internet issue since I previously had Comcast HSI for over a year with the same Windows Vista laptop and I NEVER had that problem. Also,  I can connect to my neighbors wireless connection(she uses Comcast HSI) and when I do, the globe stay on all the time on my computer and the internet does not lose connection.
    I know that there are a couple of Verizon employees here. Please tell the higher ups who handle FIOS internet that this is a major issue that needs to be resolved as soon as possible.
    P.S: Please don't tell me to go by my own router because then, I will have to deal with the issues of setting it up to work with Fios TV and the related VOD, widgets, remote DVR compatability issues to deal with. I don't think I can deal with the additional headaches. 

    FIOS is short for fiber optics.  fiber optics is different technology than DSL.   
    With that said, if you search the Microsoft databases for vista issues with fiber optics, (CURRENTLY THERE IS ONLY ONE PROVIDER OF FIBER TO THE HOUSE, that being Verizon, so yes you can also search Vista issues with verizon and\or fios) and you will find that Microsoft already acknowledges this issue with their software.  AND they offer you a fix.
    cjacobs001

  • Progams that work with Alltel and Suddenlink are no longer working with VERIZON (IRC)

    I have worked this issue TO DEATH already and am getting FED UP!
    I have been polite and nice and called customer support to get very short and not very explicit answers to this issue.  
    Complaint #1: When I call technical support and ask questions more complicated than " How do I plug in my computer?" they inform they are transferring me to TECHNICAL support.  Okay so who did I call in the first place if not tech support.
    Problem:  IRC ( Internet Relay Chat)  Is one of the main things that I enjoy doing online.  Some do games, some do work.  I do it all through my little IRC program.  When I was with Alltel and had my little blackberry pearl.  I could even get onto irc just fine that way.  Getting on via a cell phone is kind of a pain.  Small keyboard and lots of typing isn't my idea of that relaxing but.. okay whatever at least I could get on.  Since Alltel became Verizon I was told to upgrade my phone to the brand new Blackberry Curve.  Well now IRC didn't work.  I upgraded to the LG Vortex.  Now it works on my phone.  So I upgraded my wireless card too and IRC worked just fine for a long time.  NOW we are back to the same old same old.
    For those of you not familiar with the program just wiki it.  I have been told by NUMEROUS customer support reps that this program is not being blocked so this is the list of things I went through to make sure it was indeed NOT me or my computer.
    Step 1: System restored before most recent updates to the last date that it was working.
    NO GO
    Step 2: Disabled firewall and virus software temporarily and even turned down my security on my browser
    NO GO
    Step 3: Re updated my computer and updated my firmware on my MIFI2200 card. 
    No go
    Step 4-7 Called customer Support
    NOPE.
    Still waiting.  I am paying for a service that is not providing.  My entire family was with Alltel and is now with Sprint.  I just keep asking myself why am I still with Verizon when all we ever do is fight.  I hate to admit it to the kids but I think it's time for a divorce from you if we can't get this issue resolved.  Before upgrading to these devices I even asked store reps if irc programs would work and they assured me " OH YES!  With these new upgrades things will be better than ever!" 
    I realize to some this seems like not a very big deal, but when I am paying for a service so that I can come home relax, maybe take a few art commisions while chatting on irc and all the sudden I either can't use it or can use it when I couldn't before it's amazingly frustrating.  I have taken my computer over to other people's houses to see if turning my security all the way back up as well as my firewall made a difference, but on any provider OTHER than verizon I can connect just fine.
    Tell me WHY Verizon.  Tell me why you either can't fix this.. or won't fix this.
    Security issues?  That's my problem.  If I want to connect to a DNS server based program that connects via different ports.. that should be MY decision.  You should NOT get to make that choice for me.  
    It's amazing I went to the customer support for IRC and they told me that Verizon doesn't allow you to use IRC.  I have checked NUMEROUS boards and discussion forums only to have them tell me that VERIZON does NOT allow you to use IRC.   However when I talk to Verizon they say " No it must be you.. "  Well I am not taking that excuse anymore.  I've done my share of work on this problem.  Now it's your turn.  Sorry to be rude.. but I paid for the mIRC program, and take artwork commisions over it as well.  I probably pay more for verizon's service than I would with sprint (so says the rest of the family).  
    Please give me some real answers and real tech support. 
    Thanks for any help. 

    I choose option 3.  The moment I talk to them about anything more complicated than the bare basics of getting connected they tell me they will transfer me to " tech support."  Very frustrating lol.  I always wonder who I was on the phone with prior to that because it says Tech support but clearly there must be different levels of their support lines.  Sometimes I get someone who will talk and work with me, but generally I get someone who says " Okay I have down your issue and I'll pass it along.."  then they hang up.  However I have been transferred twice in one sitting from "tech support" to Tech support.  So I dunno.  I think they don't have an answer and so they run me in circles.

  • Outlook 2011 no longer syncing with iCal and contacts

    I have installed Yosemite recently on my Macbook Pro. I run MS Outlook 2011 for professional reasons. Until now, syncing with my Android phone worked (almost) fine, using a nice app called SyncMate. For a few days now (not sure it is linked to installing Yosemite though) new data on my outlook calendar and address book no longer appear on my phone after syncing. After checking I realized that Outlook is actually not syncing any more with iCal and Contacts, so of course the syncing with the phone cannot work. How can I resolve this ?

    facing the same problem, it was syncing prior to my upgrade to Lion. have you managed to find a solution?

Maybe you are looking for

  • Windows 8 and itunes 11 burning cd issues

    i installed windows 8 and ever since itunes wont burn or recognize cds. My diagnostics say that the cd driver is not available. I've tried working with upper and lowerfilters. if i add both then my computer doesn't even recognize i have a cd drive at

  • Copying infoobject text into a second language key

    Hi all, I need to manage material text in both IT and EN language key. Some material codes are generated in ECC only in IT, some other in both languages. Since reporting is in any case required in english, I wish to set up something which is aimed to

  • How can i set the network time on my appleTV?

    Since the last update I have been unable to use my Appletv.  It says it can't get the network time.  I've restarted my router and unplugged the appleTV numerous times.  I've heard others have this problem too.  What is the solution?

  • Oracle 9i restore to point in time

    We are performing everyday full backups (plus archivelogs) using rman on our Oracle9i RAC database (in archivelog mode). The backup takes around 3 hours to complete. After we start the backup we wait for about 1 hour and then start transacting on the

  • How do I unlock iPad without the previous owner?

    We have an iPad that is used for our media room.  Previous "owner" / Employee created the gmail account but has now left and cannot be located.  How do activiate the iPad without the previous "owner"?