Find out room ID with a given document URL

Hi, Experts,
I am new to KM.
I wanna create an application, which can find out the room ID after given a document URL.
doc URL short ID e.g.https://abc.com/irj/go/nui/sid/d02704ea-1111-2e10-f0b3-adf62453643d
room ID e.g. 70823d8e-5d0b-6f10-a222-ec780d200f78
the given URL will link to a document.
I need to find out which room stores this document.
based on the room ID found out, I will know the room admin
Any idea or suggestions about which API or method I could use? to get the room ID after the doc URL given?
Thanks a lot!

Hi, Experts,
I am new to KM.
I wanna create an application, which can find out the room ID after given a document URL.
doc URL short ID e.g.https://abc.com/irj/go/nui/sid/d02704ea-1111-2e10-f0b3-adf62453643d
room ID e.g. 70823d8e-5d0b-6f10-a222-ec780d200f78
the given URL will link to a document.
I need to find out which room stores this document.
based on the room ID found out, I will know the room admin
Any idea or suggestions about which API or method I could use? to get the room ID after the doc URL given?
Thanks a lot!

Similar Messages

  • How to find out the infoProvider for a given dimension table?

    Experts:
    In RSA1, I want to find out the infoProvider for a given dimension table.
    But I am not sure how to display the tables linked to a given infoProvider.
    Could you provide a way to display all tables linked to a given infoProvider?
    Thanks a lot!

    See, The dimension table starts with Dcubename1 and incremental Dcubename2 .... so on
    Ex.ZSD_C01 is your cube name
    Dim tables starts for this is /BIC/DZSD_C011 /BIC/DZSD_C012 ...
    Goto - LISTSCHEMA  - derive cube name from given dim table and enter cube name  - execute - will show you all the tables

  • Is it possible to find out if a certain type of document is available inside a document-set by the help of workflows?

    Is it possible to find out if a certain type of document is available inside a document-set by the help of workflows?

    Hi,
    According to your post, my understanding is that you wanted to find out if a certain type of document is available inside a document-set.
    Per my knowleadge, there is no out of the box way to accomplish this with SharePoint Designer Workflow.
    To find the content type inside a document-set, there are two methods:
    First, open a document set, click “New Document” option, then you can find the available content type in the document set.
    Second, open the document set content type, open Document Set Settings Page, then you can see the available content type.
    More information:
    What is Document Sets in SharePoint 2010?
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to find out the description for the given field?

    Hi All,
    How to find out the description for the given field?
    I mean ETTYP  Desription is VTEXT. This we can find in TVEPT  Table. So, How canwe find this?
    Thanks in Advance
    Sri...

    Hi  Avi,
    If i want to disply the  fields like   AUART and 'Description of AUART',
    Suppose based on my query i will take AUART from T184 table. And the description of AUART is available in TVAKT table.
    my question is if i have given T184-AUART  and how do u find out AUART Description ?(How do u know which table is having Description of AUART)?
    Thanks in Advance
    Sri...

  • Find out the orgunit id of each document

    hello  guys...
    i execute  fm 'crm_order_read' for all the guid to recover the orgunit id of the doc.
    after that i want to  find out the orgunit id of each document.and  how  they  are link ...

    thanks  for  reply  raj.
    but  my requirment is i have  to capture org unit  id as display in transaction PPOMA_CRM for example  when u goes to the transaction u can c for perticular  bussiness partner u c there is one id like O 50000402
    i want to capture this  id  for perticlar doc.

  • Writing a query to find out who is having a given responsibility name.

    Hi,
    I am new to Oracle Apps and have no idea about its tables. Can anyone please help me in writing a query to find out who is having a given responsibility name.
    Thanks in advance.
    Regards
    Himanshu

    Hi
    you can get required data by using this query
    select usr.user_name
    ,     res.responsibility_name
    from fnd_user usr
    ,     FND_USER_RESP_GROUPS_DIRECT usrrep
    ,     fnd_responsibility_tl res
    where usr.user_id=usrrep.user_id
    and usrrep.responsibility_id=res.RESPONSIBILITY_ID
    group by usr.user_name,res.responsibility_name
    Regards,
    Venky

  • How to find out Equipments installed at a given Functional location in PM .

    Hi Gurus ,
                      I am working on a PM requirement and need to extract the equipments installed at a functional location . The Functional location table is IFLOT and Equipment master is EQUI . I dont find any direct link between these 2 tables .Please guide me as to how to go about the process .
    Regards,
    Venkatesh.

    Hi Anji,
                The view VIAUF_AFVC  is for maintenance orders and operations. I tried giving my functional location on the selection screen and checked for the contents , but it says no entries found. Probably this table will get populated only when a maintenance order is issued.
       I need to find out the equipments at a given functional location . Is there any other way ?
    regards,
    Venkatesh.

  • How can I find out on which page of a document an Xref can be found using ExtendScript?

    Hi,
    I want to find out on which page of a document an external XRef can be found. Is there a simple way to manage that using ExtendScript? The equivalent in FrameScript is XRef.Page.PageNumString.
    Thank you in advance.

    Here is a general purpose function to get you started. You pass it an object and it returns the parent page object. At this point, it does not handle XRefs directly, but you can pass in the paragraph that contains the XRef.
    var page = getPage(xref.TextRange.beg.obj);
    should work.
    Rick
    function getPage (obj) {
        var frame = 0, cell = 0;
        var objType = "";
        while (obj) {
            frame = obj;
            objType = obj.constructor.name;
            switch (objType) {
                case "SubCol" :
                    obj = obj.ParentTextFrame;
                    break;
                case "Tbl" :
                    obj = obj.FirstRowInTbl.FirstCellInRow;
                    break;
                case "Row" :
                    obj = obj.FirstCellInRow;
                    break;
                case "Cell" :
                case "Pgf" :
                case "AFrame" :
                    obj = obj.InTextFrame;
                    break;
                case "TextLine" :
                case "TextFrame" :
                case "UnanchoredFrame" :
                case "Arc" :
                case "Ellipse" :
                case "Group" :
                case "Inset" :
                case "Line" :
                case "Math" :
                case "Polygon" :
                case "Polyline" :
                case "Rectangle" :
                case "RoundRect" :
                    if (obj.FrameParent.ObjectValid()) {
                        obj = obj.FrameParent;
                    } else {
                        obj = 0;
                    break;
                default:
                    // Prevent endless loop if unknown object type is found.
                    obj = 0;
                    break;
        if (frame) {
            return frame.PageFramePage;
        } else {
            return 0;

  • How to find out phone connected with a PC

    Is there a way to programatically find out which IP phone is connected with a given PC? We have a need where an application will be installed on each PC, but instead of having the user manually enter the information about the PC, we want auto detect the phone connected with that PC.

    Old topic, but if anyone is interested I played around and got something working in VS 2005/C# using SharpPcap and the PacketCDP class from an app on codeproject called Pacanal. I had to make some changes to the PacketCDP.cs code to get it to work, but if you can get that far I believe it was relatively minor. The app I made sniffed the CDP packet for the phone devicename and then used that to call a CUAE app to log a phone into extension mobility. Here's some partial code:
    PcapDeviceList devices = SharpPcap.GetAllDevices();
    PcapDevice device = devices[i];
    device.PcapOnPacketArrival += new SharpPcap.PacketArrivalEvent( device_PcapOnPacketArrival );
    device.PcapOpen(true, 1000);
    string filter = "ether host 01:00:0c:cc:cc:cc";
    device.PcapSetFilter( filter );
    device.PcapStartCapture();
    private static void device_PcapOnPacketArrival(object sender, Packet packet)
    EthernetPacket eth = (EthernetPacket)packet;
    returnbool = PacketCDP.Parser(myTreeNode.Nodes, eth.Data, index, LItem, ref deviceName);
    HttpWebRequest request = (HttpWebRequest)
    WebRequest.Create("http://10.10.50.75:8000/emLogin?phone=" + deviceName + "&user=testuser");

  • How to find out MIGO or MIRO without account document

    hi,can somebody tell he how to find out MIGO / MIRO withou account document,because my client want to check GL of GR/IR with MIGO&MIRO.
    in theory,MIGO - MIRO = GR/IR balance,but if no FI document generated from migo or miro for some reasons,they two do not reconcile,right?

    If no Fi document, then there is no GR/IR account in picture. so there is no question of reconciliation.

  • How to find out MIGO or MIRO without FI document

    hi ,can somebody tell me how to find out those MIGO & MIRO wihtout FI doucment ,thanks

    hi
    u can use MB5S for the grir balances
    or  u can use MR11
    or use ME80FN here execute the report and then select the PO history mode u will get all the pos which have been processed and the gr and ir quantity and value will be there
    also u can refer ME2N here in Scope of list   choose ALV and in selection parameters      WE102
    here u will get list of all pos with GR
    regards
    KI

  • Trying to find out if X220 with model number 42875TU have the IPS screens

    Hi, I'm trying to find out if X220's with Model Part Numbers of 4287-5TU have the IPS screens? I cant find the model through the Lenovo model search. Thanks for the help.

    Hi
    I can't explain why partslookup service by MTM doesn't show your laptop parts. Though support site contains its short specification.
    Try to get parts list by laptop serial number if you know that one:
    http://support.lenovo.com/us/en/partslookup
    You'll find the panel p/n and its description.

  • Finding out role assignments with CUA per system

    Hello experts,
    For user administration we use the CUA.
    can anybody tell me were the role assignemts per user and per system are saved in the central system.
    I have to find out which roles are assigned to an user in which system for reporting reasons and I cannot find this information in database tables.
    Table AGR_USERS doesn't help me because it contains only the role assignments of the local system.
    Thanks in advance
    Johannes

    Hi,
    you can get this information in the transaction SUIM in your CUA system. Simply start this transaction an go to User -> Cross-System Information -> Users by Roles. Than you can make selections of usernames und roles in recieving systems.
    The table, which has this information is USLA04.
    Kind regards
    Andrei
    Message was edited by:
            Andrei Borissov
    null

  • How to find list or folder name from SharePoint document URL

    I'm implementing the SharePoint client object model in my VSTO application in .NET framework 4.0(C#).
    Actually we open MS Word files from SharePoint site, we need to create a folder inside the opened documents list/folder and after it we want to upload/add some files to that created folder.
    My problem is that how to get list name/title and folder name of opened document by using the documents URL or Is there an another option to find the list or folder name of opened document.
    Any help will be appreciable.

    In document Library you can get the name of document library directly in URL. for folder name you can try below:
    using System;
    using Microsoft.SharePoint;
    namespace Test
    class ConsoleApp
    static void Main(string[] args)
    using (SPSite site = new SPSite("http://localhost"))
    using (SPWeb web = site.OpenWeb())
    if (web.DoesUserHavePermissions(SPBasePermissions.BrowseDirectories))
    // Get a folder by server-relative URL.
    string url = web.ServerRelativeUrl + "/shared documents/test folder";
    SPFolder folder = web.GetFolder(url);
    try
    // Get the folder's Guid.
    Guid id = folder.UniqueId;
    Console.WriteLine(id);
    // Get a folder by Guid.
    folder = web.GetFolder(id);
    url = folder.ServerRelativeUrl;
    Console.WriteLine(url);
    catch (System.IO.FileNotFoundException ex)
    Console.WriteLine(ex.Message);
    Console.ReadLine();
    http://msdn.microsoft.com/en-us/library/office/ms461676(v=office.15).aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/801d1a06-0c9b-429b-a848-dd6e24de8bb9/sharepoint-webservice-to-get-the-guid-of-the-folder?forum=sharepointdevelopmentlegacy
    You can also try below:
    http://blogs.msdn.com/b/crm/archive/2008/03/28/contextual-sharepoint-document-libraries-and-folders-with-microsoft-dynamics-crm.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d2d5d7cf-9bbd-4e0f-a772-ecdce4e6149f/how-to-fetch-document-guid-from-sharepoint-document-library-using-sharepoint-web-service?forum=sharepointdevelopmentlegacy
    http://stackoverflow.com/questions/2107716/how-to-get-guid-of-a-subfolder-in-a-document-library-programmatically

  • In webdynpro how we will find out application name if you know the URL

    I know the URL in webdynpro, than how can i find out application, please it is urgent

    Hi Jagan.
    I would like to suggest a few references,
    [SAP HELP - Standard Reference for URL parameters and Application parameters in Webdynpro|http://help.sap.com/saphelp_nw04s/helpdata/en/7b/fb57412df8091de10000000a155106/frameset.htm]
    [SAP HELP - Standard Reference for URL of a WebDynpro Application|http://help.sap.com/saphelp_nw04s/helpdata/en/8c/780741375cf16fe10000000a1550b0/frameset.htm]
    [SAP HELP - Standard Reference for Using paramters for Calling a Web Dynpro Application|http://help.sap.com/saphelp_nw04s/helpdata/en/2f/e7574174c58547e10000000a1550b0/frameset.htm]
    [SDN - Reference for Call another WD Application (Web Dynpro for ABAP)|Call another WD Application (Web Dynpro for ABAP);
    Hope that's usefull.
    Good Luck & Regards.
    Harsh Dave

Maybe you are looking for

  • When selecting a row from a view with a nested table I want just ONE entry returned

    Does a nested table in a view "EXPLODE" all values ALWAYS no matter the where clause for the nested table? I want to select ONE row from a view that has columns defined as TYPE which are PL/SQL TABLES OF other tables. when I specify a WHERE clause fo

  • Attachment are not showing in learner self service for classes

    same OLM:Attachments Linked To Classes Are Not Visible By Learner Self-Service Responsibility [ID 375830.1] pplies to: Oracle Learning Management - Version: 11.5.10.2 to 11.5.10.2 - Release: 11.5 to 11.5 Information in this document applies to any pl

  • How to get alert on when Virtual Network adapter get disconnected or down on SCOM

    Hello.., I have SCOM 2012 R2 and its monitoring some of Windows Server 2012 r2 VMs. I have installed MPs & currently working fine to monitoring all the Core OS features and Network adapter state is showing Healthy for these VMs. I want to Know what m

  • Color picker problems

    I began having this problem in Leopard, (am now on Lion):  My color picker does not function - at all.  I can retrieve the color inspector, but the dropdown menu of the colors is non-functioning, I cannot select or use the magnifying glass feature. 

  • Add new fields in the header of  RFITEMAR

    hi,   i want to add new fields in the header of RFITEMAR report ,so first i copy i to zRFITEMAR ,then i want to add                        " Total Quantity "   in the header after City field . can any one help me???????? please ,, i waiting your answ