Drill down for infotypes

Hi,
I made a select-option for the field PA0290-PASSL,
but, but i noticed that i couldn't drill down to the table contents of the pa0290-passl. I thought maybe it has something to do with the table being an infotype. Because the select-option works fine for transparent tables like MARA. Are there any way for me to make a drill down for an infotype table such as the one i mentioned above?
Thanks,
Frank

Hi,
You can use the following code for providing F4help.
types: begin of ty_PASSL,
PASSL type PA0290-PASSL,
end of ty_passl.
data: i_passl type table of ty_passl.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR PASSL.
Select PASSL from PA0290 into table i_PASSL  where .....
w_repid = sy-repid.
w_dynnr = sy-dynnr.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'PASSL'
dynpprog = w_repid
dynpnr = w_dynnr
dynprofield = 'PASSL'
value_org = 'S'
TABLES
value_tab = i_PASSL.
IF sy-subrc 0.
ENDIF.
Reward points if helpful.
Thanks and Regards.

Similar Messages

  • Unable to Drill Down for Report Designer

    hellooo...I created a report using a query in Report Designer. My query is having a structure in the row and I'm using this query for the report in Report Designer. After I created this report in Report Designer, I assign this report in Web Application Designer and create a navigation pane to link this report for the drill down function. But I have problem on drill down this report in the web template when i click on this navigation pane for the free char i defined. Eg: when i drill down for the char in the free char under the navigation pane item, I cannot perform the drill down horizontally but can perform drill down vertically. After perform drill down, I don't see the values from that char being displayed in the reports. Just wondering report in report designer cannot have any drill down function? or is my query problem due to the structure i defined? thanks alotttt...

    The report designer needs a fixed Column definition ( structures)
    In case of drill across this requirement is not fullfilled.
    This is not changable and is due to design, sorry.
    so you can only drill down.
    best regards,
    Kai

  • IDA ALV - different behavior regarding "drill-down" for grouped attributes after upgrade to ERP 6.0 EHP7 SPS5

    Hello Experts,
    we have  upgraded our Dev System to ERP 6.0 EHP 7 SPS5 (coming from SPS4).
    We had implement an example with an IDA ALV. On SPS4 we could make a "drill-down" to the single lines of grouped attributes. Now with SPS5 this is not possible anymore if the grouping is done for more than one attribute.
    On the following screenshot it scan be seen that the grouping is done over a Peril attribute and the Currency. I can only make a drill-down via the peril attribute, so that the aggregated values per currency are displayed. ON SPS4 it was possible to make a further drill-down for the currency attribute, so that the different single lines were visible which were part of the grouping/aggregation.
    SPS5 behavior:
    SPS4 behavior:
    I did not found any new settings which steers the behavior. Also I did not found any note which gives a hint that this is a bug.
    Does anyone know if the behavior for that was changed and why?
    Thx & Best regards,
    Florian

    Hi Florian,
    it is related with the currency field and it seems to be a bug. Please open a ticket to get the problem fixed. The component is BC-WD-CMP-ALV.
    Cheers
    Jens

  • Drill Down for Multiple Series in a Line Chart

    Hello,
    I seem to have a problem with the drill-down functionality in a line chart that has multiple series.
    I have a line chart that displays the readings of a patient over a period of 1 month. For each day, there is the glucose level reading, blood pressure reading, etc... So, each reading is a different series in my line chart graph.
    The basic requirement is: With a mouse over event on the chart, I am willing to display all the data that belongs to that day. The data will be displayed at the bottom of the screen in a small panel. It is very simple to do it when the line chart has only 1 series:
    i) Enable drill down.
    ii) Choose 'Row' as insertion type.
    iii) Fill out the destination field.
    iv) Make sure your labels (at the bottom of the screen) get the data from the destination cell.
    When there is more than one series, it becomes very difficult. XCelsius will not let me use the same destination cells for different series. So, I will have to use other destination cells. In that case, I will not know on which day is the user on. Is there any way to achieve this functionality?
    Let me know if you need further information.

    This is certainly possible, but there's a bit of a trick to it (and really hard to explain without screenshots!). There's two halves to it:
    1. Write the date that has been selected to a cell (for each series).
    2. Write the name of the series that was clicked to some cell (this is the property 'Series Name Destination').
    So let's say your three series are Glucose, Blood Pressure and Temp. Have those series names in B1,C1,D1 (with your dates down in column A). Insert a row below the series names (2:2), and then set up your insertion type for the chart as 'row'. The source data (for all three series) should be your list of dates in column a. The insertion cells for the three series will be, in order, B2,C2,D2. Now, depending on which point is clicked in the chart, the selected day will be inserted into one of those three cells. Completely useless unless you know which series was clicked.
    So you need to insert the name of the series that was clicked ('Series Name Destination') into the spreadsheet, let's say in F1. The rest is just Excel formulas. The logic is, you can now tell what series was clicked, and go and look up the date that was inserted for that series, then go and look up the row that corresponds to that date. So to get the date that was just clicked, your formula (in F2) would be =HLOOKUP(F1,B1:D2,2,0).
    Then a VLOOKUP will get the results from that row of data. For example, if I inserted another row at row 3 (to show my 'result' values) the formula in B3 would be =VLOOKUP($F$2,$A$4:$D$13,2,0).
    I hope that makes sense.

  • How do I create a drill down for my summary data?

    I have 7 fields of summary data with all having a common link called the customer account number.
    I have tried the following steps several time carefully and was unable to get my drill down to work.
    Insert menu > Group and chose the customer account number as my group field
    copy and paste the summary fields to the group header ( which I now have hundreds of GH1)
    Right click on the details section and chose Hide.
    Suppress the Group Footer
    File Menu > Report options and check on Show All Headers on Drill Down.
    I must be missing a step somewhere here.  I end up with no summary fields showing (to drill down into), and the customer account numbers showing.
    Can some check this out for me?

    hi Michael,
    you need a group to have drill down. you can't drill down on a report footer. if you can't group by these categories then you can't have drill down.
    your other option is to create an on demand subreport that you can open. i would suggest that you go through a bunch of the e-learning tutorials on crystal reports here. after that go to the online help for crystal reports and use the search tab and search for "creating an on demand subreport"
    you'd need to create an on demand subreport for each total that you are showing. again, please see the elearning topics especially on subreports, grouping. and then do follow the steps on on demand subreports in the online help.
    -jamie

  • Drop down/drill down for the report

    HI I have a requirement to have a kind of drop down menu on the heading level. So that if the data is say sales by model, on the invoice_date column, the user would have the option to look at this weeks' invoices, this months, etc.
    I know there are Parameters up front to do this but they want this kind of drill down style.
    Is there a way to do this in CR or via one of the add on products?

    Hi
    Apply record selection formula.
    Create a formula field to display specific name for month, week etc.
    Apply a group on this formula field.
    Regards
    Sourashree

  • Disable Drill Down For Groups only except SubReport

    <p> </p><p>Hi All,</p><p>I have 10 subreports and also 5 Groups sections in one report (version CR 10 - VS.Net 2005)   </p><p>I need to disable drill down on Groups <strong>except SubReport </strong>. </p><p> </p><p>Thanks in advance for any solution </p><p> </p><p>-Harini </p>

    Where are the subreports located? You mention you have 10 subreports and also 5 group sections. Are the subreports located in the page or report header/footer sections? Are there detail records in the groups? If not, then you don't need to supress drill-down, there is nothing to drill to. If there is, suppress the detail section. If a user drills on the groups, there will be no detailed information visible.
    Typically, if you have multiple groups and want to supress drill-down but still display the first group, you can use the 'drilldowngrouplevel >1' statement in the section expert to conditionally suppress the group. Right click the group, select 'Section expert', and click the formula button (the button with the 'X-2' and a little pencil) next to 'Suppress (No Drill-Down) Then, enter drilldowngrouplevel >1. This should do the trick if you have your report structured this way. If not, please provide a little more detail.
    Thanks and good luck.

  • Lose chart drill-down for webi based on BEx/BICS

    Hi All,
    I have a client for whom drill-down through charts based on SAP hierarchies is an essential requirement. My research here (and elsewhere) has led me to the following conclusions:
    1. IDT Universe (.unx) can't be based on BEx query (functionality briefly appeared then was revoked with subsequent SP)
    2. The supported/recommended method for reporting against BEx query is the BICS connectivity
    3. A webi report based on a BICS (although offers nice new sap hierarchy interaction) does not support drill-down through charts
    Just looking for confirmation that I am correct...and that my reports will therefore need to be based off traditional universes (.unv), to achieved drill down on charts in webi?
    Appreciate any feedback.
    Thanks,
    Ferdie.

    Hey Ferdie
    1. Build table in WEBI Document include the Hierarchy object (0COSTCENTER).
    2. Choose the CostCenter, right click set as Selection.
    3. Now add new Blank Cell and put it near selection , enter there some text , like JUMP TO, DRILL and etc..
    4. Now select the CELL . right click , Linking and Hipper Link or Document Link, and choose there another document
       or you also can choose self document. When your linking to another webi document you can transfer to it parameters to   prompt. So Transfer the costcenter as parameter.
    The document link option available only when you run document in View mode (No rich client without JAVA). I will open OSS to SAP about this issue
    Also you can choose to open the document in current window, so then user will think that he is still in same document
    Example for link parameter:
    /portal/1110311905/OpenDocument/opendoc/openDocument.jsp?iDocID=AdJiD59b4kJKkhNpGCYT8Q0&sIDType=CUID&sType=wid&lsSpsCost%20Center%3A=Ness&sWindow=Same
    I hope this will work

  • Drill down for pie chart is not enabled

    hi,
    i am trying to have a drill down functionality  for a pie chart but when i go to drill down option that screen is not enabled.
    how to make drill down option enable.
    please let me know
    Edited by: venkat s on May 9, 2008 9:36 AM

    i just gave yaxis  source and x axix source . it is enabling now

  • Unable to utilize Drill-Down for all Filtered Dates in Xcelsius Engage 2008

    Iu2019m very new to the Xcelsius Engage 2008 product and donu2019t understand what is needed to correct the drill-down problem encountered in a newly created dashboard. 
    The issue is with Drill-Down from a filtered chart.  For some reason, I am unable to correctly pick any data item from the chart located top of workspace to drill-down to the lower chart when selecting a month beyond Jan u201911.  
    Iu2019ve unhidden the Label Based Menu, List Box 1 and List Box 2 during attempt to find out why I am unable to drill-down when I select a month other than Jan u201911.  As youu2019ll see, when you u2018manuallyu2019 click in the unhidden List Box 2, the bottom chart is displaying the correct data.
    Also - new to post for this forum - is there a way to attached the XLF to help with visual support to the problem?
    Thank you,
    Deborah

    Hi there and welcome.
    First troubleshooting step is to add a spreadsheet component to your canvas so you can watch what's happening. Second, have a look at this step-by-step to make sure you're not missing any steps. http://blog.davidg.com.au/2011/04/xcelsius-interactivity-chart-drill-down.html
    Can you select only Jan '11? Or only up to Jan '11? Are you selecting whole months or days?
    Assuming that your second chart is filtering for this date, I would check that the formatting is correct. Try, for example, removing all formatting so that you're seeing 40668 instead of a date. Does that work?
    Also, it can be helpful to post your version number. This can be found under Help > About Xcelsius and will something like 5.3.5.0

  • Drill Down for Map reports

    Hi All,
    I have a requirement in which i need a create a sales map report across all the states in NA.
    i have created a main map report using the default map gallery and displayed all the sales figures across all the states in NA. Now i want to show the City level sales when i click on a particular state.  The state on which i am going to click
    should enlarge (or) it should redirect to other report having the particular statemap with city related values on it.
    How can i do it please help..!
    Do i need to download all the local statemaps and how do i store those maps in SQL server DB. Please explain in detail.
    Thnaks in Advance..!
    Regards,
    Balaji Prasad B
    Balaji - BI Developer

    Hi Balaji Prasad,
    According to your description, you create a state level map. When clicking on a particular state on the map, you want to display corresponding city level map.
    In this scenario, we should import state and city level shapefiles into the database, then create maps with these spatial data. After that, we should click on the state map and select Polygon Properties to create a drill down report and specify state as
    parameter to run the city map. For detail information, please refer to this article:
    Drill down in SSRS Map Reports.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • No Drill Down for a keyfigure in the Planning Book

    Hi experts
    We have 5 key figures in planning book.One among five key figures is Supply information , the data will be in the level of Material and Plant level.
    We have 5 Characteristics such as product, Prod Grp, Plant, Region and Customer.
    I want to restrict the Supply Information Key figure not to drill down when user drill downs at Customer and Region Level.
    How to achieve the above functionality using Macro?
    Thanks
    Vicky

    Hi Sunitha
    Sorry for being late reply.
    As per your suggestion i created macro and it was working fine when i drill down but when i select keyfigure selection(magnifying glass) and filter some keyfigures  in Interactive demand planning  system is not showing blank screen without any  keyfigures.
    When i remove this macro from Level Change,  then i can able to use Keyfigure selection.
    What is this inconsistency?
    My GUI is 720 and Patch 4.
    any suggestion?
    regards
    vicky

  • Drill Down for multiple tables possible?

    Hi,
         I have a web report with 3 tabs (Weekly, Monthly, and Quarterly) sales reports. 
         Is there a way to have a user drill down on any one of the reports and have it also affect/drill down on the remaining reports?  I can get the functionality to work if the 3 tables are not in tabs.

    are you using 7.0 or 3.x. I guess in 7.0 the Command is not executed against an invisible object. May you can try to to create a command sequence Show the items perfom drill down, and hide items.
    best regards,
    Kai

  • Drill down for notes

    Post Author: jhopewell
    CA Forum: Xcelsius and Live Office
    I am trying to figure out if there is a way to enable a drilldown that will allow people to see notes related to an individual item within a chart.  i.e. a bar chart where you could click on an individual bar and pull up notes related to that particular item.  I'm not having any luck figuring it out on my own.  Does anyone out there know if this possible? Many thanks!

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    you can do it in crystal xcelsius bar charts
    just go to the properties and u will find something called drilldown
    this option will insert the values of all serieses when you click on click on some column on the chart, you can take all those values and handle it

  • Using multiple XML files for drill-down

    I have an XML file which populates a graph showing months of the year.  I have 12 other XML files which have data for each day of the month running from 1 - 31.
    What I would like to do is use the 12 XML files to drill down for each of the months on my graph, but am struggling to get it to work.
    The XML that populates the graph is in the following format :
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item month="Jan" value="536102" />
         <item month="Feb" value="484570" />
         <item month="Mar" value="155840" />
    and the other XML files are in the following format:
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item Timestamp="24/04/2010" Value="4178" />
         <item Timestamp="25/04/2010" Value="8075" />
         <item Timestamp="26/04/2010" Value="14611" />
    Would it be simpler to combine all the XML into one file?
    Sorry that this is a bit vague, but if you could help me that would be appreciated. Let me know if you require any more information.
    Thanks.

    You can only import a single XML file. You may have an xml file that has multiple occurances of data but it must be a single xml file.
    So you woudl have to find a way to combine all of those xml files into one then do the import.
    Paul

