Update Organisation

Hello,
I would like to update the organizational structure, e.g. change the assignment of an org. unit.
I tended to use the function module OM_CREATE_NEW_RELATIONS. But then I read in this forum, that the function module RH_RELATION_MAINTAIN is "straight forward" and therefore should be used.
If I take a deeper look into the coding, the two function modules seems to differ pretty much.
Can somebody tell me which function module is better to use?
Thanks!
Martin

Hi Rob,
just to get you right:
E.g I want to move a user from one org.unit to another I have to call the RH_RELATION_MAINTAIN 2 times: first with function code DEL in order to delete the current relation and then with function code INSE in order to create the new relation? There is no possibility to do it in one step?
Best regards,
Martin

Similar Messages

  • Std price not updating

    Hi,
    When I am doing cost/mark/relaese for a material. The planned price in the mat master is being updated. But, the std price remains the same. Please help.
    Regards,
    Umesh

    Hi Umesh...,
    Check where Posting period/fiscal year for your company code. if posting period/fiscal year is not same as the costing run then you can't update the std price.
    To check it go to T.cod CK24 give the period and fiscal year the Click Mark allowance then you will directed to "Price update:organisational measure screen"
    check whethere any error is there against your company code if so then click on your company code and then select corresponding costing variant and costing verions in the popup scren and same.
    error mark will go. now you can update price for material.
    regards.

  • Using Variable with if condition?

    Hi Gurus,
    I have this xml structure below. I have this 3 columns for my report.
    1. Registrations: If Register is associated to a Create transaction then the value is “Y” Otherwise this value = “N”
    For Create Transactions, TRANSACTIONTYPE values are: 'Apply for Registration' and 'Apply to Vary a Registration'
    2. Cancellations: If Register is associated to a Cease transaction then the value is “Y” Otherwise this value = “N”
    For Cease Transactions, TRANSACTIONTYPE values is: 'Apply to Cancel'
    3. Updates: If Register is associated to a Maintain transaction then the value is “Y” Otherwise this value = “N”
    For Maintain Transactions, TRANSACTIONTYPE values are: 'Update Business Name', 'Update Person', 'Update Organisation' and 'Update Address'
    Expected Output:
    Register Entry Number     Registrations     Cancellations     Updates
    1-39444804     Y     Y     Y
    1-45786091     N     N     Y
    1-41181452     Y     N     N
    xml:
    <ROWSET>
    <ROW>
    <REGISTERENTRYNUMBER>1-39444804</REGISTERENTRYNUMBER>
    <TRANSACTIONTYPE>Apply for Registration</TRANSACTIONTYPE>
    <TRANSACTIONSTATUSDATE>null</TRANSACTIONSTATUSDATE>
    <REGISTERENTRYTYPE/>
    <REGISTERENTRYNAME/>
    <REGISTERENTRYSTATUS>Registered</REGISTERENTRYSTATUS>
    <DATEREGISTERED>2012-03-03T00:00:00.000+11:00</DATEREGISTERED>
    <DATEDEREGISTERED>null</DATEDEREGISTERED>
    <NEXTRENEWALDATE>null</NEXTRENEWALDATE>
    </ROW>
    <ROW>
    <REGISTERENTRYNUMBER>1-39444804</REGISTERENTRYNUMBER>
    <TRANSACTIONTYPE>Apply to Cancel </TRANSACTIONTYPE>
    <TRANSACTIONSTATUSDATE>null</TRANSACTIONSTATUSDATE>
    <REGISTERENTRYTYPE/>
    <REGISTERENTRYNAME/>
    <REGISTERENTRYSTATUS>Registered</REGISTERENTRYSTATUS>
    <DATEREGISTERED>2012-03-03T00:00:00.000+11:00</DATEREGISTERED>
    <DATEDEREGISTERED>null</DATEDEREGISTERED>
    <NEXTRENEWALDATE>null</NEXTRENEWALDATE>
    </ROW>
    <ROW>
    <REGISTERENTRYNUMBER>1-39444804</REGISTERENTRYNUMBER>
    <TRANSACTIONTYPE>Update Business Name</TRANSACTIONTYPE>
    <TRANSACTIONSTATUSDATE>null</TRANSACTIONSTATUSDATE>
    <REGISTERENTRYTYPE/>
    <REGISTERENTRYNAME/>
    <REGISTERENTRYSTATUS>Registered</REGISTERENTRYSTATUS>
    <DATEREGISTERED>2012-03-03T00:00:00.000+11:00</DATEREGISTERED>
    <DATEDEREGISTERED>null</DATEDEREGISTERED>
    <NEXTRENEWALDATE>null</NEXTRENEWALDATE>
    </ROW>
    <ROW>
    <REGISTERENTRYNUMBER>1-45786091</REGISTERENTRYNUMBER>
    <TRANSACTIONTYPE>Update Person</TRANSACTIONTYPE>
    <TRANSACTIONSTATUSDATE>null</TRANSACTIONSTATUSDATE>
    <REGISTERENTRYTYPE/>
    <REGISTERENTRYNAME>test</REGISTERENTRYNAME>
    <REGISTERENTRYSTATUS>Registered</REGISTERENTRYSTATUS>
    <DATEREGISTERED>2012-03-27T01:00:00.000+11:00</DATEREGISTERED>
    <DATEDEREGISTERED>null</DATEDEREGISTERED>
    <NEXTRENEWALDATE>null</NEXTRENEWALDATE>
    </ROW>
    <ROW>
    <REGISTERENTRYNUMBER>1-41181452</REGISTERENTRYNUMBER>
    <TRANSACTIONTYPE>Apply to Vary a Registration</TRANSACTIONTYPE>
    <TRANSACTIONSTATUSDATE>null</TRANSACTIONSTATUSDATE>
    <REGISTERENTRYTYPE/>
    <REGISTERENTRYNAME>mel</REGISTERENTRYNAME>
    <REGISTERENTRYSTATUS>Registered</REGISTERENTRYSTATUS>
    <DATEREGISTERED>2012-03-12T00:00:00.000+11:00</DATEREGISTERED>
    <DATEDEREGISTERED>null</DATEDEREGISTERED>
    <NEXTRENEWALDATE>null</NEXTRENEWALDATE>
    </ROW>
    </ROWSET>
    Kind Regards,
    jP
    Edited by: BIPnewbie on Apr 1, 2012 8:38 PM
    Edited by: BIPnewbie on Apr 2, 2012 3:18 AM

    Hi JP,
    see my solution below
    ---declare your variable first---
    <?xdoxslt:set_variable($_XDOCTX,’vRegistration’,'N')?>
    <?xdoxslt:set_variable($_XDOCTX,’vCancellation’,'N')?>
    <?xdoxslt:set_variable($_XDOCTX,’vUpdates’,'N')?>
    add the following codes per column in your table
    Register Entry Column:
    <?for-each-group:ROW; REGISTERENTRYNUMBER?>
    <?REGISTERENTRYNUMBER?>
    <?for-each:current-group()?>
    <?if:TRANSACTIONTYPE=’Apply for Registration’ or TRANSACTIONTYPE=‘Apply to Vary a Registration’?><?xdoxslt:set_variable($_XDOCTX,'vRegistration',’Y’)?><?end if?>
    <?if:TRANSACTIONTYPE='Apply to Cancel')?><?xdoxslt:set_variable($_XDOCTX,'vCancellation',’Y’)?><?end if?>
    <?if:TRANSACTIONTYPE=’Update Business Name’ or TRANSACTIONTYPE= ‘Update Person’ or TRANSACTIONTYPE=’Update Organization’ or TRANSACTIONTYPE=’Update Address’?><?xdoxslt:set_variable($_XDOCTX,'vUpdates',’Y’)?><?end if?>
    <?end for-each?>
    Registration Column:
    <?xdoxslt:get_variable($_XDOCTX,’vRegistration’)?>
    Cancellation Column:
    <?xdoxslt:get_variable($_XDOCTX,’vCancellation’)?>
    Updates Column:
    <?xdoxslt:get_variable($_XDOCTX,'vUpdates')?>
    <?xdoxslt:set_variable($_XDOCTX,’vRegistration’,'N')?>
    <?xdoxslt:set_variable($_XDOCTX,’vCancellation’,'N')?>
    <?xdoxslt:set_variable($_XDOCTX,’vUpdates’,'N')?>
    <?end for-each?>
    I already try those codes in the template that i've created and it works.
    Inform me if you have any other questions..
    mr_bip_learner

  • Setting correct Media Folder in 9.0.2

    Since version 7 (or before) I had always set as Itunes Media folder location a share on my Nas like "Q:\Music" and the two options "keep organized" and "copy when adding" checked.
    Itunes was able to create under Q:\Music the folder with the artist name and inside this the album folder etc.
    Starting from 9.0.2 (I think...) with those setting I have a strange behavior.
    If I leave Q:\Music as folder location, when I add a song he create the artist folder in Q:MusicMusic
    Actually, he create a second "Music" subfolder inside mine.
    So I though to cheat him setting "Q:\" as folder location, but in this case he create the artist folder on the ROOT of the disk !!
    Is this a bug ? what can I do to restore the previous situation ?
    Thanks in advance
    Message was edited by: SandroRiz

    @ Wakefields3 - Sorry not to have picked up on this earlier...
    Wakefields3 wrote:
    Hello tt2, I have been reading these posts and trying to get my head around how iTunes works.
    Currently I have D:\music and all the folders beneath this, including a new iTunes\Album Artwork and iTunes\Media.
    We previously had an earlier version of iTunes but have since purchased a new computer and loaded v9.
    Today I was looking at my folder structure and noticed many duplicates and incorrect spellings, so decided to manually go through and tidy up (using Windows 7 explorer).
    Now of course my iTunes library is showing many songs that it can't locate (go figure I should have just left the awful mess alone). I don't really want to have to go through and manually locate each file.
    Not a good move - unlike Windows Media Player, iTunes won't watch your media folders and catch up if you move things about manually. Changing files names also has no impact on tag values so changing the name of the Artist folder won't correct what you see in iTunes or on your iPod.
    I use iTunes Folder Watch (iTFW) to catch files that for one reason or another have been added or removed from the media folders. It's not so bad on adding new items but it rescans the libary after each delete which is rather inefficient. I've not used the feature but FolderWatch can try to maintain the rating if it can see a file has just moved location.
    If you want a simple list of all files that can no longer be found in iTunes create an empty playlist called Found. Select the Music source. Select all items with CTRL-A. Drag this selection onto the new playlist and hover over it holding the mouse button for several seconds until a number displays how many items should be copied. Release the mouse button. Although the number will be the number of items in the Music source only items that can be found will be added to the list. Make a new Smart Playlist called Missing. Match all rules *Playlist is Music* and *Playlist is not Found*. This playlist should contain all the items that are not where iTunes expects them to be and thus have a little exclamation mark. They can be removed en masse from iTunes with CTRL-A to select and SHIFT-DELETE. You can then add the currently unlinked files using ITFW or just get iTunes to scan your entire media folder.
    Note if you have any WAV files these don't support tags so data could be lost if you remove & add in this way. These are best reconnected by attemtping to Get info and then searching for the file in the new location before you worry about repairing the rest of the library.
    We also have an AppleTV, some movies and some tv programmes, and an iPod Nano that we have to keep track of.
    We have some old folders under Various Artist and Various Artists - no real consistency there.
    iTunes likes to put compilations in a Compilations folder. It has a custom tag field not used by other media management tools called *Part of a compilation*, any file with this flag set will be put in *Compilations\<Album>\## <Name>* and may be treated slightly differently on various flavours of iPods. Everything else is sorted as *<Album Artist|Artist><Album>\## <Name>*.
    For more gory details see my page at http://www.samsoft.org.uk/iTunes/grouping.asp - if you decide to let iTunes manage things then leave iTunes to tidy up as you update tags, otherwise I'd suggest standardising on Various Artists or using the Compilations folder before the tidy up described above.
    What I want to know is how to make maximise iTunes and help it work best.
    Use iTunes to manage your library where possible rather than Explorer or other tools. It's also a good idea to switch off the media update & organising features in Windows Media Player so it doesn't fight with iTunes.
    Therefore:
    1) Should I really change my folder structure to D:\iTunes?
    Not unless you want to. If the library was in the standard structure as in the illustration moving from D:\Music\iTunes to D:\iTunes would be trivially easy, but given that things are slightly disorganised I'd leave that until later.
    2) If so, can I just manually move the folders to be under D:\iTunes
    You would just move the folder iTunes from D:Music to D:\ then delete D:Music. Note Vista/Win 7 make this trivial manipulation complicatated by calculating the size of all the files that are going to be "moved" instead of getting on with it. They should in fact all stay just where they are with the one folder entry being maipulated. When Windows finishes the folder move click the icon for iTunes and when prompted naviagte to the library file in D:iTunes.
    3) How do I get the iTunes library to ignore the old path and look only at the new one (if I do move the folders)
    When you move the library this way iTunes should realise that the media folder location has changed and update the preference accordingly. You can check under *Edit > Preferences > Advanced*.
    4) If I do this I imagine I then let iTunes organise the albums - this is currently turned off.
    You don't have to do this... I manage my library manually as I don't like iTunes truncating file & folder names and prefer to keep a few sections of my library separate. WIth iTunes set to "Keep organised..." any updates you make to tag info. in iTunes should get reflected in the file strcuture and there's a valid argument that the underlying files & folders don't really matter, what matters is what you see inside the various applications you use to manage the library.
    5) And the big bug gear that got me into this trouble in the first place - when I import an album sometimes the artist's name is incorrectly spelt - is there a way around this?
    You can edit details before or after importing from CD. If you let iTunes manage your files then file & folder names get updated (with some limitations on string lengths), otherwise if you want to manually manage then you should where possible update in iTunes, tweak track names in Explorer (or use another tool), remove from iTunes and then reimport. This should be done Album by Album or Artist by Artist and iTFW can help catch any strays.
    6) And finally, I don't have the media for most of these songs - we left it in storage when we shifties countries, so I can't import again.
    Backup, backup, backup... As long as you have the files you can rebuild the library. Once you get your library organised backup the whole thing...
    *Fast backup for iTunes library (Windows Only)*
    Grab SyncToy 2.1, a free tool from MS. This can copy your entire iTunes library & any other media folders onto another hard drive or network share. You can then use SyncToy periodically to synchronise or echo your library to the backup. A preview will show which files need to be updated giving you a chance to spot unexpected changes and during the run only the changed files will be copied saving lots of time.
    tt2

  • Working off a remote harddrive

    Please could someone tell me is it possible to keep all my photos on a remote harddrive and then organise, edit etc them using photoshop elements 4.0 on windows vista?
    Ideally i would like to work off my remote hard drive (with all the photos on) and then use two computers to update, organise, tag and edit etc my photos is this possible...if so how do i do this?
    How would i then back my photos up?

    >change edit them via two computers....maybe with two different forms of photoshop!
    There is no way to have two different versions of elements update the same catalog, for one thing. When you upgrade to a new version of elements your catalog converts, yes, but the old catalog is not aware of changes made to the new catalog, and the new catalog is not aware of subsequent changes to the old version.

  • Some backend documents could not be generated or are incorrect - Contract

    Hi SRM Experts,
    I am trying to create Contract with Carry out Sourcing and reference to Shopping Cart. But, I am able to create Contract with Error like "Some backend documents could not be generated or are incorrect". Please let me know do I need to do any configuration settings or implement OSS Note to fix for my problem.
    Kind Note: System is not updating Purchasing Organisation and Purcgasing Group at Contract Header Level. I treid to use BAdI (change BAdI) to update Organisation details - got Organisation details from Shopping Cart and updated in Contract change BAdI (Org Structure).
    SRM Version: 4.0 with Extended Classic scenario.
    Thanks a lot in advance for your help.
    Thanks,
    Sudarsan

    Hi Muthu / SRM Gurus,
    I removed BAdI implementation for Contract. I am still gettign error message.
    When I create contract from Carry Out Sourcing I am geeting error message "Some backend documents could not be generated or are incorrect" and when I create contract with Process Contract I am not getting any error.
    Can anyone guide me or suggest me to fix this issue?
    Thanks a lot in advance.
    Thanks,
    Koyya

  • OBIEE Multiple Employee Organisation Hierarchy Version update - duplicating workforce totals

    Hi,
    On creation of a new version of the Employee Organization hierarchy, some of the OBIEE dashboards & analyses that were oracle seeded function show ...
    Total Employee headcount  =   total employee headcount from hierarchy ver 1 + total emp headcount hierarchy ver 2
    Which is incorrect and misleading in the reports. (Similar issues for FTE..... )
    Firstly, is this normal ----- or has the versioning been implemented incorrectly, or is there missing aggregation at the Ebusiness, BI rpd or dashboard level?
    Secondly, what is the best solution to display the relevant hierarchy based on the report dates?
    If there is further aggregation needed, how can this be added without needing to update it every time a new employee organization hierarchy version is copied?
    Thanks,

    For my solution it was done through a button with 2 commands.  These commands are SET_HIERARCHY and then SET_AXIS_HIERARCHY.  These 2 commands seem to be necessary as the SET_HIERARCHY simply sets the level of where the hierarchy is expanded to and the SET_AXIS_HIERARCHY enables the display of the expanded hierarchy on the axis you choose, usually  in the rows.
    SET_HIERARCHY:
    Data Binding
    Characteristic: Organisation Unit
    Command-Specific Parameters
    Active: On
       Heirarchy Identifier
    Name of Hierarchy: ORGEH (ORGEH)
    Version: 01
    Key Date: 0DAT
    Initial Drill Level: 16 (Note: this is the maximum level anticipated in Organisation Unit, so fully expanded)
    SET_AXIS_HIERARCHY
    Data Binding
    Axis: ROWS
    Command-Specific Parameters
    Active: On
    Description: Default
    Initial Drill Level: 1 (Note: this is the level of the characterisitic Organisation Unit from the query Rows axis, not the hierarchy level)
    Hope this helps.
    Regards,
    Joe

  • Installed new update iTunes Saturday - My file directory could not be found, so reset the directory path, 'it' asked me if I would like 'it' to re organise filing, I selected yes - Many tunes have been duplicated, some have disappeared. Any help?

    Hi,
    Installed a new update iTunes Saturday - My file directory could not be found, so I reset the directory path, and 'it' asked me if I would like 'it' to re organise my filing, foolishly (as a beginner, without checking)  I selected yes - Many tunes have been duplicated, some have disappeared? Trawled through lots of misleading help files, mailed friends, tried many back routes into Apple web sites and they all wasted my time. Can anyone help?
    I have discovered since then, that this resorce has been down over the weekend, which probably explains why I have had so many contradictory responses, so apologies if you all know what the prolem is.
    My question is, my TIME MACHINE (which has not been used yet) was tried but looked nothing like that of the U Tube demo, so I am assuming that it needs setting up, however, it has been saving, I just do not know how to recover the data. Can anyone help?
    Regads,
    Cyfrommayo

    (If you have a Time Machine backup, go to your User folder/Music/iTunes and select iTunes. Enter Time Machine and go to a backup of iTunes before the above happened. Then select 'Restore' on the bottom right.)
    Eric,
    Many thanks for your help.
    Apologies for not being as skilled as you. I am unable to see what you are saying, can I ask, should I be in TIME MACHINE when I go to User folder/Music?iTunes or iTunes or Finder?
    Cyfrommayo

  • Update an organisational model from an Excel file.

    Hi,
    I have made an extraction of an existing organisational model in an excel file.
    Is it possible to update the existing organisational model or create a new one from the excel file?
    Any standard program or function module that can help me to do it.
    Thanks,

    Hi,
    I think two interesting FM could be
    BBPU_CREATE_ORGUNIT_AND_BUPA (O creation)
    BBP_UPDATE_ATTRIBUTES (PPOMA attributes)
    I hope this help
    Jorge

  • Organiser of calendar invite is not seeing the updated date & time of a meeting they rescheduled.

    A user organised a meeting and sent it to 3 recipients. All 3 recipients responded to the meeting invitation. This invitation appeared in all four calendars. The organiser then dragged the meeting invite to another day, thus changing both the date and time.
    As part of this action the organiser accepted ‘save changes and send update’.  The organiser received responses to the new meeting time. The meeting appears in all 3 original recipients calendars. However, the new date and time is not visible in the organisers
    calendar. This calendar still reflects the original date and time – nothing has changed.
    Background: the client is running Outlook 2010 (14.0.6023.100).  Exchange 2007 RU 15.
    On the organisers Outlook profile I can see two items in the sent items folder. One for the original meeting invite and one for the second updated meeting invite. The option to accept the meeting invite is greyed out for the organiser as expected. If I drag
    the second meeting invite (with the new date and time) to organisers calendar, with the intention of adding this to their calendar, I am prompted that ‘…as meeting organiser, you do not need to respond to the meeting…’.
    There are no errors reported in the synchronisation folder.
    The same experience is visible in OWA.
    Any ideas?

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Photoshop Organiser Update to 10

    I recently updated my Photoshop Elements & Premiere to 10 - which now can view my .tod file extensions. Yesterday I was cleaning my harddrive & uninstalled the previous versions of 4 / 6 - my organiser now keeps crashing (opening in my catalog which contains all the tod files. Windows states there is an issue with FFmpeg - that it is not working properly. Your help is much appreciated!

    Also to note - elements & premiere 10 still work - its just the organiser that crashes. Gives me about 3 secs in the program & dies.

  • I use Office Outlook for mac 2011 to organise my email & calendar. Since updating to OS X Mavericks I have not been able to sync the calendar to my iPhone. What do I need to do to get the calendars syncing again?

    I use Office Outlook for mac 2011 to organise my email & calendar. Since updating to OS X Mavericks I have not been able to sync the calendar to my iPhone. What do I need to do to get the calendars syncing again?

    Jason The Hague wrote:
    Thanks!  But seriously why have Apple disabled the info sync on iTunes?  By 'Upgrading' to Mavericks I've inadvertantly disabled my Apple mobile devices from fulfilling their function.  Come on Apple work with us here!!
    Apple told developers they were removing that service over two years ago. The developers that depended upon it should have done something about it.
    Why did they remove it? My guess is because it was pretty crappy, was difficult to maintain, and wasn't a good solution for multiple devices that could get the info without tethering to a "base" Mac.

  • I forgot my Apple ID password and security question. Also the email I'd is not accessible as the organisation has stopped their email service. How can I now update my applications which I downloaded using this Apple ID. Please help

    I forgot the password of my Apple ID that I used for downloading apps when I newly bought my mac book back in 2011 October.
    Now I forgot the password and also the security question.
    Also the email service provider has stopped their email service and hence m not able to use email authentication as well.
    Now I am lost, how will i update the applications that I downloaded using this Apple ID.
    Please help

    Saunakhvshg,
    contact Apple directly.

  • Organisation is not updating in the BP relationship

    Hi,
    1.
    In PPOMA_CRM , i assigned my BP(employee)  to one position of one organization( O1).
    Then I open the BP transaction. i went to the relationship . I am able to see the Organization O1 in the "Is employee of" relationship.
    2.
    Again i went to  PPOMA_CRM , i deleted my assignment of my BP(employee)  from the  position of  organization( O1).
    Then I open the BP transaction. i went to the relationship . I didnt  see the Organization O1 in the "Is employee of" relationship.But sometimes the Organization is not getting deleted from the BP relationship.(This is the Problem i am facing).
    To reproduce this issue. I tried as below.
    1. Open BP tcode.
    2. Enter the  BP  no and goto Relationship
    3. Then Open PPOMA_CRM
    4. Asssign BP  to one Org
    5. Then come to BP . The updated Org will not display.. Reopen the BP and check Relationship. U can see the correct Org.
    6. After that in the same session of BP , try to delete that Org using the Delete Button below.U wil get error message .
    (Now you can goto SM12 tcode and check the lock entry . U can see the But050 table there. That means the table got locked).
    7. Now in PPOMA_CRM, delete the assignment of ur BP from that Org.
    8. Now reopen the BP again and Check the relationship. U can see the ORG will be still there. Because the table But050 is already locked in stpe 6.
    But i dont think this is the right way to reproduce this issue. But i think somehow the table(BUT050) is getting locked while deleting the assignment of  the BP from the Org and then save it  in PPOMA_CRM, which results in wrong organization in BP relationship.
    I checked in But050 . This table also updated with wrong Org
    Please guide me  how can i solve this issue.
    Thanks
    Sudhansu

    Hi,
    Use the SAP Note 573284. This note is applicable for 3.x and 7.0. Make sure that the system is set to modifiable in SE06 and SCC4 while running the RS_PERS_ACTIVATE program.
    Hope this helps.
    Regards,
    Srikanth N

  • Photoshop elements 8 organiser is either corrupt or version is out of date & cannot be updated

    Can anyone help please? Purchased software on 9 Feb. Catalogue was fine at first but was unable to open it yesterday. Unable to repair it in catalogue manager. Have uninstalled and re-installed it 2 or 3 times but organiser still will not launch.

    Try making a direct desktop icon for the Organizer and Editor and that will bypass the welcome screen and any advertising.
    On Windows right click on the desktop and select New >> Shortcut
    Browse to Computer OS C:
    And find the PSE Organizer application in Program Files or Program Files (x86) on Windows 7 - 64 bit.
    Inside the Adobe >> Photoshop Elements Organizer (yellow folder) you are looking for an application file “PhotoshopEementsOrganizer” with six small icons (e.g. representing thumbnails)
    Select it and click OK
    Click next
    Rename by taking out Photoshop Elements leaving just the word Organizer
    Then click finish
    You should now be able to launch directly form the desktop by double clicking on the icon.
     

Maybe you are looking for

  • Itunes wont open at all and its not responding

    okay hi im new to the this but ive been using itunes forever...uhm i kno there has been alot of topics relating to this but i have read everything and it didnt help,.. uhm i tried to install the microsoft cleining thing and i did but i cant find the

  • VS Project build fails on TSQL Code in script.

    Hi there, I have the following issue on which I've done some research, but nothing helps. The database project I am working on compiles everything but one script. The scripts folder has 3 scripts, a controller that calls the remainder two. One of the

  • Search and replace string not work as per required

    please find the attachment. i am trying to replace the variable names but it doesnt replace the variable as i expected. Please help me in this Attachments: Replace String.vi ‏8 KB Replace String.vi ‏8 KB

  • How best to include additional on-page info (*as well as*) page numbers in a Table of Contents?

    Hi all - I'm creating a directory / listings document. At the end of the publication, I need to create a "quick reference" section - with an alphabetised listing of each entry, some key info from each entry, and the page number for each entry. I've c

  • Installing a Blu Ray Opitcal Drive in G5

    Hello, I've just recently brought a PlayStation 3 and enjoying the Blu Ray goodness! though looking at the Power Mac G5 and its current dvd optical drive i was wondering if i can install a Blu Ray Rewriter in the g5 and whether Leopard and the apple