How to delete account members with no data (EPMA)

Hi all,
I loaded an account hierarchy coming from SAP in EPMA and now that I have the data into my cube I need to remove all the branches which bottom have no data. I have a list of all used account, and the EPMA ads file, how would you approach this problem? At the moment the Account is a Sparse dimension which all non-bottoms are dynamic, I would like to have some tips before start approaching the problem in some weird way..
Thank you,
bidi

You could just go into EPMA and remove those members from the Dimension Library APPLICATION Pane (The one in the middle that appears when you are exiting an app) by right clicking and "Excluding" from the hierarchy.

Similar Messages

  • How to Delete account information from "My Mail" Portlet permanently?

    Hi Everyone,
    I am using "My Mail" portlet from the portlet library provided by BEA WebLogic Portal 8.1(Service Pack 3).
    Can anyone tell me how to Delete account information from "My Mail" Portlet permanently?
    The problem is , once i configure my account with the mail portlet, it always takes me to my inbox folder whenever i use that portal. I want to delete my account information from this portlet.
    Anurag.

    There is currently no way to do this.

  • How to delete the file with space in name

    Hi
    I want to delete the file "test ex.txt" file.
    i run the following command in command prompt.i can delete the file successfully.
    /bin/rm -f /mnt/"test ex.txt"
    I want to run the command from java.So i am using the following code
    String cmd = "/bin/rm -f /mnt/\"test ex.txt\"";
         Runtime rt = Runtime.getRuntime();
    process = rt.exec(cmd);
    The file was not deleted.
    How to delete the file with space in name?
    Help me

    Use the form of exec that takes an array of command + args.
    arr[0] = "/bin/rm"
    arr[1] = "-f"
    arr[2] = "/home/me/some directory with spaces";Or use ProcessBuilder, which is the preferred replacement for Runtime.exec, and which Runtime.exec calls.

  • How to delete all mails with one klick?

    It's annoying to delete every single mail.
    How to delete all mails with one klick, like in the paperbasket?
    Thanks

    If the emails have been previously deleted (I.e. in the trash folder), tap Edit at the top of the list. You should see a delete all button at the bottom. If the messages are in a standard folder, they need to be handled one at a time.

  • Account Payables with Procurement data query

    Hi Gurus,
             Anyone who developed reports on a query of Account Payables with Procurement data.. the sources of fields are from R/3....
             Can you provide me with the business content or the datasources you use?
    Thanks..
    Irish

    Hi Irish,
    The Datasources used are :
    1. Purchasing  2LIS_02_S012
    2. Purchasing Groups  2LIS_02_S011
    3. Purchasing Data (Schedule Line Level)  2LIS_02_SCL
    4. Purchasing Data (Header Level)  2LIS_02_HDR
    5. Purchasing Data (Item Level)  2LIS_02_ITM
    6. External Services  2LIS_02_S174
    7. Vendor Evaluation  2LIS_02_S013
    8. Vendor Evaluation Data  0MM_PUR_VE_01
    9. Vendor Evaluation Data (Semi-Automatic)  0MM_PUR_VE_02
    10. Subsequent Settlement - Evaluation  2LIS_02_S015
    11. Allocation - Confirmation with Schedule Line  2LIS_02_SCN
    12. Allocation - Confirmation with Goods Receipt  2LIS_02_CGR
    13. Allocation - Schedule Line with Goods Receipt  2LIS_02_SGR
    Hope this helps.
    Regards
    Hemant Khemani

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • How to delete photos taken with iPad in iOS7?

    Before iOS 7 one could delete photos taken with iPad.  Now there does not appear any DELETE button in ios7 ?
    WHAT.?

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    iPhoto for iOS (iPad): Delete photos from iPhoto
    http://support.apple.com/kb/ph3137
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
    Delete Pictures from Your iPad
    http://www.dummies.com/how-to/content/delete-pictures-from-your-ipad.html
     Cheers, Tom

  • HT4305 HOw to delete my diagmostic and usage data on my ipad

    HOw to delete my diagmostic and usage data on my ipad
    <Re-Titled by Host>

    my wife's name and password in the gmail page, how do we delete it

  • How to put a check with the date

    Hi,
    I have created a ztable with 3 fields .
    clientcode(3),
    date,--date geneated
    version--- fileversion
    i need to update this table everytime i execute the data. Every time version shd get incremented when i execute the program.  When i excute the program next day version shd be updated by '1'.
    i wrote the code for version updated i'm not getting the logic how to put a check with the date.
      SELECT *
       FROM zfi_enetflver
       INTO TABLE gt_flver.
      SORT gt_flver DESCENDING.
      CLEAR: gv_dt, v_file.
      CONCATENATE sy-datum6(2) sy-datum4(2) INTO gv_dt.
      READ TABLE gt_flver WITH KEY client_code = gv_clcd.
      IF sy-subrc = 0.
        idx = sy-tabix.
        IF gt_flver-zdate = ' '.
          gt_flver-zdate = sy-datum.
        ENDIF.
        IF gt_flver-version = ' '.
          gt_flver-version = '001'.
          gv_filever = gt_flver-version.
          MODIFY gt_flver INDEX idx TRANSPORTING zdate version.
          MODIFY zfi_enetflver FROM TABLE gt_flver. "TRANSPORTING version.
          CONCATENATE 'E:\' 'ENET\' gv_clcd gv_dt '.' gt_flver-version INTO v_file.
        ELSE.
          gt_flver-version = gt_flver-version + 1.
          gv_filever = gt_flver-version.
          MODIFY gt_flver INDEX idx TRANSPORTING version.
          MODIFY zfi_enetflver FROM TABLE gt_flver .
          CONCATENATE 'E:\' 'ENET\' gv_clcd gv_dt '.' gt_flver-version INTO v_file.
        ENDIF.
      ENDIF.
    clientcode is the key field in ztable do i need to make date field key ??
    please help me with the logic

    You need to implement below logic:
    1. check if field_date = sy-datum. in this case do nothing.
    2. else . move sy-datum to field_date .
    3. modify your internal table with field_date .
    4. populate final table to database table .
    hope you get it.

  • How to delete forecast entries with zero current and original qty from a particular forecast set which span across multiple forecasts

    how to delete forecast entries with zero current and original qty from a particular forecast set which span across multiple forecasts

    Hi,
    There is no way to delete those records selectively from front end.
    The best possible way is to delete the records from MRP_FORECAST_DATES tables from backend.
    Hope that helps!!
    Regards,
    Mohan Balaji
    NOTE: Please mark the post as Helpful or Answered if the update has really helped you. This would also bring the thread to logical conclusion and will be helpful for the viewers.

  • How to delete an asset with a capitalization date inefaceable and no value?

    Hi all,
    An asset was created on the wrong asset class. I would like to erase it but this is impossible because of the capitalization date.
    Indeed, I cannot change the fields status variant of the capitalization date, it is compulsory.
    Furthermore, as this asset was an error, there are no values on it.
    I tried to enter a deactivation date, but this is not possible because of no acquisition performed.
    Therefore, I would like to know if it is possible to erase an asset even if a capitalization date has been entered in the master data?
    If it is possible, how can I do?
    Thanks for help

    Hi,
    This is the drawback in asset master, when you make cap date as mandatory for AS01 transaction.
    As a standard practice, cap date gets updated automatically when posting MIGO / F-90 only along with the qty.
    In your case, first ask your ABAP member to delete the values from cap date field from table ANLA. (Field Name: AKTIV) for your questioned asset.
    Then you can delete that asset with AS06 by choosing Physically delete the asset.
    This will resolve your issue.
    But if you make your field status as optional to cap date, then you must not got these kind of issues in the future.
    Regards,
    Srinu

  • How to fill internal table with no data in debugging mode

    Hi all,
             I modified one existing program.Now I want to test it.I am not given test data.So in the middle of my debugging, I found that one internal table with no data.My problem is how to fill that internal table with few records in that debugging mode just as we change contents in debugging mode.If I want to proceed further means that internal table must have some records.
    Please I dont know how to create test data so I am trying to create values temporarily in debugging mode only.
    Thanks,
    Balaji

    Hi,
    In the debugging do the following..
    Click the Table button..
    Double click on the internal table name..
    Then in the bottom of the screen you will get the buttons like CHANGE, INSERT, APPEND, DELETE..
    Use the APPEND button to insert records to the internal table..
    Thanks,
    Naren

  • How to delete the tracks with exclamation marks?

    I have just moved about 10 gigabytes of music I don't listen to off my hard disk to an external hard drive. This was to declutter my hard drive and get me down to about 50% free. Itunes now has all the moved tracks still listed with exclamation marks next to them all now. I want rid of these songs from my Itunes view. How can I get rid of these moved tracks now without manually deleting the batches. Annoying that exclamation mark field is not sortable or would be easy to mass delete.
    Anyone got a neat solution out there?
    Thanks in advance.
    Lorne

    Yes, but now you have lost all your regular playlists, ratings, play counts, last played dates, non-embedded artwork etc.
    Hope you don't miss them. If you do it might be possible to restore an earlier version of your library file and then bring it up-to-date with the free scripts at Doug's site.
    An all iTunes, no loss of data approach would have been as follows:
    Create a playlist called Found, select everything in Music and drag it into the Found playlist. Create a smart playlist called Lost matching All the rules Playlist is Music and Playlist is not Found. Your lost tracks will be in this playlist. You can delete them all with a Command-A to select them and Option-Delete to remove them. You can then delete the Lost & Found playlists.
    I normally recommend the scripts as being an easier way to do things that you may want to do again.
    tt2

  • Selection deletion to delete a field with no data.

    Hi all,
    The issue is that my ods displays data:
    chart of accounts company code glaccount docnumber serialnumber
    abcd 500 000005 1990001
    abcd 500 000005 1990001 12334.
    I need to delete the document number which doesnot have a serial number.
    So, Can i use Selective deletion option and my selecting the serial number =
    will it delete the records with serial number is empty???
    So that the data in my ods will look show only:
    chart of accounts company code glaccount docnumber serialnumber
    abcd 500 000005 1990001 12334.
    thanxs
    haritha

    hi,
    Yeah to keep the data good looking. Since the data is in gbq. And there were repitive data. So, they want to remove all the data with serno  which has empty space.
    Will my query will work or not???
    thanxs
    haritha

  • Finding out members with no data across the cube

    Hello everybody:
    If I have a Services dimension and there are some members with any input data. How can I get a list from this dimension with services with data and services without data?. Does exist some way to find out this?
    Thank you
    Regards,
    Javier

    Hi Javier,
    For this reterieve data in excel in proper combination
    1) In sheet one reterieve data by selecting supress #missing rows,(you will get data rows)
    2) In sheet two reterieve data normally.
    3) use Vlookup for the rest of the course.
    Hope this helps,
    Cheers...!!!

