Problems when enterprise SW selection is driven by non-IT department?

I have been reading that IT is increasingly being left out of the decision of which Energy & Sustainability Mgt (ESM) system to buy.  Same is said to be true for Corp Social Responsibility (CSR) reporting software. 
From my experience this could create a lot of problems, such as lack of platform integration with back-end data streams; database integrity; feeds to front end dashboards, etc., with implications for data quality, security and transparency.
So I am collecting stories (anonymously of course), about any such hassles/mishaps that you or your colleagues might have experienced as result of having the enterprise system selection process dominated by non-IT interests.  My hope is that by compiling them and publishing them (first to those that contributed them) that there could be fewer such suboptimal experiences in the future.  
My email is [email protected] if you'd rather not post them here, or would prefer to arrange to talk on the phone.
Thanks so much for any stories you can share or point me to!
- Stephanie

Thanks Daniel
The code above drops any non US ascii characters which is fine in some situations but doesn't work for me as that would result in (amongst other issues) unacceptable email addresses.
Example: The user "Jörgen Åhs" gets the email [email protected] (using drop strategy), what is needed is [email protected]
The solution to this problem is to write a transform function and as we have about 80 non US ascii characters in character set we are using this mapping can quite easily be externalized to a configuration file.
Good point about the preferred name. I have not seen this specific problem in my current system but it is very common in certain parts of the world i.e. people with Chinese heritage in south east Asia often have a Chinese legal name and a western name that they actually use in day to day interactions. If you base the email address of their name in HR much screaming ensures. The same thing should actually happen in the US as you are supposed to enter the name on your social security card into the HR system but that seems largely to be ignored.

