How to Remove Hyperlink Lookup Column

Thank you in advance for the assistance. Our firm is running a SharePoint 2013 Public Site. One of our pages contains a web part with a SharePoint custom list. One of the columns in the custom list is a look-up column. The content in the look-up column is a
hyperlink to the data from the parent list. When a user clicks on the link, it takes the user to the parent. We wish to remove the hyperlink functionality. How can we display the look-up column content as normal text without the hyperlink?

Hi,
You can edit your lookup column to add multiple columns from parent (under the column settings 'add a column to show each of these additional fields'). Then the new fields will be titled as 'parent:fieldname' without link. Now, you need to hide the original
lookup link column from the view and rename the 'parent:fieldname' to valid title. So the link field will be gone and the additional parent field will be in the view without link.
Thanks,
Sohel Rana
http://ranaictiu-technicalblog.blogspot.com

Similar Messages

  • How to remove hyperlink in Reports Region

    How to remove hyperlink in a Report region (Based on some filter condition)
    Example : In Report Region, I am getting value as 10, 20, 30, 0, 44, 55, 0
    In the above value, I need to remove the hyperlink for 0 values.
    Can anyone help me to resolve this issue.
    Thanks in advance.
    Regards
    Balaji S

    If you want a link column for values other than 0 and a blank for those with 0 then the best way to do this is to use a case or a decode to return a LINK image or text to a hidden column; I usually return the Edit icon only. You can then use the 'column link' region on a different column to create a link in the usual way and set the Link Text to the hidden column (e.g. #EDIT# in the example below). If you have set the target page to require a Checksum this will then be added without having to code it into your sql. E.g.
    SELECT some_columns, 
      CASE WHEN numcol != 0 THEN '<img src="#IMAGE_PREFIX#e2.gif" alt="">'
      ELSE null
      END "EDIT"
    FROM your_tableIf you want the same column value, but those of 0 to not have a link and those other than 0 to have a link then you need to code the link into your sql. e.g.
    SELECT some_columns, 
      DECODE (numcol,0,numcol,'<a href="f?p=&APP_ID.:11:&SESSION.::&DEBUG.:11::">'||numcol||'</a>') "EDIT"
    FROM your_table# = your URL e.g f?p=&APP_ID.:11:&SESSION.::&DEBUG.:11::
    If you require a checksum on the link you need to add the apex_util.prepare_url function to the URL.
    Cheers
    Shunt

  • How to remove hyperlinks in a word document

    how to remove hyperlinks in a word document

    Go to your "Insert" drop down menu.
    Select "Hyperlink", near or at bottom.
    You will get this dialog box:
    Look at the lower left corner... see the button "Remove Link"?
    Click on it...and hit the "OK" button in the lower right...
    Since this was a Word question, and not a Mac Pro question, it would have been better to post it here http://www.msofficeforums.com/word/

  • How to remove qualified lookup entries

    Hi All,
    My scenario is as explained below:
    Main table: Customers
    Qualifeid lookup table: Customer_Brands
    Qualifer: Form_action (this is a Lookup field and the lookup table is Form_Action)
    Form Action table has an entries called "CR" and "MO"
    What I need to do:- There is a set of customers with form action value as CR. I need to remove this value (essentially make it null) for all those customers using MDM Java API.
    So the question in short is how to remove qualified lookup entries?
    NB: I am able to replace CR with MO and vice versa since these entries are in Form_Action table, but unable to remove these entries.
    Please give some inputs on this. Sample codes are appreciated.
    -Thanks,
    Padmarajan.

    Hi Adhappan,
    My code snippet to set the value is as below:
    A2iFields formFields = new A2iFields();
    A2iField intField = new A2iField("Form_Action");
    Value val = new Value(ValueType.ValueNull);
    intField.SetValue(vall);
    formFields.Add(intField);
    But the ValueType.ValueNull returns an integer (in my case 17) and the form action field of the customer gets set with the value at that row of the form action table once I execute a modify query.
    Please advice as to how to code it correctly.
    -Thanks,
    Padmarajan.

  • How to remove the duplicate Columns in Multiple Rows?

    Hi,
    I want to remove the duplicate columns in a Multiple Rows.
    For example:
    Now i'm getting the output like this
    S_NO Order_number Assy_item Assy_Desp Item_Number
    1     S3123 12345 TEST     *1245*
    2     S3123 12345 TEST     *1256*
    3     S3123 12345 TEST     *1289*
    4     S3123 12345 TEST     *1223*
    5     S4123 42345 SAMPLE *4568*
    6     S4123 42345 SAMPLE *5656*
    7     S4123 42345 SAMPLE *4558*
    the Original output should be like this
    S_NO Order_number Assy_item Assy_Desp Item_Number
    1     S3123 12345 TEST     *1245*
    2                         *1256*
    3                         *1289*
    4                         *1223*
    5     S4123 42345 SAMPLE *4568*
    6                         *5656*
    7                         *4558*
    note: Alignment Problem all the Bold Numbers are Item Number(Last Column)*
    i'm using XML and RTF template.
    RTF Template is a Basic Table like Structure
    i pasted the XML code below
    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="items" version="1.0">
    <parameters>
    <parameter name="P_DATE" dataType="date"/>
    <parameter name="P_DEPT_NO" dataType="varchar2"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="ROW1">
    <![CDATA[
    SELECT
    SUBSTR(IMGR.ORDER_NUMBER,3,2) MACHINE_NO
    ,IMGR.ORDER_NUMBER
    ,IMGR.ASSY_ITEM_NUMBER
    ,IMGR.ASSEMBLY_DESCRIPTION
    ,IMGR.ITEM_NUMBER
    ,IMGR.ITEM_DESCRIPTION
    ,SUBSTR(IMGR.ORDER_NUMBER,1,2) DEPT_NO
    ,IMGR.PLAN_DESCRIPTION
    FROM XXI.IGL_MRP_GROSS_REQUIREMENTS IMGR
    WHERE IMGR.DEMAND_TYPE IN ('Discrete job','Non-standard job')
    AND IMGR.PLAN_DESCRIPTION ='MRP-PRODUCTION'
    AND IMGR.DEMAND_DATE <= :P_DATE
    AND SUBSTR(IMGR.ORDER_NUMBER,1,2) IN (&P_DEPT_NO)
    ORDER BY
    DEPT_NO
         ,MACHINE_NO
    ,IMGR.ASSEMBLY_DESCRIPTION
    ,IMGR.ASSY_ITEM_NUMBER
    ,IMGR.ORDER_NUMBER
    ,IMGR.ITEM_NUMBER
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_IGLOO_QA_FPI" source="ROW1">
    <element name="MACHINE_NO" value="MACHINE_NO"/>
    <element name="ORDER_NUMBER" value="ORDER_NUMBER"/>
    <element name="ASSY_ITEM_NUMBER" value="ASSY_ITEM_NUMBER"/>
    <element name="ASSEMBLY_DESCRIPTION" value="ASSEMBLY_DESCRIPTION"/>
    <element name="ITEM_NUMBER" value="ITEM_NUMBER"/>
    <element name="ITEM_DESCRIPTION" value="ITEM_DESCRIPTION"/>
    <element name="DEPT_NO" value="DEPT_NO"/>
    <element name="PLAN_DESCRIPTION" value="PLAN_DESCRIPTION"/>
    </group>
    </dataStructure>
    </dataTemplate>
    Please Share your ideas.
    Thank
    Aswath

    hi Ananth,
    i tried the logic but its also not printing the First Line.
    Syntax:
    <?if:ORDER_NUMBER!= ORDER_NUMBER?><?ORDER_NUMBER?><?end if?>
    I think this condition works fine if it is start from second line of the row.
    Output:
    S_NO Order_number Assy_item Assy_Desp Item_Number
    1     12345 TEST     1245
    2     12345 TEST     1256
    No Order_number displayed.
    i hope you got my point. Please help me to get through it.
    Thanks
    Aswath

  • How to create hyperlink on column.

    Hi all,
    its very urgent.
    I have two pages first page like header level and secound page like lines level.
    in first page having requestid lov,find,create buttons and advance table region.
    secound page having only advance table region with add another button and save button.
    in first page, once click on the create button one requestid(header) is generated in header leval and at the same time that requestid move to secound page requestid column and user select the application name and responsibilityname and user click on the add another row button it ll add one more row with same requestid and here user again enter application name and resp name and click on the save button the data insert to two different tables.header information insert to one table and line information insert to another table.
    here my problem is in first page having requestid lov and find button. the user click on the find button all the requestids displayed in advance table region(this is only header information).once user select particular requestid and click on that requestid, it ll displays particular requestid line information to next page.
    how to create link on requestid column.
    how to achive this plz help me.
    Thanks

    Hi Mukesh,
    Thanks for replay.
    here my requirement is i have two pages in firstpage having requestid lov,go button and table region.
    once click on the GO button it ll display all the requestids(only header table information) these requestids are having hyperlink.
    one requestid(header) having multiful requestids(lines)
    once click on the particular requestid and go to next page here displays the line information.
    so i created one destinationURL, and in secound page CO process request i wrote below code.
    so plz check once.
    In CO:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String employeeNumber = pageContext.getParameter("requestID");
    System.out.println("this ia my link requestID:"+employeeNumber);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable[] parameters = { employeeNumber };
    System.out.println("this is my link serizable requesid:"+ employeeNumber);
    am.invokeMethod("initDetails", parameters);
    in AM:
    public void initDetails(String employeeNumber)
    RequestAccessDetailsVOImpl vo1 = getRequestAccessDetailsVO1();
    System.out.println("my emp number AM:"+employeeNumber);
    vo1.setWhereClause("REQUEST_ID = :1");
    vo1.setWhereClauseParams(null); // Always reset
    vo1.setWhereClauseParam(0, employeeNumber);
    System.out.println("my emp number AM1:"+employeeNumber);
    vo1.executeQuery();
    once i click on the requestid(hyperlink) in home page that requestid move to secoundpageCO and AM also.
    plz check the output.this output generated OC4J server.
    this ia my link requestID:12590
    this is my link serizable requesid:12590
    my emp number AM:12590
    my emp number AM1:12590
    But did not displays the line information in secoundpage
    plz helpme.
    Thanks
    Edited by: its urgent on Mar 19, 2012 10:26 PM

  • How to remove the Detail column programmatically in Master detail table

    Hi,
    I have a master detail table.
    I want to remove the show Hide (Detail) link from the table programmatically based on some serach criteria. Is it possible to do that.
    Thanks in Advance,
    Kaushik Rambhiya

    Set the Vertical Elasticity property of the master frame to Variable.

  • How to remove a column from alv table

    Hi All
    How to remove a specific column from alv table.?
    Thanks & Regards
    SUN

    For delete u can follow the above post..
    Fo making invisible :
    data m_col type ref to cl_salv_wd_column.
    m_col = alv_mode->IF_SALV_WD_COLUMN_SETTINGS->GET_COLUMN (' col1' ).
    m_col->SET_VISIBILITY( '01'  ).

  • How to remove all values from column

    Hi all
    I have one table and in that i have one column which contain some null value.now i want add a not null constraint on that column but it already contain null values.
    how shuld i delete that column value only or how should i proceed now please help me

    What do you mean by REMOVE?
    All values for that column are null or not? if not, then can those value removable?
    NULL means no value, how can you remove non-existing value?
    Update the null column to default value is one way.
    the other is to drop the column and add it again together with your not -null constraint.
    But I definitely wouldn`t recommend this approach in your case since some of your records have values for that column.

  • How to create a view based on Lookup Column?

    Hi All,
    I am working as a SharePoint developer 2013.
    When i tried to create a view based on look up column it is not showing lookup column.
    How to fix this problem?
    Please help me out here.
    Thanks & Regards,
    Santhoshi

    can you elaborate the issue? Do you mean you cannot view the column name in the filter section when creating a new view for the list or the column is not getting displayed in the view created?
    --Cheers

  • How can I remove the Location column from the search results in a .chm file?

    How can I remove the Location column from the search results in a .chm file?
    I generated the file in Robohelp HTML 9.
    As far as I know it's used when you've combined more than one source into the final help file. It is possible (though I don't remember doing it) that I did that once a couple of years ago but now I'm only using one source - the project that's generating the .chm.
    Can anyone tell me how I can remove it?
    Thanks
    Tom

    In Project Setup look at the Window properties. I think you will find Advanced Search is ticked.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How do I remove right 'reminders' column in iCal 5.0

    How do I remove rightside 'reminders' column in iCal 5.0

    Roger Wilmut1 wrote:
    Command-option-t does in Snow Leopard - does it in Lion?
    Cmd-Opt-T works on 10.7.1 here. From the View menu select Hide Reminders.
    John M

  • How do you remove hyperlinks?

    has "Numbers" received an update recently? maybe I missed it. but i can no longer remove hyperlinks from a cell.
    I still want the URL there -- but in plain text format -- but i don't want a working hyperlink. I used to be able to left-click on the cell and a little box came up, where you could amend the text, and remove the link -- nice and easy.
    But when you click on the link now, all it does is open up Safari and takes you straight to the page
    I've highlighted the cell, the text, and searched through all the menus, but there doesn't seem to be any way to remove the hyperlink. All you can do is type the whole thing out again, which can take ages when you've got a long URL
    anyone got any ideas?

    Hello
    If you wish, you may also try a script given at the end of the following thread.
    How to convert hyperlinks to url
    https://discussions.apple.com/thread/4544519?tstart=0
    https://discussions.apple.com/message/20522031
    Regards,
    H
    PS. Under OS X 10.9, you need to change the ruby interpreter at the beginning of main.rb from:
    #!/usr/bin/ruby
    to:
    #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
    For convenience, here I post the entire revised codes, which can be used under OSX 10.5 through 10.9.
    hyperlink to url.applescript
        convert hyperlink to url in selection in Numbers
        save this as script bundle or application bundle and
        put ruby script in its Contents/Resources with the name used in this script, e.g., main.rb
    _main()
    on _main()
        script o
            property _prompt : "Hyperlink to URL - options:"
            property _options : {"0 : kill links", "1 : kill links but keep styles", "2 : keep links alive"}
            property _default : 0
            -- (1) copy the current selection to clipboard
            tell application "System Events"
                tell process "Numbers"
                    set frontmost to true
                    keystroke "c" using {command down}
                end tell
            end tell
            delay 0.1 -- may need to adjust
            -- (2) convent links to urls by modifying rtf data in clipboard
            -- -- (2.0) accept conversion option
            tell application "Numbers"
                set r to choose from list _options with prompt _prompt default items {_options's item (1 + _default)}
            end tell
            if r is false then error number -128
            set _option to r's item 1's character 1 as integer
                0 = replace links with urls and kill the links discarding links text colour and underline style
                1 = replace links with urls and kill the links preserving links text attributes
                2 = replace links with urls and keep the links alive
            -- -- (2.1) invoke Contents/Resources/main.rb with _option argument
            set rbf to (path to resource "main.rb")'s POSIX path
            do shell script rbf's quoted form & " " & _option
            -- (3) paste the edited rtf to the current selection
            tell application "System Events"
                tell process "Numbers"
                    set frontmost to true
                    keystroke "v" using {command down}
                end tell
            end tell
        end script
        tell o to run
    end _main
    main.rb
    #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
    # file
    #    main.rb
    # function
    #    convert hyperlinks to urls in rtf data in clipboard
    require 'osx/cocoa'
    include OSX
    def hyperlink_to_url_pboard(option=0)
        #    int option :
        #        0 = replace links with urls and kill the links discarding links text colour and underline style
        #        1 = replace links with urls and kill the links preserving links text attributes
        #        2 = replace links with urls and keep the links alive
        raise ArgumentError, "invalid option: #{option}" unless [0,1,2].include? option
        # get rtf data from clipboard
        pb = NSPasteboard.generalPasteboard
        data = pb.dataForType('public.rtf')
        # make mutable attributed string from rtf data
        docattr = OCObject.new
        mas = NSMutableAttributedString.alloc.objc_send(
            :initWithRTF, data,
            :documentAttributes, docattr)   
        # replace hyperlinks with url strings, optionally preserving or discarding existing attributes
        tr = NSMakeRange(0, mas.length)
        while tr.length > 0
            er = NSRange.new
            url = mas.objc_send(
                :attribute, NSLinkAttributeName,
                :atIndex, tr.location,
                :longestEffectiveRange, er,
                :inRange, tr)
            if url != nil
                if option <= 1
                    # kill the link
                    mas.objc_send(
                        :removeAttribute, NSLinkAttributeName,
                        :range, er)
                end
                if option == 0
                    # remove foreground colour from link
                    mas.objc_send(
                        :removeAttribute, NSForegroundColorAttributeName,
                        :range, er)
                    # remove underline style from link
                    mas.objc_send(
                        :removeAttribute, NSUnderlineStyleAttributeName,
                        :range, er)
                end
                # replace anchor text with url string
                href = url.absoluteString
                mas.objc_send(
                    :replaceCharactersInRange, er,
                    :withString, href)
                # adjust ranges in case href and anchor have different length
                delta = href.length - er.length
                er.length += delta
                tr.length += delta
            end
            tr = NSMakeRange(NSMaxRange(er), tr.length - er.length)
        end
        # clean up modified attributed string
        r = NSMakeRange(0, mas.length)
        mas.fixAttributesInRange(r)
        # make rtf data from mutable attributed string
        data = mas.objc_send(
            :RTFFromRange, r,
            :documentAttributes, docattr)
        # copy rtf data to the clipboard
        pb.objc_send(
            :declareTypes, ['public.rtf'],
            :owner, nil)
        pb.objc_send(
            :setData, data,
            :forType, 'public.rtf')
    end
    # main
    option = ARGV[0].to_i
    hyperlink_to_url_pboard(option)

  • How do I limit the view of a date lookup column to = [Today]?

    I have a list that has a column that contains various event dates  that I use in another list for a lookup column.  As this list gets longer over time, I want to restrict the lookup/dropdown list to only reflect dates =>[Today]. 
    How can I do that in SharePoint Foundations 2013?
    Thanks!

    Hi,
    Per my knowledge, the OOB not provide a method to achieve your requirement. We can use jQuery to achieve it.
    http://stackoverflow.com/questions/17573893/restricting-range-of-drop-down-lists
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to remove the note text for column (portal)

    Hi to All,
    Just i wanted to know how to remove the note (text) which is coming infrond the column in the appraisal template in portal view.
    My client doest want the text "note" (which i highlighted in the yellow) comming infrond the coulum. Pls can anyone tell me how can i remove only the  "note" text from the template?
    Kind regards,
    Saritha

    Hi Saritha,
    In SE80, Choose Web Dynpro Component HAP_DOCUMENT_BODY and you will find the component controller node, double click it and goto methods tab. Here you can find the method CONVERT_CONTEXT_TO_UI, this method will be triggered twice. Search for the code "CALL METHOD lo_nd_t_cells->get_static_attributes_table", this is the method which defaults the "Note" based on the row and column iid. You can overwrite the code by writing the implicit enhancement.
    Hope it will help you and revert back in case of queries.
    With Regards,
    Giriesh M

Maybe you are looking for

  • Query suggestion

    Hi All, I need to apply condition where column should not be null and also must not be an empty string. I wrote like: WHERE (TRIM(ITEM_BAR_CODE)!='' AND ITEM_BAR_CODE IS NOT NULL) OR (TRIM(ITEM_COLOR)!='' AND ITEM_COLOR IS NOT NULL) But I am not gett

  • Report link that will open to a new window

    Hi, I need a report link that will open to a new window. Below is my code. {="<ahref=\"http://<server>:<port>/OpenDocument/opendoc/openDocument.jsp?sRefresh=Y&sPath ParentFolder,subfolder&sDocname=<Report Name>=wid"\">"[ID]+"</a>"} Thank you. Rose

  • Database structure documentation tool

    I have been asked to include the database structure of our application in the help. It doesn't look as though there is a tool within RH that will do this but I thought it was worth asking in case it's hidden away somewhere. If not, there are plenty o

  • Major problems after ICS on my Bionic

    So I've had the Bionic since it was released and have never had any major problems with it.  It wasn't until a few days ago when I woke up to a notice of the ICS update finally being available, so of course I pressed on Install now.  I ended up going

  • OWB 9.2.0.8 and Oracle Database 10g - Urgent

    hi I have OWB 9.2.0.8 software and my oracle database version is 10.2.0.2.0 hosted on sun solaris 5.9 version, can the OWB support this database, pls let me know your suggestions and where I can get a support document Kishan