Related to post" navigation link on column values"

Hi,
when i ick on link for column values it should navigate to detail report based on manager name dynamically how can i achieve this one?
any help.................plz

Do a IsPrompted on manager name in detail report,...

Similar Messages

  • Unable to pass the values from one report to another using navigation links

    Hi All,
    I am facing a strange issue where I have to pass a column value from one report to other.
    I have kept navigation link in the 1st report and 'is prompted' option in the 2nd report
    Issue was , I'm not getting the filtered result in the 2nd report (all the records are being displayed)
    Can anyone advice where I was going wrong
    Thank you,
    AO

    Hi,
    The column which you have given navigation link and 'is prompted' column should same and exist in both the reports.You have to give the guided navigation in the value interaction of the column in the report1.
    mark if helpful/correct.........
    thanks,
    prasanna

  • Filter a tableview based on a column value-Navigation Issues.

    Hi,
    I have a table view with total 99 values. The values are displayed in 10 tabs of the table view with 9 values in each tab.I go to the third tab and select a column value, which triggers an event and filters the result list from 99 to 12.
    I am simply removing the collection and filling it again with fresh values.
    My problem is-when i set the collection with new values, i want the end user to be navigated to the first tab.
    But the user is always navigated to the second tab which has the last three values.
    Is there any way to navigate the user to first tab of table view?
    I have already tried-visibleFirstRow and it is not working.
    Thanks and Regards,
    Rohit

    Hi Ashish,
    You can implement some code in DO_INIT_CONTEXT to filter your Items' BOL collection based on the condition quantity <> 0. I believe the Quantity field is available in the BOL structure.
    Here is a code snippet.
    DATA: lr_col TYPE REF TO if_bol_bo_col,
    DATA: lr_node TYPE REF TO if_bol_bo_property_access.
    lr_node = me->typed_context->CONTEXT NODE->collection_wrapper->get_first( ).
    WHILE lr_node IS BOUND.
    CALL METHOD lr_node->get_properties
    IMPORTING
    es_attributes = ls_struct.
    IF ls_struct-quantity = 0 .
      lr_col->remove( iv_bo = lr_node ).
    ENDIF.
      lr_node = lr_col->get_next( ).
    ENDWHILE.
    Regards,
    Masood Imrani S.

  • Column link - call java script & assign current report column value to item

    Hi,
    How to call java script and assing current report column value to item?
    I have a button column in the report to 'delete' the selected row.
    I want to first show dialog box with message 'Are you sure?'. If yes, process to delete
    will be executed, else no action.
    In order to fire JS, I used Column Link ->Target=URL.
    Problem: The alert is showing but I don't know how to pass selected row's primary
    key value to process (to delete selected row).
    I have a item which can be used to store selected primary key value but don't know how to assign the value
    when button pressed.
    Thanks in advance
    Dip

    Ok. The issue has been resolved by following way.
    PAGE PROCESS: delete_request
    begin
    delete xyz
    where id = :P8_id;
    commit;
    end;BUTTON URL:
    javascript: DelRec(null,'CREATE', 'f?p=&APP_ID.:8:&SESSION.:delete_request:NO::P8_id:#id#');Java Script:
    <script language="JavaScript1.1" type="text/javascript">
    function DelRec(msg, req, url){
    var confDel = msg;
    if(confDel ==null){
    confDel= confirm("Are you sure?");
    }else{
    confDel= confirm(msg);}
    if (confDel== true){
    redirect(url);           }
    </script>

  • Navigation on column values

    Hi gurus,
    I have a requirement like ,
    Service hub,Age,Age,Age
    <=5 6-10 >15
    Manger/Employee     1     1     0
    Manger/Employee     6     0     4
    Manger/Employee     3     7     0
    the report should look like this my question is there any possibility to navigate on values >0 and we don't want to navigate when column valure is =0 means if column value is >0 it should be shown as a link to detail report.
    Any ideas please please reply me ASAP..
    Edited by: prashanth on Sep 19, 2011 2:13 AM

    Hi Prashanth,
    This is how your masure'scolumn formula would look.
    case when "YourMeasureColumnformula">100 then '[a href=saw.dll?Go&Path="Your_Target_Report_Path"&Options=dfr&Action=Navigate&P0=1&P1=eq&P2=%22Value tobepassedTablename%22.%22ValuetobepassedColumnname%22&P3='||Valuetobepassed_Columnformula||'>'||cast( "YourMeasureColumnformula" as varchar(20)) ||'[/a]' else cast( "YourMeasureColumnformula" as varchar(20)) end
    *Replace [  with <
    Make sure to change the column's data format to html.
    Rgds,
    Dpka

  • Popup is not getting launched click on command link in table column value

    Hi
    We have a scenario where we bring the pop-up clicking on command link in the table column value. It was working fine before but from last few labels this is not working.
    Here is the code snippet that we are using,
    <af:table>
    <af:column>
    <af:commandLink>
    <af:outputText value=”product name” />
    <af:showPopupBehavior TriggerType=”click” PopupId=”::p1”/>
    <af:commandLink>
    </af:column>
    </table>
    <af:popup id=”p1”>
    <af:dialog>
    </af:dialog>
    </af:popup>
    Thanks,
    Nagesh

    It is important to set partialSubmit="true" in the <af:commandLink> tag. A full submit will be made otherwise and the popup will not show. Use also tryggerType="action" instead of triggerType="click" and use the proper chararcter case of the tag attribute names. Try with this:
    <af:commandLink text="product name" partialSubmit="true">
      <af:showPopupBehavior popupId="::p1" triggerType="action"/>
    </af:commandLink>Dimitar

  • Link same column to different forms based on column value

    Hi All
    I have one report with column "STATUS" with values 'schedule' and 'Active'. I want to link this column to some forms based on these values if column value is 'schedule' then it will go to some other form or if value is 'Active ' then go to some other forms and also i want to send some parameters of particular column value so it will fetch data from table based on this status. how can i link same column to diffrent forms. please help me out.
    Thanks

    Hi,
    In the report query you can conditionally generate the links.
    Example.
    select
    case when status = 'schedule' then  '<a href="'||'f?p=&APP_ID.:150:&SESSION.::NO:150:P150_ITEM1,P150_ITEM2:'||
          value_for_item1||','||lvalue_for_item2||'">status </a>'
    when status = 'active' then  '<a href="'||'f?p=&APP_ID.:200:&SESSION.::NO:200:P200_ITEM1,P200_ITEM2:'||
          value_for_item1||','||lvalue_for_item2||'">status </a>'
    else status end column_title,
    ....Regards,
    Natarajan
    Edited by: Nattu on Mar 18, 2013 11:53 PM

  • Using variables as filters in analyses launched by Guided Navigation links

    I'm trying to build a navigation link that will launch an analysis and have the filters in that analysis respect the values of either Presentation Variables or Session Variables. I'm having success with an ordinary column. I'm not having success with a number that I need to type into a prompt.
    Here's what I've done so far:
    1. Created a dashboard prompt based on the Month column. When a Month is selected, that selection populates the Request (Session) variable called Selected_Mo
    2. Created an analysis with:
    - a filter on the Month column: = Selected_Mo
    - the Month column
    - a column showing the value of Selected_Mo
    3. Placed both of those onto a dashboard page. When I select a value of Month, the month in the analyis changes, and the column showing the value of Selected_Mo changes. So far, all is good.
    4. Placed an Action Link on the dashboard. That action link launches the same analysis that I can see on the dashboard.
    5. Clicked the action link. The value of Month that I selected on the dashboard is shown in the analysis.
    Now, I'm trying to do the exact same thing with a numeric entry field in a dashboard prompt, and I'm running into a stumbling block. I want to type a number into a field in a dashboard prompt, and populate a session variable called Change_Pctg. Selecting "Variable Prompt" in the dashboard prompt only lets me populate a Presentation Variable. But no matter. I've created a "dummy" field like we used to do in 10g, just creating a Column Prompt against a column formula of 1.
    When I put the analysis onto the dashboard, it's correct. I can enter a number into the dashboard prompt field, click Apply, and that value is shown in the analysis on the screen. I'm filtering against that value as well, and the number of rows is right. So I know that I'm setting the value of that Change_Pctg session variable.
    But when I click the action link, only Selected_Mo is respected by the target analysis. The Change_Pctg session variable is ignored.
    Any thoughts?

    I'd like to abort this post. I've been able to replicate the error using a much simpler method. Refer to the post entitled 'Passing Presentation Variables to Guided Navigation'.

  • Problem in filtering when we use navigation link

    Hi all BI Gurus,
    I am having one problem can anyone please help me to come out of it.
    Here is my problem,
    I created two reports. The first one gives you basic idea and the second one give you more detail related to first report.
    e.g.
    First Report is displaying which type of part is manufacturing in which location.
    Like
         Code     -     Location     -     Product Name
         101     -     USA           -           Laptop
         102     -     China           -           Camcorder
         103     -     China           -           Walkman
         102     -     Japan           -           Camcorder
         105     -     Japan           -           Speaker
    Now in this report I am having link to my second report on Code column. For this I am using navigation link which will display my second report which will provide more details regarding the selected product. i.g if I click on first 102 then my second report should display details for Camcorder with location China only not for both China and Japan.
    I prepared both reports, added that navigation link in first report and in my second report I added filter on Code, Location and Product Name as ‘Is Prompted’
    I am running these reports and click on code first 102, my second report is displaying record for both China and Japan. Means it is filtering only code value not other values which are in same row.
    Could any one please help me in my problem?
    Regards,

    hi,
    as we can see here the relation is not unique between code - location
    Code - Location - Product Name
    101 - USA - Laptop
    102 - China - Camcorder
    103 - China - Walkman
    102 - Japan - Camcorder
    105 - Japan - Speaker
    meaning that code 102 is not unique for location(it address China and Usa),so you have 2 solutions....
    So, add a extra column which will be unique describe all the 3 columns,so in order to pass that value to the 2 report.
    Now,either you have one...either you have to make one at your etl(let's say add 2 existing columns code + location).
    Code - Location - Product Name ------CodeLocation
    101 - USA - Laptop------------------------101USA
    102 - China - Camcorder-----------------102China
    103 - China - Walkman--------------------103China
    102 - Japan - Camcorder------------------102Japan
    105 - Japan - Speaker----------------------105Japan
    in this as you can see if you put navigation at the column CodeLocation,you have unique row selected.
    You can also put a sequence in your etl at your table code or location and make a relation between these two...
    Tnink,you select value 'A'.Then 'A' must show only to then ones you want....
    Here you say,give me all the results of 102,but you want 102 + location!
    so in some way you must make Bi to understund.
    As i have mentioned you,there are 2 ways...Db or programming
    Db is better(you can use it and in other situations and is more good in performance)
    Programming is in your hand.(by clicking on something you must assign to 'session' of Bi the values you want to be filteted at the 2.
    This can be done...
    http://oraclebizint.wordpress.com/2009/01/26/integration-of-all-oracle-and-non-oracle-reporting-toolsets-url-parameters-an-introduction/
    http://oraclebizint.wordpress.com/2007/07/30/customizing-obi-ee-%E2%80%93-go-url-parameters/
    http://sureshotstrategies.wordpress.com/2008/12/13/integrating-oracle-obiee-content-using-go-url-syntax-2/
    and this!!!!
    How to use GO URL?
    i hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • FSG report not printing column values on same line but sequentially

    FSG report problem:
    We have defined 2 FSG reports 'Balance Sheet - Total' and 'Balance Sheet - Detail'. Both reports have 3 column values, namely the value in Euro (our Functional Currency), the value in MUR - Mauritian rupees (our reporting currency) and the rate of exchange.
    The report 'Balance Sheet - Total' displays these values for assets e.g.:-
    EURO MUR Rate of exchange
    Non-current assets
    1. Intangible assets ? ? ?
    2. Other investments ? ? ?
    (note: ? represents a certain value)
    The report 'Balance Sheet - Detail' displays values as follows :-
    Account EURO MUR Rate of exchange
    1. Property & Equipment
    A10101 Building Cost ? 0.00 0.0000
    A20105 Motor Veh Accum Dep ? 0.00 0.0000
    TOTAL ? 0.00 0.0000
    A10101 Building Cost 0.00 ? n/m
    A20105 Motor Veh Accum Dep 0.00 ? n/m
    (note: ? represents a certain value)
    What we don't understand s why the 'Balance Sheet - Detail' report repeats the display of column values in MUR FOLLOWING the display in EURO, instead of displaying column values for EURO and MUR on the same line, just like in the case for 'Balance Sheet - Total'.
    Is there anything in the definition of column set, row set or report set should I change?
    Can anybody help. Thanks.
    null

    The problem is related to defining the column set properly. It is OK with the first report and needs modification for the second. Formatting is also important so that they appear in the same line(row). The columns need to be linked to the fileds and assignment to set of books is also important as mentioned by Rajsekhar

  • How to accessing current row report column value in Lov Query?

    Hi,
    which access methods (eg. bind variables, substitutions, ...) for getting the current row report column value can be used in the "Lov Query" property of a report column?
    As what I know of and what I have read on the forum there are no bind variables for the report columns. For the "Link Text" property it seems that the column values exist as substitution strings (#COLUMN_NAME#). But they don't work in the Lov Query. => And would be good because of a hard parse each time the Lov query is executed.
    The following post (Re: Simulating a correlated sub query in lov
    is showing a solution to use package variables for temporary storage of the referenced value, but the only problem with that solution is that if a new record is added with the "Add rows to tabular form" process the package variable still contains the value from the last queried row! Is there a way (variable, APEX package, ...) to determine if the lov query is executed for a new record so that the package can return null?
    I know that I could write the package in a way that the value is immediately cleared when lov_pkg.keyval is called (one time read), but then I would have to create several variables if I'm accessing the value multiple times in the query or in another query => I think an one time read solution would be very obscurely.
    Thanks for your help
    Patrick
    http://inside-apex.blogspot.com

    Hi Patrick,
    I agree that it's a waste to continually use Ajax to go back to the server to get the contents of a dynamic select list.
    There are no bind variables for any row item - but what you do have, as per my previous post, is the value of the data entered by the user in the first row. You can pass this into your application process (using get.add("VARIABLENAME", value)), which can use it to retrieve the correct LOV in your Ajax code - this will give you a "bind variable" that your process can use.
    What you could do, however, is generate hidden select lists on your page - one for each possible LOV list and replace the contents of the new row's select list with the contents of the appropriate hidden select list. This is easy to do with javascript (using innerHTML functions). Obviously, though, the usefulness of this depends on the number and size of the select lists.
    Even if you don't generate them to start with, you can keep a copy of any select lists returned by Ajax in the DOM for use on new rows. So, if you have retrieved a select list, you will have a copy of it in DOM which you can then copy into the new row. If you don't have the list in DOM, use Ajax to get it, store a copy of it and copy it into the new row.
    Which method you use will depend on the number/size of select lists needed. If they are few in number and/or size, I would suggest generating hidden lists. If they are large, use Ajax to get them once, store them and then retrieve them from the DOM when needed.
    There is another thread here where Arie recommends going to the server every time to make sure you get the most up-to-date data for the lists. If you want to follow this advice, for this reason, use get.add("VARIABLENAME", value) to pass the value to your process. If this is not an issue, you can use one of the other methods I outlined above.
    Regards
    Andy

  • Navigation links are visible to all groups even after applying specific target audience group in to links at sharepoint 2010 publishing site

    Hi ,
       Any one please help me on why the global navigation links are visible to all group users  even after applying a specific target audience group to the link. I Checked , User profile service  and User profile synchronizing services
    and they are running fine. Test environment is running fine even both the services are not running. Please let me know is any relation should be there between target audience and User profile services?
       I am wondering that the Target Audience is not working in global navigation suddenly in production server and the same is working in test server.
    Thanks & Regards,
    NareshRaju YV,
    Infosys.

    Hi NareshRaju,
    Did you add SharePoint Groups to Target Audience ? if yes please refer http://social.technet.microsoft.com/Forums/sharepoint/en-US/7862f182-c6a2-4d2e-9025-b11514575ac3/audience-targeting-for-navigation-link-issue?forum=sharepointgenerallegacy and
    you will get solution
    Let us now if this helps, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Picture Library NavigationLink column value

    Hi,
    I have created a Sharepoint 2010 picture library. I have created a custom web part for image slider using this picture library.
    I want to redirect user to NavigationLink URL of picture library item. I am using following code to get navigationlink URL:
    using (SPSite site = new Microsoft.SharePoint.SPSite(SPContext.Current.Site.Url))
                        using (SPWeb web = site.OpenWeb())
                            SPList LstPicture = web.Lists[SLIDER_LIST];
                            SPQuery query = new SPQuery
                                Query = @"<Where>
                                             <Eq>
    <FieldRef Name='IsActive' />
    <Value Type='Integer'>1</Value>
                                             </Eq>
                                          </Where>"
                            SPListItemCollection items = LstPicture.GetItems(query);
                            List<ImageCollection> lsts = new List<ImageCollection>();
                            foreach (SPListItem item in items)
                                string ImageUrl = Convert.ToString(item["ows_EncodedAbsUrl"]);
                                string ImageName = Convert.ToString(item["Name"]);
                                string Title = Convert.ToString(item["Title"]);
                                string Description = Convert.ToString(item["Description"]);
                                string IsActive = Convert.ToString(item["IsActive"]);
                                string NavigationLink = Convert.ToString(item["NavigationLink"]);
                                imageslist.Add(new ImageCollection(ImageUrl, ImageName, Title, Description, IsActive,NavigationLink));
    Problem is it is giving me navigation link and desciption in item["NavigationLink"] field value. However  I need only URL of the image. Which column of Picture library give me only Navigation URL without description.
    Regards,
    Amit

    Hi,
    Is Sudip's suggestion helpful to you?
    Can you show what value retrieved in the "NavigationLink" field(screenshot would be better)? If you can get link and description all in once, then there
    should be a method to extract the URL from it using C#.
    Thanks
    Patrick Liang
    Forum 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]
    Patrick Liang
    TechNet Community Support

  • Is it possible to use HTTP GET navigation links?

    Hi,
    I'm learing JSF technology, I found it very powerful.
    But I'm not able to understand how generate navigation links that use HTTP GET method. Do anyone Help me?
    It seems impossilbe, but I don't want believe that it is true.
    Building a web site using only HTTP POST methods is out of the W3C for Web Site suggestions.
    A "good" serach engine for example dosen't take in cosideration HTTP POST Links.
    I hope that someone tell me how generate using JSF HTTP GET links for navigation.
    Bye

    Balusc, thanks for you help.
    The blog is very good!
    I make help classe (FacesUtils) who you show in blog, but not find the property on request context map, but I use the param variable on faces-config.xml and Request Managed Bean and all work fine.
    thanks.
    I'm wrong where I think the Request Managed Bean is create for each request on all pages, the Request Managed Bean is create only on requeste page reference its.
    Parte of my faces-config where I put the Request Managed Bean:
    <managed-bean>
              <managed-bean-name>uuidParamManager</managed-bean-name>
              <managed-bean-class>
                   br.srv.full.virtual.managers.request.UUIDParamManager
              </managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
                   <managed-property>
                   <property-name>loginManager</property-name>
                   <property-class>
                        br.srv.full.virtual.managers.LoginManager
                   </property-class>
                   <value>#{loginManager}</value>
              </managed-property>
              <managed-property>
                   <property-name>uuid</property-name>
                   <property-class>java.lang.String</property-class>
                   <value>#{param.UUID}</value>
              </managed-property>
         </managed-bean>Where UUIDParamManager is create on request its receive first the LoginManager Instance, and later its receive the UUID param.
    I put the prototype of project on virtual.full.srv.br.
    thanks.

  • Navigation option on blank values

    the requirement is I have a report with total count column....when i click on the count a detailed report with all the employee names will open
    and this count values can have a blank values too
    so i gave navigation on the headcount column
    so that when i click on value 500 a detailed employee report will open with 500 employee names
    the problem is when i mouse over on a blank value its still showing the click option and when i click on that its navigating to a no records page
    my req is they dont want to see click option when i mouse over on blank values
    thanks in advance

    When a navigation link is enabled thats how it will behave even on blank rows. There is no way to restrict it based on the records it display. One work that you can do is Display 0's for null values using IF NULL condition.
    IF NULL(column, 0). Now enable No results view and you can type in a text saying that " The report does not have any records for this request" or some thing. In that way Users will understand it better.
    Just a suggestion.
    Hope it helps
    Thanks
    Prash

Maybe you are looking for

  • An XJC compilation error - Could not load class (..) for type cvsversion

    I've got a strange compilation error using NetBeans 4.0 (I'd guess the version does not matter here) and Ant 1.6.2. When the following task is executed, <target name="compile_ofx_schema"> <antcall target="clean-ofx"/> <delete dir="${ofx-jaxb-src.dir}

  • After Effects error: no such AVI compressor. (-2147205007) (53 :: 33) How can I fix this?

    After Effects error: no such AVI compressor. (-2147205007) (53 :: 33) How can I fix this?

  • Insert https x-forwarded-for

    Hello all, I have an ACE 4700 and It is balancing a web aplication using tcp ports 80 (http) and 443 (https). The configuration of ACE is in One-Arm, it means that the ACE does a NAT to client IP source address. For requeriment legal the web aplicati

  • Setting for unblocking iTunes

    I'm a Educational Technologist and our IT division is running a filter system called BlueCoat. I have the ability to unblock items in this system. When I put iTunes in the unblock section of the website I still cannot access the iTunes store, Podcast

  • Screen freezing or turning to black

    My imac is freezing and/or the screen is turning to black while I'm on the internet or while I'm using lightroom, happens 2 or 3 times a day. Unplugging, plugging back in works. Any long-term solution? Thanks, B.