Can I filter or eliminate the digits from the field in report ?

Hi,
I have one report which has two columns activity and network activity.
activity is 5-digit code (00012) while network activity is combination of latter and digits (eg. A 02489).
if i run report without any filter - its runs fine and shows all the columns including above two columns. But if I filter  network activity and execute the report the  acitivity column shows something like this - A02489/00012.....
Is it possible by virtual characteristic ? if so how ?
I dont want this way how can i get just digits like before in activity column even after i filter by network activity ???
please guide in this..i will assign the points to help.
Thank You,
KSmith
Message was edited by:
        Keral Smith

I am not sure about I understand right, but when you move one part a compund characteristic pair  (here network activity 'A02489') from rows/columns to the filter or free characteristics area, the other part of the compound characteristic pair (here activity '00012') will display as 'A02489/00012'.
If you want to avoid this behaviour, one solution is to leave both characteristcs in the rows/columns AND to set the display property to 'suppress' instead of 'key' or 'key and text'. This way the 'A02489' will not appear in the report.
Hope this helps.
GIve thanks with points,
Claudio

Similar Messages

  • How can I filter based on the IPTC core information?

    How can I filter based on the IPTC core information? (CS6)

    "Substitution Variables" can do what you are asking for.

  • How can i get value when the field name is user's defined

    Hi,
    I have a one java method:
    public ResultSet countUserDb(String id) {
    ResultSet rs = null;
    con = dbcon.connect();
    String queryString = ("select count as count from
    db_allocation where user_id='"+id+"'");
    Statement stmt = con.createStatement();
    rs = stmt.executeQuery(queryString);
    When i call it in a jsp file.
    ResultSet counter =db.countUserDb(request.getParameter("id"));
    if(counter.next())
    int x=rs.getInt("count");
    Tomcat said incorrect column name.How can i get the result set when the field name is user's defined.
    Best regards
    Ricky

    You should give the user defined name in the ResultSet.getXXX method to retrieve the column value.
    Example
    SQL:
    Select ename as employeename from emp;
    You should say :
    ResultSet.getString("employeename"); to get the value.
    Alternatively you can retrieve it using column number:
    ResultSet.getString(1);
    Chandar

  • Can anybody help me with the product costing report... URGENt!!!!!

    Hi,
    Can anybody help me with the logic. teh present logic is given below. But as per the new requirement in the Selection screen when I add Material as Select Options then Logic should "expecting to get the report either in Product Group or (single/multiple/range) Material" . Please reply ASAP.
    get the list of product groups based on the range entered by the user.
      SELECT KSTRG FROM CKPH INTO TABLE I_KSTRG
                   WHERE KSTRG IN SO_KSTRG.
    for each product explode the hierarchy get all sub product groups
      LOOP AT I_KSTRG.
        CLEAR I_CKPH. REFRESH I_CKPH.
        CALL FUNCTION 'K_CKPH_GET_HIERARCHY'
             EXPORTING
                  DATBI     = '99991231'
                  KSTRG     = I_KSTRG-KSTRG
             TABLES
                  CKPH_I    = I_CKPH
             EXCEPTIONS
                  NOT_FOUND = 1
                  OTHERS    = 2.
        IF SY-SUBRC EQ 0.
        save all unique product groups within the hierarchy.
          LOOP AT I_CKPH.
            MOVE 'EQ' TO F_KSTRG-OPTION.
            MOVE 'I' TO F_KSTRG-SIGN.
            MOVE I_CKPH-KSTRG TO F_KSTRG-LOW.
            COLLECT F_KSTRG.
            MOVE I_CKPH-KSTRG TO KSTRG-LEVEL2.
            MOVE I_CKPH-UEKTR TO KSTRG-LEVEL1.
            COLLECT KSTRG. CLEAR KSTRG.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
    SORT KSTRG BY LEVEL2 LEVEL1.
    check if there are product groups extracted.
      CLEAR Z_LINES. DESCRIBE TABLE F_KSTRG LINES Z_LINES.
      IF Z_LINES GT 0.
    get the materials attached to each product group.
        SELECT KSTRG WERKS MATNR
          INTO CORRESPONDING FIELDS OF TABLE I_CKPE
          FROM CKPE
          WHERE KSTRG IN F_KSTRG
            AND WERKS = PA_WERKS.
      IF NOT I_CKPE[] IS INITIAL.
    get the order info order number & object number
          SELECT AFPOMATNR AUFKOBJNR
             INTO CORRESPONDING FIELDS OF TABLE I_AFPO
             FROM AFPO AS AFPO INNER JOIN AUFK AS AUFK
             ON AFPOAUFNR = AUFKAUFNR
             FOR ALL ENTRIES IN I_CKPE
           WHERE AFPO~MATNR = I_CKPE-MATNR.
        ENDIF.
        SORT I_AFPO BY MATNR.
        LOOP AT I_CKPE.
      get the division for the material.
          CLEAR: Z_SPART, MARA.
          SELECT SINGLE SPART
                   INTO Z_SPART
                   FROM MARA
                  WHERE MATNR = I_CKPE-MATNR
                    AND MTART = 'ZTFG'.
          MARA-SPART = Z_SPART.
        only proceed with processing if division is within users selection
          IF Z_SPART IN SO_SPART.
            LOOP AT I_AFPO WHERE MATNR = I_CKPE-MATNR.
              CLEAR: Z_MATERIAL_FLG, Z_EXPENSES_FLG, Z_SCRAP_FLG,
                     Z_OUTVAR_FLG, Z_ACTIVITY_FLG.
              LOOP AT I_COEP WHERE OBJNR = I_AFPO-OBJNR
                              AND  VRGNG NE 'KOAO'.   "changed by Kasturi
                PERFORM GET_DATA_FOR_REPORT TABLES I_DATA I_DATA_QTY.
                ENDLOOP.
              ENDLOOP.                       "afpo
            ENDIF.                           "division check
          ENDLOOP.                           "ckpe
        ELSE.
      no product groups extracted.
         MESSAGE i011.
      ENDIF.

    Has this been resolved?
    Your requirement is not clear. Could you please elaborate more about the output required?
    Thanks,
    F~Y

  • Hiding the field in reports

    Hello Friends,
    I'm newbie to oracle reports now i like to hide the unfilled fields in oracle reports at run time.
    Actually the field is inside the repeating frame which is enclosed by a main frame.
    In this i have an text in the main frame bcoz it shouldnt be repeated. So i kept in main frame.
    Now i need to know how to hide that mainframe contents from the report at run time while field in it is empty.
    When the field is without mainframe means we can hide it using trigger but how to hide while its inside mainframe?????Edited by: Janarthan on Aug 16, 2011 2:56 AM

    have u tried conditional formatting property like
    if filed:=null
    then return (false)
    else return (true)
    by using this you can get the answer.if u r not msg me back

  • In an Analyzer report how can I filter based on the last member of a dimension?

    Using Analyzer 6.2.1What I'm trying to do is to create a report that shows always the last month available on the cube.I'd rather like to avoid having to add UDA or Alias or whatever in my outline.Is there a way to retrieve the last member of a dimension directly in Analyzer?

    "Substitution Variables" can do what you are asking for.

  • What action can I take to eliminate the following error message when launching iTunes?

    Since the iTunes upgrade last week I persistently get the following message when launching iTunes. "You are signed in with a different Apple ID than previously used with Podcasts. Do you want to sync these podcast subscriptions and stations with ------------ "
    I only have one Apple ID of which I am aware. I changed the password just before the update, after receiving an email advising access from a device that I did not recognise.
    The error message goes on to refer to a Windows XP, desktop system as the previous platform for this synchronisation. I have been relying upon the old MacBook Pro since March, when iTunes on the Desktop crashed. I gave up trying reinstallation etc. on the desktop as nothing appeared to resolve the problem. I have "uninstalled" the application in Windows but lack the necessary skills to remove all traces. I still get error messages about iTunes when opening Windows XP but there is no evidence of application elements on the Hard Drive / System that I am able to recognise.
    iTunes appears to lack a process for updating to recognise that the current platform should be the default.

    Try signing out of iTunes, then back in again. This worked for me and a few others. To sign out, in the iTunes menu bar, click "Store" > "Sign Out".

  • What can be done to decrease the ad hoc report run time?

    We are processing a weekly ad hoc report in background to show the unmitigated users within our production systems.  Currently the report for our HCM production system runs for at least 3 days.  We have about 116,000 users in the HCM system.  We are running GRC AC 10.0 SP16.  Our Basis resource performed a trace on the job and saw that the background process performs a full scan on the GRACMITUSER table and suggested that an index be placed on this table and that the query be updated to work with an index.  Is this a normal resolution? 
    Any insight you can give into this issue is appreciated.
    Thanks --
    Sara B.

    Dear Sara,
    first of all google the SAP notes for "performance" as there are several notes in this regard. Second, not sure which program you run in background. Do you talk about the batch risk analysis?
    You can define parallel processing so that the analyis runs in more background jobs: SPRO > GRC > AC > Distribute Jobs for Parallel Processing. Define the number of tasks for the application type GRAC_SOD.
    This should drastically decrease the runtime. I have a client who has 40'000 users and the risk analysis could be reduced from 39 hours to 1 hour.
    Hope this helps.
    Regards,
    Alessandro

  • Can i insert data in my database from a web intelligence report?

    if that's not possible,can I do it from a stored procedure based Universe or with a derived table? Does BusinessObjects in general allow me to execute statements to insert data in my database?

    Hi Erika,
    afaik it is not possible write back to database from web intelligence .
    from dashboards with web services you can achieve this.

  • How can LabView 7.0 find the field point IO?

    Please see the attachment.
    Thank you
    Attachments:
    Field Point problem.doc ‏45 KB

    Did you actually read the pop up?
    You need to set up your device in MAX by finding in the Remote Systems area, right clicking and selecting Find Devices. Then you need to save your configuration in an iak file (from the Tools>>FieldPoint menu) and then you need to load that iak file in LV as described in the pop up.
    Try to take over the world!

  • When I upload a single file into a production in FCS I can access all the fields in the metadata set, when I upload a batch of files, I can only access a partial number of fields in the metadata set.  Does anyone know why this happens?

    When I upload a single file into a production in FCS, I can access all the fields in a metadata set.  When I upload a batch of files into the same production in FCS, I can all access part of the fields in the metadata set.  Does anyone know why this happens?

    dredcomm,
    Great answer, and it led me to where to solve the problem.  In the field definition screen there is a category drop down list.  If you choose something other than none from the category drop down list then that field won't appear in the list of fields when you attempt to batch import a group of files.
    Thanks,
    Dave

  • Can the Portal Activity Report show unique users per page?

    Hello all
    I guess this is a rather simple question, but can someone tell me if the portal activity report can show a count of unique users per page per week for instance?
    Or will it just show which users have visited the page in a list without aggregating them to a number? And if the users are aggregated to a number, is it only uniwue users that are counted for the given period?
    Regards,
    Martin

    Hi sogaard,
    It shows the no of unique logons.isnt it.
    Try these blogs
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5497
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5436
    Hope this helps
    Regards
    Vineeth

  • Scheduling Agreement LU: Can Route be changed in the SA item?

    Hi all,
    I noticed that in the Transport Scheduling Agreement SA type "LU"  but in general I think in any SA there is no any chance to change the route determined by the system in the shipping data within the item of SA.
    If you select Menu Item > More Functions > Shipping Data you can go an see the detail.
    Is it something I can set in customizing or the field EKPV-ROUTE is unchangeable?
    The route has to be changed in order to set the ones used for transfer stock between the two plants.
    Thank you in advance
    Andrea

    I have found a reasonable solution to my issue that perhaps it could be helpful for others who have the same problem.
    Stock transfer sheduling agreement is between two plants which are assigned to the same company code.
    Each plant is assigned to an additional customer code with its own specific ship-to-party. Both customer codes  have to be linked to the same payer in case there is an additional plant who belongs to another company code by which you debit stock transfer.
    The two customers which represent the addresses of the two plants have a specific transportation zone. There is then a node in customizing dedicated to the route determination in which you have to set the combination for the departure country/zone and destination country/zone with the proposed route.
    By this settings when you create a scheduling agreement between the two plants: "LU" type, the system values the correct route in each item of the SA according to your customizing.
    Kind regards
    Andrea
    Edited by: Andrea Brunori on Oct 21, 2010 2:45 PM

  • Filter the field with people data picker

    hi
    1.i create the list and put the internal number for each persone
    now I have another list that customized it with InfoPath 2010
    I want in the form when the user inter the internal number in it's field the field that is for the person appeared itself
    I create the data connection and filter the field with display name
    and when preview the form ir works but in the sharepoint list it doese'nt work when I filter it with the field=[me]
    and when preview the form in InfoPath after the display name there is 3 #
    and I thins these # is the problem
    plz help me
    thanks

    Hi ,
    According to your description, my understanding is that you want to fill automatically the person column in the second list based on the internal number.
    I did a test as the followings:
    Create a list called ListA, and add two column: internal number(single line of text), person(Person&Group).
    Add some items into the ListA.
    Create another list called ListB, and add two column: internal number(single line of text), personB(Person&Group).
    Customize ListB with InfoPath, and click the column “internal number”.
    Set a rule for the column as the screenshot.
    After the above, I tested in ListB, it worked well.
    Then I set a filter personB=[me], it also worked well.
    Please have a try as my steps, compare the result.
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to provide formulae for the columns in report based on date column

    Hi,
    How can we provide formulae for the columns in report, where each column is based on another Date Column.
    Can anyone suggest on this.
    Thanks

    Hi Manu,
    I think you a logical column X on which you created another Logical Column Y.
    Now you want 'Y' to be filtered based on Date Column.
    1. If, my assumption is right - You can do your requirement i.e. Filtering the logical col. 'Y' on Reports.
    Else,
    2. See - Your Logical column 'Y' While creating log. column 'Y' make sure you use any expression builder to filter across Date column. (i.e. using any case statements or where clause).
    Else,
    3. Make sure your First Logical column comes from Table by default (i.e. Create the same col. in d/b so it would be your Physic col. )
    Thank you.
    Edited by: GRK on Jan 28, 2013 7:48 AM

Maybe you are looking for