Similar Messages

  • I have a problem when try to select any of option from menu bar

    I have problem with mozilla since last update. When try to use any of options from menu bar, this appears:
    http://www.dodaj.rs/f/1p/Sl/1jR36iaa/mozilla-firefox-bug.png
    Also, i uploaded video to show how my problem appear.
    http://www.youtube.com/watch?v=shZGaZ0-_po

    thanks for reporting back with your details - turning off HWA might have slight negative effects on the performance/rendering speed of the browser but it shouldn't impact any functionality.
    i've seen a handful similar threads by users mentioning this issue since they've upgraded to firefox 18. so when it is a widespread problem, mozilla might further investigate this & offer a fix in a later version...

  • Web Dynpro ALV grid navigation problems when entry is selected

    Hi,
    We have implemented support packs 19 and 20 and following this, we are having the following side effect :
    When you click on an entry within an alv grid, it does not navigate to the next screen.  It worked fine before the service packs, please advise if you have any suggestions as to how we can get it to work again!?  Thanks in advance.
    When I click, the debug does not event go to the ON_LEAD_SELECT event.
    Edited by: James Wilson on Dec 10, 2009 3:52 PM

    Hi Samir,
    I think possibly you have other code which is relying on a lead selection being set in the context that you have provided to the ALV grid?
    And it is that code that is falling over?
    In this case I think you need to handle in that other code the possibility that the user/ALV grid will unselect all entries in the table.
    Or am I misunderstanding your issue? Please do let us know,
    Thanks,
    Chris

  • Problems when using id = "selection"

    Hi,
    actually this is not a question but a hint if you get the same problem.
    If you use htmlb with id = "selection", you will get a JavaScript error after leaving a Input Field.
    The problem seems to be in the Javascript sapUrMapi_ie6.js, in function ur_getSelection. There is a direct access to the object window.document.selection... If you name your form or other objects with id ="selection", this statement will be confused.
    Workaround: Rename all tags with id "selection".
    Actually I should write an OSS Message, but I have no S-User
    BTW: This Error will only occur in WAS 7.0
    Let me know if this helped or if you mean I should write a blog or a wiki about this
    Best regards
    Renald

    thanks for sharing the information. you can present this in the form of wiki. it will be useful to many people.

  • Mutating Problem when insert  while selecting data from dual

    Hi All,
    we have a table
    test (
    ID NUMBER
    NAME VARCHAR2(100)) and a before insert trigger
    create or replace trigger test1
    before insert on test
    for each row
    begin
    select decode(max(id),null,1,max(id)+1) into :new.id from test;
    end;
    i am able to insert values by using
    "insert into test(name) values('test1')" with out any issues.
    when i am inserting the values
    "insert into test(name) select 'test1' from dual" i am getting error
    ORA-04091: table SCOTT.TEST is mutating, trigger/function may not see it
    Could someone please advice why i am getting error in second scenario.
    Thanks in Advance
    Prasad

    Prasad
    try
    insert into test (name) values ((select 'test1' from dual));
    Frank

  • GROUP BY Problem When Using a SELECT for a column

    I have a very complex query that has, as one column, a SELECT clause. Here is a very simplified example from EMP/DEPT to illustrate what I need.
    This query works fine without the GROUP BY:
    select empno,
    (select dname
    from dept
    where e.deptno = dept.deptno)
    from emp e;
    How can a GROUP BY be applied to this? The following get a subquery error (not allowed in the GROUP BY).
    select empno,
    (select dname
    from dept
    where e.deptno = dept.deptno)
    from emp e
    group by empno,
    (select dname
    from dept
    where e.deptno = dept.deptno)
    And, of course, you can't use column numbers or aliases in the GROUP BY.
    Thanks.

    Eric's solution is not needed in the simple join you posted
    I believe he was well aware of that.Although I realize that Ben was aware of that, in the interest of completeness, I said that for the benefit of any others that may have jumped into the middle of the thread. I didn't mean for it to sound like anything other than that. Sorry for any possible mis-interpretation.

  • Locking problem when calling FM in background OR destination NONE....

    Hi,
    I've made a RF transaction to handle some movements from one Storage Unit to another one by creating a TO using standard FM L_TO_CREATE_SINGLE - so far, so good.
    My problem is that this FM makes a lot of standard checks (which is fine!) and if any of them fails - it issues a message, although I certainly don't want any message to be issued in this RF screen other than the ones that can be displayed on another screen.
    In order to avoid those annoying on-line messages I've tried to call the function in background, and even with DESTINATION 'NONE' - and here it is doing fine regarding the message handling (it is handled by the sy-subrc handler after the FM call) BUT now I'm having an even more annoying problem -> a lock is created (on tables LQUAX and VEKP) which I can't get rid of!!! (unless deleting manually the lock in SM12.......)
    Anyone experienced this by performing L_TO_CREATE_SINGLE in background mode or DESTINATION 'NONE' ?
    A check whether the TO is succesfully created or not is important, as after the TO creation I'm creating an Idoc (via L_SUB_INITIATION_FOR_PICK_HU) for that TO.
    Any ideas?
    Message was edited by:
            Branko Jovanovic

    Indeed, this solved my problem:
    CALL FUNCTION 'L_TO_CREATE_SINGLE'
        EXPORTING
          i_lgnum               = whs_id
          i_bwlvs               = ltak-bwlvs
          i_matnr               = wa_lqua-matnr
          i_werks               = wa_lqua-werks
          i_lgort               = wa_lqua-lgort
          i_charg               = wa_lqua-charg
          i_anfme               = rl03t-anfme
          i_altme               = ltap-altme
          i_vltyp               = ltap-vltyp
          i_vlpla               = l_vlpla
          i_vlenr               = ltap-vlenr
          i_nltyp               = ltap-nltyp
          i_nlpla               = l_nlpla
          i_nlenr               = ltap-nlenr
          i_update_task         = c_true
          i_commit_work         = c_true
        IMPORTING
          e_tanum               = g_tanum
          e_ltap                = itab_ltap
        TABLES
          t_ltak                = itab_ltak_vb
          t_ltap_vb             = itab_ltap_vb
        EXCEPTIONS
    <b>      error_message         = 01       "Shows errors if this is commented</b>
          no_to_created         = 1
          bwlvs_wrong           = 2
          betyp_wrong           = 3
          benum_missing         = 4
          betyp_missing         = 5
          foreign_lock          = 6
          vltyp_wrong           = 7
          vlpla_wrong           = 8
          vltyp_missing         = 9
          nltyp_wrong           = 10
          nlpla_wrong           = 11
          nltyp_missing         = 12
          rltyp_wrong           = 13
          rlpla_wrong           = 14
          rltyp_missing         = 15
          squit_forbidden       = 16
          manual_to_forbidden   = 17
          letyp_wrong           = 18
          vlpla_missing         = 19
          nlpla_missing         = 20
          sobkz_wrong           = 21
          sobkz_missing         = 22
          sonum_missing         = 23
          bestq_wrong           = 24
          lgber_wrong           = 25
          xfeld_wrong           = 26
          date_wrong            = 27
          drukz_wrong           = 28
          ldest_wrong           = 29
          update_without_commit = 30
          no_authority          = 31
          material_not_found    = 32
          lenum_wrong           = 33
          OTHERS                = 34.
      IF sy-subrc NE 0.
        MOVE sy-subrc TO g_rc.
        message_id     = sy-msgid.
        message_number = sy-msgno.
        message_var1   = sy-msgv1.
        message_var2   = sy-msgv2.
        message_var3   = sy-msgv3.
        message_var4   = sy-msgv4.
        PERFORM error_message.
      ENDIF.
    So I'll reward Arnold eventhough I got the answer earlier .....
    Cheers!

  • I am currently using Lightroom 5.6 and operating on a Mac with OSX Ver 10.9.5. I am receiving an error problem when doing the following -  I am exporting selected photos from a particular Catalogue saved on Drive 1 to a folder created on another Drive whe

    Hi, I am having a little trouble with exporting images to another drive and Catalogue and need some help if anyone can give me some advice
    I am currently using Lightroom 5.6 and operating on a Mac with OSX Ver 10.9.5.
    I am receiving an error problem when doing the following -
    I am exporting selected photos from a particular Catalogue saved on Drive 1 to a folder created on another Drive where a Lightroom Catalogue has been created. In this Catalogue I have arranged for the images once exported to be moved to a different folder - I used the Auto Import process under the File dialogue box.
    When processing the Export I receive an error message for each of the images being exported indicating the following -
    Heading Import Results
    Some import operations were not performed
    Could not move a file to requested location. (1)
    then a description of the image with file name
    Box Save As                                  Box  OK
    If I click the OK button to each image I can then go to the other Catalogue and all images are then transferred to the file as required.
    To click the OK button each time is time consuming, possibly I have missed an action or maybe you can advise an alternative method to save the time in actioning this process.
    Thanks if you can can help out.

    Thank You, but this is a gong show. Why is something that is so important to us all so very, very difficult to do?

  • I am having a problem when I try to select a photo or itunes song in Imovie or other programs. I get a window with grey lettering that says: "Open Itunes to populate this list" or "Open iphoto to see photos from your iPhoto library in this list.  I have t

    I am having a problem when I try to select a photo or itunes song in Imovie or other programs. I get a window with grey lettering that says: "Open Itunes to populate this list" or "Open iphoto to see photos from your iPhoto library in this list.  I have tried relaunching programs and nothing appears. Seemed to start happening a while back after one of my system upgrades.

    After a a lengthy conversation with Apple Tech. ($20), my problem seems to be solves. The Iphoto problem solved by trashing the plist file. The Itunes was more involved. We had to create a new Itunes folder and import the files into the new folder; and then import the playlists.

  • Itunes 10.6.1.7 problem: when I change the file "media type" from 'Music' to 'Podcast' the file disapears from ITUNES. I do this via (1) right click, (2) select 'Get Info', (3) select 'options' tab, and (4) change media type. What is the problem?

    Itunes 10.6.1.7 problem: when I change the file "media type" from 'Music' to 'Podcast' the file disapears from ITUNES. I do this via (1) right click, (2) select 'Get Info', (3) select 'options' tab, and (4) change media type. What is the problem?

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • Why won't Firefox 4 on Mac OSX 10.6.7 quit when QUIT is selected? The window closes, but the application remains open necessitating a forced-quit. Until recently it worked fine. I've reinstalled Firefox but the problem persists.

    Firefox 4 on Mac OSX 10.6.7 won't quit when QUIT is selected.
    The window closes, but the application remains open necessitating a forced-quit. Until recently it worked fine. I've Downloaded Firefox again and reinstalled but the problem persists.

    Perform the suggestions mentioned in the following articles:
    * [[Firefox is already running but is not responding]]
    -> Profile in use
    * [http://kb.mozillazine.org/Profile_in_use]
    Check and tell if its working.

  • Problem when exporting Universe to Enterprise

    Hi All,
    I am facing problem when exporting universe to enterprise. I am getting the following error.
    "You do not have the right to add objects to the folder /webi universes" .
    1) I tried logging with admin account still getting the same error.
    2) I tried adding my user id to admin group but still has the same problem.
    I did not make any new changes to security. Do not know what might be the reason. Any ideas would be greatly appreciated.
    Environment: BOXI 3.1, windows server 2003.
    Thanks and Regards
    Sudharsan.

    Hi Prasanna,
    1) I checked the rights on universes for Administartors and Everyone for webi universes folder :
    Universe Security:
          a) Administartors:  Private
          b) Everyone has public.
    User Securtiy:
          a) Administrator : has full access
          b) Everyone : No access
    2) I tried adding my user id to admin group and exported it, but no luck. I also brought a new user into the system (thinking that i might have some restrictions some where)  and added him to admin group and tried with his user id too but still has same problem.
    Thanks
    Sudharsan.

  • Why is my iPhones volume silent only between the hours of 8pm and 7am when the night selection isn't selected? How can I fix my iPhone 4 problem?

    Why is my iPhones volume silent only between the hours of 8pm and 7am when the night selection isn't selected? How can I fix my iPhone 4 problem?

    May be you have turned the DO NO DISTURB in your iphone settings.
    Check as below DND settings
    Settings>>Do Not Disturb
    If you are iPhone is on version iOS 5.X there was a bug which does not let the DO NOT DISTURB function properly.
    SO, its better you to latest iOS version 7.0.4, no other versions of iOS are signed by APPLE hence forth.

  • Chart problems when publishing to Crystal Enterprise

    Hi All,
    I am currently experiencing Chart problems when publishing to Crystal Enterprise. My reports work fine in Crystal Developer but when I publish these to Enterprise, the charts do not show any data, although the numbers come across fine.
    Any suggestions?
    Thanks
    Marc

    Hi Marcbo,
    Just try to publish the report with no data option to enterprise.
    Change the type of viewer to HTML or DHTML.
    Some times reports dont work with activex viewer.
    In general charts dosent throw any problem.
    Thanks,
    Naveen.

  • I have a problem, when i start the project i open the browser window and whenh i select a clip premiere stops working!!!

    i have a problem, when i start the project i open the browser window and whenh i select a clip premiere stops working!!!

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

Maybe you are looking for