How to get documents in BPS

Hi
Someone can help me with how to get documents in BPS, Is there one how to.... documents in BPS?
We try to use the function modules UPC_DOCUMENT_GET and UPC_DOCUMENT_LIST_GET but is not working because is missing parameters.
Thanks
Vero

Veronica,
  I am assuming that you want to know how documents are
  handled in BPS and how you can configure your system to
  do so.
  Here is the "How to" paper that explains this:
  https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how%20to%20handle%20documents%20in%20sem-bps%20and%20bw-bps.doc

Similar Messages

  • How to get Document Set property values in a SharePoint library in to a CSV file using Powershell

    Hi,
    How to get Document Set property values in a SharePoint library into a CSV file using Powershell?
    Any help would be greatly appreciated.
    Thank you.
    AA.

    Hi,
    According to your description, my understanding is that you want to you want to get document set property value in a SharePoint library and then export into a CSV file using PowerShell.
    I suggest you can get the document sets properties like the PowerShell Command below:
    [system.reflection.assembly]::loadwithpartialname("microsoft.sharepoint")
    $siteurl="http://sp2013sps/sites/test"
    $listname="Documents"
    $mysite=new-object microsoft.sharepoint.spsite($siteurl)
    $myweb=$mysite.openweb()
    $list=$myweb.lists[$listname]
    foreach($item in $list.items)
    if($item.contenttype.name -eq "Document Set")
    if($item.folder.itemcount -eq 0)
    write-host $item.title
    Then you can use Export-Csv PowerShell Command to export to a CSV file.
    More information:
    Powershell for document sets
    How to export data to CSV in PowerShell?
    Using the Export-Csv Cmdlet
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Sharepoint Workflow : how to get document full path + file name into variable?

    Hi,
    Anybody knows how to get document full path + file name into a variable in Sharepoint 2010 workflow?
    Example http://sp1:80/InvoiceQueue/Shared Documents/123.pdf
    I am using List Workflow which links to a document library.

    Hi SAMSUNG,
    According to your description, my understanding is that you want to get the full path of a document in a list workflow.
    You can set the variable to the Enconded Absolute URL of the document. The screenshot is my testing. In my testing (in the red area), when the title of a document was equal to the tile of the current item, set a variable to the Enconded Absolute URL of the
    document. I used ‘Log to history list’ to check the value of the variable in Workflow History .
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to get documents from RMS linked to particular case id using webdynpro

    HI friends,
    Can  anybody knows " How to get documents from RMS linked to particular case id."
    From end: webdynpro
    backend: RMS.
    please do the needful.
    Thanks and Regards
    -Sujatha

    HI friends,
    Can  anybody knows " How to get documents from RMS linked to particular case id."
    From end: webdynpro
    backend: RMS.
    please do the needful.
    Thanks and Regards
    -Sujatha

  • How to get document liked to material

    How to get documents liked to certain material? I have material number and I want to get the document number of each linked document.
    I tried to use MATERIAL_READ_DOCUMENTS function, but the call returned "SYSTEM_FAILURE".
    Here is the code:
    theFunc = functionCtrl.Add("MATERIAL_READ_DOCUMENTS")
    theFunc.exports("MATNR") = matNum
    materialDocuments = theFunc.tables("IDRAD")
    returnFunc = theFunc.Call
    If returnFunc = True Then
        rows = materialDocuments.rowcount
        ReDim dataTable(rows, 1)
        For i = 1 To rows
            dataTable(i, 0) = materialDocuments(i, "DOKNR")
            dataTable(i, 1) = materialDocuments(i, "DOKAR")
        Next i
    Else
        callException = theFunc.Exception
    End If

    Hi,
    One soloution would be to use the BAPI,
    BAPI_DOCUMENT_GETOBJECTDOCS.
    Pass 'MARA' to field OBJECTTYPE and the 18 digit material number to field OBJECTKEY and u will get all the material document links assosiated with the material. What more, it is a BAPI so it is RFC enabled.
    Hope this helps.
    Sharath.

  • How can get document from mac to iphone

    How can I get document from imac that is saved, to my iphone?

    What kind of document?
    iWork documents (Pages, Numbers, Keynote) can be saved to iCloud and opened by the corresponding apps on the iPhone.
    PDFs can be transferred via iTunes or Dropbox and read using an application such as Goodreader.
    If you can add some detail to your request, we can try to offer a better solution.
    Matt

  • How to get document for jdbc-subprotocol

    I want to know,which subprotocol supports the jdbc.How to get the document of this.

    That question is either way to open ended, or you are using the terms in a way that is not normally meant.
    Maybe something here would help you .... http://java.sun.com/products/jdbc/

  • How to get documents into adobe reader iphone

    hi all -- new to my iphone -- i want to read pdfs using the adobe reader -- how do i get pdfs loaded into ???? so the phone can download it

    hazardzzz,
    Please take a look at the following FAQ document to see if it helps you get started with Adobe Reader on your iPhone.
    How to get PDF documents into Adobe Reader for iOS (iPhone on iOS 7 version)

  • How to get Documents folder back in the Dock?

    Hi all
    While playing Leopard, I accidentally removed the Documents folder from the dock. Anyone know how to get it back in its original form (ie- not adding the Alias, but the stackable, entire Documents folder)?
    many thanks

    Thanks.
    I am an idiot.
    I tried to drag the Documents folder from the sidebar and it wasn't working. Now I did it from my home folder and its fine.

  • How to get document object on kBeforeOpenDocSignalResponderService

    Hi ,
    I want to change the document on kBeforeOpenDocSignalResponderService.
    I have tried following code on kBeforeCloseDocSignalResponderService
    case kBeforeCloseDocSignalResponderService:
    InterfacePtr<IDocumentSignalData> documentSignalData(signalMgr, UseDefaultIID());
    if (!documentSignalData)
          CAlert::ErrorAlert("documentSignalData is Nil");
         break;
    UIDRef documentUIDRef = documentSignalData->GetDocument();
    if (documentUIDRef.GetDataBase() == nil)
          break;
    InterfacePtr<IDocument> document(documentUIDRef, UseDefaultIID());
    if(document == nil)
         break;
    but here i am not able to get document object.
    Is there any way to achieve it.
    Please suggest some way
    Thanks,

    Hi Pooja_IDDev,
    void MyImpl::Respond(ISignalMgr* signalMgr)
         do{
              ServiceID serviceTrigger = signalMgr->GetServiceID();
              InterfacePtr<IDocumentSignalData> docData(signalMgr, IDocumentSignalData::kDefaultIID); //kDocumentSignalMgrBoss
              if(docData == nil)
                   break;
              UIDRef doc = docData->GetDocument();
         }while(kFalse);
    Best regards,
    Oleg

  • How to get document's Bleed Box

    Hi all,
    I want to get the current bleed settings of a document, but can't find any class in the SDK making this available.
    There is INewDocCmdData which allows to set the bleed box for a new document, so if there is a way to get an INewDocCmdData for an existing document, that would work. But I don't know how to achieve that either.
    Another option seems to be via the script interface. There are Javascript classes and methods defined to get a document's bleed box. But can I somehow run a short script snippet from within C++ and extract the result?
    Any pointers would be really great.
    Bernd

    Look to IPageSetupPrefs on the document boss.
    Ian

  • How to get documents from content server on web pages

    Hello,
    I want to get the documents from the ECM(UCM server) of same document type and also want their metadata fields to displayed on adf application.
    How can i fetch these documents?

    Hi,
    You mean Data transfer between two components..
    To pass the value from one component to other component, you can use used component scenario.
    For example let use assume we have two comp ..
    Comp A,
    Comp B.
    now we need to pass the value from Comp A to Comp B.
    Then declare the Comp A as used component in Comp B.
    Now then you can create a node in the comp A component controller and check the interface check box there then the
    node and the attribute will be present in the interface controller also .
    and this interface controller context you can access in the component and map it to view there and display it.
    Webdynpro Application Integration..
    http://wiki.sdn.sap.com/wiki/display/WDABAP/WebdynproApplicationsIntegration
    cheers,
    Kris.

  • How to get document info..???

    Hii all..
    I am trying to retrieve the doc_info of a particular document from oracle webcenter content using RIDC by following method :-
    public void info() throws IdcClientException, IOException{
    IdcClient client=getConnection();
    DataBinder binder=client.createBinder();
    binder.putLocal("dDocName", "COOPER_4444001205");
    ServiceCallUtils ss=new ServiceCallUtils();
    List doclist=new ArrayList();
    DataResultSet data=ss.getDocInfo(binder);
    System.out.println(data);
    doclist= data.getRows();
    Iterator it=doclist.iterator();
    while(it.hasNext()){
    System.out.println(it);
    but ss.getInfoData is not returning anything and the DataResultSet data is remaining null.
    Does anyone know how to fix this...???
    Edited by: 938480 on Jun 13, 2012 7:10 AM
    Edited by: 938480 on Jun 13, 2012 7:22 AM

    All getDocInfo does is the following:
    return binder.getResultSet("DOC_INFO");
    You must first execute some sort of DOC_INFO service call to get the DOC_INFO ResultSet.
    binder.putLocal("IdcService", "DOC_INFO_SIMPLE");
    DataBinder result = null;
    try {
    ServiceResponse response = client.sendRequest(userContext, binder);
    result = response.getResponseAsBinder();
    DataResultSet data=ss.getDocInfo(result);
    } catch (IdcClientException e) {
    Jonathan
    http://redstonecontentsolutions.com
    http://corecontentonly.com

  • How to get documents saved in Icloud via my Ipad

    I know this should be easy, but I can't seem to master it.  I have save a document in ICloud via my computer (my computer saves it in Word). Now I want to access it from my Ipad. I have my Doucments & Data setting to "On". I have pages on my IPad. I've pulled that up and can't find the document.  Where will the document be on my Ipad so I can access it?

    Welcome to the Apple Community.
    How did you save the document and where did you save it to on your Mac, did you save it through Pages or iCloud.com.

  • How to get document number in user  created form?

    Hi All,
             I am creating a form.In that i want to maintain Document number for each form(each order)(like in sales order form (Document  No. field)).
                   Please help me to maintain the document number either manually or by system generated.If u have code example   please send.
            I tried for Manage series and all.But i couldn't get.
    Expecting ur reply soon
    Thanks
    V.Rangarajan

    Hi V.Rangarajan,
    I haven't used this code yet, but herewith an extract from the SBO SDK Training material which I think is related to your problem.
    // create a combo box for the series oItem=oForm.Items.Add("SeriesName",SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX)
    // fill the combo with relevant series
    oComboBox.ValidValues.FillWithSeries(True, False, 0) new method
    oComboBox.DataBind.SetBound(True, "@MATH", "Series")
    // edit text to hold the numbering of the series
    oItem = oForm.Items.Add("SrValue", SAPbouiCOM.BoFormItemTypes.it_EDIT)
    oEditText.DataBind.SetBound(True, "@MATH", "DocNum")
    // get the next series number in add mode
    lNum = oForm.BusinessObject.GetNextSeriesNumber(CLng(str))
      oEditText = oForm.Items.Item("SrValue").Specific()
       oEditText.String = lNum
    I don't know if this will solve your problem, but hopefully it will put you on the right track.
    Hope it helps,
    Adele

Maybe you are looking for

  • Fix a video that has been recorded in full zoom?

    Is there a way to zoom out during editing or de-pixelate? I must have zoomed in by accident while recording on a tripod. Half the video is fine, half is in full zoom and therefore poo. Is there any way to correct this through editing or something? Or

  • 2008 MacPro upgrade to Maverick; problem with wake up.

    IT runs like a well oiled machine when it runs. But, it has a problem finding the start up drive. I keep getting the flashing question mark quite frequently. I have to unplug the power cord and leave for 5 minutes EVERY time i start up. I have initia

  • Xml Schema creation - enforcing one tag at root

    I have a schema such as the one below but this permits any of the global element declarations to start as the root of an xml document. I want just <table> to be at the root.      <xs:element name="table">           <xs:complexType>                <xs

  • Trying to import photos

    When ever I try to import a photo, a window pops up asking me to type in the user name and password in order to connect to 'idisk.mac.com'. I have no idea what this is and I just want to put some photos into my iphoto library!!!!!

  • History tables on 8.8

    Guys, We've got various add-on solutions, and reports, that examine the history tables for various B1 objects (documents, Business Partners, etc). Up until 8.8, the history tables always stored the current revision of a record as well as the historic