How to update Blog picture at right column?

Dear all,
It maybe a silly question but I fail to figure out for days...  I created a blog using the default template.  At the right column there are "Blog tools" and a "camera" picture with description "No, this isn't actually my
picture. I just haven't gotten around ....."
How can I update this picture?
Mark

its using the CEWP. once you select the webpart, click on edit source then change the image blogabout96.png to your image.
<img class="ms-blog-aboutImage" alt="About this blog" src="/_layouts/15/images/blogabout96.png?rev=33"/>
My Blog- http://www.sharepoint-journey.com|
If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

Similar Messages

  • How to update html file in clob column in oracle

    hi,
    please help me how to update html file in clob column in oracle
    Thanks

    This is your main query as i am able to understand and you want to update your html file into terms columns based on conditions :
    SELECT     b.terms As terms
             FROM chklst_item_x_enrlmnt_type a, prvdr_enrlmnt_agreement b
            WHERE a.enrlmnt_type_cid = 1
              AND a.chklst_item_cid = b.chklst_item_cid
              AND a.chklst_item_cid = 79
              AND a.oprtnl_flag = 'A'
              AND b.oprtnl_flag = 'A'
              AND TRUNC (SYSDATE) BETWEEN b.from_date AND b.TO_DATE;So i suggest below one but you need to create a directory where you can store your html file and then you can update .. And remaining consult Experts suggestions too as your
    question is improperly posted . . .
    DECLARE
       vclob     CLOB;
       v_bfile   BFILE := BFILENAME ('YOUR_DIR', 'filename.html');
    BEGIN
       SELECT     b.terms
             INTO vclob
             FROM chklst_item_x_enrlmnt_type a, prvdr_enrlmnt_agreement b
            WHERE a.enrlmnt_type_cid = 1
              AND a.chklst_item_cid = b.chklst_item_cid
              AND a.chklst_item_cid = 79
              AND a.oprtnl_flag = 'A'
              AND b.oprtnl_flag = 'A'
              AND TRUNC (SYSDATE) BETWEEN b.from_date AND b.TO_DATE
       FOR UPDATE;
       DBMS_LOB.fileopen (v_bfile);
       DBMS_LOB.loadfromfile (vclob, v_bfile, DBMS_LOB.getlength (v_bfile));
       DBMS_LOB.fileclose (v_bfile);
    END;
    / Regards..

  • How to update the value of a column when a row is deleted

    Hi,
    My requirement is basically i have a table .Below is a sample data along with sample data
    Column A Column B ColumnC
    1 SAM 0
    2 RAM 0
    Now if i run a delete statement saying
    delete from Table where ColumnA =1 then i want to see the value of ColumnC to be updated as 1.The row shouldnt be deleted however the value of ColumnC should be changed to 1.
    Can someone please help me with any suggestions? I can create a trigger but i havent worked with triggers so not sure on how to use it.
    Please let me know if i am unclear or if you need any details.
    Thanks

    As I understand what you need is an INSTEAD OF DELETE trigger like below
    CREATE TRIGGER Trg_TableName
    ON TableName
    INSTEAD OF DELETE
    AS
    BEGIN
    UPDATE t
    SET ColumnC = 1
    FROM TableName t
    WHERE EXISTS (SELECT 1
    FROM DELETED
    WHERE ColumnA = t.ColumnA
    END
    this will set ColumnC to 1 and will not do an actual delete of the row.
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to update blog

    I've got a blog set up and working on a non-.mac website. But whenever I want to update the blog with a new entry, it has to reload the entire site, as opposed to just adding a new page and new directory and it takes forever. I'm using a web hosting account provided by GoDaddy and using their FTP client to update the site. (And you've just reached the limit of my computer knowledge about this sort of thing.)
    How do I simplify this process?
    Thank you.

    If I understand correctly, you are using iWeb to create a blog, then using the "Publish to Folder..." command, then uploading it to Godaddy via their Control Panel.
    If so, after you Publish to folder, then open the folder and only FTP the blog folder.
    I also suggest using a FTP client such as Fetch which is much faster then Godaddy's control panel.
    This is just another example of why I pay about $8 per month for .Mac

  • How to update a document libraries metadata column in workflow

    Hi,
    My scenario:
    2 document libraries A and B
    user uploads document to A
    SPD workflow executes on A
    SPD workflow copies the document to B with whatever common metadata and managed metadata is contained within both libraries, no problem here.
    The problem lies here:
    Within the workflow logic, I basically check a column value in current item, use some if else logic and this determines the distinct column value in B for where the document has just been copied.
    The issue here is that yes this works when you are dealing with doc libraries within the same site, but there seems to be no solution on how this is possible when the doc libraries exists in different sites. Please note the sites do reside under the same
    site collection.
    This seems to be a huge over site in sharepoint designer, and I even have harepoint workflow extensions and this doesn't appear to resolve my problem either. Why it doesn't work between different sites is rather bewildering.
    Thanks for you help in advance,
    Kurt

    For this case you'll need a custom workflow activity which you'll have to buy or create using visual studio
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • How to view exif info in right column together with histogram, undo history, info etc.?

    Photoshop Elements 8
    I am enclosing a screendump from Picasa 3 which illustrates what I am looking for.

    If you want to see that kind of data in the pse editor,
    Go to File>File Info>Camera Data.
    If you have a camera raw file and open it from the pse editor,
    you can see this data in the camera raw plugin dialog in
    the upper right corner.
    Elements won't display exif data in the info panel.
    MTSTUNER

  • How to Update the oracle toad column value in table by using SSRS 2008

    Hi Team,
    How to update the oracle DB table column value by using SSRS 2008.
    Can any one help me on this.
    Thanks,
    Manasa.
    Thank You, Manasa.V

    Hi veerapaneni,
    According to your description, you want to use SSRS to update data in database table. Right?
    Though Reporting Services is mostly used for rendering data, your requirement is still can be achieved technically. You need to create a really complicated stored procedure. Pass insert/delete/update and the columns we need to insert/delete/update as
    parameters into the stored procedure. When we click "View Report", the stored procedure will execute so that we can execute insert/delete/update inside of the stored procedure. Please take a reference to two related articles below:
    Update Tables with Reporting Services – T-SQL Tuesday #005
    SQL Server: Using SQL Server Reporting Services to Manage Data
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • How to update 'number of notes' field in UDM_SUPERVISOR in Invoices tab

    I made program to create the notes using UDM_RSM_CREATE function module.
    it is creating notes for selected customer and invoices and shows perfect in Notes tab, but when i see on Invoices tab there is column by the Name: Number of Notes'  this is not getting updated with the counter.
    Can any one please let me know how to update the number of notes column.
    if there are 10 notes in notes tab for the particular Invoice then the Number notes column should show as '10'.
    Please ask me if it is not clear.
    Thanks,
    Maheshkumar Gattu

    Hi Mahesh,
    I AM also trying to mass upload Notes Data and Promise to Pay data using FM "UDM_RSM_CREATE" and  "FDM_P2P_CREATE" respectively from an excel file. .
    1.My query in fm UDM_RSM_CREATE is from where will i get parameter   i_rsm_guid ,as that cannt be generated from excel file user data.
    2. My second query is once i generated case_guide via FM FDM_P2P_CREATE , its a succesfull return tat means data should appear in promise to pay but that is not happening.
    3. I got a help that after successful generation of case guid from FDM_P2P_CREATE I need to use one FM for customer create contact i.e "FDM_CCT_CREATE"  then only data will appear in collection management ....but I am not the parameters of this FM.
    Can you guide me in it. If possible can you share ur logic if my requirement is same as your. Its very critical issue for project go live.
    Thanks a lot.

  • I am planning to update my iPad to IOS5. How do I retain pictures

    I am considering the update to IOS 5. How can I retain pictures, contacts &amp; emails. It looks as though music and apps are sync'd when upgrade is completed, but no mention of pics, emails, contacts. Is the upgrade worth the hassle? 

    Photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc (i.e. photos not synced from your computer) are included in the backup - but to be safe of not losing them in case something goes wrong you should copy them off first so that you have your own copy : photos to computer . A full list of what is included in a backup is shown on this page.
    Before starting the update you should copy any purchases off the iPad to your computer's iTunes via File > Transfer Purchases. You should also backup the device (right-click the iPad 'device' and select 'back up'), and copy off any important documents, file, notes etc (e.g. by email, the file sharing section at the bottom of the Apps tab in iTunes, wifi, whatever the apps that you use support) - the update process should backup and restore the content but it's best to be safe.
    As to whether the upgrade is worth it, only you know whether you need any of the new features.

  • HT6154 Can someone please just help me figure out how to update this stupid phone without losing anything? I somehow have more than one Apple ID on this,but I just want my music and my pictures to stay and I'm terrified of losing these things.

    Can someone please just help me figure out how to update this stupid phone(iPhone 4)without losing anything? I somehow have more than one Apple ID on this,but I just want my music and my pictures to stay and I'm terrified of losing these things. I have a lot of music from old CDs on here,and for some reason I can't even transfer them manually onto my computer. I'm not tech savvy whatsoever. Someone please help,having my music is the the whole reason I still have this phone.

    First read about back http://support.apple.com/kb/ht1766
    Then  read on how to transfer photos to your computer http://support.apple.com/kb/ts3195
    Then
    UPDATING iOS
    Over the air updating of iOS needs iOS 5 or later so unless you have iOS 5 or later you will not see updating in setting
    The following link explains how to update http://support.apple.com/kb/HT4972
    This link explains how to update using wireless http://support.apple.com/kb/HT4623
    This explains how to transfer purchases to your computer http://support.apple.com/kb/ht1848

  • How to update column value dynamically

    Hi All,
    I have created a simple mapping and selected insert/update on target table. In target table there is one column record_type which will hold either 'NEW' (if new record is inserting) or 'UPDATED'(if existing record is updating) value. Please let me know how can I do this using OWB PL/SQL map?
    Thanks
    Bhushan

    Hi Sanjaya,
    Thank you for your reply.
    I like your approch but i think there is need to pass 'UPDATED' when intersect is being used and 'NEW' when minus is being used.
    I have developed an OWB map as mentioned in below steps.
    1. Chose source (TableA) and target (TableB) as source using table operator.
    2. Joined TableA to TableB on col1 using left outer join using joined operator.
    3. In expression operator I have calculated value for TableB.col3 using below logic.
    CASE WHEN TableB.col1 IS NULL THEN 'NEW' ELSE 'UPDATED' END
    4. Mapped columns from expression operator to target table.
    I would like to know you comments on above approch. My OWB map has generated below merge statement.
    MERGE INTO TableB
    USING(SELECT MERGESQL.col1,MERGESQL.col2, CASE WHEN MERGESQL.col3 is null then 'NEW' else 'UPDATED' END col3
    FROM (SELECT TableA.col1, TableA.col2,TableB.col1 AS col3
    FROM TableA
    LEFT OUTER JOIN TableB
    ON (TableA.col1 = TableB.col1)) MERGESQL
    ON (col1 = MERGESQL.col1)
    WHEN NOT MATCHED THEN INSERT(col1,col2,col3) VALUES(MERGESQL.col1,MERGESQL.col2,MERGESQL.col3)
    WHEN MATCHED THEN
    UPDATE SET col2 = MERGESQL.col2,
    col3 = MERGESQL.col3;

  • How to update managed metadata column for all file in document library using powershell

    Hi,
    How to update managed metadata column for all file in document library using powershell?
    Any help on it.
    Thanks & REgards
    Poomani Sankaran

    Hi TanPart,
    I have changed the code which you have give in order to get the files from SharePoint 2010 Foundation  Document Library.But i am getting below error in powershell.
    Property 'ListItemCollectionPosition' cannot be found on this object; make sure it exists and is settable.
    Could you tell me which is the issues in it?
    See the code below.
    $web = Get-SPWeb http://ntmoss2010:9090/Site
    $list = $web.Lists["DocLib"]
    $query = New-Object Microsoft.SharePoint.SPQuery
    $query.ViewAttributes = "Scope='Recursive'";
    $query.RowLimit = 2000
    $caml = '<Where><Contains><FieldRef Name="Title" /><Value Type="Text">Process Documents/Delivery</Value></Contains></Where>' +
            '<OrderBy Override="TRUE"><FieldRef Name="ID"/></OrderBy>'
    $query.Query = $caml
    do
        $listItems = $list.GetItems($query)
        $spQuery.ListItemCollectionPosition = $listItems.ListItemCollectionPosition
        foreach($item in $listItems)
            #Cast to SPListItem to avoid ambiguous overload error
            $spItem = [Microsoft.SharePoint.SPListItem]$item;
            Write-Host $spItem.Title       
    while ($spQuery.ListItemCollectionPosition -ne $null)
    Thanks & Regards
    Poomani Sankaran

  • How can I improve picture quality...now grainy after IOS update!

    How can I improve picture quality...now grainy after IOS update!

    Hello, dreamer5th. 
    Thank you for visiting Apple Support Communities. 
    Here are some troubleshooting steps that I would recommend going through when experiencing this issue.  They are labeled for the iPhone; however, the steps also apply to your iPad.  Also, make sure to test the camera in well lighted conditions as this can affect picture quality. 
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    If the issue persists see the last section labeled Issue not resolved.
    Cheers,
    Jason H. 

  • How to update a column using hibernate

    how to update a particular column using hibernate..
    iam using oracle database

    I think you didn't get the point. This is a generic Java forum... not a Hibernate forum.

  • How to update zero to a column value when record does not exist in table but should display the column value when it exists in table?

    Hello Everyone,
    How to update zero to a column value when record does not exist in table  but should display the column value when it exists in table
    Regards
    Regards Gautam S

    As per my understanding...
    You Would like to see this 
    Code:
    SELECT COALESCE(Salary,0) from Employee;
    Regards
    Shivaprasad S
    Please mark as answer if helpful
    Shiv

Maybe you are looking for

  • Clarity of External Monitor

    I haven't found the answer to this question. I upgraded from a beloved G4 to the MacBook and plugged it into my external keyboard (ergonomic), wireless mouse and VideoSonic VA912B monitor that has a resolution of 1280 x 1024. It is a bit blurry, and

  • Dynamic gui creation

    Hi experts, I have a question regarding Web Dynpros possibilities to create dynamically gui. In my requirement I know only during runtime how many textboxes / checkboxes i will need. Is there a way to approach this in Web Dynpro ? With an jsp and the

  • Albums in year of order

    How can i get my albums to show up in order of year instead of alphabetically?

  • Error when updating to 10.8.2

    I've been trying to download and install the latest mountain lion update all day (10.8.2) on my late 2009 MacBook. I was able to successfully install on latest generation iMac. It almost finishes the download process, but then get this error: An erro

  • Customize toolbar

    With the last few versions of Safari, including 5.1.7, the toolbar has not been customizable. When right clikcing or using menu the toolbar window does not appear. Clicking any icon on toolbar removes that element. This suggests the toolbar is in an