Records Management RMS ID

Can anyone tell me how create RMS ID and how to assign to AREA?
Regards

Thanks SS. but the  Service Provider  wich is called  SRM_SP_RECORD in the connection parameter tab show :
DOCUMENT_CLASS
GENSP_QUERY_EXT
MODEL_ID
MODEL_SYNC_METHOD
SRM_SP_MODEL only show
DOCUMENT_CLASS
I'm trayed to  edit SRM_SP_RECORD  (using change method), however the option to agregate RMS id doesn't appear.
Under SRM_SP_RECORDS there are several  Element Types:
SRM_SPS_RECORD
SRM_SPS_RECORD_BCS
SRM_SPS_RECORD_DEMO
SRM_SPS_RECORD_GM
I'm using  SRM_SPS_RECORD_DEMO (Element Type), in the Classification tab appear
LOG_KEEP_DAYS
LOG_LEVEL
RMS_ID
TYPE
SS, do you have any document that enable me create records, links in the ORGANIZER??. Any configuration or document that help me.
Thanks in advance, I really  appreciate your help.
Regards.

Similar Messages

  • Record Management System  Status

    I´m currently trying to use the status previously defined in RMS  Status Management but the funtions "CLOSED" and "OBJECT LOCKED" fixed to events only shown the status ID name. Even if a record or a document has a CLOSED status assigned,  it´s still  possible to modify.
    Could anyone help me please??
    Thanks

    Hi,
                     Transaction SCASEPS reads default values and then starts report SAPSRMSTART.
    SUBMIT  sapsrmstart WITH orgsps = p_orgsps
                        WITH orgrms = l_rms_id
                        WITH cfwsps = p_cfwsps.
    If you start report SAPSRMSTART (transaction SRMSTART) directly you see the selection screen. If you know which parameters to use in order to get the required records management (I don't see this because I am not familiar with this topic) then you can code your own "SCASEPS" transaction:
    Write a simple report that reads the required parameters (for selscreen of SAPSRMSTART) as SET/GET parameter (probably you have to define new SET/GET parameters). Then you SUBMIT sapsrmstart with this user-specific parameters.
    Regards

  • ADD a BOR to SAP Records Management

    Hello,
    I need to know which BAPIs I have to call to post a BOR to SAP Records Management.
    There is BAPI_RECORD_ADDELEMENT but I don´t know what parameters are necessary.
    thanks,
    Iñaki

    You can not 'add' simply a BOR object to RM.
    1.) You have to create a element type in the TA srmregedit for you BOR object and set the necessary connection parameters. Also you have to classify your element type according to your RMS ID and your AREA (case or records management).
    2.) Then your new element type appears in TA organizer or TA scase. It has autmatically the BOR methods as activity.
    3.) The BAPI adds an instance of the BOR object to a RM records (file).
    Best regards,
    Thomas

  • Business Content for Record Management System

    Hi all,
    Does anybody know if there is any available Business Content in the last release of BW, (SAP NW 2004s Add on 3)?
    As far as I know, in prior releases , there isn´t any available BC to extract information from a RMS.
    I know there are some BAPIs to reach the content in RMS and I wonder if we can use these to extract the information from RMS to BW.
    Has anybody ever faced this kind of BW project?
    Thanks in advance.

    Hi,
    I'm just facing the same problem, and I got the same conclusion that you: RMS Business Content is not available, and no news about its availability on future releases.
    It would be nice to post something here if someone gets a way of extracting data (that BAPIs don't sound like an easy job).
    Have a look:
    Records Management Business Content
    Regards,
    David.

  • Scanning Documents into Records Management

    Hie Gurus
    I would like to implement SAP Records management involving the scanning of documents into the RMS. I have the following questions.
    1. Can the scanned documents be attached to a record automatically (is it possible that during scanning an event to create a record would be triggered automatically and the person responsible for the scanning will just have to enter the detail)
    2. Is there a recommended scanning software that works well with SAP Records management stystem that i can use to scan documents directly into SAP RMS or dpes SAP have a scanning software that works with RMS.

    Hi Partson,
    It's really possible. I don't know if any scan software can do it, but "Kofax Capio" can.
    Look this link:
    http://www.dicomfrance.fr/dicom/europe/web_eur.nsf/0/DB0F15F62B6CD052C12571240057A071?OpenDocument&c=FR&l=en
    Hope this helps,
    Iván.

  • Records Management vs DMS

    Hi,
    I believe RM and DMS overlap at several area.
    Could someone explain the conceptual differences, pls?
    Ádá

    Dear Ivan,
    Thanks for your response again,
    We are using Archive link to maintain documents for HR ( at Infotype level) and also we are using Digital personell file a Part of RMS, for internally generating files.
    how deeper is the integration between RMS and archive link document storage,we could integrate Archive link and Records management system so that any documents stored through ARCHIVE LINK Can be made available in RMS Folders,
    but the problem is the Vice versa is not possible, as we would  like to have those documents maintained or uploaded through RMS be available in Archive link ie ...a the HR transactions  level PA30 Display Archived documents.
    Pls suggest the integration available between RMS and Archive link storage.
    also i want to know which is the best methodology to store HR documents weather RMS or Archive Link ?
    Thanks and regrds
    Priya S

  • How can I create a model node in SAP Records Management

    Product: SAP Records Management
    Hi,
    I would like to create a model node in a record tree.
    I found in the function modul BAPI_RECORD_ADDELEMENT no entry for the creation of a model node. Only the instance and the structure node can create by this function modul.
    So, does anyone know a solution to create a model note?
    Regards,
    Thomas Fanninger

    Hi Thomas,
    it is not possible with the BAPI due to the piece of coding:
    case  myElementType.
            when glob_const_elem_type_instance.
              myRecordElement->Type_Set( if_srm_sp_record_element=>type_instance ).
              myRecordInstanceElement ?= myRecordElement.
              loop at element_sp_poid into myElementSpPoidWa.
                mySpPoidWa-id = myElementSpPoidWa-name.
                mySpPoidWa-value = myElementSpPoidWa-value.
                insert mySpPoidWa into table myElementSpPoidTab.
              endloop.
              myElementSpsId = sps_id.
              myElementPoid = myClientService->poid_get_instance( im_rms_id  = myRmsId
                im_sps_id  = myElementSpsId  im_sp_poid = myElementSpPoidTab ).
              myService->check_sp_connection( myElementPoid ).
              myRecordInstanceElement->poid_set( myElementPoid ).
            when glob_const_elem_type_folder.
              myRecordElement->Type_Set( if_srm_sp_record_element=>type_folder ).
            when others.
              perform set_error using '852' return.
              return.
          endcase.
    But you can do that by using directly the Records API. How to use this is demonstrated in the report 'SRM_RECORD_API_HOWTO'. Search there for the subroutine 'fillrecordelement'. There a record element for insert is created and its type is set. You can set the type there to 'IF_SRM_SP_RECORD_ELEMENT~TYPE_MODEL'. Of course your POID then may not be an instance POID.
    Best regards,
    Thomas

  • TREX index for Records management in CRM

    Hi All,
    Hopefully this is the correct forum to post this question, if not please let me know the correct one.
    Does anyone have any information on linking TREX to RMPS?
    This is to resolve an issue where the case search on business partner first and last name fields are case sensitive in the electronic desk.  In the DMWB we have ticked the Index-Relevant option but have been advised that we also need the link to TREX.
    I have set up a TREX search index for the Solutions database in the past but setting this up for Records management doesn't seem to be as easy.
    Many thanks in advance.
    Gary Hawkins

    Hi Vishnu,
    Try this BAPI: BAPI_BUSPROCESSND_CREATEMULTI
    BAPI_BUSPROCESSND_SAVE
    Regards
    Arun Kumar
    Rewards Points if it helps.

  • IMPORT_FUNCTION in content model for Records management

    Hello!
    I customized my own content model for documents with my own attributes, it works fine, and everything is ok... but when i define property IMPORT_FUNCTION in DMWB for my content model, it has dump with error "DP_ERROR_GENERAL" when i'm trying to save the new created document...  Even if i set function without code for attribute IMPORT_FUNCTION, it still has dump... why?
    i need to get info about uploaded file, such as path and etc... i have found this information only in this function.
    Thanks for any help...

    Hi Luk,
    The linkage of module may be very critical. But if you have a requirement for attaching the documents like photo,certificates or other documents related to employee to records management then you can create a radio button to recodrs management screen with help of abap'r and directly attach these documents to respective records management screen.
    for linkage it may not feasible or much critical.
    Hope this will help.
    Regards,
    Ravindra

  • Records Management not appearing in my folder/file properties

    I just did a fresh install of OCS_101200.tar.gz . I enabled records management using the steps described in http://download.oracle.com/docs/cd/B25553_01/content.1012/b25275/scenarios.htm#FLSAG129 . I can log into the /rm webapp and create file plans, records policies, etc. But when I right-click on any object in the Collaboration Suite web interface and click Properties, Records Management does not show up as a menu option. Is there an easy fix, or did I mess up the installation?

    Hi ckonstanski,
    as far as I can remember you have to define at least one record category in the RM Web client ( http://your.OCS.com/rm ) to make the Records tab visible in CS Web client.
    Kind regards,
    - Roland

  • Records Management Sytem link to DMS Document

    I'm trying to programatically create a document in DMS from Records Management System and create a link to the document.  I can create the document using BAPI_DOCUMENT_CREATE2 but cannot figure out a way to link to the document.
    Does anyone know if there is a BAPI or function module to do this?

    HI Michael,
    This cookbook gives an example of how to link a BO to record automatically. You can probably use the same concept
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40be7649-72f7-2c10-03b9-c85d56eff2e5?quicklink=index&overridelayout=true
    BAPIs  SRM_RECORD_ADDELEMENT & SRM_RECORD_ADDELEMENTS can be used to add one or more than one elements in a record.
    Please note that if adding an object to arecord is one processing step in a bigger process which may need access to same record again & again then it is better to use record APIs(methods of IF_SRM_SP_RECORD) . BAPIs should be used for one off access to records since every BAPI opens record, makes changes & then closes record.
    For a bigger process which requires access to same record again & again, opening & closing records so many times becomes costly for performance.
    Thanks & Regards,
    Pragya

  • Problem with custom development for documents in Record Management

    In Record Management i have setup a record model. It contains Bor objects, documents, cases and so on.
    Each kind of record managent object has it own requirements.
    For the documents there is a requirement which demands that if the scandate is changed also the date till which the document must be helded in the system must be changed.
    This cannot be done automatically via default SAP and i don't want to let the customers do it there selfs, to much risk they make errors, so this must be done via custom development.
    The logic searches in a enhanced method for the right attributes from the importing list of available attributes of the particular document.
    This is going well in the development system but when i transport it to the test system it fails. I have noticed that the content of a custom developed field ( for example ZSCANDATE) is loaded well but a default field like SRM_DOM_STORAGE_START not. The systems returns an error that the description of the attribute is missing. When i look in the DMWB ( DocuMent WorkBench )  i dont see errors, but afcorse there is one.
    What can i have forgotten in my record management installation?
    Offcorse the test system is a copy of a working development system, but you have also some things that are system dependent. and i think i have forgotten some of those..
    If you have a idea let me know!
    kind regards,
    Anton Pierhagen.

    Hi BalusC,
    thanks for the quick answer. I tried it as you said and now I get a validation error in my h:messages tag on my jsf page after submitting the form. There are no errors in my JBoss console, just this one word on my jsf page. Do you have any idea what this could mean?
    My two lists look like this:
    private ArrayList<GroupBean> selectedItems = new ArrayList<GroupBean>();
    private ArrayList<SelectItem> allGroups = new ArrayList<SelectItem>();The allGroups list gets filled like this:
    for (GroupBean group: groups){
    allGroups.add(new SelectItem(group, group.getName()));
    }where groups is a simple collection of GroupBeans which I read from the database. This seems to be correct; at least my list of checkboxes shows the correct group names.
    Now here is my selectManyCheckbox:
    <t:selectManyCheckbox id="sensor_access" value="#{sensorBacker.selectedItems}" layout="pageDirection" layoutWidth="3">
    <f:selectItems value="#{sensorBacker.allGroups}"/>
    </t:selectManyCheckbox>Any idea what goes wrong here?
    Thanks for your help!
    Wiebke

  • Digital signature in SAP Records Management (SAP Netweaver Folders Manager)

    Hi experts,
    I have a record with various documents and I want to implement digital signature in documents (Transaction: ORGANIZER). I read in IPS640 SAP Manual that there are a button (key symbol) to do this but I don't have this button. Can you explain me how to implement this?
    A lot of thanks in advance.
    Regards,

    Hi JV,
    You need to define the repository in OAC0 transaction. As per my analysis now your document are stored in sap database.
    If you are using separate serever then confuigure as follows in OAC0:
    Document area : SAP Records Management
    Storgae type : RFC Archive
    define IP address and port. Then goto CSADMIN and activate the certificate for the same.
    or if using SAP Database then make the changes in above areas.
    Then these archived documents will get saved in content server instead of sap database.
    Hope this will help.
    Regards,
    Ravindra

  • Oracle Web Center - Records Management Sessions at Collaborate 12!

    Save the Date For COLLABORATE 12!
    The COLLABORATE 12 Conference will take place April 22-26 2012 at Mandalay Bay resort in Las Vegas.
    Three and a half days of sessions | Search now to determine topics of interest to you and your team members. | Four full tracks dedicated to:
    Oracle WebCenter Content, Portal, Sites and Social
    Topic Spotlight - Records Management
    Trying to control the growth of records in your organization? Do you need to ensure regulatory compliance? Trying to minimize litigation risks? Then Monday at Collaborate is the day for you! On Monday April 23rd, we will have an entire room dedicated to Oracle records management (URM) topics. Learn what Oracle did to implement records management internally and how their email strategy is connected. Discover Nevada Energy’s approach to records management. Listen to the folks from Bezzotech as they teach you how to reclaim physical storage space through records management. All this AND MORE! But, you’ll never know if you’re not there, so get busy and register today! http://events.ioug.org/p/cm/ld/fid=22
    This year, collaborate will consist of over 800 sessions total available with more than 75 sessions dedicated to WebCenter and how to optimize and manage your Oracle WebCenter implementations. Hear from Oracle customers, product managers & partners on their experiences with: WebCenter upgrades, user provisioning, workflow, integration, and more! Include Collaborate 12 in your training plans for 2012!
    Use this URL see the full line up of WebCenter sessions that will be presented at COLLABORATE 12: http://www.box.com/s/5tec7l46l4c35mhg3vc4
    Please take the WebCenter COLLABORATE survey so we can better understand what you would like to see at the COLLABORATE conference. https://www.surveymonkey.com/s/WCSIG1
    Make sure to attend WebCenter sessions to be entered in a drawing for prizes. The more WebCenter sessions you attend, the better your odds of winning an Apple iPad 2!
    Get an additional entry to the drawing when you register for COLLABORATE. On page three of the registration form when you see the question “What Special Interest Group (SIG) would you like to attend?” select “WebCenter SIG” from the dropdown list.
    Register Today! http://events.ioug.org/p/cm/ld/fid=22

    First, can you see the agent and host in EM?  If not, then you'll need to follow these steps:
    emctl secure agent
    emctl start agent
    emctl config agent addinternaltargets
    emctl config agent listtargets
    The host and agent must be "green" in EM to discover targets.   The last command listtargets will show you what the agent has "auto-discovered".  Not all targets can be auto-discovered.
    Did you check the Auto Discovery Results to see if the targets are waiting for promotion?  If they're not there, then you might have to "manually" discover them.  
    http://docs.oracle.com/cd/E24628_01/doc.121/e24473/discovery.htm#CBAEGHBH
    For each target type, there could be additional pieces that you need to look for when discovering, for example for
    SOA - http://docs.oracle.com/cd/E24628_01/install.121/e24215/disc_mon_soa.htm#GSSOA9921
    IDM - http://docs.oracle.com/cd/E24628_01/install.121/e24215/idm_discover_config.htm#GSSOA10201

  • Preload Cache Server Records Management

    Hello,
    I want to fill/update the content from the content server to the cache server every night. It is possible to do this.
    The content is from the Records Management ( TA SCASE).
    Which report is necassery for this task.
    SAP Content Server: CS Release 6.30 Patch 15
    SAP Content Cache Server: CS Release 6.30 Patch 15
    Thanks in advance
    Matthias Nitschke

    Hi,
    You can try using the report RSCMSPLD. This report is not application dependent.
    Hope it helps you.
    Regards,
    Ananth

Maybe you are looking for

  • Can i connect skybox to my 2012 27" iMac

    I have a late 2012 27" imac and was wondering can i connect my xbox one or sky box to my imac I have a a cable that connects to thunderbolt and has hdmi input at other end. but can i use this an an input rather than an output. any help would be grate

  • Obtaining "rows selected" value after custom sql query in Database adaptor

    We are executing a custom query in a database adaptor. With other technologies (JDBC, etc.) the result of a query will not only produce a result set but a count of the number of rows selected. E.G. the script output of Oracle SQL Developer will print

  • Integration Builder cannot save changes

    All, We have a problem with Integration Builder both Design and Configuration. If we restart the XI server then we can save changes from both the Designer and Configuration lists one ot two times. After that we get a Java: Null pointer error whenever

  • Iphoto to mail

    Have Mac OS X 10.5.3, Installed ILife 08, when I chose picture to transfer to mail the option of size to send always comes out small regardless of option picked ie actual size. Any suggestions?

  • REFUND/LAWSUIT IN MISLEADING PEOPLE TO BELIEVE HOW SIMPLE TO CONVERT A PDF INTO A DOCX OR XCEL FORMAT

    REFUND/LAWSUIT IN MISLEADING PEOPLE TO BELIEVE HOW SIMPLE TO CONVERT A PDF INTO A DOCX OR XCEL FORMAT? I cannot convert the PDF files to Docx or excel, I WOULD LIKE  REFUND, ALL I GOT WAS A COPY OF THE NOTES THAT I SCANNED TO CONVERT THEM AND THEY CA