Java wrapper for SAP DMS function modules

Good morning/evening-
We are looking to integrate with SAP DMS. (http://help.sap.com/saphelp_nw2004s/helpdata/en/3c/4d26696ab411d3aece000
0e82deb58/frameset.htm) We'd like to call it from Java and were wondering if anyone had already developed wrappers to leverage JCo and call the following functions?
SDOK_PHIO_GET_URL_FOR_PUT
SDOK_PHIO_GET_URL_FOR_GET
SDOK_PHIO_LOAD_CONTENT
SDOK_PHIO_PROPERTIES_SET
SDOK_PHIO_PROPERTIES_GET
SDOK_PHIO_DELETE
SDOK_PHIO_CREATE
If you have any information on this or possibly have some generic wrappers we could leverage please drop me a line.
Thanks,
Andy

Hi,
the required authorizations based on user action are in the installation guide in the appendix and you can use those authorizations and assign them to the roles
ingo

Similar Messages

  • Where-Used List: Modifying SAP standard function module

    Hi,
    We have decided to modify SAP standard function module SD_SCHEDULING. But before that, we need to understand what impact this modification will have in the system. We will also estimate the risks with this modification.
    Therefore, I have taken Where-Used List for this function module. We are aware that this list is not comprehensive.
    Do you know any other way we could use to understand better what impacts this kind of modification may have? My colleagues say that this is the only way.
    Thanks in advance for your help.
    Regards,
    Jarmo Tuominen

    Hi Jarmo,
    Try this
    1). Goto Se16 and check the contents of table 'CROSS'.
    2). Enter 'F' in the first selection screen field
    3). In the NAME field enter the Function module SD_SCHEDULING and execute.
    4). The list will give you where all the FM has been used.
    Kindly note this is almost the same as doing a where used list. The where used list will only work correctly if the 'Update Navigation Index' works correctly in your system. So just to ensure the result of your where used list you can follow the above steps. This does not require the Update Navigation Index.
    Hope this helps
    Cheers
    VJ

  • Urgent Requirement for SAP CONSULTANTS - all modules.

    TOP MNC NOW HIRING
    Urgent Requirement for SAP CONSULTANTS - all modules.
    Experience    2-5 yrs.
    Location - Gurgaon, Hyderabad,Pune.
    Interested candidates please forward your CV ASAP!!!!!!!! !!!!!!
    send your resumes at [email protected]
    Thanks,
    Rajender

    Hi,
    1. R you able to see the photo while accessing PA30 ?
    2. There is a function module to retieve the employee photo in URI.
    you can use that URI in your Iview.
    code:
    call function 'HRWPC_RFC_EP_READ_PHOTO_URI'
    exporting
    pernr = '00001185'
    DATUM = SY-DATUM
    TCLAS = 'A'
    importing
    uri = uri
    and URI should be of the type TOAURI-URI.
    Rgds,
    Shiva Kumar

  • Replacement for these Obsolete Function Modules

    Hi,
      Can anyone tell me the replacement for these Obsolete Function Modules .
    1) K_BUSINESS_PROCESS_READ
    2) HELP_VALUES_GET_WITH_TABLE_EXT
    3) G_SET_AVAILABLE
    Regards,
    Arun

    hi check thes for any function modeules...
    http://www.erpgenie.com/abap/functions.htm
    http://www.sap-img.com/abap/function-list.htm
    regards,
    venkat.

  • SAP FI functional module

    Hi Guys.........I am new in SAP community and need your expert advise on SAP FI functional module. I shed some light on my career. I have done master's in Accounting and I have been working as a system officer on Sap as a user end for last 4 years.Since last 1 year I am planning to cross the fence and to start my career at functional side ( FI CO certified).However after discussing with mates at work now I am bit confuse. They say after spending huge money on course and being a fresher Its hard to get a job. I would really appreciate if anyone can give me a good advise.
    Edited by: divyanshraheja on Jul 24, 2010 6:35 PM

    Dear,
    Anytime, anywhere there is nothing Hard to achieve. World population increasing day by day.. but still arriving new born as new citizens in universe. So, the world will never end or never difficult to reach. Only thing is the direction and efforts you put. Just go ahead with right direction AND IMPORTANTLY CATCH THE WEAK POINTS OF MARKET OR CLIENT. If you can present them with a WISE solutions how to overcome their WEAK points and which makes them STRONGER... you will be a HERO. Either ERP or someother ...
    I am not saying your friends are wrong, definetely competiton is there.. he only the winner who courage and achive his goal. Go ahead and be confident. Just remember.. at the begining everyone of us are a fresher at somepoint at sometime.
    Regards,
    Syed Hussain.
    Edited by: Syed Hussain on Jul 24, 2010 12:12 PM

  • Where the documentation is provided for the Standard Function module ?

    If there is no documentation provided for the standard function module in SE37 what is the best way to understand the functionality of the function module?Is there any where we can find the documentation?
    Please dont say the From coding part its too vast to understand
    Ex: HRCM_ORGSTRC_INFO_TABLE_GET
    Paint for me ..
    Regards
    sas
    Edited by: Julius Bussche on Mar 18, 2009 1:17 PM

    O Really thanks amit !!
    Are you able to understand the below code and please provide your valuable inputs what we are understanding is the same.
    PERFORM read_infotypes.
    *-- ********************************************************** NMP
    *-- IF scb frozen then write to itab-scb field.  nmp 11/2001.
    *-- ********************************************************** NMP
    *--Begin of Change by vneld - 01/17/2007
    *  IF PA0001-ZZBERN NE SPACE.
    *    FROZEN = PA0001-ZZBERN.
    *  ENDIF.
    *  ITAB-SCB = FROZEN.
    *-- ********************************************************** NMP
    *--end of Change by  vneld- 01/17/2007
      PERFORM get_date USING '92'
                       CHANGING w_hiredate.
      PERFORM get_date USING '93'
                       CHANGING w_rehire.
      PERFORM get_date USING '94'
                       CHANGING w_termdate.
      IF NOT ( w_rehire IS INITIAL ).
        w_hiredate = w_rehire.
        itab-code = 'R'.
      ELSE.
        itab-code = 'H'.
      ENDIF.
      IF p0001-persg = '3'.
        itab-code = 'T'.
      ENDIF.
    *Change by Mdukes
    ** We need HIRE,Rehire & term  within 13 month`s window
    ** But if someone Hire in IT ,change dept and then terminated .
    ** We need to exclude that person from the list  .
    ** We need to change his Org.Unit by END_DATE 12/31/9999 from Pa0001.
      CLEAR:result_tab.REFRESH:result_tab.
      CALL FUNCTION 'HRCM_ORGSTRC_INFO_TABLE_GET'
        EXPORTING
          PLVAR          = '01'
          ROOT_OTYPE     = 'O'
          ROOT_OBJID     = P0001-ORGEH
          BEGDA          = SY-DATUM
          ENDDA          = P0001-ENDDA
          PATH_ID        = EVPATH
          PATH_DEPTH     = 10
        TABLES
          ORG_INFO_TABLE = result_tab
        EXCEPTIONS
          PATH_ERROR     = 1
          ROOT_ERROR     = 2
          OTHERS         = 3.
    *  CALL FUNCTION 'RH_STRUC_GET'
    *    EXPORTING = 'O'
    *      act_objid       = PA0001-ORGEH
    *      act_wegid       =  EVPATH
    *      act_plvar       =  TYPE
    *      act_tflag       = space
    *      act_vflag       = space
    *      authority_check = space
    *    TABLES
    *      result_tab      = result_tab
    *    EXCEPTIONS
    *      no_plvar_found  = 1
    *      no_entry_found  = 2
    *      OTHERS          = 3.
    * reading the Org.Unit based on employee Org.unit (Evaluation Path 'O-O'.
    * After that making sure the latest Pa0001 org.unit is part of selection org.unit
    * If yes, set the flag to = 1 . Otherwise ignore the rec .
    * We want only IT folks hire/rehire/term within 13 monthu2019s window
    * if somebody change the dept and get term within 13 monthu2019s .it
    * Should show up in hire but not in term report .
      CLEAR:REC.
      lOOP AT result_tab.
        read table PCHOBJID with key low = result_tab-OBJID.
        if sy-subrc = 0 .
          Rec = 1.
          EXIT.
        Endif.
      ENDLOOP.
      if rec  = 1.
    *--begin of change by vneld- 01/17/07
        CHECK ( ( w_hiredate >= w_13th_mnth_date AND w_hiredate <= sy-datum )
          OR
              ( w_termdate >= w_13th_mnth_date AND w_termdate <= sy-datum ) ).
    *--end of change by vneld- 01/17/07
    **---check for hires or terms in the calendar year.
    **---No future terms
    *  CHECK ( ( W_HIREDATE(4) = SY-DATUM(4) ) OR
    *  ( W_TERMDATE(4) = SY-DATUM(4) AND W_TERMDATE <= SY-DATUM ) ).
        CONCATENATE p0002-vorna p0002-nachn INTO itab-name SEPARATED BY ' '.
    *--Begin of change by vneld 03/29/2007
    *--get supervisor name
        data : lname(20),
               fname(20).
        clear: lname,
               fname.
        Select vorna nachn from pa0002 into (fname ,lname)
               where pernr =  p0001-zzsuper_no.
        endselect.
        CONCATENATE lname fname INTO itab-supv SEPARATED BY ' '.
    *  itab-supv = p0001-zzsuper_text.
    *--End of change by vneld 03/29/2007
    *----get employee group text
        CLEAR t501t.
        SELECT SINGLE * FROM t501t WHERE sprsl = 'EN' AND
                                         persg = p0001-persg.
        IF sy-subrc EQ 0.
          itab-group = t501t-ptext.
        ENDIF.
        PERFORM get_dept.
        PERFORM get_position.
        PERFORM append_fields.
      endif.
    ENDFORM.                    " PROCESS_EMPLOYEE
    Edited by: saslove sap on Mar 19, 2009 7:45 AM

  • Issue in creating web service for a ABAP Function Module

    Hi,
    now i'm learning how to create web service for a ABAP Function Module. I used the following steps.
    1. select the Function Module, named "zws_test".
    2. in the context menu, select "create->proxy object". so we enter into wizard.
    3. in the wizard, press the radio button "Service Provider".
    4. in the next page, press the radio button "Existing ABAP Objects(Inside Out)".
    5. In the next page, Enter the "zws_test_prvider" as Service Definition and select "Function Module" as Endpoint Type.
    6. in the next page, enter "zws_test" as Function Module and mark the "Mapping der Namen" button
    7. in the next page,select "PRF_DT_IF_SEC_LOW" as Profile and mark "Deploy Service".
    8. Save in the local package.
    9. then it will pop up a window with title "WSDL Source". i selected "URL/HTTP Destination" and press "OK".
    10.in the next page, i enter the URL as "http://hostname:portnumber/", and press "OK".
    11. then it will pop up a window with title "Display logs". A record with error message "HTTP error(return code 404, message "Not found")" appears.
    12. i press "ok" and a service provider with name "zws_test_prvider" appears in my local package.
    13. i use "zws_test_prvider"'s URL to create a service consumer "ZCO_WS_TEST_CONSUMER" and logic portal "LP1".
    14. But when i test my service consumer "ZCO_WS_TEST_CONSUMER", it will throw an exception "cx_ai_system_fault" with errortext "SOAP:14 Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/".
    15. I use t-code SM59 to test connection  and get the following info.
          Status HTTP Response     200
          Status Text                      OK
          Duration Test Call             328 ms.
    who can give me the reasons about item 11 and 14, and explain me how to create service provider and service consumer for a Function Module.
    Thanks in advance
    Johnney

    have you seen this weblog
    /people/thomas.jung3/blog/2004/11/15/bsp-150-a-developer146s-journal-part-xiii-developing-abap-webservices

  • SAP Standared function module in BODS

    Experts,
    I know that we can not use SAP standared function module as a source in data services, we can use a function module in transformation but again we have to start from a file or table as a source and load into a target (Function Module can not be an end point of a dataflow - as it is used in the transformation and each transformation requires a source and a target).
    Is this statement correct ? ?. Please let me know.
    Here I have some Raw descriptive data in SAP and with some standared functional module which I need to call in BODS. Is it possible by some way to take it as source ..?
    Thanks in Advance.
    -Deep

    Hey,
    Any relevant inputs are much appericiated..!!
    thx
    Deep

  • Lst of all sap standard function modules???

    can anyone provide with a list of all sap standard function modules??? I am currently working in Product costing.As per my Functional specification i need to find the number of cost centers in a cost center group.we guess that this information will be available from a function modules.so can anyone provide all the function modules of sap.

    Hi,
    Check this link :
    <a href="http://www.erpgenie.com/abap/functions.htm">http://www.erpgenie.com/abap/functions.htm</a>
    -SatyaPriya

  • Runtime analysis for an RFC function Module

    Hi,
    How to get an Runtime analysis for an RFC function Module?
    I have an RFC function Module I am using it for a WEB INTERFACE . For this function Module I need to get Runtime Analysis.
    Please do not duplicate or cross post
    Edited by: Rob Burbank on Feb 21, 2009 11:42 AM

    Total Questions:  40 (39 unresolved)
    Duplicate thread locked.
    Rob

  • Documentum Kpro configuration for SAP DMS

    Hi Experts ,
       We are planning to use Documentum Content server as the content store for SAP DMS . We want to configure the KPro configuration for this. Can somebody help with the details. We are currently using Documentum SAP archivelink (RFC ) . I know  we can also use Documentum SAP archivelink (HTTP ) . What is the difference between using Documentum SAP archivelink (HTTP) over Kpro configuration.
    Please guide me
    Thanks
    Regi

    Thank You Seema and Nitin for your answer.
    As I mentioned earlier I am aware of the configuration of the Content Store and othet Data Carrier .
    I am also familiar with the regular Documentum SAP archive link (RFC/HTTP).
    The new dimension we are bringing to our architecture is adding SAP DMS for SAP PLM and using Documentum as the content store.
    We want to use KPRO as the integration configuration for the specific reason of more than 2 originals.
    My question to all the gurus out there is did any one use Documentum KPRO configuration with SAP DMS and if so how does that work with ECL viewer .If you are using Archivelink , you need to use Documemntum Viewer to see documents from SAP.
    Also any difference in viewing document from a Portal interface
    Thanks
    Regi

  • Standard BI Queries for SAP HR ECM module

    Hello Gurus,
    Can anyone list me the standard BI Queries for SAP HR ECM module?  (Enterprise Compensation Module) for ECC 6.0
    Any concerns greatly appreciated and rewarded..
    Thanks,
    Soniya Singh

    http://help.sap.com/saphelp_nw70/helpdata/en/3e/0895ec8866f44cac9f1825370c88d2/frameset.htm

  • SAP provided function module to update picking confirmation in VL02N

    Hi
    In transaction VL02N , the quantity,net weight and batch inf is updated manually.So the question is there any SAP provided function module to update picking confirmation instead of using BDC/call transaction method?

    Hi,
        Use below FM :
    Clear : i_prot.
    refresh : i_prot.
    Delivery Update
    CALL FUNCTION 'LE_MOB_DELIVERY_UPDATE'
    EXPORTING
    do_commit = 'X'
    TABLES
    t_delivery_items = i_lips
    prot = i_prot
    EXCEPTIONS
    conversion_overflow = 1
    essential_data_missing = 2
    error = 3
    nothing_to_update = 4
    lock_after_update_failed = 5
    error_in_delivery_update = 6
    OTHERS = 7.
    COMMIT WORK.
    Pass lips-lgort..
    Refer
    https://forums.sdn.sap.com/click.jspa?searchID=4212688&messageID=3855382
    Regards

  • What is the exact syntax for calling remote function module.

    Hi to all
    1.....what is the exact syntax for calling remote function module.?
    Thanks and regards,
    k.swaminath reddy

    hi
    good
    Lets do simple example where you will first create a RFC in one server (say A) and create normal program in othere server (say B). Finally you will call the RFC in A from B.
    Do the following steps for creating RFC in server A.
    1. log on to server A
    2. go to se37
    3. Edit -> function groups-> create function group and give the function group name (say ZGRP).
    4. create a FM ( say Z_TEST_RFC) in se37 providing the function group which is created just now.
    5. go to attribute tab -> choose remote-enabled module from processing type.
    so that your FM will become RFC.
    6. provide the import parameter in import tab.
    we will provide only two import parameters.
    - parameter name : P_NUM1, typing: TYPE, associated type : I & check the pass value (all the parameters of RFC must pass by value).
    - parameter name : P_NUM2, typing: TYPE, associated type : I & check the pass value
    7. provide the export parameter in export tab.
    parameter name : P_SUM, typing: TYPE, associated type : I & check the pass value
    8. write the given simple code in source code tab.
    FUNCTION Z_TEST_RFC.
    P_TOT = P_NUM1 + P_NUM2.
    ENDFUNCTION.
    Do the following steps for creating ABAP program which will call the RFC in server B.
    1. se38 - > creat a program.
    2. write the given simple code.
    data tot type i.
    call function 'Z_TEST_RFC' destination 'XXXXXX'
    exporting
    p_num1 = 10
    p_num2 = 15
    importing
    p_tot = tot.
    write tot.
    please note that XXXXXX is RFC connection which is avialable in sm59 transaction in server A.
    -go to sm59 - > abap connection (list of RFC connection configurations are avialable). choose server B connection and replace it of XXXXXX in the code.
    finally you can execute the normal abap program that will call the RFC and display the result.
    reward point if helpful.
    thanks
    mrutyun^

  • JAVA Docs for SAP

    Any docs on Java programming for SAP. Please send to [email protected]

    Hi,
    The details of specific Java API for SAP products can be found here.
    <a href="https://help.sap.com/javadocs/index.html">documents</a>.
    But general code java API, I would suggest you to look at the Sun site java documentation.
    regards
    Vivek Nidhi.

Maybe you are looking for

  • Create Personal Documents Folder and iView to display

    Hi, I would like to 1. Create an KM Navigation iView to point to a users Fersonal Folder 2. Create an KM Upload iView to upload documents to a users Personal Folder These iviews should point to a users personal folder dynamically based on who is logg

  • Mac Mini and Bluetooth Keyboard and Mouse

    I have a Mac Mini as a server. I've decided to do a clean install of Mountain Lion and Mountain Lion Server. I don't have any wired keyboard or mouse and am having trouble getting the Mac Mini to see the keyboard and mouse. I can buy cheap wired ones

  • App Error in Async Abap proxy

    Hi We need to send a email when an async abap proxy fails due to application error. How can we achieve it. Regards Anandan

  • MBP Display flickers upon boot-up

    Hi guys, My macbook pro (mid 2012) has started flickering badly upon boot-up. The display also jiggles up and down on occassion when loading web pages. I have upgraded to Mavericks and my MBP is usually hooked up to a large monitor.  Problem just sta

  • Invoice Plan Message was not found

    Hi All, I am in the process of creating invoice plan, i have made all the necessary configuration and created Frame work order and now trying to execute transaction MRIS to create Invoice. But i am getting error message "Invoicing plan: No message wa