How to make authorization to different planning level on one planning area?

now the situation is one planning area call one global company, under that we create several planning level for serveral sub-company. The authorization should that one sub-comp. only can display, change his planning level, and can not display any other sub-comp. So, in this case how to make authorization? Thanks!

I didn't create an authorization variable on sub-comp. pls, let me know how to create an authorization variable on sub-comp, and the info for the next steps. thanks!

Similar Messages

  • How can I print mulitple different .ai files onto one page in Illustrator CS6?

    How can I print mulitple different .ai files onto one page in Illustrator CS6? I have all of the files organized by Arrange Documents>Tile All in Grid and I would like to print the files in this format so that they can all be seen at once when printed out onto one page.
    Some background is that I have 16 different cad drawings that I have converted and edited in illustrator. I'd like to basically make a contact sheet with all 16 drawings so that they can be reviewed on one sheet of paper after printing. But each drawing is in it's own unique file, and I have not figured out how to put them all onto one page for printing.

    You can place them (linked) into a new Illustrator file and print from there.
    The original files will need pdf compatability.

  • I have an airport express and want to know how to set up two different wireless networks. One with 5GHZ and one with 2.4GHZ so different devices can connect to either.

    I have an airport express and want to know how to set up two different wireless networks. One with 5GHZ and one with 2.4GHZ so different devices can connect to either. I have an iphone 4 that will not connect to 5ghz.
    thank you!

    Your AirPort Express is already providing two separate 2.4 GHz and 5 GHz bands, but each band is using the same wireless network name.
    This is the default setup for the AirPort Express, which is recommended for most users. The theory here is that devices will automatically connect to the best quality signal based on their capabilities and distance in relation to the AirPort Express.
    It is possible to assign a different name to the 5 GHz band, and then "point" devices at that network to connect. Some users swear by this option.....(I am not one of them).... but you might want to give it a try to see how it works for you.
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click on the AirPort Express
    Click Edit in the smaller window that appears
    Click the Wireless tab at the top of the next window
    Click Wireless Options near the bottom of the next window
    Enter a check mark next to 5 GHz Name.....which will automatically add "5 GHz" to the network name....so you can identify it
    Click Save, then click Update and wait a full minute for the Express to restart
    Now you will need to "point" your 5 GHz capable devices at the 5 GHz network name.  2.4 GHz devices will connect to your "other" network name.

  • How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    This should do the trick
    Home Sharing Learn More
    http://support.apple.com/kb/HT201976
    Best of Luck

  • How do I use two different apple IDs on one itunes?

    How do I use two different apple IDs on one itunes?

    This would be a violation of the terms of use of the itunes store and could result in the loss of your account.
    You cannot use the U.K. itunes store unless you are in the U.K

  • How can I set two different emails in only one contact form?

    How can I set two different emails in only one contact form?

    To enter multiple email address with the Contact Form Widgets:
    Click the Options icon for the selected widget, then
    In the Email to box, enter multiple emails by delimiting them with a semi-colon. For example: [email protected];[email protected]
    Cari

  • How to save Jobs with different priority level in a Queue?

    Hi, Friends,
    I have a set of Job (see below) objects.
    I would make a queue: if they have the save priority level, first in and first out. this is easy to do by ArrayList. however, If they have different priority level, I would like make the Jobs with the highest level first out.
    How can I implemented this idea in Java?
    Regards,
    Youbin
    public class Job {
    private short _priorityLevel = 0;
    public void setPriorityLevel(short priorityLevel) {
    this._priorityLevel = priorityLevel;
    public short getPriorityLevel() {
    return _priorityLevel;

    Hi,
    Here is my test code, it works:
    public class Job implements Comparable{
    private int _priorityLevel=0;
    private String _jobDescription=null;
    public Job() {
    public void setPriorityLevel(int priorityLevel) {
    this._priorityLevel=priorityLevel;
    public int getPriorityLevel() {
    return this._priorityLevel;
    public void setJobDescription(String jobDescription) {
    this._jobDescription=jobDescription;
    public String getJobDescription() {
    return this._jobDescription;
    public int compareTo(Object obj) {
    return (this._priorityLevel-((Job)obj)._priorityLevel);
    import java.util.LinkedList;
    import java.util.Iterator;
    import java.util.Collections;
    import java.util.Collection;
    public class test {
    public test() {
    public static void main(String[] args) {
    Job job1 = new Job();
    job1.setJobDescription("Job1");
    job1.setPriorityLevel(2);
    Job job2 = new Job();
    job2.setJobDescription("Job2");
    job2.setPriorityLevel(2);
    Job job3 = new Job();
    job3.setJobDescription("Job3");
    job3.setPriorityLevel(2);
    Job job4 = new Job();
    job4.setJobDescription("Job4");
    job4.setPriorityLevel(1);
    Job job5 = new Job();
    job5.setJobDescription("Job5");
    job5.setPriorityLevel(1);
    Job job6 = new Job();
    job6.setJobDescription("Job6");
    job6.setPriorityLevel(1);
    LinkedList linkedList = new LinkedList();
    linkedList.addLast(job1);
    linkedList.addLast(job2);
    linkedList.addLast(job4);
    Iterator ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    Collections.sort(linkedList);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    linkedList.addLast(job3);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    Collections.sort(linkedList);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    linkedList.addLast(job5);
    linkedList.addLast(job6);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    Collections.sort(linkedList);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    }

  • How to make your site DIFFERENT...

    Some have auto-playing movies, or songs...
    Some have "comment" sections...
    Some have no menus...
    What have you done to make your site different?
    What have you done to make your site eyecatching?
    How is this accomplished?
    Many of us are finding that we have already pushed iWeb to it's apparent limits, and we need more ideas!
    http://www.derekbalsley.com

    Thanks all for the kind words.
    Linda, as far as the images go I edited them in Photoshop.
    I saved them as jpegs using the quality slider set at 8
    (never less for quality reasons).
    The actual image "dimensions" in general are 280pixels x 421pixels
    depending on orientation and 72 ppi in image "resolution" .
    I think if you keep images no larger then 450pixels for general viewing
    they should load fine.
    The images that are the Page Headers are however W700xH400 which is the size of the default place holders in the templates, or 700x120 for the narrow ones.
    I hope this isn't getting too technical, I've even considered doing QuickTime tutorials.
    Derekbalsey: I'd say use the shapes and do things like adding strokes to a shape and use white or no fill or a complimenting color to fill it.
    I will be updating the site tonight, nothing major, just slight changes to the page headers and adding some photos until I get some more "pro" looking ones I hope.
    We'll see ho fast those load as they will be larger.
    My goal is to use simple shapes and good colors, as i don't really know how to create animations and the likes.
    G4 450 dual, PBG4 1.5/ATI 128/1gig ram   Mac OS X (10.4.4)   http://homepage.mac.com/uhanna

  • How can I have two different windows up on one screen at the same time?

    How can I have to different windows open on my screen at one time? Kind of like a split or shared screen.

    If you want this split screen thingy for a single app, do like captfred suggests or see if the app itself supports some sort of splitting, like MS Excel.
    If you want to do this system-wide, maybe you can get what you want by activating and using Spaces: http://support.apple.com/kb/PH4313

  • How to make a field mandatory in SAP Business one ?

    How to make a text field mandatory in SAP Business one?

    hi nishant,
    check this link
    Making fields mandatory
    To Set Mandatory Fields in Documents
    Jeyakanthan

  • How to make Multiple I-Tunes & ICloud Accounts on one computer?

    How do you set up multiple itunes accounts on one computer?  Can this be done for ICloud as well? 
    We have a family computer and not everyone has the same music, calendar etc...
    AKingsmill

    Since the Mail.app preference file (along with all other application preference files for a user account) is stored in that user's Home folder/directory, I don't believe this is possible.

  • How to make optional subtitles in many languages in one movie (AP Elements 10)

    Hi,
    Could you please help me.
    I have AP Elements 10,
    I made a short film in Spanish, it is about 1,2 GB.
    I want to add subtitles in 7 languages,
    if I just make 7 versions of the movie plus one without subtitles it is 9,6 GB, which is too much for a 4,7 DVD without decreasing the quality.
    Is there a way in AP Elements 10 to make a dvd with just one version without subtitles and add subtitles from a separate text file also placed on the dvd. So that the person watching can choose the subtitles version and has only one DVD?
    And if not, could you please recommend me a freeware that has this feature and can be used to add subtitles to a DVD produced with AP Elements.
    Thanks for help,
    Michal

    I do not know of any freeware DVD/BD authoring programs, that offer Sub-Titles.
    While there may be more commercial programs available, I only know of DVD Architect, Adobe Encore (only available with Premiere Pro) and Sonic Scenarist (monsterously expensive at about US $ 50,000 for the full DVD program, and even more expensive for the BD version).
    I do Sub-Titles in Encore, and it works fine. Steve has used DVD Architect, and has even written a book on that program. For other possibilities, you might want to look to CyberLink, Roxio and Nero, as they also have some authoring capabilities, but I do not know if any of their programs do Sub-Titles.
    Good luck,
    Hunt

  • How to make mandatory(usr01) field for level 1 wbs elements only from CJ20N

    Dear All,
    I have made mandatory for "PRPS-USR01" field from CJ20N transaction
    by using field exit. But mandatory field (usr01) is working for all wbs elements. I want to make this usr01 field mandatory for  LEVEL 1(prps-stufe), WBS ELEMENTS(prps-posid) only. Not for level 2 and level 3 wbs elements. Please let me know how to fix it.
    urgent.
    Regards,
    Karthik.

    You could envisage the use of validation rules in PS.
    Transaction OPSI or SPRO
    Create a validation with a message ID (Z)
    Create a step
    - prerequisite : PRPS-STUFE = '001'
    - Check : PRPS-USR01 <> ' '
    affect a message number
    Regards.

  • How to make joins using different tables depending on inputs? Dynamic Query

    Hi,
    I have this situation:
    - A form with a few input messages;
    - Each input corresponds to a table on a DB;
    - A user can search for information filling any input, one or more;
    - With the inputs filled I have to dynamic create the query, execute it and show the returned lines on a table.
    How I am supposed to do that? What is the right way to make it? Can I alter a VO query on runtime including from arguments?
    Any light would be apreciate!
    Thanks,
    Marcelo

    You can make View Object with Dynamic Select Statement.
    See the detailed instructions in the
    oracle.apps.fnd.framework.server.OAViewDef Javadoc for creating a thread-specific view instance at Run time.

  • How to make ESB accepting different inputfiles?

    I'm working on a document hub. The basic idea is that a number of different XML documents (with different XSD) are put into a directory.
    My ESB service is suppose to take each of these different documents - check the type - and broacast/notify - that "Hey I've recieved this document of this type - somebody want's to recieve it?".
    Then I have a bunch of different sub services - subscribing to this broadcast service.
    Now - If ESB should check the document type - it should know the xsd - right?
    But as far as I can see (i'm new to SOA) - the ESB service is "locked" into a specific document type.
    So - can anyone pls. explain to me how I can solve this?
    Kind regards, Henrik

    Hi,
    Is it possible for you to route documents based on their filename? If this is the case, then header-based routing would be another option for you (http://www.oracle.com/technology/products/integration/esb/files/esb-presentation-headers.pdf). The ESB router can look into the message header to read the filename. In combination to this, use native for message body. This will leave the message body untouched and transports it "as is" to the end-point.
    Regards,
    Harm

Maybe you are looking for

  • Jdeveloper java.lang.IllegalStateException: A column used in a constraint m

    I have a database diagram. I tried to move the offline database to online database and got the following error. not able to do anything after this is there a way to find out which table has the problem this is the error java.lang.IllegalStateExceptio

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'     EXPORTING       SRC_SPOOLID              = L_SPOOLNO       NO_DIALOG                = SPACE       DST_DEVICE               = MSTR_PRINT_PARM

  • Have Windows 7 installed. Can't install a Craft software program.

    My son gave me his old Mac, approximately 6-8 years old. The mac recognizes everything on the disk.  It will not install the software. Plenty of space to install.  I did try manually installing, setup.exe, but nothing happens. Suggestins?

  • Shortcut to: Apply (style), Clear Overrides  ?

    Hi there, I'm working on a approx 100pg price list that I've set up a tables for, and the design of it has changed slightly (sigh). It looks like a basic excel spreadsheet and I have imported the text already. Basically, I'm going through and applyin

  • Problem with my lexmark P4350 printer/ scanner

    It seems to work ok with regular printing but when I tried to print some photos the results were weak faded colours and some vertical lines that should not be there. I tried cleaning the cartridges both manually and mechanically with no good effect.