How to upload HR documents in archivinglink

Hi Gurus,
How to upload all types of HR documents in archivinglink? and where to display these documents? How to retrieve a particular document?
Thanks in advance.
CNU

Hello,
In ArchiveLink. There is a content repository defined for documents and files are stored in tables defined in those repositories.
Usually table for HR documents is SDOKCONT1. Check Tcode OAC0.
Kind Regards
Christine

Similar Messages

  • How to upload the documents like PDF, EXCEL and WORD

    Hi,
    I am working on UI, I am tracking the COREMODS data using this UI. My requirement is need to maintain the related documents also in database using this UI. I think SLM system have that functionality. If any one know about this functionality, explain about
    How to upload the documents into database.
    How to maintain this documents in database.
    Is there any standard methods/function modules to upload this documents ( I am not asking about content of document, I am expecting about total file).
    i.e. I want to maintain the all core mod related test cases and other documents in SAP database.
    How to handle this functionality?        
    Rayudu

    Hi Rayudu,
    For office documents we can use [Business Document Service|http://help.sap.com/saphelp_nw70/helpdata/EN/3d/90a9371c726343e10000009b38f842/frameset.htm]
    Cheers,
    Jose.

  • How to upload a document with values related to document properties in to document set at same time using Javascript object model

    Hi,
          Problem Description: Need to upload a document with values related to document properties using custom form in to document set using JavaScript Object Model.
        Kindly let me know any solutions.
    Thanks
    Razvi444

    The following code shows how to use REST/Ajax to upload a document to a document set.
    function uploadToDocumentSet(filename, content) {
    appweburl = decodeURIComponent(getQueryStringParameter('SPAppWebUrl'));
    hostweburl = decodeURIComponent(getQueryStringParameter('SPHostUrl'));
    var restSource = appweburl +
    "/_api/SP.AppContextSite(@target)/web/GetFolderByServerRelativeUrl('/restdocuments/testds')/files/add(url='" + filename + "',overwrite=true)?@target='" + hostweburl + "'";
    var dfd = $.Deferred();
    $.ajax(
    'url': restSource,
    'method': 'POST',
    'data': content,
    processData: false,
    timeout:1000000,
    'headers': {
    'accept': 'application/json;odata=verbose',
    'X-RequestDigest': $('#__REQUESTDIGEST').val(),
    "content-length": content.byteLength
    'success': function (data) {
    var d = data;
    dfd.resolve(d);
    'error': function (err,textStatus,errorThrown) {
    dfd.reject(err);
    return dfd;
    Then when this code returns you can use the following to update the metadata of the new document.
    function updateMetadataNoVersion(fileUrl) {
    appweburl = decodeURIComponent(getQueryStringParameter('SPAppWebUrl'));
    hostweburl = decodeURIComponent(getQueryStringParameter('SPHostUrl'));
    var restSource = appweburl +
    "/_api/SP.AppContextSite(@target)/web/GetFolderByServerRelativeUrl('/restdocuments/testds')/files/getbyurl(url='" + fileUrl + "')/listitemallfields/validateupdatelistitem?@target='" + hostweburl + "'";
    var dfd = $.Deferred();
    $.ajax(
    'url': restSource,
    'method': 'POST',
    'data': JSON.stringify({
    'formValues': [
    '__metadata': { 'type': 'SP.ListItemFormUpdateValue' },
    'FieldName': 'Title',
    'FieldValue': 'My Title2'
    'bNewDocumentUpdate': true,
    'checkInComment': ''
    'headers': {
    'accept': 'application/json;odata=verbose',
    'content-type': 'application/json;odata=verbose',
    'X-RequestDigest': $('#__REQUESTDIGEST').val()
    'success': function (data) {
    var d = data;
    dfd.resolve(d);
    'error': function (err) {
    dfd.reject(err);
    return dfd;
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • How to upload many documents in a KM folder in 1 go??

    Hello All,
    Im working on EP6 SP9.
    I an doing an experiment wherein I have a query:
    I have created a repository in KM. Now I want to upload documents from a folder on my PC.
    Different ways this can be done:
    1. FileServer.
    2. <i>This is what I have done</i> -- Have mapped my  folder on PC with my folder in Portal.
    <u>My query:</u>
    <b>Is there a way by which I can upload many documents in 1 go...i.e. upload documents in a batch?</b>
    Please help me solve this query.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu Hunjan

    Hi Prakash,
    Ive done this method.
    Is there any other way by which I can upload many documents in Portal in one shot.....
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu

  • How to upload word documents in iphone?

    Hello, I need to give a talk and I dont have printer... I should use the iphone, but I dont know how to read Word documents in the iphone... Someone can help me?

    Apple has a paid  app called Pages.  I have never used it but I guess it will open Word documents and might even allow you to store them on your phone maybe in ibooks or somewhere

  • How to upload a document from Pages to a website in Google chrome?

    I wish to upload a document from Pages to a website in Google chrome via the "choose File" button on the site. The problem is I online get the options of my Photo library. Is this even possible and if so can anyone help me?

    The only browser I know of that will accomodate document uploading is iCab Mobile (could be others in the app store I am unaware of). iCab contains its own document repositor (Downloads).

  • How to uploading custom document instance with content

    What's the best (easiest) way to upload the content and attributes of an instance of a custom document from a JSP? For example a subclass of Document with extra attributes? The bit I am finding tricky is how to deal with the content part. There are some nice examples of custom docs without content in the iFS documentation, and an example of uploading content for a standard document, using the putDocument method of IfsFileSystem, but neither of these are quite what I want.
    Any suggestions or references to gratefully received.
    Bill Roberts

    Joyce - thanks for your advice and time. I have got that to work - what I didn't realise was that you have to upload the content first, then refer to it in the XML upload for the custom document. I haven't seen anything that explains what you just told me in the documentation and it seems quite a fundamental thing. Is there something I've missed? Perhaps you could pass on a comment to the iFS documentation guys at Oracle.
    A supplementary question: to create custom doc instances via Java, I understand that I need to create a document definition first. Which method do I use to set content in that case (given that the content file will originate on a client machine, not on the server)?
    Thanks very much
    Bill

  • How to upload a document in KM

    Hi Experts,
    I need to create a iview which will display spreadsheet or other document file such as MS Word document within an iView.
    For that i need create a KM doc iview, store the doc in KM, give the path of doc in the KM iview created. It will open doc in iview.
    With URL iview, doc can be anywhere, but it will open in browser.
    Now anyone pls tell me how to do that........
    if anybody has step by step approach for this scenarion kindly send it to [email protected]
    Thanks in Advance,
    Jasmine

    Hi Jasmine,
    1. Go to File which you want to display
    2. Select Details in the context menu. Go to Settings - > Properties.
    3. Select "Access Links" in Properties.
    4. Copy the "Target URL" and paste in notepad.
    5.Go to Content Administration - > Portal Content.
      Now Create a Folder inside Portal Content.
    6. Right Click and select New - > iView.
    7. Select URL iView.
    8. Now paste the "Target URL" in the URL field of URL iView Editor.
    9. Now click on preview and find the doc opening in Browser.
    10. You are done. Go and have a coffee and enjoy.
    Hope this should be useful.
    Regards,
    venkat.

  • How to upload the document into JAVA Webdynpro screen?

    Hi Gurus,
    I have the requirement where I need offer the document uploading option in my java webdynpro screen to the enduser's through which they will upload the supporting document which can be maximum of size 10 MB.User can upload 2 or 3 documents at a time.
    and another field has to show the number of attachments that are attached with the deleting option as button?
    Then finally,I want to upload file from web dynpro to R/3
    Can you provide me a sample code with respect to Webdynpro Java.
    Thanks in Advance,
    Dharani

    Jasmine,
    There are several methods of uploading documents. Check the following links.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2b/7a3be0e795664cb1d8cae68042ceb7/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/bb/d95a42ea221153e10000000a155106/content.htm
    James

  • How to upload and search a document in KM

    Hi Experts,
    we are beginners in SAP EP.....can u guys provide me inputs for the follwing queries.....
    How to upload a document in KM ?
    How to search a document in KM?
    How to disable the windows authentication for protals?
    if it is enabled u can able to get into portals homepage while open browser ......now i need to know how to de-activitate this facility.....
    Thanks in Advance,
    Jasmine

    Hi,
      Check out the following link.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.codesamples.upload.uploadiviewdocumentation
    It gives you the sample code to upload a document in KM.
    Also, check this link that gives you information about the APIs in KM.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6b30b090-0201-0010-829d-e988d093ac65
    Hope it helps.
    Regards,
    M.Subathra

  • How to maintain the documents like PDF, EXCEL and WORD in database

    Hi,
    I am working on UI, I am tracking the COREMODS data using this UI. My requirement is need to maintain the related documents also in database using this UI. I think SLM system have that functionality. If any one know about this functionality, explain about
    How to upload the documents into database.
    How to maintain this documents in database.
    Is there any standard methods/function modules to upload this documents ( I am not asking about content of document, I am expecting about total file).
    i.e. I want to maintain the all core mod related test cases and other documents in SAP database.
    How to handle this functionality?
    Rayudu

    hi,
    There is a Utility in SAP called Easy DMS.
    Here you can create folders, maintain authorisations and store your documents.
    Hope this is wht u r looking for.
    Reg,
    Raj

  • SharePoint 2013 : Uploading a document with embedded objects

    Hi all,
    I have a scenario, where my client ask how to upload a document which has embedded documents.
    Grateful if someone can help/guide me please.
    Many Thanks & Regards
    vinay

    Hi Vinay,
    from the GUI or through code?
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • Can't see 'Upload Multiple Document' option in sharepoint 2013

    After upgrading Sharepoint 2010 to 2013, i can't see 'Upload Multiple Document' option under files tab. I have downloaded and place the file 'STSUPLD.DLL' into Office14 and Office15 folder but IE is not asking me to run any microsoft ActiveX control as mentioned here
    http://thuansoldier.net/?p=2289
    I am using  Office 2010 with IE9 (32 bit) .
    Am i missing anything ?

    Hi, 
    According to your post, my understanding is that you could not see the “Upload Multiple Document” option in SharePoint 2013.
    In SharePoint 2013 the “Upload Multiple” Options has been depreciated. As we all known, there are two alternative ways to Upload multiple documents:option
    1 -  Using the drag-and-drop functionality, option 2 - Windows Explorer view.
    You can upgrade your IE from IE9 to IE10 then check whether it works.
    You can also use the Windows Explorer view to upload multiple documents.
    You will probably get the following error.
    To resolve this add the SharePoint site as Trusted in your Browser and Make sure that the WebClient service is running. To do this, follow these steps:
    Click Start, click Run, type services.msc, and then press Enter.
    In the list of services, locate the WebClient service, and then make sure that its status in the Status column is set to Started. If its status is not set to Started, double-click WebClient, click Start, and then click OK.
    Once done restart the browser and try opening the Windows Explorer again. In the Windows Explorer you can copy and paste Multiple documents as done in earlier SharePoint versions.
    For more information:
    http://www.learningsharepoint.com/2012/11/29/how-to-upload-multiple-documents-in-sharepoint-2013/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How do i upload a document to facebook? It's too big as it is so can i make it smaller?

    How do i make a text document small enough to upload to facebook? (It's only one and a bit a4 pages)

    You can't upload the PDF but you can link to a PDF. This blog post on How to upload a PDF file to Facebook explains an easy way to do this using either Acrobat or the free Reader.

  • How to upload documents in solution manager

    Hi
    Could anyone please help me how to upload documents in solution manager.
    just like saving the documents in common share folder.Is it possible to do the same
    in solution manager
    Need to create different folders to upload different documents
    Please help me.

    Hi
    folow this guide on smp to create a project etc with screenshots
    https://websmp206.sap-ag.de/~sapdownload/011000358700000478762009E/HowToCreateConfGuide.pdf
    if just want to upload the documents then choose process step on left side and click project doc tab
    upload documents
    hope it helps
    regards
    prakhar

Maybe you are looking for

  • Executing WINWORD from both Windows and linux using Java

    Dear All, I have a problem when trying to use Runtime class to execute a winword document. My code is as follows. Runtime r= Runtime.getRuntime(); try{ r.exec("rundll32"+" "+"url.dll,FileProtocolHandler"+" "+"WINWORD"+ " "+"file://C://welkom.doc"); c

  • Help! My Ipod Video Headphone Jack isn't working!

    Hey guys. My Ipod video has starting messing up in the jack so that it doesn't play right in the right ear regardless of what headphones I use. Is this a common problem and any idea how to fix it or how much it costs to fix it and where I go?

  • Mozilla or firefox quits 10.3 after one day of installation

    I tried to install mozilla on my ibook 10.3.9 and after one day it starts quiting. I deleted the fist one and it still quits. I did permission repair, macgenitor and removed all the files by locating them with the command apple F before reinstalling.

  • Unable to "print" using Adobe PDF ... spooler issue?

    Hello, I get the following message when trying to create a PDF file from any of my programs. I've got Vista OS. "Invalid Adobe PDF printer properties. Do not change spooler settings. Please select "Print directly to the printer" option (from Adobe PD

  • How to analyze program performance

    On solaris, I have following stuff. Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01) Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode). 1. To analyse a program, I use "java -d64 -Xms1024m -Xmx7168m -XX:+UseLWPSynchroniz