How to Get a Resource Id via API

Hi,
Is there any way to get the short id associated with a resource via API??
I need to get an Id from a resource that it's unique for every one, so I can show an identifier for every document in a custom report...
Thank you,
Felipe Vieira

Hi Valery,
I mean a Portal Resource..
Inside portal, when a go to properties  of a specific document, in tab "Access Link" it shows a "Short Id".
I'd like to know via API how to get this Id, or any other Code that it's unique for every resource or document in portal.
Thank you!

Similar Messages

  • IDM : How to get the Resource name in Exclude Rule during Reconciliation?

    Hi
    Problem Statement => How to get the Resource name in Exclude Rule during Reconciliation.
    Problem Description => Apparently, we use exclude rule for not consider some account during reconciliation.
    I need the resource name in exculde rule during reconciliation. I tried with getResources() method which is an inbuilt method.But it gives all the resources are aviablable in the repository (IDM). I need only the current reconcilied resource name instead of fetching all the resouce.
    Can any one please help how to get the resource name in exclude rule during reconciliation?
    Thanks in advance for you help.
    Thanks,
    Chellappan

    Hi,
    Thanks for your reply.
    I have 50 resouces and these resouces using the same kind of exclude rules. In the exclude rule, i am using resource name to do some work. If i get the resouce name in exclude rule, then i can use the same exculde rule for 50 resources. This will minimise the rule count from 50 to 1. For that, i need resouce name.
    Thanks,
    Chellappan Sampath.

  • Does somebody know how to get to the desktop via hot corners whilst being in full screen mode? it doesn't work on my mac... :/ thx for helping!

    does somebody know how to get to the desktop via hot corners whilst being in full screen mode? it doesn't work on my mac... :/ thx for helping!

    bump

  • How to get facebook to say via ipad when I share something using my ipad

    how to get facebook to say via ipad when I share something using my ipad

    It appears that the app is indeed not available in Finland, as I can't find it by searching the iTunes Store there. You'll have to contact the developer of Onlive Desktop and ask if they have any plans to release their service in your country.
    Regards.

  • How to get IPv6 site prefix via Windows API?

    Hello,
    we need urgent help. We have to automatically configure a postgres sql server. For this reason we need to determine the IPv6 site prefix. Using windows command line this is pretty easy:
    netsh interface ipv6 show siteprefix
    We are only interested in the site prefixes themselves, e.g. no lease time is needed. We want to get this information via Windows API.
    For this purpose we use GetAdaptersAddresses function. Within the result of
    FirstPrefix the needed information is included. But it's much to much information and it's not clear for us how to filter the result. We need always
    exact the same result like the command above produces.
    Any help or hint would be very very appreciated.
    Greg

    Hi Valery,
    I mean a Portal Resource..
    Inside portal, when a go to properties  of a specific document, in tab "Access Link" it shows a "Short Id".
    I'd like to know via API how to get this Id, or any other Code that it's unique for every resource or document in portal.
    Thank you!

  • How to get cluster name with c++ API?

    Hi everyone,
    I want to get cluster name with c++ API, do you know how to do that?
    Thanks very much!!!
    Guangyin

    937347 wrote:
    Hi Robert,
    For Java, we can get the cluster name like this:
    cache.getCacheService.getCluster().getClusterName(),
    for c++, just as you said, do you mean that i can try to get cluster name like this:
    Sting::View name = cache->getCacheService()->getInfo()->getServiceName();
    InvocationService::handle invocation = cast<InvocationService::handle>(CacheFactory::getService(name));
    String clusterName = invocation->getInfo()->getServiceName();
    But i can not get the right result.
    I know little about how to use InvocationService, could you give me example?
    Thanks very much!!!
    GuangyinHi Guangyin,
    I do not know the C++ API, I never used it, but what you wrote definitely does not look right.
    InvocationService is a way to send arbitrary Java logic (you need to write both the Java logic and a C++ counterpart class, the C++ class will serialize itself with POF and the Java class will deserialize the same data appropriately) as a command to the cluster via the TCP*Extend connection and the command would execute on the proxy node and thus it would have access to the cluster itself.
    You probably should start with the documentation of the Coherence*Extend C++ API documentation for samples.
    http://docs.oracle.com/cd/E24290_01/coh.371/e22839/toc.htm
    http://docs.oracle.com/cd/E24290_01/coh.371/e22839/cpp_part.htm#CHDHCIEJ
    Best regards,
    Robert

  • How to get activity data by Bulk APIs v2.0?

    Hi all,
    I have completed to get Account data by Bulk APIs v2.0. (create an export for Account and then create a Sync for this export)
    But when trying to use the integration to work for Activity data, I always get Error status of Sync.
    So, could you please show me any suggestions for this issue?
    Is there any option different between exports of Account and Activity?
    Thanks,
    Biao
    PS: I find an example to request activity data:
    POST https://<host>.eloqua.com/api/bulk/2.0/activities/exports
    "name":"Example Activity Export",
    "fields":{
    "ActivityId":"{{Activity.Id}}",
    "AssetName":"{{Activity.Asset.Name}}",
    "ActivityType":"{{Activity.Type}}",
    "Id":"{{Activity.Id}}",
    "ActivityDate":"{{Activity.CreatedAt}}",
    "EmailAddress":"{{Activity.Field(EmailAddress)}}",
    "ContactId":"{{Activity.Contact.Id}}",
    "VisitorId":"{{Activity.Visitor.Id}}",
    "AssetType":"{{Activity.Asset.Type}}",
    "AssetId":"{{Activity.Asset.Id}}",
    "RawData":"{{Activity.Field(RawData)}}"
    "filter":"’{{Activity.Type}}’=’FormSubmit’"
    I get error status of Sync for this export. But when I remove the 'Id' and 'RawData' fields, I get success.
    I guess that there are some roles of the field settings, e.g. one statement should not appear more than once, and so on.
    So, where could I find the roles? Or is there an API could return the valid field list?
    Thank you very much.

    Hi Biao,
    I am able to pull the data for Activity Export for Type Form Submit.
    I am adding details below :
    1) Create Activity Export Structure
    URL : https://www02.secure.eloqua.com/API/Bulk/2.0/activities/exports
    Input JSON : {"name":"Bulk Activity Export","dataRetentionDuration":"PT1H","fields":{"activityId":"{{Activity.Id}}","assetId":"{{Activity.Asset.Id}}","activityType":"{{Activity.Type}}","activityDate":"{{Activity.CreatedAt}}","contactId":"{{Activity.Contact.Id}}","visitorId":"{{Activity.Visitor.Id}}","visitorExternalId":"{{Activity.Visitor.ExternalId}}","assetType":"{{Activity.Asset.Type}}","assetName":"{{Activity.Asset.Name}}","rawData":"{{Activity.Field(RawData)}}"},"filter":"'{{Activity.Type}}'='FormSubmit' and '{{Activity.CreatedAt}}'>='2013-06-01' and '{{Activity.CreatedAt}}'<='2013-06-30'"}
    Status Code : 201
    Output JSON : {"name":"Bulk Activity Export","fields":{"activityId":"{{Activity.Id}}","assetId":"{{Activity.Asset.Id}}","activityType":"{{Activity.Type}}","activityDate":"{{Activity.CreatedAt}}","contactId":"{{Activity.Contact.Id}}","visitorId":"{{Activity.Visitor.Id}}","visitorExternalId":"{{Activity.Visitor.ExternalId}}","assetType":"{{Activity.Asset.Type}}","assetName":"{{Activity.Asset.Name}}","rawData":"{{Activity.Field(RawData)}}"},"filter":"'{{Activity.Type}}'='FormSubmit' and '{{Activity.CreatedAt}}'>='2013-06-01' and '{{Activity.CreatedAt}}'<='2013-06-30'","dataRetentionDuration":"PT1H","uri":"/activities/exports/74","createdBy":"CXDELQ.API","createdAt":"2014-11-03T09:40:00.9397930Z","updatedBy":"CXDELQ.API","updatedAt":"2014-11-03T09:40:00.9397930Z"}
    2) Create Sync with status pending
    URL : https://www02.secure.eloqua.com/API/Bulk/2.0/syncs
    Input JSON : {"syncedInstanceUri":"/activities/exports/74","status":"pending"}
    Status Code : 201
    Output JSON : {"syncedInstanceUri":"/activities/exports/74","status":"pending","createdAt":"2014-11-03T09:41:18.2503138Z","createdBy":"CXDELQ.API","uri":"/syncs/90640"}
    3) Get sync Result
    URL : https://www02.secure.eloqua.com/API/Bulk/2.0/syncs/90640
    Status Code : 200
    Output JSON : {"syncedInstanceUri":"/activities/exports/74","syncStartedAt":"2014-11-03T09:41:20.6670000Z","syncEndedAt":"2014-11-03T09:41:23.1970000Z","status":"success","createdAt":"2014-11-03T09:41:18.1670000Z","createdBy":"CXDELQ.API","uri":"/syncs/90640"}
    4) Get the data from API
    URL : https://www02.secure.eloqua.com/API/Bulk/2.0/activities/exports/74/data?limit=1000&offset=0&count=1&depth=complete
    Output JSON : "Output is high voulme, am not attaching here".
    Please let me know is this will help you to reolve the issue.
    Thanks,
    Deepak Chincholi

  • How to get mininum resources requried by an Tuxedo App

    Hi,
    Is there any other way to get how much resources will be required to run a tuxedo application.
    I am using tmloadcf -c but can't understand how it is calculated. Can anybody explain?
    Thanks!
    Regards,
    Vijendra

    tmloadcf -c uses knowledge of the amount of shared memory, message queue
    resources, and semaphores required for the number of clients, servers, and
    workstation clients used to calculate its output. As Roopesh Dubey posted,
    MAXACCESSERS, MAXSERVERS, and MAXWSCLIENTS are key parameters used in
    determining the amout of IPC resources required.
    If on Unix, this output should be given to your system administrator, who
    should add any IPC resources required by other applications on the machine
    to these values and configure the machine appropriately. More information
    is available at
    http://e-docs.bea.com/tuxedo/tux90/install/inspin.htm#1020442
    On NT, the default IPC values are often acceptable, but large applications
    may need to configure the IPC resources as described at
    http://e-docs.bea.com/tuxedo/tux90/nt/ntadmin.htm#711572151
    <vijendra Rajput> wrote in message news:[email protected]..
    Hi,
    Is there any other way to get how much resources will be required to run atuxedo application.
    I am using tmloadcf -c but can't understand how it is calculated. Cananybody explain?
    >
    Thanks!
    Regards,
    Vijendra

  • [Office365][Calendar][Event]How to get deleted event by REST API

     
    Structure of event:
          "Id": "AAMkAGI2NG...WRAAAAAA2hTfspaWRAAADTG93AAA=",
          "IsCancelled": false,
    Meaning of property "IsCancelled" is to distinguish between events that have been deleted or not, isnt it ?
    Last week I was able to get the event that has "IsCancelled" is true, but now i can get "IsCancelled" is false only. What is the cause of change?
    Can I use REST API to get the events that are already deleted? If ican, pls show me how to do!
    Thanks in advance !

    I dont think its possible to do it

  • How to get one users meetings via admin login

    I need to get a list of meeting rooms that the user is a
    participant/host/presenter in.
    In all the documentation I look at, it always suggest to use
    "report-my-meetings" while logged in as the user. This really isn't
    an option for the system that I'm building. I am logged in through
    an account that has full administrative access, but I'm having a
    tough time finding out what to pass to accomplish this.
    Any help would be appreciated, thank you.

    To my knowledge (and I have looked for this type a data a few
    times), there are no reports that ever differentiate a user as a
    participant/host/presenter directly. I think the reason is because
    users sometimes are promoted and demoted within a single meeting?
    That is not to say a custom report couldn't be made, but either the
    XML API (probably not) or directly from the MS-SQL DB on a licensed
    installation.
    A small nuance to be aware of is, whenever you see a report
    that gives the users email address, you know that they are a fully
    qualified Connect user. When the email is not there in the report
    and only a name is given, they are a "guest". Also, if you assign
    yourself as someone's manager, then go to "Manager Reports" link
    found on the homepage, you will get a manifest list of all of the
    meetings attended by the staff member you assigned under you.
    Sadly, that report only gives the meeting room name, time-in &
    time-out. To find-out what there roll was, you'd have to find the
    meeting in the Meetings tab and look under the permissions link.
    Real bummer the report you want doesn't come pre-built with
    Connect. Silly, in fact. If you really need this made for you, PM
    me and I can see if our engineers could access this
    indirectly.

  • How to get the search field with API UCM  for a specific UCM Profil

    We have UCM 10g
    For the checkIn we have for exemple the URL : http://xp-ucm1.oth.prs/idc/idcplg?IdcService=CHECKIN_NEW_FORM&dpTriggerValue=1&dpDisplayLabel=Codification%201&IsSoap=1
    To obtain all the field for the checkIn is very simple with this service(IdcService=CHECKIN_NEW_FORM) and RIDC, but for search we don't find the idc service ?
    <SOAP-ENV:Envelope>

    <SOAP-ENV:Body>

    <idc:service IdcService="CHECKIN_NEW_FORM">

    <idc:document dRevLabel="1" dUser="sysadmin" dDocName="" dDocTitle="">
    <idc:field name="xClbraUserList:isExcluded">1</idc:field>
    <idc:field name="xsgti_top_rule:isSetDefault">1</idc:field>
    <idc:field name="xlist1:isExcluded">1</idc:field>
    <idc:field name="xsgti_g_ll_niv1_1:isExcluded">1</idc:field>
    <idc:field name="xsgti_chrono_soc"/>
    <idc:field name="xsgti_g_entier4:isExcluded">1</idc:field>
    any ideas

    Hi,
    In fact, I don't want to send parameters to the search service but to get the fields to display an advanced search form of my own.
    Some rules and profiles filters the amount of fields availables and having a service that can do this filtering for me would be very useful.
    The check-in service do this for a trigger value (profile), but I can't find how UCM uses services to display the search form with the right fields depending on the rules and rights of the user.
    When I call a search form, UCM calls a service : http://xxx.xxx.xxx.xxx:xx/idc/idcplg?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=STANDARD_QUERY_PAGE&dpTriggerValue=xxx&dpDisplayLabel=xxx
    But with &IsSoap=1, the values returned are not good, some fields are missing, the field captions are not right... I guess UCM calls sub-services but which ones ?
    Thanks :)

  • How to Get file from Server (via AL11)

    Hi Team
    I have a requirements like getting the file from the server if Application server is check.
    Once i have press F4 button on the file parameter, shown dump .
    i am using FM /SAPDMC/LSM_F4_SERVER_FILE under AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_apath.when i am pressing F4 button to findout the file directory it shown dump like
    MESSAGE E019(/SAPDMC/LSMW).
    My system is ECC 6.0 Develoment .
    Please have a look and let me other alternatives to get the file from application server.
    In Advanced Thank you.
    Thanks & regards.
    Puneet.

    Hi Gautam,
    i have tried as per given FM but problem is that while reading the file it gives sy-subrc 4. file is already situated correct directory then gives error.
    So please give me other function module which is similar functionality as
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
            EXPORTING
              directory        = c_space
            IMPORTING
              serverfile       = p_w_file
            EXCEPTIONS
              canceled_by_user = 1
              OTHERS           = 2.            
      Thanks.
    Puneet.

  • How to get this required information via SQL

    Dear All
    I have a requirement & i am not getting a way out of it.
    Consider Sample Data as
    Table Name >> INVOICE
    Data :
    INV_N0 PRODUCT_NO SOLD_QTY
    1 1 2
    1 2 3
    1 3 1
    2 2 11
    2 3 12
    3 2 10
    4 3 22
    Now my requirement is to fetch data of particular invoices that contains a certain set of products.
    e.g.
    If i want invoice that contain only product no 2 & 3 then my out put should be.
    INV_N0 PRODUCT_NO SOLD_QTY
    1 1 2
    1 2 3
    1 3 1
    2 2 11
    2 3 12
    Means i want to fetch data of complete invoice containing a certain set of products from that invoice.
    Regards
    Capri
    Edited by: Capri on Apr 8, 2010 4:57 AM

    probaby not the best performance, but you have a PRODUCT IN () list, which is what you wanted
    with t as (
    select 1 inv_no, 1 product, 2 sold_qty from dual union all
    select 1, 2, 3 from dual union all
    select 1, 3, 1 from dual union all
    select 2, 2, 11 from dual union all
    select 2, 3, 12 from dual union all
    select 3, 2, 10 from dual union all
    select 4, 3, 22  from dual
    , tt as (
    select t1.*, (select count(*)
                  from   t t2
                  where  product in (2,3)
                  and    t1.inv_no = t2.inv_no) cn
    from t t1
    select * from tt
    where cn > 1

  • How to get file attribs - on any Mac

    ok so if the Mac in question has Developer / Tools - yeah the GetFileInfo binary will work to get the Type and Creator code and other info.... since most Macs dont have this bulky download... how to get file attribute information via Terminal ? How to change it ?

    Oddly enough I was just now playing around with a getinfo Applescript and studying the event log when I realized that it does return information about at least some of the attributes. I made the ones that it looks like you can get information about bold:
    A Alias file
    B Bundle
    C Custom icon
    D Desktop
    E Hidden extension
    I Inited
    M Shared (can run multiple times)
    N No INIT resources
    L Locked
    S System (name locked)
    T Stationary
    V Invisible
    Z Busy
    If you are interested see this thread:
    http://discussions.apple.com/message.jspa?messageID=5261906#5261906
    The SetFile function is actually available on any Mac that has a recent Tiger updater package installed. Thus I have copies in both the package updaters and the receipts for 10.4.7, .8, .9 and .10 in the /Library/Packages and /Library/Receipts folders. The SetFile command is in the Resources folder:
    "/Library/Packages/MacOSXUpd10.4.10PPC.pkg/Contents/Resources/SetFile"
    Control click on the .pkg file and select Show contents from the Contextual Menu to get there. Unfortunately I don't know of any way to use some other Terminal command to get information on all the attributes, except the GetFileInfo and using the Applescipt get info function.
    Francine
    Francine
    Schwieder

  • How to get the "current date" in the BEx?

    Hi all,
    I need to get the "current date" in my Bex report in order to make a comparison. I know there is a "How to" which shows how to get the current date via a User Exit, but I didn't find it. Could you please help me?
    Thanks

    1. Create a  New Formula in Key Figures structure
    2. Give tech name and description and Select "New variable" option
    3. Next screen will launch Variable Wizard -> create a new variable with replacement path as processing type
    4. in next screene  select the date characteristic that represents the first date to use in the calculation (From Date)
    5. In the next  screen select Key in the Replace Variable with field. Leave all the other options as they are
    6. In the next Currencies and Units screen select Date as the Dimension ID.
    6. Save variable
    repeate the Above steps to create another variable (To Date)
    and now you can use these two new replacement path variables in your new formula.
    Dev

Maybe you are looking for

  • Connect to airport disk when through internet

    Hello, I have a mac book running 10.6.8  At home I have an apple "airport extreme" router with a WD external hard drive connected via USB, the disk works fine at home.   I know it is possible to connect to the external hard drive(airport disk)   via

  • Send Email with diff user id .

    hello experts ,                   i have a program which can send mails to other user but it by default takes my used id as sender's mail id . This program is working fine , but is there any way possible to hide my sender's mail id and show some othe

  • Alert for HR module

    Hi all, I want to set alert for following scenario. we have employees who are outsourced to third party on contract basis. Let say Emp A has contract from 1st Jan 2009 to 31 Oct 2009. Now the HR manager must alert message before the contract ends let

  • Marker update

    Hello, I have inventory cube and i am compressing the cube with Marker updates. I want to know, which request is compressed with marker update and which is not compressed with marker update. is it possible? Thanks.

  • Delete layer

    Hi, is it possible to delete a layer in Acrobat X  (by scripting) ? I need to delete it because although it is hidden and locked it still shows up in Safari on a Mac. It takes a lot of hours to go back to InDesign and then Acrobat so that's no option