Maybe you are looking for

  • Out of the box sharepoint online 2013 workflow

    Hi All, I have a workflow that sends a email to a user after creating a new document. Now a want to attach a document to this email but this is not possible with the out of the box SharePoint 2013 solution. I use the SP 2010 workflow because I need t

  • How do I get a replacement Disc for my Ipod?

    Here the problem I have. I bought this Ipod off ebay it came with the disc, and it worked fine for my girlfriend. She gave it to me so I could use it and now it doesn't work b/c I don't have the disc. She can't find it and I can't call Apple b/c Appl

  • Adobe Dreamweaver CC 2014 crash on startup!

    I'm using Windows 7 32-bit with 4GB of RAM on an Intel i3 processor with 500GB of storage. I've tried every solution available out there, removing preferences, reinstalling, removing caches, but all didn't work! This was the error I got, hope you guy

  • Thunderbolt adapter for macbook pro pre 2011?

    Hello, I have a macbook pro bought in 2009. There is a shared Thunderbolt display in my studio that I would like to use can I buy an adapter for my cinema screen port so I can use the Thunderbolt? If not is there an adapter planned by apple? Thanks

  • Comp wont boot with ram in any slots besides 1&3 no matter what, faulty board?

    Ok i've tried pretty much everything, got latest bios, changed timings to everything but the comp just wont boot if I have any ram in slots 2&4. Actually got the comp to boot up with ram in slots 1&2 once, but tried with all 4 slots filled and didn't