Maybe you are looking for

  • Closing Stock Of material

    Dear all       Using MC.9 transaction we will get the closing stock of a material in any date directly.I want to know that from which table we will closing stock of a material in a particular date.From MBEW we will get current stock only but ieed the

  • The touch screen of my Ipod touch is broken, I can't enter my unlock code. how can I disable that code to make my backup. Thanks

    Hi, The touch screen of my Ipod touch is brocken( not responding), I can't enter my code to unlock it, so I can't make any backup of my data before changing the Ipod touch at the Apple store( still in warranty) . Is there any other way to cancel this

  • Problem with norwegian 'special characters' (æøå) in LaTeX

    Having installed just about every latex-package in the repos I still cant get this to work. This is what I have in my .tex file: \documentclass[12pt,norsk,a4paper]{article} \usepackage[norsk]{babel} \usepackage[latin1]{inputenc} \usepackage[T1]{fonte

  • Physical Standby Database (Protection Mode)?!!

    Hi, I have configured a physical standby database to use Real-time Apply, but i noticed that the protection mode of the database has been changed from "Maximum Performance" to ''Maximum Availability".. log_archive_dest_3='service=phystby OPTIONAL LGW

  • Remove Submit button from completed pdf

    I am creating a fillable pdf with a submit button that will email the pdf from our intranet to a list of recipients.  I would like to remove the submit button, another button that I use to lock all fields button and accompaning text box from the comp