Can we access popularity trends using client side script?

Hi, 
 I have a requirement to show the hit count for my image library's item(s). When ever I am opening an image from the image library, I just wanted to show the hit counts. For this I have created a Number column and updating this column by using CSOM
when ever hit happens to that particular item. 
The problem arises here, for visitors ( who has read only permission to the site) I am not able to update the column due to permission issue. Since we all know that we can't elevate the privilege from client side script. And also our design says that we
can't give the contribute permission to all the users at the library level. How can we update the count at item level even when the visitors are opening an item from the image library? 
Please help me... 
Thanks in advance
Sekar - Our life is short, so help others to grow
Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
you see a reply being an answer to the question of the thread, click "Mark As Answer

972454 wrote:
can we access 11gr2 oracle using 11g r1 OWB Client? NO .. Oracle 11gR2 db is accessible only from OWB11gR2 client
we have 11g r1 database installed on our machine, and 11g r2 OWB client on other machine.
Please help. we are unable to connect.
Sorry this is different from your 1st question.
For your information OWB11gR2 client can access 11g r1 database
Regards
Gaurav

Similar Messages

  • Can I open a recordset On Client Side Script?

    Hi Guys,
    On a form I have a client side VBscript thet checks the email
    addy a user has added into a text box in a form and if its in the
    array of values set in the script it gets refused. This works.....
    I would like to adapt this a little if possible and make it
    so that instead of hardcoding the array values into the script, I
    would like to have the array values taken from a recordset because
    it will allow the user to add and delete bad domains via a form and
    not need to go into the page code to add to the array I have at the
    moment.
    I have tried serval times to replace my array loop with a
    recordset while loop to get the badDomains from the field in the
    database but I just get script error on page in my task bar.
    Can I open a recordset from a client side script?
    Id apprecaiate eny thoughts on how I can do this.
    Thanks again
    Tag

    Hi Envision,
    Its actually VBScript im in at the moment...
    I have tried to get my client script to run but im still just
    not getting it although I dont think im far away, mixing client
    side and server side scripts to get this array loaded is still
    throwing me a bit !!!!!!
    I tried to follow the For loop suggested in JS but did it in
    VBS and wondered if anyone could give it a look and point me to my
    errors?
    I dont like just posting code without being asked as its a
    bit presumptious of me but Im not asking anyone to write this for
    just point me to my problems hopefully.....
    Here is what I have , when the page loads I used DW to make a
    recordset for me to open the table with stored bad domains and this
    client script is supposed to harness the recordset created server
    side by DW and loop through the field and compare whats in the
    forms email textbox..
    [code]
    Sub CheckMail()
    Dim sValidationMessage
    Dim sEmail
    Dim sBadDomains()
    Dim nIndex
    dim counter
    sValidationMessage = ""
    sEmail = Document.Form2.email.value
    nIndex = 0
    counter =<%=(rsGetBadDomains_total)%>
    If Not (InStr(1, sEmail, "@") > 0 And InStr(1, sEmail,
    ".") > 0) Then
    sValidationMessage = "You have entered an invalid email
    address!"
    End If
    If Len(sValidationMessage) = 0 Then
    For nIndex = 0 to counter
    sBadDomains(nIndex) =
    <%=(rsGetBadDomains.Fields.Item("sBadDomains").Value)%>
    If InStr(1, sEmail, sBadDomains(nIndex)) > 0 Then
    sValidationMessage = "You have entered an unsuitable E-Mail
    address please use your main ISP E-Mail address"
    Exit For
    End If
    nIndex=nIndex+1
    Next
    End If
    If Len(sValidationMessage) > 0 Then
    MsgBox sValidationMessage
    document.Form2.email.select
    Else
    document.Form2.submit()
    End If
    End Sub
    [/code]
    Thanks again for all the support so far.
    Regards
    Tag

  • Identifying Flash Player versions 10a, 10b and 10c using client side scripting

    I need to write a client side script to identify users with 10a, 10b or 10c installed, but I only see version 10 (no letters.) Is there a translation between version keys major/minor/revision, and 10a/10b/10c? I want to use the (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash"))) method in conjuction with the javascript.GetVariable("$version") method, and I need to know what values to check for.
    Thanks very much!

    For your information
    Flash10.ocx  / FlDbg10.ocx  = 10.0.2.54   Shipped with CS4
    Flash10a.ocx / FlDbg10a.ocx = 10.0.12.36
    Flash10b.ocx / FlDbg10b.ocx = 10.0.22.87
    Flash10c.ocx / FlDbg10c.ocx = 10.0.32.18
    Flash10d.ocx / FlDbg10d.ocx = 10.0.42.34

  • How to copy a page( webpart page) with its content using client side.

    How to copy a page(in my case  webpart page) with its content(it may contain webparts) using client code (i mean using SPservices or ECMA script).
    What i am planning is ,to give end user a page where it will contain text box to specify  name of page and a button with the help of  content editor webpart.
    where on click of button we need to write client side code such that it should create a new page from a existing page in a library with given name by user.
    Any suggestion would be helpful. For your information we can do it through UI with the help Site Actions / Manage Content and Structure.But i want to automate it using client side code.Server side code is restricted.
    or can we create a template of an existing page with content without the help of sharepoint designer.
    Thanks in advance
    with regards Ravichandra

    This is good example
    http://balajiindia.wordpress.com/2011/05/27/using-jquery-with-custom-web-services-in-sharepoint/
    Create web service
    http://balajiindia.wordpress.com/2011/05/27/using-jquery-with-custom-web-services-in-sharepoint/. Create method "Create Page" http://www.learningsharepoint.com/2010/09/17/create-publishing-pages-sharepoint-2010-programmatically/
    Build your Java Script. You can use Content Editor Web Part if you want to avoid custom web part development http://www.codeproject.com/Articles/544538/JQuery-with-SharePoint
    Oleg

  • Full mask permission in SharePoint using Client Side Object Model

    Full mask permission in SharePoint using Client Side Object Model does not include all the base permission while it does have all base permission in server side . Is this a bug ? 
    Or do we have any workaround for this.
    BasePermissions.Set(PermissionKind.FullMask);  is not updating all the permissions. 
    It seems that there is some limitation with Microsoft.SharePoint.Client.dll as mentioend at below link . Do we have any workaround here.
    http://break962.rssing.com/browser.php?indx=7116806&last=1&item=9
    Ashish Baranwal || To know what you know and what you do not know, that is true knowledge

    You can write your own loop to upload multiple files via an individual call.
    http://sharepoint.stackexchange.com/questions/108525/multiple-file-upload-with-metadata-using-rest/108532#108532
    More reference: http://sharepointfieldnotes.blogspot.com/2014/04/uploading-documents-and-setting.html
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Import TermSet CSV using client side object model

    Hello,
    I want to import CSV in TermStore using client side object model. Unfortunately there is no ImportManager here.
    Is there any other way (Other than reading from CSV and adding term one by one to term store)?
    Regards, Nanddeep Nachan

    Hi,
    Here is a tool(server-side) from codeplex for your reference:
    SharePoint 2010 CSV Bulk Taxonomy TermSet Importer/Exporter
    If you want to import termsets  from CSV in Client-Side, we can refer the tool above.
    You can develop a windows form application and use .Net Client Object Model to achieve it. The following articles is about how to operate the termset using Client Object Model for you reference:
    http://sundarnarasiman.net/?p=87 (Download)
    http://code.msdn.microsoft.com/office/SharePoint-2013-Synchronize-d40638d1/sourcecode?fileId=72317&pathId=166025385
    http://www.c-sharpcorner.com/Blogs/10853/how-to-create-a-term-set-for-the-specified-group-using-clien.aspx
    Thanks,
    Dennis Guo
    TechNet Community Support
    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]
    Dennis Guo
    TechNet Community Support

  • Cross Site Collection lookup using client side object model

    I have to do Cross Site Collection lookup using client side object model or Odata ,
    no servier side.. any ideas experts?

    Did you read about cross site publishing feature in SP 2013?
    Check this out
    http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1038
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2012/09/18/sharepoint-2013-cross-site-publishing.aspx
    http://blog.helloitsliam.com/Lists/Posts/Post.aspx?ID=89
    http://blogs.msdn.com/b/ritazh/archive/2012/09/26/sharepoint-2013-how-to-setup-cross-site-publishing-enable-catalog-use-managed-navigation.aspx
    http://stackoverflow.com/questions/1151036/sharepoint-lookup-column-across-site-collection-boundary
    You will need custom code for this, but since the amount is minimal and this is Stack Overflow I assume that won't be a problem. You will want to make your own listview web part that queries the list using ListViewByQuery. An example can be found here:
    http://blogs.msdn.com/b/ramg/archive/2009/04/21/implementing-a-simple-cross-site-collection-list-view-webpart.aspx

  • Copy one list items new list using client side object model

    Hi,
    I have a requirement like i need to copy one list information to new list with createdby and modified by fields.I need to use client side object model code.Can u please send me the code sample.
    Regards,
    Praveen

    Hi,
    According to your post, my understanding is that you want to copy one list items new list using client side object model.
    You can use console application.
    Here is a similar thread for your reference:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/28a43891-7505-4d34-b513-fdd66773c2a3/copy-list-item-to-another-list-using-client-object-model-in-console-application?forum=sharepointdevelopmentprevious
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • ReRender using client-side dom id

    Is it possible to use client-side DOM ids for rerendering. I have noted that JSF/Richfaces only accepts server-side DOM names.
    e.g.
    <h:form id="myForm">
        <h:outputText id="testData" value="#{testAction.testData}" >
        <a4j:commandButton id="updateData" value="Update Data"
                                 action="#{testAction.updateData}" reRender="testData"/>
    </h:form>client-side DOM id: testData
    server-side DOM id: myForm:testData
    Is there some method on the server (maybe in rerender phase) that I call to achieve this i.e. reRender="myForm:testData"
    Thanks,
    Philip

    The problem that I've posted is just an example. The real jsf page is extremely complex which is made up repeating data that is nested multiple levels deep. I'm trying to minimize the amount of data being rerendered as the page is over 1.5MB in size as it stands, but still needs to be extremely interactive and responsive.
    The form lives within the repeating rich:dataGrid to minimize the amount of data being submitted to the server. In the real application this repeat is nested within a few other repeats multiple levels deep. I also use ajax regions to minimize the amount of processing on the server side.
    The problem I'm trying to solve is as follows:
    1) I have page with lots of repeating data multiple levels deep. At each data level content is represented in a set of panels/forms.
    2) Changing one value in one of the forms can initiate a complex set of events, where data needs to be rerendered in other areas outside the current form (but on the same page).
    3) The data across all these tables can be sorted by the end user, which means that I have lost the original link between the backing data and the client-DOM component i.e. if you sort data, the data changes its position, but the DOM components remain unchanged. This is problematic as I need to know down to a single field what needs to rerendered.
    The solution that I am trying to employ:
    1) As the page loads (or is subsequently rerendered on a post-back) I store a unique identifier (based on pk of the backing component - ejb entity) and the client dom id of the component back in a map on the server (pk to client dom map). I only need to do this for a select set of fields that I know might change during step 2 above. If one element is changed that causes a data change in another area of the screen, I can get to the client ID by doing a look up on pk/client dom map.
    2) I am using the ajaxKeys property combined with the field name to calculate the exact component that needs to be renrendered. However, to get at this I need to parse the client ID to figure out the ajaxKeys and field name. I then need to set these keys for every table that is a parent of the current field that I am trying to rerender. One issue that I am faced with using this approach is: if I need to update more than one field within the same rerender but is based on different ajaxKeys - still trying to figure this one out.
    This process would be so much easier if I could just tell JSF to rerender based on the set of client IDs that I know need to be rerendered.
    Thanks for the advice.
    Philip

  • Can't access my gmail using the gmail app. States your browser's cookie functionality is turned off. please turn on. How do i do that???

    Can't access my gmail using the gmail app. States your browser's cookie functionality is turned off. please turn on. How do i do that???

    what if I don't want to accept cookies? I didn't have to before I upgraded

  • If I copy a CD (either music or audio) on my Windows based Pc can I access the copy using itunes?

    If i copy a Cd (either music or audio) on my Windows based PC can I access the copy using itunes.  I have a ipod Nano, 7th generation.

    You should use iTunes to "rip" (encode) the songs directly into your iTunes library from the CDs.  This article provides a good description of how that is done using iTunes.
    http://www.macworld.com/article/1156861/howto_rip_cds.html
    If you use some other program to encode the content on those CDs, you can add any audio files that are in a format that iTunes can play (such as MP3 and AAC) to your iTunes library.  "Windows Media" files are not playable by iTunes, but the Windows version of iTunes can convert them while importing (as long as the files do not use DRM).

  • HT5312 I can not access purchase anything using my Apple ID because I forget my security question to verify that it's me and forgot my password to my rescue email up change my security question. What do I do?

    I can not access purchase anything using my Apple ID because I forget my security question to verify that it's me and forgot my password to my rescue email up change my security question. What do I do?

    You need to ask Apple to reset your security questions; this can be done by phoning AppleCare and asking for the Account Security team, or clicking here and picking a method, or if your country isn't listed in either article, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (105875)

  • IOS4 issue on 3GS-can't access pictures or use camera!

    I updated my 3GS with the iOS 4 software as soon as it was available. I did all the things Apple adviced me to do prior to the update- such as transfer bought items and backup my iphone.
    After updating the 3GS with iOS 4 everything seemed to be going well, except for 2 things.....I can't start the camera and I can't reach my pictures.......when I click on either- the iphone starts connecting to the picture library, but after 4-5 secs the program shuts down and I'm back in home-mode!
    I've tried to restore from factory settings but the same thing remains (and restore with previous saved security backup)...can't access pictures or use the camera.
    Although if I restore and set up as "new iphone" instead of backing up previous settings and media everything works! Camera works and I can enter picture area (although off course it is empty.....being a new iphone)
    So there seems to have been a problem with the backup prior to the iOS4 update.....
    Funny thing is that when I have the iphone connected to the pc and I look at iTunes....there is 1.65 GB of pictures on my iphone...although I just can't see it.....
    Also in the previous iTunes there used to be a tab for "pictures" just like "movies" "Music" "tv-shows" etc etc......no the "picture" tab is missing.........?!?!
    My wife also has a 3GS and I did the software update on hers.....and there everything works just fine!!
    I have so far come to the conclusion that I could restore to factory settings and start fresh with the option "set up as new iphone", but then I would loose all contacts.....all programs and email settings........which is a pain in the butt.........
    I'd appreciate if someone could help me because the help desk in Norway (Apple resellers) don't have a clew.....
    Anyone?!?
    Thanks in advance

    Someone gave me help in my own thread. They used a Mac program and deleted files, but Im on Windows 7.
    I used iBackupBot 3.0.7
    Just load it up (I had my phone connected). The select a backup and then select 'Browse and export media' button then on the pop up window is a complete list of all my missing media. There is an export button in the top corner.
    I have all my photos and videos back now YAY!
    Thanks all!

  • PSE 11 won't fit screen can't access slider bar at the side of application

    PSE 11 won't fit screen can't access slider bar at the side of application.

    What OS?
    What screen display settings do you have?
    Try changing the screen display settings in Windows or OSX to increase the resolution?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Can you access the internet using wifi only on an iPhone 4?

    How can you access the internet using WiFi only (no service) on an iPhone 4?

    Assuming your connected to wifi - go to safari.

Maybe you are looking for