PPOME - Can't insert the SAME task for different organization unit

Hi all,
I have a doubt; in SAP 46C, it seems that is impossible to insert in PPOME, Detailed window, Tasks tab the same task for different organization unit. The only way to do this is in PP01 - General management, where you can explicitely create a [B-007] relations with the same "T" Object. Now, it is a little bit difficult for a user to switch from PPOME ad PP01 when defining new organizational structure.
The question: is there any way to insert the <b>SAME</b> task directly in PPOME, overwriting the standard behaviour of the system that by default create a new task for each new insertion?
Thanks all
Paolo

Hi Naveen
thank you for your prompt reply.
The issue that I want to solve is that some organization unit (not all) must be flagged for an external export to another system, depending on some characteristic of each org unit. I didn't find a similar attribute on standard field, so I thought to insert a common task to all the org units to export, so that this relation can serve as the missing attribute on org unit definition.
PP01 let me insert a task (type T, and not TS) on an org unit directly, so I want to know if I'm going to break some standard behaviour of SAP if I insert a task on OU.
Thank you
Paolo

Similar Messages

  • Doing the same task for different data.. Do I need Queues? How to use them if yes?

    Hello all,
    I have created a VI which is getting data from some FTP server and then after comparing with the HDD specified folder copy the missing data from the FTP ... Description is also in the VI. There are few things I need to ask.
    1) The email sending VI gives error 1172..What could be the reason .. is it firewall.. or is there any mistake in the code?
    2) As you people are experts so I really like any suggestion to improve the VI..
    3) The most important .. Currently this VI can only perform the whole task for one FTP folder. Actually my task is I need to check for 4 different FTP folder on different servers..its not 4 different folder in one FTP .. its 4 different FTP.Now my question is how I can do this: First it compare and copy from FTP1.Then FTP2... and so on.. How can I change the data for the cluster for different FTPs? Do I need to use queues? If yes how because I don't have any experience with queues.
    I will really appreciate is someone can either provide me the relevant example or can give me some idea.
    The main VI is the 'TASK START'.VI please find the attached files.
    Thanks
    Regards,
    Naqqash
    Naqqash
    Attachments:
    Project.zip ‏151 KB

    Hi Peter,
    Thank you very much for your reply. I have understood your idea but there are few problems.
    Please see the attached "Final test.vi".. actually my top level vi should be like this.. due to this reason I need to develop the cluster like one with name "Settings" as shown in Enum FTP events.vi.. In this cluster all the data types are not constants (but can be set as constants)  and further all of them are not of same type so whenever I try to create as you created I have got error, wire broken..so what do you think i should do.. In this cluster there are different types of data .. string, path, numeric, array and a cluster with name file properties also... can't figure out what to do..I know things are little scattered and wiered but due to lack of experience, I guess, I am now a little bit confused for this matter. I
    hope guys here in the forum will help me as you guys always did.
    Naqqash
    Attachments:
    Final test.vi ‏11 KB
    Enum FTP Events.vi ‏14 KB

  • Applying different template to the same item for different organizations

    Hi I'm having an issue with an item load.
    We are trying to load a list of items using the item import.
    3 orgs
    1: mas
    2: first
    3: second
    say in the new list that we are importing there is an item "100A" (mtl_system_items_b.segment1)
    This item already exists in the mtl_system_items_b as a master item (ie assigned to the master org) it has template "STOCK ITEM"
    and is also attached to the first org
    I want to create the same item as a nonstock for the Second org
    Can this be done?
    When i tried to do the import it failed giving me a INV_IOI_MASTER_CHILD_1A error (Master - Child Conflict in one of these Attributes: Default Buyer(BUYER_ID), Accounting Rule(ACCOUNTING_RULE_ID), Invoicing Rule(INVOICING_RULE_ID), Purchased(PURCHASING_ITEM_FLAG), Shippable(SHIPPABLE_ITEM_FLAG), Customer Ordered(CUSTOMER_ORDER_FLAG), Internal Ordered(INTERNAL_ORDER_FLAG), Inventory Item(INVENTORY_ITEM_FLAG))
    Any ideas on how to do this?
    Thanks
    D

    Hi Sandeep
    Thanks a lot for the reply
    In our MASter org setup, the Template "T1" is a STOCK_ITEM template and it has the stockable attribute set at the org level.
    This item is also assigned to ORG1 as a T1 STOCK_ITEM.
    So can we create the same item using "T2 which is a NON_STOCK Template in org2 ?
    If yes then that means I just have to create a record in the MTL_SYSTEM_ITEMS_INTERFACE only for the child org2.My concern is I read somewhere that
    the item import tries to match the attributes of the child org to the master org attribute(for attributes controlled at master org i think).
    And since the attributes for a nonstock are different than those for a STOCK wouldn't that create a problem?
    Thanks
    D

  • How can I use the same session for different components acroos application ?

    I am trying to include the components(chat, filesharing, whitboard) in different parts of my application. User should be able to access any of the component. We would like to have a single "ConnectSessionContainer" so that we don't see same user creating a seperate session for each component.
    Is there a better way of dealing with this other than declaring the "ConnectSessionContainer" in the main application ? Is there a way to check if we have a "ConnectSessionContainer" session already established ? Please help . Thanks.

    Thanks for the response. Let me explain what I am trying to do..
    I am trying to create components at different places(screens) of the flex application (not in the same .mxml file).
    Each time I create a component, I am using a "AdobeHSAuthenticator" and "ConnectSessionContainer" which is resulting a new participant in the room.
    For example
    screen1.mxml -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:Roster id="myRoster" width="100%" height="100%" />
            <rtc:Chat id="mychat" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    screen2.mxml (in the same application) -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:SharedWhiteBoard id="wb" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    Here, I open a screen1 and authenticate as UserA and when I try to open screen2 flex is considering me as another user though I am in the same application.
    1) How can I use different components which are in different flex files as a same User ?
    2) Should I place my <rtc:AdobeHSAuthenticator> and <rtc:ConnectSessionContainer> in the main application which calls the screen.mxml?
    3) What is the best way to do it ?
    Thanks for your time !

  • Can you use the same form for different datasheets?

    Hello! Thanks in advance for your time.
    To keep this short, I have created a form at my place of work to do a type of process audit. The form has worked extremely well and now other areas of the business would like to use it. For example, let's say I wanted to perform the exact same process audit
    at a supplier, but I want a separate datasheet on my SharePoint page to separate in house audits from supplier audits. The form I created for in house audits took an extremely long time and has tons and tons of fields and tons and tons of rules.
    Can I simply save the form to a new location, and somehow publish the form to a datasheet view so all fields from the form appear as columns and the form submits data to the new datasheet? If so, can somebody explain how? I would be eternally greatful!
    Mitch

    Would this be an InfoPath form?
    One option would be to extend your current form to have a 'Type' field that has 'Internal' and 'Supplier' as choices. You could then create views to show 'All', 'Supplier only' and 'Internal only' subsets of the data.
    Alternatively you may be able to save the list as a template and then re-use it but I can't remember how well if at all that works.

  • How to insert the same location for many calendar-entries?

    Hi!
    I have to insert the same information for "location" into MANY calendar-entries. How can I do that? If it's not possible directly (what I think, because I tried then a sql-example would be great
    Greets, Marcus

    There is a User template in the System folder. I can't remember where, and I don't know how to edit the contents of that user template.
    Perhaps [MacOSXHints will show the way|http://www.macosxhints.com/article.php?story=20011010033851924].

  • I just got an iPhone 5S, now when I try to use my old iPad the apps won't work because they are syncing with my new phone. Can I have the same account for an old iPad and a new iPhone?

    I just got an iPhone 5S, now when I try to use my old iPad the apps won't work because they are syncing with my new phone. Can I have the same account for an old iPad and a new iPhone?

    Connect your iPad to iTunes on the computer you usually Sync with and “ Check for Updates “...
    If an Update Appears Install it... if not... you are up to date for your particular Device...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download

  • I cant use facetime. but my sister can. we share the same account for itunes.but when i go to face itme and click on create a new account a blank screen pops up. what do i do?when i go to make a new facetime account nothing comes up

    i cant use facetime. but my sister can. we share the same account for itunes.but when i go to facetime on my ipod touch and click on create a new account a blank screen pops up and the only thing it says is cancel and account.  what do i do?

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Quit and relaunch Mail, and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Can I use the same itunes for my ipad and iphone?  Will the computer erase my other device information?

    Can I use the same itunes for my ipad and iphone on my computer?  Will the computer erase my other device information?

    The computer will not erase the information.  Each device will show up in iTunes as a separate device and you can control the information for each device through iTunes.

  • What are the pros and cons of using people keywords, given that my catalogue is already uptodate with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular

    What are the pros and cons of using people keywords, given that my catalog is already up to date with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular keyword in the same photo?

    What are the pros and cons of using people keywords, given that my catalog is already up to date with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular keyword in the same photo?

  • I have the app Day One on my iphone, can i download the same app for my app without paying more?

    I have the app Day One on my iphone, can i download the same app for my app without paying more? Any help would be greatly appreciated. I'm just wondering because I would love to be able to use both apps and have them sync. Thanks!

    benbenjiman wrote:
    ... , can i download the same app for my app without paying more?

  • Can we bind the same fragments into different xsd Schemas

    I have created different fragments for a single form. I have to render the fragments as well as the complete form on the web. I have created the different services for each fragment and bind the schema with them and this works fine for me but while using the same all fragments in one complete form I am not able to get the data. How can I do this?
    Can we bind the same fragments into different Schemas? If yes, then how?
    Or we need to follow some other approach?

    yes, we are using the LiveCycle Designer and LiveCycle Workbench Process for rendering the PDF form.

  • Migrating to Sharepoint 2013 from 2010 - Can you use the same URL for the Web Application without affecting the 2010 environment?

    Hi,
    I am currently trying to migrate our SharePoint 2010 environment to SharePoint 2013. The first thing I'm doing is creating a 2013 development environment to verify that this migration goes smoothly. I'm also doing this so that we will have a testing environment
    after the upgrade to 2013 is complete. 
    So here is my question: I have a 3 tier farm including; 1 app server, 1 wfe, and 1 sql server. I have made a copy of our SharePoint 2010 database and installed that on our sql server 2012 sever (This new environment is on 3 completely separate servers from
    our 2010 environment). I have also installed the prereqs and configured SharePoint 2013 on the App server and wfe servers, as well as configuring the necessary service applications (I have created a completely new 2013 database where I will migrate my 2010
    database content when I'm ready).
    I am now at the point where I need to create a new web application on the 2013 app server, where I will be migrating the copied 2010 database.  (Also note that we have a 2010 development site called https://[email protected])
    When I go to create a new web application in our 2013 dev environment, can I use the same url (https://[email protected]) to create this web app, or will this screw up our current 2010 dev environment?
    I'm new to SharePoint migrations, so I apologize if this is a stupid question.
    Thanks in advance for any insight you can share on this!
    Boe Barlage

    So, what you are recommending is that before I create a web application in my new 2013 environment, I need go into my hosts file on my 2013 app server and alter it to point to my 2013 wfe.
    Then after I do that, then I can create my new web application on my 2013 app server with the same url as my 2010 testing environment
    (https://[email protected]). 
    Then after that I should be able to access my new sharepoint 2013 environment at the same URL (https://[email protected])?
    I must be missing something.
    In your first reply, you told me to alter the host file on my 2010 app server and point it to my 2010
    wfe (I guess I thought it probably already is). You also told me to alter the host file on my 2013 app server and point it to my 2013 wfe. 
    so I am confused on after I do this, what url would I access my 2010 test environment, and what url would
    I access my 2013 test environment?
    I am fine with having my test environment as a different URL until I am totally ready to roll everything over and kill the 2010 site. But I want to make sure that when I migrate my database, none of the site links are broken.
    I also want to make sure that if I proceed this way, I want to be sure that I will be able to modify the URL to what my 2010 environment is (without a lot of headaches) when I am ready to kill the 2010 site.
    Thanks again for your help, it's much appreciated!
    Boe Barlage

  • Can I use the same material for C_BOWI_40

    Hi All
    A couple of years ago,  I have attended SAP BOW310 and I have the course material for BOW310 as well, my questions is that do I need to obtain latest academy material again or I can use the same one. I can see the following details on my existing material...
    BOW310
    Web Intelligence Report Design I
    SAP Business Objects - Business Intelligence
    Participants Handbook
    course Version 96
    course duration 2 Days
    Material Number 50103381
    Owner: Ann Whitehead (I050533)
    Now I want to give certification of C_BOWI_40 and I'm wondering that Can I use the same material or not....

    Yes. If you use the iPad charger no problems.
    If you use the iPhone charger, on iPad it will charge much slower, but it will still charge.

  • Can I install the same license for a computer at work and at home?

    We are a small design studio in South Africa and have recently had a huge misfortune when our offices burnt down. All our software and licensing agreements were lost.
    We are now looking into the Creative Cloud for teams option. What I would liek to know is if you can use the same user license on more than one computer in the cloud?
    If I have a desktop at work can I use the same license info for my laptop at home, when I need to take work with me from the office - we have quite a bit of work that needs to recreated after our loss.

    Hi Redladybird,
    The End User License Agreement for Creative Cloud states that you are able to install the same product on upto two machines only . So i guess with this functionality, your issues would be resolved.You can also manually sync the files in the Creative cloud storage and download the same while you are at Home.
    Regards,
    Kartikay Sharma.

Maybe you are looking for

  • How can I lock a track volume level to never move in Garageband?

    Hi there I'm currently creating a backing track of a popular song and I have built up all the parts of the songs against a wav track which contains the original version of the song. I want to be able to mix the volumes of the tracks Ive built to the

  • Capture and RTP on a SIGNED applet.

    I am trying to build an applet that allows users to chat both ways. I want the user to install nothing (other than java) and i provide the libraries they need (including jmf). I have signed the applet to ease my troubles, but it seems they are still

  • AJAX two drop down lists

    I found a lot tutorials out there showing you how to make one drop down list populates another one but most of them either render the second ddl html in javascript (dealing with DOM crap!) or use third-party controls such as ATLAS. Then I decided to

  • How can I sync ff bookmarks on old XP with bookmarks on new Win7?

    Running FF32 on both devices. Properly logged on to both. Would like to know how to get bookmarks from device running on XT to newer one running Win 7. Carefully read instructions and looked at solutions to similar problems. Nothing has worked. Thank

  • Can't save preferences for CD burner?

    I'm trying to change the DVD Rom that I use to burn CDs under "Edit - Preferences - Advanced - Burning". The desired DVD Rom is shown in the pull-down menu but I can't seem to save this preference and it keeps pointing to the wrong device. Any though