DPS analytics access for client only

Hello
My internal clients want to access the DPS analytics, but the thing is I am not confortable to give this password and access to several people and also, afraid some would access the Folio Producer and delete or unpublish/publish some content (change the name of my folio etc). Well you had understood me I don't want them to access to the Folio Producer
Is ther anyway to create an access to just the analytics or create a parallele account??

No. The account ID assigned an Application role can view Analytics and Folio Producer but not DPS App Builder.

Similar Messages

  • Access for update only one column in table?

    Hi all,
    My need is to grant access for update only one column c1 in table t1.
    I guess I should use view, could you please give me some example? Maybe other ideas?

    Hi,
    You can grant privileges on individual columns.
    GRANT   UPDATE (c1)
    ON      t1
    TO      grantee_name;Look up GRANT in the SQL language manual. Annoyingly, in recent editions of the manual, GRANT is not indexed, but it's in alphabetic order with all the other statements:
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_9013.htm#i2155015

  • Can VI server automatically close access for clients' VIs, if one of clients is already connected?

    Can VI server automatically close access for clients' VIs, if one of clients is already connected? and when first client closed reference, open access for other clients' VIs? I mean like when you use web publishing tools. If one user already uses front panel.. other just can wait until first one will finish.

    Please stick to one thread.  Here is the original.

  • Internet access for clients

    GuysNeed some assistance on providing internet access at a branch site for clients. Any thoughts and suggestions welcome and appreciatedWe have a number of branch offices connected over ISP managed MPLS network, any-2-any. I am looking at implementing some kind of internet access at the branch offices, either wired or wireless. We manage all the L1 and L2 connectivity at the sites, and the L3 side at our hub offices, of which we have 2, mainly for internet traffic etc, which isnt provided by our MPLS ISPCurrently all internet traffic for all sites goes to our data centre and is routed out through our firewall. Routing isnt an issue here, its more the best way to set this up securely.My initial thoughts were to set aside a whole bunch of ports on a seperate PVLAN that would connect the clients to the network (I am not conerned about the clients talking to each other, as long as they cant reach the local vlans). But the problem may lie at the firewall end, as I will need to specify specific hosts for port 80, 443 traffic only. Would a seperate DHCP scope, of say a /28, allowing 16 hosts only be an idea? Then I wouldnt have to mess around with firewall changes for different hosts all the timeThanks

    Hi,
    How are things going?
    I agree with Darshana. You could connect to Internet by using a router. Router can be configured to enable all users in a network to share a single connection to the Internet. Routing and Remote Access of windows server provides built-in
    routing services that can be used to connect an organization to the Internet through a routed connection to an ISP.
    You can also configure a windows server as a NAT server in your network. A network address translator is an IP router that can translate IP addresses and TCP or UDP port numbers of packets as they are being forwarded. NAT translates private
    IP addresses to external, public IP addresses. Then the computers of LAN can access Internet.
    Best Regards,
    Tina
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • SRP526W to forward or provide VPN access for clients

    Hi,
    we are having a SRP526W here which replaced a cheap, simple router. Now we would like to set up the VPN-access for outside clients again. So far this was done by forwarding PPTP (TCP 1723 and GRE) to the Windows 2000 Routing and RAS-server inside the network.
    According to this post the SRP521W, and therefore I suppose as well the SRP526W, are not able to forward GRE: https://supportforums.cisco.com/thread/2093204
    Is there a way to provide VPN access for outside clients with this router? Maybe with L2TP (but then we would need to forward ESP) or IPSec (ESP and AH as far as I know)?
    If there is no solution we would need to replace this device again with a cheap, simple router which is able to forward GRE - as you can imagine, we would like to save Cisco from this shame.
    Kind regards
    Dominik

    Hi Dominik,
    It is not possible to use L2TP or PPTP from the SRP526 (This is only possible from the Ethernet WAN interface).  It is possible to set up an IPSec VPN or GRE tunnel from the SRP to a peer in the network.
    This might offer some guidance here.
    Regards,
    Andy

  • Recommended solution for password protecting a page for clients only

    Hello,
    I am using Dreamweaver CS6 on Mac (Mavericks).
    I am building a new website for my business and I want to create a page where only my clients can access information after using an id and password that I provide them with. I do not want them to register online, etc. to access the page.
    I was instructed to not use Dreamweaver's solution because it is outdated.
    Can anyone provide me with advice on how to best do this? Use/Not use Dreamweaver functionality? Recommended extension?
    Thanks,
    Joshua

    OK. If you have 50 to 100 clients and you want all of them to have different passwords, then the solutions recommended so far would be a pain to maintain.
    I'm going to give you a solution that is easy to maintain. You will simply add new passwords to the "array" at the top of the script. This is of course not a secure method, but it will work for you. You can edit the design and text, etc. Simply paste all the code into a new file and call it "access.php.
    This is not the method I use for password access. I use a method that handles hundreds of thousands of passwords easily, but it's far more complex. . .and secure. But I think this simple method should work for you:
    <?php
    // All the PHP code is in these first few lines at the top except a few lines that all begin with <?php  -- watch out about editing those lines.
    //  this is where you create the set of passwords. Simply follow the pattern below to add new passwords to the list. Note that the final item does not have a trailing comma:
    $passwords = array(
        "client1",
        "anotherclient",
        "lastclient"
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
    <title>Reports</title>
    <style type="text/css">
    fieldset {
    border:solid 10px #edebe4;
    border-top:20px solid #edebe4;
    width:700px;
    margin-bottom:10px;
    padding:20px;  
    fieldset legend {
    background-color:#edebe4;
    color:#468cb7;
    padding:0 5px 0 5px ;  
    font-family: Verdana, Sans-serif;
    a {
    color:#468cb7;
    font-family: Verdana, Sans-serif;
    a:hover {
    color:red;  
    li {
    font-family: Verdana, Sans-serif;
    color:#666666;
    font-size:13px;
    margin-left:50px;  
    </style>
    </head>
    <body class="body_admin">
    <div id="admin_wrapper">
    <div class="content" style="padding-left:50px;padding-bottom:25px">
    <?php if (in_array($_POST['view'], $passwords)){ ?>
    <h1>You have access!</h1>
    <fieldset><legend>Choices</legend>
    <h2>Do the following</h2>
    <ul><li><a href='page.html'>A link (you will need to change link url)</li>
    <li><a href='page.html'>Another link (you will need to change link url)</li>
      </ul>
      <p> </p><p>
    </fieldset>
    <?php } else { ?>
    <h2 style='text-align:center'>Enter Password</h2><form action='access.php'  method='post'><p style='text-align:center'><input type = 'text' name='view' required style='margin-top:25px'/><br/><input type='submit' name='submit' value='SUBMIT' style='margin:15px'/></p></form>";
    <?php } ?>
    </div></div>
    </body>
    </html>

  • Storing documents for clients to download

    Hello,
    I need to store several 2 to 3 page pdf documents for clients to download. I am not sure how to do this. Do I store these documents in my assets folder and then have a separate web page with the addresses to the individual documents in this assets folder?
    Or am I missing something?
    Thanks for your help.

    Thanks for the reply. Just so I am clear and doing this correctly: is it best set up a folder within assets and name it "documents" or "docs"? And then my link includes the individual document. So ...documents/page1.pdf
    Yes, that'll work fine.
    You can store your PDFs anywhere on the server provided the link to that document is a valid one ie. the server can find it when the link is clicked.
    And in terms of protecting the contents for clients only, is there a specific software product that you would recommend using? I am asking this because many people can be downloading the pdf but only after they sign in to our web site and request the document(s).
    No, there's no particular software required. You can find many scripts online to assist with this kind of protection.
    How do people sign into your website? Do you have a members only area? Would you place the PDFs inside the members only area?

  • ::unspecified:: in DPS Analytics

    Hi,
    I always name the articles in my folios, but I still end up with ::unspecified:: in the DPS Analytics section. Not only that, but its usually the one that is most read too.
    Any idea what can be the issue, and does anyone else have the same problem?
    Thanks!
    Eddie

    Please go through this documentation which explains why though given an article name still report as --unspecified-- http://helpx.adobe.com/digital-publishing-suite/kb/article-names-appear-unspecified-analyt ics.html
    Important note if applicable: "Data already submitted with no article title meta data continues to appear as ::unspecified:: ornone in the Analytics service"

  • DPS Analytics Query - Any Advice?

    Can anyone offer insight into why the Folio download data within DPS Analytics differs so greatly to the App Download data within AppFigures? I understand the differences in data collection between the two and I get that the metrics are unlikely to ever match 100% but what I don't understand is why AppFigures tells me I have 1042 App downloads and DPS Analytics tells me I only have 347 folio downloads? Surely such a discrepancy has a valid explanation other than excluding download to desktop from iTunes and failure to successfully launch? Any advice or recommendation would be hugely appreciated.

    I'm definitely not an expert in this area, but keep in mind:
    1) Users may start your app downloading then move on to other things and forget about it. I know I've done this with apps numerous times.
    2) They may see they have to download the free folio, start the download, navigate away from the app, and then forget about it. I believe this is what Johannes means when he says it's the "biggest problem" with multi-folio apps.
    3) We'll only report a folio download once the full folio has been downloaded. It's possible that your users are starting the folio download, viewing the folio as soon as enough has come down to open it (but not the full folio), then leaving the app. If they don't continue the download that partial download won't be reflected in your totals.
    Neil

  • What is a quick alternative to launching an enterprise DPS app if Apple Store rejects the App? We are under a major deadline and can't wait for Apple. We want to host the app elsewhere. How do we host our DPS app on our client's website?

    What is a quick alternative to launching an enterprise DPS app if Apple Store rejects the App? We are under a major deadline and can't wait for Apple to approve. We want to host the app elsewhere. How do we host our DPS app on our client's website? Thanks.

    Unless I misunderstand the question, you can't do what you're asking to do. Apple doesn't allow you to bypass their store and host public apps on a website. The exception is an enterprise app, which requires an Enterprise account with both Apple and Adobe. This type of enterprise app can be distributed only within the company. If that's what you want to do, you can learn more here:
    Digital Publishing Suite Help | Creating viewer apps for private distribution
    Distributing enterprise iOS viewer applications with Digital Publishing Suite | Adobe Developer Connection
    Another option is to add the development app to several devices and use those for your demo.

  • WSUS For Clients With No Internet Access

    This is more of a functional question than an issue.
    Right now I have WSUS set to 'Store update files locally' and it works great.  With an ever expanding number and size of updates, I don't have space to keep storing the necessary updates on my WSUS server.
    If I set WSUS to 'Do not store update files locally', will my clients without internet access still be able to get updates?  Many of my devices are behind firewalls that do not permit access to the internet in any form.  I'm trying to avoid adding
    storage if at all possible.
    Thanks,
    Brian

    Correct, if you set WSUS to 'do not store update files locally', then your clients without internet access will not be able to access Microsoft Update to download the files without you creating a firewall exception. Which sounds like an awkward way to do
    it.
    (1) Are you on top of your regular maintenance with WSUS, ie, declining superseded updates, running Server Cleanup Wizard in the recommended order?
    (2) Are you confident that the classification of updates being downloaded is appropriate and nothing un-needed (e.g drivers/absent OS) are being downloaded?  Have you chosen to download the space-hogging express installation files?
    (1) and (2) would be generally better practise then 'do not store updates locally', but if bandwidth is cheap or irrelevant for you, then perhaps you might be tempted to not store updates locally. In your situation where you have a reason to deny clients
    internet access, it would seem like a lot of paperwork, and technical expertise, to only allow them internet access for updates.  (plus, I'm not sure it's possible, just presume it would be)
    What are your numbers?  (size of WSUSContent, WSUSDatabase, space on drives?)

  • How to set time zone for a session in Client Only installation

    Environment:
    OS : Unix (HP-UX 11.0)
    Oracle DB : Ver 8.0.5
    Developer : Ver 1.6 ( Client only Installation)
    Developer also on Unix.
    RDBMS and Developer Installed on different
    home directories.
    Our development is Forms 4.5 on X windows.
    Runtime is forms character mode.
    Probelm Description:
    To run the application I am using TWO_TASK to connect to the database. In our application we have to take care of time zones. For that in previous versions(NO TWO_TASK used) I used TZ unix environment variable, to get time zone dependent time wherever sysdate is used.
    Now because I am using TWO_TASK, oracle is no more using users TZ settings.
    Question : Is there any way I can make oracle to use the TZ environment setting

    Thanks for replying Johnny!
    What you are referring to is adding a city. I need to know how to set the time zone in settings -> Date & Time -> Timezone. Unless & untill this is set properly the iPod will never show me the right time. Please help me with it.
    I will definately use your advice on the second query.
    Thanks once again!
    Windows XP Pro

  • Is it possible to use ICS with a Cisco VPN client to allow pass through access for Domain login for a second machine.

    I have a current machine Windows 7 Pro with a Cisco VPN 3.5v client that currently connects with access to a customers network.
    They shipped a second machine Windows 8.1 Pro without adding local accounts, that is pre-joined to a sub-domain the first system has access to.
    Would it be possible to use the first machine as a ICS or Router to allow the second machine to see or access for log in, without returning to the customer site and plugging in for a log in point?
    Trying to save a 3 to 4 hr trip and lugging a system back for myself and the rest of the team.
    Thanks

    Hi,
    Please refer to this part
    http://windows.microsoft.com/en-hk/windows/using-internet-connection-sharing#1TC=windows-7
    ICS and VPN connections
    If you create a virtual private network (VPN) connection on your  host computer to a corporate network and then enable  ICS on that connection, all Internet traffic is routed to the corporate network and all of the computers on your home network
    can access the corporate network. If you don't enable ICS on the VPN connection, other computers won't have access to the Internet or corporate network while the VPN connection is active on the host computer
    Yolanda Zhu
    TechNet Community Support

  • Change public share access to read only for public and full access to selected users

    Hi, new to the community just purchased a recertified WDMyCloud 2TB after my 2 years old MyBookLive 2TB HD died due to accidental power cable unplugging. I've got everything setup including MiniDLNA by following instructions on this forum and everything is working  exactly as I want it to except public share. I want public share to be set to read only access for public and full access to certain users (just myself at the moment) and having a "upload" folder within this share with full public access to everything in this folder would be a bonus. I tried login in to ftp with root user and removing write permission for public but that blocks me out as well. I'm sure it's possible by doing some majic on SSH but I wouldn't have a clue so hoping someone here would be able to help me out.

    Mr_Khan wrote:
    What i want is public to have read only access to file server. Public as in users who do not have a user account on mycloud. E.g someone who connects to to my home network for the first time and is able to browse and download content from public share. I'm aware of being able to set indivual access to shares for users like full access, read only and no access but public users won't have a user account.Through the My Cloud UI interface what you seek to do is not possible. The public share like all other share folders are an all or nothing affair when using the adminstration UI. When using the administration UI you do not have granular control on shared folders to limit non users to read only access or set permission levels for subfolders. The workaround to do what you seek and have the public folder set for read only is to change the folder settings via SSH. It may take some work to set the folder security so that users can read/write to the public folder while the guests only have read access. However, if you reboot the WD My Cloud or update the WD My Cloud firmware those settings may be reset back to the default settings where the entire public folder is read/write for all. There are way to prevent this but again it will take a bit of coding to do so via SSH. See this link (even though its for the WD My Book Live) for a starting point on how to use SSH to change the permission levels on the public folder. Another option if one doesn't go the SSH route is to turn off public sharing for the public folder then create a "guest" user account and give that "guest" account read only access to the public folder while all other user accounts have full read/write access.

  • Hello,i have changed the access of library and system files in macintosh HD through get info option.i changed the access to write only access for library and system files to no access for everyone.then mac stopped working..nothing opening now.

    hello
    i have changed the access of library to WRITE ONLY and also i changed the access of system files to NO ACCESS FOR ANYONE in macintosh HD.then,suddenly it stopped working.i tried it shut down.then it didnot shut down.then i pressed ctrl+command+power button.then it was shut down.
    NOW, nothing is opening in macbook pro.it is opening and only apple logo is shown.what should i do now.i knew nothing in mac.please help me.operating system is 10.7

    hello CT,
    it showed
    permissions differ on library: should be drwxr-xr-r
    repaired "library"
    permissions differ on system: sholud be should be drwxr-xr-r;they are d-wx-----------
    repaired "systems"
    like this many steps occured.
    then next step is permissions repair complete.

Maybe you are looking for

  • Flash (is it for me?), Wacom Cintiq 22HD, and Mac Mini

    I have Flash as part of the CS6 Master Suite, which I purchased primarily for InDesign, Photoshop and Premiere, but as yet I haven't opened Flash. I'm hoping someone here can save me time by advising me whether Flash is suitable for my purposes. I'm

  • My MacBook Pro 13'' Early 2011 is not booting.

    Hello, I have a Macbook Pro 13'' Early 2011. Last week I tried to replace the thermal paste on the processor and on the graphics chip. I followed a video tutorial and an iFixit tutorial step by step during the entire process. Once I was finished I de

  • Creative webcam live!

    i just bought first time i used it it works perfectly and the second time it doesn't work anymore it say's No supported creative camera detected. please plug in but it was plug in to continue, i open it again this time in my ym it say's webcam is not

  • Need to install FCS3 in Maverick and using USB 3.0

    I will be getting two machines - a new MBP with Retina and an iMac. Both are coming in any day, July 2014. This means OS Maverick OS. I opted to have FCX pre-installed (momentary lapse of judgement) on both, but I also hold licenses for FCStudio3. Ca

  • Non deductable BED ( to be inventorized) tax procedure TAXINJ

    Hi, We are using Tax Procedure TAXINJ We have created tax code AA and used JMO2(BED Non Deductable) this is to be inventerized since we r not getting CENVAT credit for the same. *In PO the tax amount is not displaying in Taxes tab.* where as if i cha