Data Management tools to go along with our PeopleSoft applications.

Hi All. 
We're looking into Data Management tools to go along with our PeopleSoft applications. 
So far we have done a little looking into solutions from Informatica for Data-Archiving, Data-Subsetting, and Data-Masking. 
All three appear to have pre-built PSoft solutions, and go after what we are trying to achive. 
I was wondering if anybody could weigh in on the Products, or others that they have used, custom for PeopleSoft Apps (Fin & HR). 
Thank you, Ed

A lot of the time PeopleTools contains a lot of features that we do not know or have forgotten and tend to use external (paid) solutions.
If you do not have a copy yet, please have a look at the following book written by Paula Dean and Jim Marion.
PeopleSoft PeopleTools Data Management and Upgrade Handbook (Oracle Press)

Similar Messages

  • MDM Data Manager step-by-step process with an example

    Hi All,
    I recently started reading MDM. I am clear with MDM-Console concepts. But I have problem with MDM Data Manager. I am confused with data entries in qualified tables, work flows(using microsoft studio), Matching mode- rules(High treshold, low threshold) etc.. I read material posted in forums- but still I am not clear.
    I need a step-by-step process for data entries with *examples*. A good example which covers all Data Manager concepts. PDF's with screen shots, videos any thing would help.
    Please help me......It would be of great help.
    Thanks in Advance.
    Suchir

    Hi Suchir ,
    MDM 5.5 has 4 MDM clients to perform 4 main functionality on the MDM master records.
    - Console- This is where all the Administrative work is performed
    - Data Manager- This is where the actual maintainence work is done on the master data like consolidation deduplication etc.
    - Import manager- Thsi is from where the source matser records are taken into MDM repoistory
    - Syndicator- This is from where teh consolidated master data is send back to the target systems.
    MDM Data Manager is the heart of MDM
    The activities that can be performed in the MDM Data manager are:
    - Data Consolidation
    - Data Validation
    - Data Deduplication
    - Data Assignment
    - Data Governanace
    etc......
    Qualified Table:
    - Qulaified tables are used to store relational records where one field value is determining the other field or fields value.
    - Qualified tables are maintained in Console and can be viewed in Data Manager
    - Qualified Table are viewed under a separate section in Data Manager in the right hand side.
    - Qualified table has Non qualifiers and Qualifiers.
    - Non qualifiers can be seen in the  Qualified table and in the linking Qualified field
    - Qualifiers can be seen separately under the Qualified section in the data manager
    Kindly refer the below link to know more on this:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00a15239-684e-2b10-b8ae-b936b7d1c1fe
    Workflows
    - Workflows are designed in MDM for Governanace
    - You can create the MDM workflow using the MS Visio 2003 stencils in the MDM Data manager in the record mode under the workflow table
    - The saved workflow in DM can then be executed either mnaully or automatically based on teh trigger actions
    - The trigger action for teh MDM wf are record Add,Update,Import,Manual
    Kindly refer the below link to know more on this:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60559952-ff62-2910-49a5-b4fb8e94f167  (MDM Workflows Overview)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90990743-91c0-2a10-fd8f-fad371c7ee40  (Demo of MDM Workflows)
    Matching Mode
    - This mode is exclusively for Master data deduplication
    - We need to create Rules,Strategies,Transformation in MDM data manager in teh record mode
    - Then you need to run these strategies on the selected records
    - Based on your score and threshold set in the strategy MDM will identify duplicate records
    - This score will be seen in teh Matching mode
    - Colour coding is used along with scores to find out dupliactes
    - Green - 100%dupliacte Blue- 50?% Red- No duplicate
    Kindly refer the below link to know more on this:
    /people/michael.reil/blog/2006/05/18/mdm-matching-strategies-for-master-data-consolidation (matching merging in mdm)
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • Graphics Tool set to use in our Windows Application

    I know I am most likely in the wrong forum, but I am unsure where to post.
    I am looking for information about using Fireworks or Photoshop type tools in our companies application. Licensing them or using open source graphics tools such as Paint Brush, AirBrush, Stamp, smudge, burn, dodge, etc. Just a small subset of graphics tools from what is available.
    Does any one konw where I should be to get this info? Calling Adobe has been fruitless for multiple tries.
    Our app is developed in .Net and C#.
    Thank you for any direction you can provide.
    John C.

    Why not get in touch with the folks at Paint.Net who've developed an open-source graphics program in .Net using C# ?
    http://www.getpaint.net/index.html
    Ken

  • BPC5.1 - Data manager package to Stored proc with custom return codes

    Hi all,
    Does anyone have experience passing the return codes from a stored procedure back into the eData "view status" package progress or event log details?
    When my stored procedure throws errors, the offending SQL code shows up in the pacakge details, which is helpful. But what I'd really like is to structure my stored proc with return codes
    0 = everything's wonderful
    1 = invalid category / time combination
    2 = unauthorized
    3 = no data to process
    And then handle these codes as either "completed" "warning" or "error" in the package progress.
    And ideally, I'd like to put some meaningful message about the warnings & errors, directly into the log details, so the user can fix the problem themselves rather than ask the IT guy to trouble-shoot.
    Any tips? I've started playing with using the on-complete, on-success, on-failure routing of different tasks within the DTSX package (SQL 2005), but I'm just working on a trial-and-error basis right now. (With # of errors = # of trials.)
    Thanks,
    Tim

    In case anyone's interested, I've solved this by tracking my return codes as a package variable.
    Within the package, I have conditional logic moving from task to task, evaluating the return code to check for various conditions, and selecting which tasks to perform accordingly.
    In the last task, I run a final stored procedure which posts some data (completion time & status) to a custom transaction log table, and then if the return code is not zero, I script and execute some SQL which I know will throw a "fake" error. The SQL statement itself includes the key information I want the end user to see. For example
    Select InvalidEntitySelection [USEast1],TransactionID [12340]  from ThisTableDoesntExist
    Select UnauthorizedUser [Tim], TransactionID [12345] from ThisTableDoesntExist
    Select WorkStatusIsLocked [USEast1 Actual 2008], TransactionID [12345] from ThisTableDoesntExist
    It's not exactly elegant, but it gets the message across, which is all that I need. In this way, the end user sees that the package failed with an error, and when they look at the package details, they can see the problem. They can pass on the transaction ID to an administrator to look into the details, if they can't figure it out on their own.
    Sorin, I never managed to figure out how to use a VB task to send the information back to the user, plus force the package to end in an error. I'm sure there's a way to do so, but this seems to work for my requirement.
    I'm not entirely happy with the "fake error" approach, but I don't know if BPC has any support for "intentional" programming of errors in the DTS scripting toolset.
    Thanks,
    Tim

  • Merging Libraries, along with our lives...

    When my wife and I got married, we both brought iPods full of our favorite music to the marriage. We have only one computer, and decided to use my iTunes account. The problem with this is she can't put anything new from our library on her iPod, since iTunes want to erase everything. She never had an iTunes account, but used a work computer to rip her entire cd collection to her iPod. Is there any way to either pull the songs from her cd collection off the iPod into our library, or put new stuff from our library on her iPod?

    1). Connect your iPod to your computer. When you get the message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all the songs from your iPod.
    2). When your iPod appears in the iTunes source list change the update setting to manual, that will let you continue to use your iPod without the risk of accidentally erasing it. In manual mode you'll also be able to drag content from iTunes to the iPod is you wish: Managing content manually on iPod and iPhone
    3). Once you are connected and your iPod is safely in manual mode there are a few things you can do to copy songs to iTunes from the iPod. If you only want to copy your purchases to the computer that can be done using iTunes, you'll find details in this article: Copying iTunes Store purchases from your iPod or iPhone to a computer
    For everything else (including purchases) there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. I use Senuti but have a look at the web pages and documentation for the others too. You can read reviews and comparisons of some of them here (you'll find that they have varying degrees of functionality and some will transfer movies, videos, photos and games as well):
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers
    A selection of iPod to iTunes utilities:
    Senuti Mac Only (iPod Touch & iPhone compatible)
    PodView Mac Only
    PodWorks Mac Only
    iPodDisk PPC Mac Only (experimental version available for Intel Macs)
    TuneAid Mac only (iPhone and iPod Touch compatible)
    YamiPod Mac & Windows
    iPod Music Liberator Mac & Windows (iPhone and iPod Touch compatible)
    iPodRip Mac & Windows (iPhone and iPod Touch compatible)
    iPod Music Liberator Mac & Windows (iPhone and iPod Touch compatible)
    iGadget Mac & Windows (iPhone and iPod Touch compatible)
    Floola Mac & Windows
    Music Rescue Mac & Windows (iPhone and iPod Touch compatible)
    iRepo Mac & Windows (iPhone and iPod Touch compatible)
    iPod Access Mac & Windows (iPhone and iPod Touch compatible)
    TouchCopy Mac & Windows (iPhone and iPod Touch compatible)
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide
    4). Keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync.
    5). I would also advise that you get yourself an external hard drive and back your stuff up, relying on an iPod as your sole backup is not a good idea and external drives are comparatively inexpensive these days, you can get loads of storage for a reasonable outlay: Back up your iTunes library by copying to an external hard drive

  • Firefox accelerated release schedule is causing compatibility problems with our intranet applications - where can I find the plan of this schedule including support termination dates?

    We are a university use an in-house developed e-Learning application which makes use of a rich-client framework (ZK - www.zkoss.org). For reasons of compatibility with this application, as well as other general factors, we have standardized on FF 3.6 as the browser for all our desktops. We normally review our browser selection once per year and make compatibility changes/upgrades to the 3rd-party libraries we use, and our own code, in order to keep up with new developments in the browser market.
    However FF's new release policy makes our life verify difficult. FF 6 came out only a few months after FF 5. For us to perform an upgrade we have to perform a systematic series of tests, adjustments, changes to regression tests etc. Due to the cost is not feasible for us to do this every 3 months! Therefore please can someone point us to a clear release plan for FF which shows, for each version:
    a. Release date
    b. End-of-support date
    c. Release notes
    d. Compatibility in terms of HTML and Javascript/ECMAScript versions.

    https://wiki.mozilla.org/RapidRelease/Calendar <br />
    https://wiki.mozilla.org/Releases
    New versions are going to be released every '''6 weeks''', so until Mozilla announces what they are going to do as far as support for an LTS version for enterprise "customers", you guys are left swinging in the breeze as far as being able to plan for the future with Firefox. I think that until that decision is made, support for Firefox 3.6 versions will continue. A 3.6.22 release is being worked on right now, probably for release this coming week.
    As far as support termination dates, as each new version is released support ends for the previous version, except for 3.6.x. Currently Firefox 3.6.x and 6.0.x are the only versions which are getting security updates. Firefox 4.0 and 5.0 aren't "supported" any longer.

  • Google Map is showing another company along with ours

    My goggle maps file seems fine until you zoom in. There is another company named Advanced Agricultural "pinned" in our spot. The company is no longer here. How do I get this corrected?

    Hi Kelly,
    It looks like you need to submit a correction to Google to get this changed. Please check this Google article that talks about how this can be done - Report a problem or fix the map - Google Maps Help
    - Abhishek Maurya

  • Issues bundling NI-CAN dlls along with my CAN application.

    When I try to run my CAN application on a system on which NI-CAN s/w is not installed. It gives the error
    "Application failed to initialize properly (0xc0000142)" [error message is attached]. I included all the NI-CAN DLL's[list got using the Depends utility] under my application installer. It copies the DLL's to the C:\winnt\system32 directory.
    Am I missing any step like registering the DLL's, etc., If so what r the DLL's to be registered ...
    Can anyone please help ...
    Attachments:
    CanAppErrMsg.bmp ‏191 KB

    Hi Vinnayak
    What programming language do you use? If it’s a LabVIEW, this would be tricky to work around. When LabVIEW loads (not executes) a VI, it also loads all dependent DLLs to check, if they are all executable. That way you avoid crashes or hangs if the VI already runs and then it turns out that a particular DLL is missing or doesn’t provide the required function. You can observe this, when you open LabVIEW (nothing else open) and drop a CAN (or DAQmx) VI on the diagram. There is a small delay before the VI actually gets onto the diagram which is caused by loading the required ‘DLL chain’.
    If you know, that you are not going to execute any code that calls into the NI-CAN DLLs, you could create a stub DLL that provides all the function declarations (ncOpen(), ncClose(), etc.) that your VI calls, but has no code in it.
    This is quite a bit of work, depending how many different functions are used.
    If you are not using LabVIEW, you could load the NI-CAN functions dynamically using the Win32 functions getProcAddr() and loadLibrary(). That way the NI-CAN DLL is only loaded when it is actually used.
    Copying individual DLLs will not work as the NI-CAN driver DLLs not only depend their own Win32 service, but other services running which in turn have their own dependencies.
    -B2k

  • Skype crashes (along with any other application) w...

    Alrighty. So, before 7.0 came out, whenever I accessed my camera from any application, that application crashed. (Sadly, this also included my LoginUI.exe and occasionally locked up my computer, forcing me to restart) So, today I've seen from my friends' screen the new 7.0, and I just updated. Whenever Skype opens up, it runs for 1 or 2 seconds then crashes. The only explanation for that is that Skype keeps trying to access my webcam/camera. Any solution to this? Oh, and I've included my DxDiag report below. 
    Attachments:
    DxDiag.zip ‏16 KB

    Skype is crashing when trying to access the FaceRig application (FaceRigVirtualCam.ax).
    https://www.facerig.com/
    Uninstalling this faulty application may rectify the issue.
    If you want to stop Skype from trying to access any video capture device then you can try this:
    http://community.skype.com/t5/Windows-desktop-client/Skype-uses-DVB-T-card-as-camera/m-p/1445497#M12...

  • Data creation in data manager vs. ERP transaction

    Hi experts,
    I have a general question on working with MDM: When I use MDM as central data management tool then I create and change the whole data within MDM Data Manager or maybe in MDM iViews in EP. Doing that way I will loose a lot of positive aspects I had doing this in ERP formerly even when using business content.
    For example:
    - no process logic exists (which I had in ERP dynpros in the code): no preconfigured assignments, validations, relationships, etc.
    - I have to know all relevant tables where I have to do my entries
    - no standard searches for typical problems
    - all roles and authorizations have to be created on my own (except standard roles like Admin, Data Expert, etc.), there is no possibility to transfer authorizations from ERP to MDM (authorizations can be very complex)
    - you need more (expert) know-how to maintain data (which is also a job of business departments)
    - etc.
    So a change to central master data management means a step backwards from a dynpro controlled input GUI to a database frontend with only rudimental features and loosing a lot of functionality that was build within a lot of years.
    Is this right or did I miss something important? I think loosing all this functionality can be a cause for resistance against introduction of MDM central data management in companys.
    Thanks for your answers. Helpful answers will be rewarded.
    BR, bd

    Hi BD,
    CMDM is one of the later stages in using MDM effectively.Before moving to a CMDM scenario it is necessary that ground base is set up.
    - One goes for a CMDM scenario once all the one time data(exisiting data) is already cleansed.So firstly you need to extract all the possible high risk duplicates existing data from the ERP sytem into MDM ,run the matching merging strategies on them and then maintain the consistent data in MDM.Once this step is completed only then it makes sense to go for the creation of new data centrally through MDM.
    - Just like in ECC when a user creates a new material for instance.He has to go through all the views and enter in all the required and optional fields value.In the same way this same scenario can be replicated in MDM by creting a repository with all the fields that one needs to enter while creating a new material. and by using MDM Validations we can simulate the same requirement of mandatory as in ECC.
    - If you go for a Business content repository for Material,Vendor,Product etc you will have all the ready to use Roles with authorizations so its no a much of rework.
    - Standard searches amy not be available in MDM but one can always desig his/her own search based on the customer requirement and MDM searches are very easy to use and also very dynamic.
    I do agree that SAP MDM may not be a fully grown tool at this point of time but with the SAP MDM 7.1 vs most of these drawbacks will be addressed. and besides although ECC can do most of the Master data related work it is not a dedicated system for that purpose and will therefore have an influence on the performance and time involved aspects.
    Hope It Helped,
    Kindly Reward Points if found useful
    Thanks & Regards
    Simona Pinto

  • Is there a photo management tool/plug-in?

    I'm still test-driving LR. It's development functionality is really superb. Far better than any PP tool I've used in the past.
    One shortcoming that I find with LR, though, is its photo management tool.  I used ACDSee Phto Manager, among others, in the past, the photo management function in ACDSee was really good and intuitive. The following functions were really convenient in ACDSee that I find missing in LR.
    Grouping (in addition to sorting) by almost any criteria - original date, day taken, month taken, camera, focal length, etc.
    Displaying any number of attirbutes - camera, resolution, size, etc.
    convenient batch renaming
    Easy copy and move
    As you can see, these are all file management functions. Does LR have these functions as well?
    If not, maybe I'll have to use two tools after all - LR for development, and ACDSee Photo Manager for file management.

    Certainly, Lightroom is a photo management tool that compares well with ACDSee. There are probably advantages and disadvantages to each, but everything on your list is present in LR except the display of resolution (if by that you mean pixels per inch of the photo).
    Grouping like this can be done via the filter bar or smart collections
    The metadata panel displays attributes
    F2 renames in batches
    Moving photos is done via the folder panel. LR does not make copies, as the Lightroom paradigm does not include making actual copies; it does include virtual copies. You of course can create copies via a different tool, File->Export. You can make copies in your operating system.
    But if you want LR to have the same workflow/features/ease of use/etc, as ACDSee (or Bridge, or Photoshop Elements, or any other program), let's be honest, it does not. Programs work differently. You will have to learn the methods and mechanics of each program. Each has its pros and cons, and LR has many "pros" to its photo management tools.

  • Translation Management Tool (BI 4.0) fails to import Crystal Reports

    I am trying to use the Translation Management Tool on Crystal Reports in our CMS Repository. When I try to import the reports the Import Status indicates a Fail but does not give an error message. When I click on the failed item the tool displays com.businessobjects.sdk.oca2.translation.internal.TranslationServiceException in red in the bottom of the window.
    Can anyone help with why I cannot import these reports?
    -Byron Clairoux
    Treasury Board Secretariat

    It is good to have what I suspected was happening confirmed, and that it is at least noted in the documentation. A less cryptic error message would be helpful - something clearer than the current "com.businessobjects.sdk.oca2.translation.internal.TranslationServiceException" message that is displayed if you try and import a CR 2011/2013 report.
    Thanks for the responses
    -Byron

  • Exchange 2010 management tools and others

    Win2k8 domain, Exchange 2010 servers
    We want to move to Win8.1 but we, the admins, are preventing it because our tools like the Exchange 2010 Management tool doesn't work with Win8.0 so we're stuck with Win7.
    I've googled around and most suggestion never worked.
    Does Microsoft have any plans at all to have Exchange 2010 management tools and other tools we use to manage our domain work with Win8.1?

    Hi Rino, 
    Thanks for your sharing and efforts put on this issue. 
    This will benefit others who encounter the similar scenario as yours.  
    Happy holiday~
    Kate Li
    TechNet Community Support

  • Scxi 1126 frequency measurement along with other scxi modules

    I want to measure frequency signal using sxci 1126. I have gone through the example code for sxci 1126. I am using NI-DAQ and Labview 7.1.
    The example code is applicable when am acquiring only from 1126. I have to acquire data also from 1102 102B along with 1126.
    In the example code along with AI config.vi and Ai Start.vi there are two additional vi's like AI paramete.vi and AI Trigger config.vi I understand that they are used for reading from 1126. My worry is how this is going to affect my acquisition from other scxi modules as all the modules are in multiplexed mode.

    Hi Bipin,
    Looking at your code, I see that you are still using Traditional DAQ. Since you have LV 7.1, you can take advantage of the new features of DAQmx.
    With DAQmx, you can create a virtual task that includes all of the different types of measurements you want to make. Once you set up the task in MAX, you can place it on the block diagram and automatically generate the code necessary to execute this.
    To do this, open up the Measurement and Automation Exlporer (MAX). Select "Data Neighborhood" from the tree on the left. Then click the button labeled "Create New." Create a DAQmx Virtual Channel. Follow the series of menus to set up your first type of acquisition (1126 frequency measurement). When you are
    done creating the task, you can add the second type of measurement to that same task. In the task config page, you will see a white box with the name of the channel you just created in it. Above the name you will see an "Add" button. Click on this button and follow the menus to set up your second measurement (1102 module).
    Once they are set up, save the task and open LabVIEW. Place the DAQmx Task Name constant on your block diagram found in All Functions >> Data Acquisition >> DAQmx... the task name constant is a purple colored box. Clicking on the box once its on the block diagram will expand a menu that will let you choose your task. Once selected, right click on the task name and choose Generate Code >> Example. This will automatically generate the code necessary to run the tasks. Simply hit the run button and enjoy!
    Thanks,
    Sal

  • Bundle a few docs along with AIR app

    Hi,
    I need to bundle a few PDF and word docs along with my AIR
    application when it is installed by the user.
    I don't want to Embed the documents in the actual AIR app,
    but just ensure that the files get included in the AIR installation
    and end up in the application's install folder on the client system
    so that the AIR app can access them at runtime.
    How can I do this with the AIR app packaging/installer
    process?

    It depends on which tool your using for packaging, but I
    believe they all have UI to select which folders/files are included
    and which are not.

Maybe you are looking for

  • How to handle error messages in BDC background mode

    Hi experts,   I got one problem in BDC, We are uploading data throgh BDC program,that program is calling Standard Batch Input programs, Now we got one requirement, i.e., In some special cases we have to send one message as a error message.I handled t

  • I have an iPhone 4 on contract and its not working correctly , what should I do ?

    I have an iPhone 4 on contract , I only have this 5 and a half months and the iPhone is not working correctly and i do not have insurance .. What should I do ??

  • Open pdf attackment in work item in browser and not in SAP GUI

    In portal (central worklist) i am opening workitem and when i click on the pdf attachment it opens pdf in SAP GUI. I would like to open this attachment in a regular browser. I create the pdf attachment as follow:   CALL FUNCTION 'FP_FUNCTION_MODULE_N

  • Internal airport card ID

    I have a G5 imac 3 1/2 years old and where do I find what card is installed from the factory? 802 n or 802 g or what the card is. Thank You Dcik

  • Best ways to get disk space back

    I need suggestions for clearing unnecessary items from my 60GB internal HD. I have 5.4GB left given that iTunes and iPhoto are getting so big, but need to work from internal for efficiency. I have 1.5TB of external storage and use it for iMovie etc.