Upload/Download docs from DMS

Hello,
I am trying to learn how to up- and download documents from Business Document Service (trans. OAER) in a web page. Reading here and there I found some examples of code for it but it is for ABAP and not for WebDynpro. I performed my examples in ABAP and works but not when I try to do it from a Web page.
Can somebody lead me to an example on how to save a file once it´s been uploaded and later how to download it ??

Hello,
I am trying to learn how to up- and download documents from Business Document Service (trans. OAER) in a web page. Reading here and there I found some examples of code for it but it is for ABAP and not for WebDynpro. I performed my examples in ABAP and works but not when I try to do it from a Web page.
Can somebody lead me to an example on how to save a file once it´s been uploaded and later how to download it ??

Similar Messages

  • Firefox crashes when uploading/downloading files from/to 'desktop folder'

    Hello
    I'm hoping, that you can help me!
    I'm using Firefox 28.0 on MacBook Pro Mavericks 10.9.2
    Firefox crashes/freezes when I try to upload/download files from/to my 'desktop folder'.
    I't only happens, when I use this folder. Download to 'download folder' or any other folder works fine.
    Download to 'desktop folder' when using Safari also works fine.
    I't only happens when desktop and firefox tries to communicate.
    It's very annoying when I accidentally forget, that the bugs is there, and I have to force quit and start all over again. And sometimes I don't even have a choice, because 'desktop' randomly opens as default folder, when I try to upload things.
    Thank you so much in advance!
    Kind regards Elizabeth

    Hi ESwan,
    I am not a Mac user so not the best person to attempt to assist but here goes.
    I am presuming that info such as
    PID: 1695 Event: cpu usage (microstackshots only)
    Relate to the Mac OS X crash & event logging and reporting.
    What we need are the ones that Firefox itself generates and submits for processing by Mozilla Firefox
    * See [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes#w_get-help-fixing-this-crash]]'''#w_get-help-fixing-this-crash'''
    From what you say the crashes occur after a certain action and I am hoping that you will be able to use the easy method as in the article linked above. Navigate to about:crashes by keying ''about:crashes'' into the address bar. You are loolking for the ones starting wth ''bp-'' Paste two or three of those into your next post. Include the bp- part but not any link information before that. After they are pasted into the forum the forum software changed them to be links.

  • Uploading & Downloading Files into DMS Server using Web Dynpro Java

    Hello Friends,
          I want to Upload a file from Portal to Document Management Server and to Download a file from Document Management Server to Portal,  In short, I want to give the user the facility to Upload a File into DMS Sever via Portal and also to download the file from DMS Sever via Portal.
      Can anybody give me a Input for the same from Both Java Development End as well as ABAP End, more inputs are required from ABAP end, since i have a very less ABAP Experience on working with DMS. Few Questions i have in my mind?
    1. How to actually access the file contents with the help of Document Number?
    2. With the help of Doc-Number we can extract the file from DMS sever but to provide a option for downloading in portal, the   RFC should convert the File Contents into X-String or is there some other way?
    +3. While Uploading the Data should be given in Which format to RFC? Are there any limitation with respect to size or formats. Is there any Standard RFC i can use directly in WD4 Java application to upload the file into DMS Server and which will return me the Document Number? +
    Please give me your valuable inputs.
    Thank You.
    Edited by: TusharShinde on Feb 21, 2011 11:13 AM
    Now, I am able to download the File in Portal via my WD4 Java Application from DMS Server by passing the Document Number, but I am facing the problem in downloading the PDF files, Its not working for PDF files. Please give me inputs for the same.
    Thank You.
    Edited by: TusharShinde on Feb 22, 2011 10:13 AM

    HI,
    Thanks for reply.
    I am able to download the file From DMS server but I am still not able to Upload the File to DMS Server via Portal. For Download also it is working for all file formats but not for PDF any specific reason for the same.
    function zhrf_rfc_dms_download_document.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(LV_DOCUMENT) TYPE  DOKNR
    *"  EXPORTING
    *"     VALUE(LV_FADA) TYPE  XSTRING
    *"  TABLES
    *"      LT_DOC STRUCTURE  BAPI_DOC_FILES2
    *"      LT_OUT STRUCTURE  ZST_DMS_FILE_XSTRING
    data: ls_docfiles type bapi_doc_files2,
             ls_dms type dms_doc_files,
             lt_docfiles type standard table of bapi_doc_files2.
    *      data: LT_OUT  type table of  ZST_DMS_FILE_XSTRING.
      data :wa_out like line of lt_out.
      select single * from dms_doc_files
        into ls_dms
        where doknr = lv_document."Retrieve file
      if sy-subrc = 0.
        ls_docfiles-documenttype = ls_dms-dokar.
        ls_docfiles-documentnumber = lv_document.
        ls_docfiles-documentpart = ls_dms-doktl.
        ls_docfiles-documentversion = ls_dms-dokvr.
    *    ls_docfiles-documenttype = '321'.
    *    ls_docfiles-documentnumber = LV_DOCUMENT.
    *    ls_docfiles-documentpart = '000'.
    *    ls_docfiles-documentversion = 'A0'.
      endif.
      call function 'BAPI_DOCUMENT_CHECKOUTVIEW2'
        exporting
          documenttype    = ls_docfiles-documenttype
          documentnumber  = ls_docfiles-documentnumber
          documentpart    = ls_docfiles-documentpart
          documentversion = ls_docfiles-documentversion
          documentfile    = ls_docfiles
          getstructure    = '1'
          getcomponents   = 'X'
          getheader       = 'X'
    *      pf_http_dest    = 'SAPHTTPA'
          pf_ftp_dest     = 'SAPFTPA'
        tables
          documentfiles   = lt_docfiles.
      data: i_bin type standard table of sdokcntbin,
            i_info type standard table of scms_acinf,
            v_info type scms_acinf,
            v_id type sdok_phid,
            v_cat type sdok_stcat.
      if sy-subrc = 0.
        loop at lt_docfiles into ls_docfiles.
          v_id = ls_docfiles-docfile.
          v_cat = ls_docfiles-storagecategory.
          call function 'SCMS_DOC_READ'
            exporting
              stor_cat              = v_cat
              doc_id                = v_id
              phio_id               = ls_docfiles-file_id
            tables
              access_info           = i_info
              content_bin           = i_bin
            exceptions
              bad_storage_type      = 1
              bad_request           = 2
              unauthorized          = 3
              comp_not_found        = 4
              not_found             = 5
              forbidden             = 6
              conflict              = 7
              internal_server_error = 8
              error_http            = 9
              error_signature       = 10
              error_config          = 11
              error_format          = 12
              error_parameter       = 13
              error                 = 14
              others                = 15.
        endloop.
        if sy-subrc <> 0.
        else.
          data: v_xstring type xstring.
          read table i_info into v_info index 1.
          call function 'SCMS_BINARY_TO_XSTRING'
            exporting
              input_length = v_info-comp_size
            importing
              buffer       = v_xstring
            tables
              binary_tab   = i_bin
            exceptions
              failed       = 1
              others       = 2.
          if sy-subrc <> 0.
          endif.
        endif.
        wa_out-file_name =  ls_docfiles-docfile.
        wa_out-binary = v_xstring.
        lv_fada = v_xstring.
        append wa_out to lt_out.
      endif.
    endfunction.
    The above is the RFC Code,  I am using in my WD4Java app for downloading the file From DMS Server, Is there any Improvement suggested for above RFC to make it work in more efficient way. Please give me input for my Upload RFC.
    Thank You.

  • Download File from DMS into WD ABAP gives junk data

    Hi Experts ,
    I want to achieve following functionality in WD ABAP.
    User should be able to upload and download any file ( in any fromat ) , to / form document management server.
    Since user can upload / download any file so I am using a file download UI , which would open any file in a new window.
    I have searched about this in SDN ([ link |https://wiki.sdn.sap.com/wiki/display/Snippets/WDA%20Retrieve%20Data%20from%20DMS%20server]) and I have created a FM which gives me Xstring corresponding to the file in the DMS system.
    then I pass this Xstring data to my context 'DATACONTENT' which is bound to file download UI (data property). But When I execute this application I am getting junk data in the new window. Please correct me where I am making a mistake.
    following is the code in FM which in turn passes v_xstring ( of type xstring ) to WD ABAP . Then I bind this value to context
    'DATACONTENT'.
    wd_context->set_attribute( name = 'DATACONTENT' value = V_XSTRING ).
    FUNCTION ZTESTING_EP.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(DOCUMENTTYPE) LIKE  BAPI_DOC_AUX-DOCTYPE DEFAULT 'IVF'
    *"     VALUE(DOCUMENTNUMBER) LIKE  BAPI_DOC_AUX-DOCNUMBER DEFAULT 1
    *"     VALUE(DOCUMENTPART) LIKE  BAPI_DOC_AUX-DOCPART DEFAULT 000
    *"     VALUE(DOCUMENTVERSION) LIKE  BAPI_DOC_AUX-DOCVERSION DEFAULT 00
    *"  EXPORTING
    *"     VALUE(C) LIKE  BAPIEMPLB-RETURN
    *"     VALUE(V_XSTRING) TYPE  XSTRING
    *"     VALUE(RETURN) TYPE  BAPIRET2
    data: ls_docfiles type bapi_doc_files2,
           ls_dms type dms_doc_files,
           lt_docfiles type standard table of bapi_doc_files2.
    select single * from dms_doc_files
       into ls_dms
       where "Retrieve file
    MOVE '0000000000000000000000001' to DOCUMENTNUMBER .
    MOVE '000' to DOCUMENTPART .
    MOVE '00' to DOCUMENTVERSION .
    if sy-subrc = 0.
        ls_docfiles-documenttype = DOCUMENTTYPE.
        ls_docfiles-documentnumber = DOCUMENTNUMBER .
        ls_docfiles-documentpart = DOCUMENTPART .
        ls_docfiles-documentversion = DOCUMENTVERSION.
    endif.
      call function 'BAPI_DOCUMENT_CHECKOUTVIEW2'
        exporting
          documenttype              = ls_docfiles-documenttype
          documentnumber            = ls_docfiles-documentnumber
          documentpart              = ls_docfiles-documentpart
          documentversion           = ls_docfiles-documentversion
          documentfile              = ls_docfiles
         getstructure              = '1'
         getcomponents             = 'X'
         getheader                 = 'X'
         pf_ftp_dest               = 'SAPFTPA'
         IMPORTING
         return                    = return
       tables
         documentfiles             = lt_docfiles.
    MOVE return to return.
      data: i_bin type standard table of sdokcntbin,
            i_info type standard table of scms_acinf,
            v_info type scms_acinf,
            v_id type sdok_phid,
            v_cat type sdok_stcat.
      if sy-subrc = 0.
        loop at lt_docfiles into ls_docfiles.
          v_id = ls_docfiles-docfile.
          v_cat = ls_docfiles-storagecategory.
          call function 'SCMS_DOC_READ'
            exporting
              stor_cat                = v_cat
              doc_id                  = v_id
              phio_id                      =  ls_docfiles-file_id
           tables
             access_info                 = i_info
             content_bin                 = i_bin
           exceptions
             bad_storage_type            = 1
             bad_request                 = 2
             unauthorized                = 3
             comp_not_found              = 4
             not_found                   = 5
             forbidden                   = 6
             conflict                    = 7
             internal_server_error       = 8
             error_http                  = 9
             error_signature             = 10
             error_config                = 11
             error_format                = 12
             error_parameter             = 13
             error                       = 14
             others                      = 15
        endloop.
        if sy-subrc <> 0.
        else.
         data: v_xstring type xstring.
          read table i_info into v_info index 1.
          call function 'SCMS_BINARY_TO_XSTRING'
            exporting
              input_length       = v_info-comp_size
           importing
             buffer             = v_xstring
            tables
              binary_tab         = i_bin
           exceptions
             failed             = 1
             others             = 2
          if sy-subrc <> 0.
          endif.
        endif.
      endif.
    ENDFUNCTION.
    Thanks in advance
    Abhay

    Hi Abhay,
    I have used the belwo method to achive the same:
    1) Call funtion 'CVAPI_DOC_GETDETAIL' to get the document details.This function module returns PT_FILES tables parameter
    2) Loop at PT_FILES and call the 'CV120_GET_MIME_TYPE' funtion by passing DAPPL of PT_FILES to get the mime type.
    3)call function 'CVAPI_DOC_CHECKOUTVIEW' by passing PT_FILES values form above retrived to the function module in this step
    4)Loop at the content and convert to XSTRING using SCMS_XSTRING_TO_BINARY
    After getting the XSTRING,MIMETYPE use ATTACH_FILE_FOR_RESPONSE method of CL_WD_RUNTIME_SERVICES to download the file
    Sample Code:
    CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
          EXPORTING
            pf_dokar     = ls_draw-dokar
            pf_doknr     = iv_documentnumber
            pf_dokvr     = ls_draw-dokvr
            pf_doktl     = ls_draw-doktl
            pf_read_drat = abap_true
          IMPORTING
            psx_draw     = ls_draw
          TABLES
            pt_drat      = et_drat
            pt_files     = et_files
          EXCEPTIONS
            not_found    = 1
            no_auth      = 2
            error        = 3
            OTHERS       = 4.
      ENDIF.
      IF et_files IS NOT INITIAL.
        LOOP AT et_files INTO ls_files.
          CALL FUNCTION 'CV120_GET_MIME_TYPE'
           EXPORTING
             pf_dappl           = ls_files-dappl
    *       PF_FILE            =
           IMPORTING
             pfx_mimetype       = lv_mimetype.
          CLEAR lt_files_checkout.
          CLEAR lt_content.
          ls_files_checkout-description = ls_files-description.
          ls_files_checkout-lo_objid = ls_files-lo_objid.
          ls_files_checkout-ph_objid = ls_files-ph_objid.
          APPEND ls_files_checkout TO lt_files_checkout.
          CALL FUNCTION 'CVAPI_DOC_CHECKOUTVIEW'
            EXPORTING
              pf_dokar                 = ls_draw-dokar
              pf_doknr                 = iv_documentnumber
              pf_dokvr                 = ls_draw-dokvr
              pf_doktl                 = ls_draw-doktl
             pf_content_provide       = gc_content_provide
    *         PS_API_CONTROL           =
    *         PF_STD_URL               = 'X'
           IMPORTING
             psx_message              = ls_message
             psx_draw                 = ls_draw
           TABLES
             pt_files                 = lt_files_checkout
    *         PTX_COMPONENTS           =
             ptx_content              = lt_content.
          IF ls_message CA gc_error_a.
            ev_fail = abap_true.
          ELSE.
            CLEAR lt_xdata.
            CLEAR ls_bindata.
    *Data into String
            LOOP AT lt_content INTO ls_content.
              lv_size = ls_content-orln.
              ls_xdata-line = ls_content-orblk.
              APPEND ls_xdata TO lt_xdata.
            ENDLOOP.
    * --  Convert XData to Xstring
            CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
              EXPORTING
                input_length = lv_size
              IMPORTING
                buffer       = ls_bindata
              TABLES
                binary_tab   = lt_xdata
              EXCEPTIONS
                failed       = 1
                OTHERS       = 2.
            IF sy-subrc NE 0.
              ev_fail = abap_true.
            ELSE.
              ls_file_list-filename = ls_files-description.
              ls_file_list-mimetype = lv_mimetype.
              ls_file_list-content = ls_bindata.
              ls_file_list-application_id = ls_files-lo_objid.
              ls_file_list-file_id = ls_files-ph_objid.
              APPEND ls_file_list TO et_file_list.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
    Regards,
    Madhu

  • How can I upload a doc from my ipad to a yahoo group or a google group?

    I need to upload files to a Yahoo group and a Google group and also download files from those groups. I can download a doc attached to an email and edit that doc. I can then email it. But I cannot upload a file, though it asks if I want to upload a photo.

    Yes, iOS and Safari support uploading only Photos. I've not used it so this is not an endorsement, but others have reported that the iCab mobile browser has this feature though.

  • BAPI to download document from DMS

    Hi ALL
    I have the requirement that to download the all the active drawing(DWG) files to local file system or data base for purpose.
    1. I am looking at BAPIS to download from external program.
    Do we have any BAPIS to get the files from DMS.?
    2. And i want to convert those DWG files to pdf files.
    Is there any way we can convert in the dms and download or
    I have to download DWG to localsystem and convert afterwards??
    3. Is there any way to push IDOC for DMS files when the file changes in DMS to external system??
    Please help me.
    Thanks
    Vansi

    Hi Vamsi,
    I think you can do it using program DMS_RELOCATE_CONTENT.
    Go through below link as well
    BSP & DMS Document Download
    <b>Reward Points if this helps,</b>
    Satish

  • Downloading Invoice From DMS content Server.

    Hi All,
    I am New to DMS . We have a business requirement to download sales invoice from DMS server and send the same to printer or save the same to external local drive of user in pdf format.How can we link invoice no with the relevant tables in sap DMS.  Please let me know how can this be achieved.I have searched SDN but could'nt find any relavent link.Please help.

    Hi Frédéric,
    Thanks for the document .Its it very helpfull.I have used the below ARCHIVEOBJECT_GET_BYTES, to retrive the pdf contents but lt_data is returning blank value.
    while debugging i found Sy-SUBRC = 1.
    Which means error_archiv.Also the lw_length and lw_offset has blank values while passing in this function module.Do we need to find the offset and length for the invoice is there any other function module ?
    kindly correct me if i am wrong .
    * Get the Content of the entry in Binary Mode (more simple for PDF)
    CALL FUNCTION 'ARCHIVOBJECT_GET_BYTES'
       EXPORTING
         archiv_id                = ls_connection-archiv_id
         archiv_doc_id            = ls_connection-arc_doc_id
         document_type            = lw_doctype
         length                   = lw_length
         offset                   = lw_offset
       IMPORTING
         binlength                = lw_length
       TABLES
         binarchivobject          = lt_data
       EXCEPTIONS
         error_archiv             = 1
         error_communicationtable = 2
         error_kernel             = 3
         OTHERS                   = 4.
    thanks,
    Prathamesh

  • How do I upload pages docs from my mac to iCloud?

    How do I upload pages documents from my mac to iCloud? Is it something I have to turn on through Pages or do I drag and drop them in the cloud?  When I try to drag and drop them in the cloud, they instantaneously get downloaded to my computer.  iCloud is turned on in my preferences and I have an iCloud account.

    You put them in your Dropbox folder and then open them from your Dropbox app on iOS into your iOS iWork apps. That's puts them into iCloud, including the icloud.com webpage.
    That certainly is not the official solution but the official Apple is silent on how to achieve this.

  • How to upload/download Pictures from W3K Server

    I have an Ipad 4 running IOS7, Wi-Fi only and is connected to my Network.
    I have a Windows 2003 Server which has a File Server which holds all my pictures and I would like to know if there is some way I can access the server to upload pictures from my Ipad to the server and download pictures from the server to my Ipad.
    If this is possible, can you please give me some direction on how to get the Ipad connected to do this?
    Thanks

    I have an Ipad 4 running IOS7, Wi-Fi only and is connected to my Network.
    I have a Windows 2003 Server which has a File Server which holds all my pictures and I would like to know if there is some way I can access the server to upload pictures from my Ipad to the server and download pictures from the server to my Ipad.
    If this is possible, can you please give me some direction on how to get the Ipad connected to do this?
    Thanks

  • How to upload/download screen from one report to another report

    Hello experts ,
    I have to upload a screen from a report say zrept1 screen 0100 to another report say zrept2 screen 0100.
    Please , reply .
    regards,
    Jeet
    Moderator message: standard SE80 functionality for copying objects, please do more research before asking.
    Edited by: Thomas Zloch on May 19, 2011 3:14 PM

    Hi Anuj,
    I have given the function in the prompt message like as you suggested.Next i applied the changes.
    Post click on hyperlink still iam facing the same error.
    please tell me , Am i doing any thing wrong ?
    Regards,
    Ram

  • Cann't Download Docs from SOLMAN!!

    Hi Ppl,
    Greetings!!
    I am New to SOLMAN.
    I am facing problems in downloading templates from SOLMAN.
    T.Code: RMMAIN
    Kindly guide me.
    rgds,
    Deeppak
    SAP SD

    Hi Deepak,
    The problem is with your SAP GUI.
    Ask your Basis person to find the latest patch for your GUI version and apply that patch to your GUI.
    Once it is done your problem will be solved )
    Dont forget to reward points for useful answers.
    best regds,
    alagammai.

  • Download Documents from DMS in xMII

    Hi,
    I need to download some documents from SAP which are maintained in DMS.
    I know there are some BAPIs like BAPI_DOCUMENT*  and I know how to use them in ABAP , ITS and webapplication server.
    But I am not able to think of how to do it in xMII.
    Can some one share the details.
    Thanks,
    Amara.

    Sam,
    I modified my transaction in order to save what exactly I am getting from SAP to xMII using an image saver action block to some folder with xxxx.xls file name.
    Just because of my curiosity I double clicked on the file that is just created by our transaction. It opened <b>PERFECTLY WELL</b> in MS Excel.
    So your question about asking to post garbled data clarified one of the two questions I have. Is the data getting corrupted while transmitted from SAP to xMII or is the data getting corrupted while transmitted from xMII to browser.
    From the above modification to transaction of saving the file to a folder and opening it in MS Excel confirmed that the data is not getting corrupted while transmitting it from SAP to xMII. From now on we have only one thing to deal with i.e. that the data from xMII to Browser.
    To confirm this, I created a test transaction with only one action block with ImageLoader and in the outgoing parameters I assigned imagedata property to transaction output property FILE. and I accessed it from browser using the below URL http://xxxx/Lighthammer/Runner?OutputParameter=FILE&Transaction=TEST_DOC_TRAN&content-type=application/x-msexcel . In this case also it is showing garbled data. Just to save you time I have send you transaction and test XLS file can be of any XLS file. Just to let you know that I have configured imageloader to load file from c:\inetpub\wwwroot\ directory.
    Let me know if I need to provide more info.
    Thanks in advance.
    Srinivas.

  • I cant download docs from google docs

    Hi community, i am using Documents App and i have a Google Docs account.
    I make a .txt in my pc with windows, and i upload it to Google Docs.
    When i try to download the .txt file to my iPad (using the native Documents "G" connector) the preview option is avaible, but the "Download" option is disabled!
    This not occurs when i make an iPad .txt file and upload it...
    Why?
    Thank you!

    Please, someone help me, this problem is common!

  • Upload / Download to / from the Creative Cloud

    I can upload and download files to / from the CC using the CC Desktop app.   I thought that woujld come with the $10/Month CC subscription. 
    I expected that PS CC would have CC functionality built-in so that I coujld "save" or "open" directly from the cloud.
    What am I missing?

    This functionality does not exist in Photoshop CC.
    What you can do is use file syncing to Save and Open files in the Creative Cloud Files folder on your computer. They are then available to view and share from the Files page of the Creative Cloud at https://creative.adobe.com/files and available for Photoshop CC (and any other program) from the Creative Cloud Files folder on your computer.
    If you do not have file syncing available yet you can sign up from the Early Access page at https://creative.adobe.com/earlyaccess.

  • Unable to download doc from icloud to mac

    Can anyone help with document download?  I can see my docs on icloud on my mac, but am unable to download them, even after selecting the doc, choosing 'download', and replying 'save' to the prompt "do you want to save this file" I cannot find files anywhere on my mac.  I had success moving files from my mac, via icloud, to my ipad.  Would like to go both ways.

    I am trying, unsuccessfully, to use the 'brower solution'.  I am on icloud.com/iwork, I see all my documents, when I select one, I'm given an option of format (pages, pdf, word) I make that selection, then the box says "preparing file"  The next box says "you have chosen to open "my document name" which is a WORD document from: http:// ______iwork  would you like to save this file?  When I choose "save file" nothing happens, can't seem to find file on my mac anywhere.  Any more advice?  Thanks!   It seems odd that I can easily drag and drop documents from my mac onto the icloud panel and they are quickly transferred and visible on my ios devices right away.

Maybe you are looking for

  • How can I import CA root certificate into Nokia 62...

    I need to receive e-mail via IMAP over SSL connection with self-signed server certificate. When I'm trying to download exported certificate in X.509 binary format (*.cer or *.der) I can see all certificate details but I can not save it - phone report

  • Acrobat 9 Pro: Invalid serial numbers

    Hello I have 3x boxed copies of Acrobat 9 Pro pruchased from a reseller in 2008. I am trying to install these instanses of Acrobat onto new machines following the "death" (some time ago) of the originals PCs. I have tried all three of the serial numb

  • Accessing iTunes in the cloud

    What does "Accessing iTunes in the Cloud" icon just to the right of Music menu item mean. It's animate with scrolling diagonal stripes.

  • AP Checks Cashed

    For AP checks cashed, do we run transaction code FCKR. We will upload the file from the bank through this transaction code, I understand. But will it also hit teh correct account (vendor, g/l account). Or is there another transaction to do it. Or do

  • OBIA 7963 - HR Analytics - Customization Question

    **Issue Description:** : OOTB Headcount calculations should exclude group of people who are called as non executive directors (NED). There are no indicators/ Flag in the source system to identify who is NED in a particular point in time. There are so