How to find content in header

I wanted to change the link located on our website.  I assumed this was coming from the master page, since it appears on every page on the site.  I have checked web parts, css and the master pages and lists that we are using, but I have not
found it yet. What I am looking for is a reference to a link.  I found where it is formatted when I view the source code. But I have not been able to locate the actual contents!  Do you have suggestions on how I should be looking for this? 
It appears in the header and located under div id"s4-bodycontainer". Where should I be looking?
thanks
mhoran

it's a link the developer put in to MS outlook, which we don't want to show.  He's put other similar content on the home page, but they were based on a list. There is no list for the link I see for this content. I see the code in the source :
<div id="s4-bodyContainer">
<div id="mainbody">
<div id="header">
<ul id="headlk">
 <li>
   <a href="https....link  is here ></a>
</li>
</ul>
mhoran

Similar Messages

  • How to find content of a constraint etc.

    Hi,
    select constraint_name
    from user_constraints
    where table_name = 'EMP';
    shows to two constraints for the given table of EMP. Now, how to find CONTENT of each of these two constraints?
    Secondly, how to find if a particular column is nullable (programmatically, not from DBA tool set)? e.g. EMP.deptno
    Thirdly, why did I get the err msg of "inserted value too large for column"
    when executing the following command for data insertion to EMP as user, scott
    create SEQUENCE emp_sequence
    start with 8000 increment by 10;
    insert into EMP values (emp_sequence.NEXTVAL,'JOE','Researcher',null,null,null,null,null);
    Thanks a bunch.

    Thirdly, why did I get the err msg of "inserted value too large for column"Er, do the math...
    SQL> conn scott/tiger
    Connected.
    SQL> desc emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)
    SQL> select length('researcher') from dual
      2  /
    LENGTH('RESEARCHER')
                      10
    SQL>
    Secondly, how to find if a particular column is nullable (programmatically, not from DBA tool set)Don't like the sound of this, smells of dynamic coding. Anybody who can't figure out why they can't create an EMP record for a researcher probably ought not to be tangling with dynamic SQL just yet.
    Now, how to find CONTENT of each of these two constraints?The CONSTRAINT_TYPE tells you the sort of constraint: P=PRIMARY KEY, U=UNIQUE, R=FOREIGN KEY and C=CHECK. Only Check constraints have any content as such and you'll find that in the SEARCH_CONDITION. Note that this is a LONG column, so you may need need to SET LONG 5000 to see it in SQL*Plus.
    Cheers, APC
    P.S. In future please refrain from bundling unrelated questions into a single post. There is no charge for posting and it avoids the threads getting long and hard to follow.

  • How to place content between header and tabs?????

    i have header part which has to be constant through out the portal but below that i have 3 links
    like I AM employee,employer,broker..
    which has to be shown only in home page above tabs..
    how can i achieve this..
    how to place content between header and tabs..:(kindly help..

    Hi Samiran
    Try these approaches and see if that works.
    1. In the Header Section, you header footer shell and add a Header Portlet. This Header Portlet associated JSP file will have all static content in the top section. In the bottom section, add these 3 links say to right hand corner. Show these links only based on some request property like isHome. Now for the main book having Home and other page associate a BackingFile. Within this backing file in the lifecycle methods like preRender or handlePostBack, get instance of BookManager and all the pages and see which page is Active. For that active page check its page definition label which will be always unique. IF the page def label is like home_page_def (this is page def label you give for home page), then set the key value in the request property like isHome=true. By only doubt is after Book backingfile is triggered, the header has to be reloaded, because only then it can pick up the request attributes.
    2. Create a brand new portlet like HomePageLinks portlet. Make its Title Property Not Visible, and other user interface properties like NoBorder, NoTheme etc. The associated JSP will have the 3 links you mentioned right aligned. You can use css styles to make it right etc. Now drop this portlet in the Header Shell area. You already have HeaderPortlet in the top, below that you will have this HomePageLinks portlet. Now associate a backing file for this Portlet to show, only if the Books current active page is Home page by comparing the def label etc as mentioned above.
    In both scenarios, only concern is when we click on different Pages, the entire portal has to be rendered right from the Top Header. Only then the backing file will set the key, and the HomePageLinks portlet can show or hide accordingly.
    Try firing an Event when the Home page is clicked. This listener for this Event can be the HomePageLinks Portlet. I guess Event mechanism should work irrespective of where the portlet is placed. In the event listner, see if you can show/hide this portlet.
    The only challenge is Header section needs to reloaded everytime you click on a Tab.
    Start putting some backing files and System.out.printlns to see if the Header section gets reloaded on click on any Tabs.
    These are just my thoughts over the top of my head. Other forum users can have better alternatives or a different version of above approaches.
    Thanks
    Ravi Jegga

  • How to find contents of ABAP proxy message

    we are using an ABAP proxy to send data including a document number from SAP to PI when a document is received on our SAP ERP system.
    it is possible under certain conditions that the proxy will not be processed, but the document has. I want to be able to check the messages sent to PI  to ensure that all the data has actually created a proxy message. How can I, if it is possible, find the data within the messages so I can determine if the whole process has completed OK.
    Put another way how do we know what data is in a message as listed under transaction SXMB_MONI ? The GUID in this transaction appears to relate to table SXMSPMAST but how can I find the information contained within that message so I can then link the message with the original document and then if necessary call the proxy again for that document ?
    Colin
    Edited by: Colin Heap on Oct 22, 2009 5:16 PM

    The problems I mentioned above seem to have been down to the xml messages themsleves rather than the coding found from Ravis' link however I made a few changes to the code to add more flexibility in the search parameter and also a TRY - ENDTRY to deal with the problem of abends when the SAP cannot interpret the message contents.
    please refer to the original BLOG ( Super Message Monitor for SAP XI ) by Alessandro Guarneri at the link in Ravis' post.
    I have then made the following changes. Please note that the field names used in my code are slighlty different to the original code to fit in with local coding practice however I think it will be easy for a programmer to interpret the changes
    1. Selection Screen 850 has been changed to use a SELECT-OPTION for the payload value. In Alessandros' code this is in INCLUDE ZXIMONI_RSXMB_SEL_MSG_SEL.
    * Super selection screen -------------------------------------------------- BEGIN
    TABLES: idxsndpor, idxrcvpor.
    SELECTION-SCREEN BEGIN OF SCREEN 0850 AS SUBSCREEN.
    SELECTION-SCREEN COMMENT 5(40) text-S98.
    * IDoc
    SELECTION-SCREEN BEGIN OF BLOCK idoc WITH FRAME TITLE text-s16.
    * Sender
    SELECTION-SCREEN BEGIN OF BLOCK idoc_snd WITH FRAME TITLE text-s14.
    SELECT-OPTIONS: s_snum FOR idxsndpor-idocnumber NO INTERVALS,
                    s_styp FOR idxsndpor-idoctyp    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK idoc_snd.
    * Receiver
    SELECTION-SCREEN BEGIN OF BLOCK idoc_rcv WITH FRAME TITLE text-s15.
    SELECT-OPTIONS: s_rnum FOR idxrcvpor-idocnumber NO INTERVALS,
                    s_rtyp FOR idxrcvpor-idoctyp    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK idoc_rcv.
    SELECTION-SCREEN END OF BLOCK idoc.
    * Payload
    SELECTION-SCREEN BEGIN OF BLOCK xp WITH FRAME TITLE text-s30.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (30) text-x01 FOR FIELD p_xpath.
    PARAMETERS: p_xpath TYPE text256.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT (30) text-x02 FOR FIELD s_xvalue. 
    PARAMETERS: p_xvalue TYPE text256 NO-DISPLAY.                   
    SELECT-OPTIONS s_xvalue for p_xvalue.                                      
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK xp.
    SELECTION-SCREEN END OF SCREEN 0850.
    * Super selection screen -------------------------------------------------- END
    I'm having trouble entering the next piece of code for INCLUDE ZXIMONI_RSXMB_CUSTFILTERS  so will enter it in the next post.

  • OSB+how to change content type header in http transport header.

    I have a requirement where I need to change the value of:
    <http:Content-Type>text/xml; charset=utf-8</http:Content-Type>
    to the end system specific like:
    <http:Content-Type>application/abcd-cvs-v1+xml; </http:Content-Type>
    and the http:accept value to:
    <http:Accept>application/abcd-cvs-v1+xml</http:Accept>
    Can some one please explain how to do this.

    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/context.html
    Use replace action/insert on the follwoing QPath in trhe request action of the ServiceCallout/Routing as
    $outbound/ctx:transport/ctx:request/tp:headers/http:Content-Type
    $outbound/ctx:transport/ctx:request/tp:headers/http:Accept
    Manoj

  • How to find contents of Backuppiece ?

    Dear Experts,
    Where I can find the contents of a backuppiece.
    Thanks in advance.

    Thanks Mseberg for your reply.
    I believe RC_% views can use only on recovery catalog. Is there any other way to find/list the backup piece contents.
    Eg:
    List backup command is listing all the details of the backup details including contents.
    Backup Piece name +RECO01/lcbt04u/backupset/ora_arc_lcbt04u_20120725_2rnh0mi0_1_1_789600832*
    BS Key Size Device Type Elapsed Time Completion Time
    6115 376.00K DISK 00:00:00 25-JUL-12
    BP Key: 6125 Status: AVAILABLE Compressed: YES Tag: DAILY_ARC_25JUL2012_2102
    Piece Name: +RECO01/lcbt04u/backupset/ora_arc_lcbt04u_20120725_2rnh0mi0_1_1_789600832
    List of Archived Logs in backup set 6115
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 5286 1501116915 25-JUL-12 1501117660 25-JUL-12
    2 5205 1501116921 25-JUL-12 1501117656 25-JUL-12
    but when i try the list backup piece, it is showing only backup piece name and availability, not showing the contents. and i dont find the content info on v$backpack_piece. is there any way to find the contents of particular backup piece other than RC_% views?
    RMAN> list backuppiece '+RECO01/trtdb/backupset/ora_arc_trtdb_20120725_2rnh0mi0_1_1_789600832';
    using target database control file instead of recovery catalog
    List of Backup Pieces
    BP Key BS Key Pc# Cp# Status Device Type Piece Name
    6125 6115 1 1 AVAILABLE DISK +RECO01/trtdb/backupset/ora_arc_trtdb_20120725_2rnh0mi0_1_1_789600832
    Regards,
    Abk
    Edited by: 865605 on Jul 29, 2012 9:01 PM

  • Tips or tutorial for how to scroll content over header or over fixed photos ...

    ... like these two Adobe Muse Site-of-the-Day websites:
    Scroll over header: <http://www.zacharycrawley.co.uk/index.html>
    Scroll over fixed photos: <http://www.lauranet.nl/>
    Thanks much for any advice
    Bradley

    And here's another site that repeatedly scrolls new content over a photo — almost like sliding a new page over a preceeding one, but as a function of scrolling.
    I doubt this added website was done in Muse, but can Muse do this sort of thing repeatedly ... or just at the top of a page?
    <http://www.thesochiproject.org/en/chapters/the-summer-capital/&>
    Thanks again!
    Bradley

  • How to find the business content cubes..

    Hi bw guru's,
       how to find the standard cubes and how to map the fields for our reuirements..can any one help me ..in this scenario..
    thanx in advance..
    uma reddy

    uma,
    help.sap.com is a reasonably good source of information on available business content.  For example, here is an overview of BC for NW2004s:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3d/5fb13cd0500255e10000000a114084/frameset.htm
    As you drill down you can often (but not always) find information on how the BI infoobjects map back to source system tables/fields.  For instance, this link shows this information for sales order header information under NW2004s:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3c/63073c52619459e10000000a114084/frameset.htm
    As you navigate you'll want to take care that you're looking at information related your system version and business content level.
    Hope this helps.
    Bob

  • How to find out Head of own organisational unit in organisation

    How to find out Head of own organisational unit in organisation
    Hierarchy after giving the transaction oopoma_crm?

    Hi,
    try RH_GET_LEADER
    Then you'll get the CP. Then get the BP number, that should be CRM_CENTRALPERSON_GET.
    Regards
    Andreas

  • How to find the user who deleted the contents of DSO.

    Dear friends,
    Can u please tell me ,how to find the user who deleted the contents of the DSO.
    The user has deleted the complete contents of the DSO. We need to find the user ,date and time.
    regards,
    Vijai

    Hi,
    If the user has used the manage option to delete the contents of the DSO then the changed by field will be updated by the users name. In case a program is used for the deletion then it wont be the case.
    Regards
    Govind.

  • How do I find contents of PSA in BI 7.0

    I am using BI 7.0. How do I find contents of PSA? Only way I found:
    1.     Go to Monitor, Select the Request, Go to Detail tab, right Click to get Context Menu and select PSA maintenance. Is there a transaction code to get to PSA  or other ways of getting to PSA?
    THANKS A LOT.

    Hi Zigzagdna,
    Go to RSA15-->go to your data source>right click>manage->select the request you want to see in PSA, select the psa icon in the left bottom cornerSelect ok.
    Go to RSA15-->go to your data source->double click your data source-->on the application toolbar, there is an icon to switch on the technical attributes->click the icon->There will be an alphanumeric table name as PSA table->doucle click it ->On the application toolbar there is contents icon->run(after selections).
    Go to infopackage monitor on the application toolbar there is PSA icon. Click it to see the contents of the PSA loaded by this request.
    For you previous SQL eror while executing infopackage for loading copy cube.
    Try loading data with selections in infopackage. May be you are trying to fetch more data than the ABAP program used for loading at the background can handle.
    Hope this helps,
    Best regards,
    Sunmit.

  • How to find the contents of proc from top command

    I had a doubt related to how to find the contents of a procedure or the statements from the PID displayed in top command if it can be done from TOAD or
    sqlplus. If we can find out the details from top like:-
    21211 oracle 16 0 3228 1012 764 R 0 0.0 0:07.68 top
    1 root 16 0 1732 552 472 S 0 0.0 0:01.29 init
    say, what is the process with PID 21211 and 1 are doing?
    I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    Join v$process, v$session, and v$sql
    SQL> ed
    Zapisano file afiedt.buf
      1  SELECT p.pid, s.sid, s.serial#, sq.sql_text
      2    FROM v$session s,
      3      v$process p,
      4      v$sql sq
      5    WHERE s.paddr = p.addr
      6*   AND sq.address = s.sql_address
    SQL> /
           PID        SID    SERIAL# SQL_TEXT
            37        128          2 BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :
                                     2, :3); END;
            19        149       4566 SELECT p.pid, s.sid, s.serial#, sq.sql_t
                                     ext   FROM v$session s,     v$process p,
                                          v$sql sq   WHERE s.paddr = p.addr
                                      AND sq.address = s.sql_address
    SQL>Edited by: Łukasz Mastalerz on Feb 12, 2009 1:27 PM

  • How to find URL of pages in WAS for EP content admin

    I can browse to http://localhost:50100 and can get links for WD ,services and adminstration but when i check these links there is no url for uploading PAR files. The content administration is in some other link.Any idea which one it is and how to find the port for deployment of par .WD gets detected and uploaded in 3601 but not PAR .What is the std procedure for checking ports on this server
    Is SLD disabled  for preview version?
    George

    http://fully qualified Portal server:http port of SAP J2EE/irj/ i sthe address SO first issue is solved.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/89/c84440eff00272e10000000a155106/frameset.htm
    Can we change the url of this in WAS and how can we customise it in WAS  and how can we show a common page for all users (anonymous) where there is no login screen?
    George

  • How to find the header and item level status of a CRM contract ?

    Hi,
    Few questions
    A. How to find the header and item level status of a CRM contract ? My req is to select all the contract line items which are in CLOSED status.
    B. How to get the BPs associated with a contract ?
    Anyone have the list of CRM tables and the relation amongst them. Please mail me in [email protected]

    CRMD_ORDERADM_H     Contains the Header Information for a Business Transaction.
    Note:
    1.     It doesn’t store the Business Partner
           responsible for the transaction. To 
           get the Partner No, link it with
           CRM_ORDER_INDEX.
    2.     This table can be used for search
           based on the Object Id(Business
           Transaction No). 
    CRMD_CUSTOMER_H     Additional Site Details at the Header Level of a Business Transaction
    CRMD_LINK     Transaction GUID set for all the Business Transactions
    CRMD_ORDER_INDEX     Contains Header as well as Item details for a Business Transaction.
    Note:
    1.     It doesn’t store the Business 
          Transaction No (Object ID).
          To get the Business Transaction No  
          link the table with
          CRMD_ORDERADM_H
    2.   This table can be used for search
          based on the Partner No
    CRMD_ORDERADM_I     Stores the Item information for a Business Transaction. The scenarios where we have a Contract Header and within contract we have Line Items for the contract, this table can be useful.
    E.g. Service Contracts
    CRMD_CUSTOMER_I     Additional Site Details at the Item Level of a Service Contract
    Pl.reward points.......

  • How to find out, whether any invoice is having header text or not.

    HI all,
    How to find out, whether any invoice is having header text or not. wheich table we have to refer.
    Thanks
    mahaboob

    Hi,
    You need to use FM READ_TEXT.
    First you have to determine what text Object/ID/Language you want to read (you can have N text objects for an invoice header).
    The easiest way to do this is to have an example document with the text you want to read.
    For example in VF03.
    1-Goto->Header->Header Texts.
    2-Click on the text you want to read
    3-Double click on the text (Right side box) This will take you
    4-Goto->Header
    This will give you the data you need to use in the READ_TEXT F.M.

Maybe you are looking for