Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
URL Address
Mario_Rodriguez_(sglcadmin52_-_(deleted))
I need to know the URL address of 800 files. Could you please, tell me if there is some table with URL address or how can I get it ?
Find more posts tagged with
Comments
Lee_Butler
Message from Lee Butler via eLinkHi Mario,I think you guys have WebReports in which case you can use the LLURLsubtag.Have a LiveReport return a single column called DATAID and use[LL_REPRAG=DATAID LLURL:DEFAULTLINK /] to translate the dataid into theappropriate URL for the default behavior of that object.Thanks,Lee.-----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion[mailto:livereportsdiscussion@elinkkc.opentext.com] Sent: Dienstag, 3. April 2007 14:38To: eLink RecipientSubject: URL AddressURL AddressPosted by Rodriguez, Mario on 04/03/2007 08:26 AMI need to know the URL address of 800 files. Could you please, tell meif there is some table with URL address or how can I get it ?[To reply to this thread, use your normal E-mail reply function.]============================================================Discussion: Livelink LiveReports Discussion
https://knowledge.opentext.com/knowledge/llisapi.dll/open/2249677Livelink
Server:
https://knowledge.opentext.com/knowledge/llisapi.dllTo
Unsubscribe from this Discussion, send an e-mail tounsubscribe.livereportsdiscussion@elinkkc.opentext.com.
Mario_Rodriguez_(sglcadmin52_-_(deleted))
Thanks for the information, but I don't have webreports.Is there some other way to get the URL of each filename ?
eLink User
Message from de Boer, Chris via eLinkIf you have the dataid's of the files, you can create the link by adding the rest of the url in your query (concatinating it around the dataid). Chris. -----Original Message----- From: eLink Discussion: Livelink LiveReports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com] Sent: Tue 3-4-2007 15:33 To: eLink Recipient Cc: Subject: Thanks for the information, but I don't have webreports. Thanks for the information, but I don't have webreports. Posted by Rodriguez, Mario on 04/03/2007 09:23 AM Thanks for the information, but I don't have webreports. Is there some other way to get the URL of each filename ? [To reply to this thread, use your normal E-mail reply function.] ============================================================ Topic: URL Address
https://knowledge.opentext.com/knowledge/llisapi.dll/open/12069566
Discussion: Livelink LiveReports Discussion
https://knowledge.opentext.com/knowledge/llisapi.dll/open/2249677
Livelink Server:
https://knowledge.opentext.com/knowledge/llisapi.dll
To Unsubscribe from this Discussion, send an e-mail to unsubscribe.livereportsdiscussion@elinkkc.opentext.com.
Mario_Rodriguez_(sglcadmin52_-_(deleted))
I have the dataid, but I don't understand how can I concatenate.URL example:
http://sistemas.siemens.com/livelink/livelink.exe/WI_CHG_L3_Analyze_Request_for_Change.doc?func=doc.Fetch&nodeId=9437488&docTitle=WI_CHG_L3+Analyze+Request+for+Change.docHow
I can concatenate the dataid with link following the example above?thanks!
Mario_Rodriguez_(sglcadmin52_-_(deleted))
I have the dataid, but I don't understand how can I concatenate.URL example:
http://sistemas.siemens.com/livelink/livelink.exe/WI_CHG_L3_Analyze_Request_for_Change.doc?func=doc.Fetch&nodeId=9437488&docTitle=WI_CHG_L3+Analyze+Request+for+Change.docHow
I can concatenate the dataid with link following the example above?thanks!
Bruno_De_Planchon
something like that should work (I use LL9.2 with Oracle) :select concat('/livelink/livelink.exe?func=doc.Fetch&nodeid=', dataid) from dtree where...