Which sw comp. should be set 'modifiable' (SE03) to edit objects in SOLAR01

Hi,
our SM7.1 is globaly set to modifiable but the Software Components and Namespaces in detail are set to 'not modifiable in SE03
When we try to upload Documents in SOLAR01, we get the error 'System setting does not allow changes to be made to object SHI3 XXXXXXXXXX'
Which component must be set to modifiable in SE03 to edit objects in SOLAR01 ?
best regards
Christoph

Hi sunny,
thank you very much....
It helps
best regards
Christoph

Similar Messages

  • Layer Comps should capture changes to a Linked Smart Object's Layer Comp

    Normally, I can move things around or change visibility, and use Layer Comps in my master doc to capture these changes.
    However, changing which Layer Comp displays from a Linked Smart Object cannot be captured by Layer Comps in my master doc.
    Slightly more information: Sorry it's a little convoluted. I have several Linked Smart Objects inside a master doc, and these Smart Objects contain different Layer Comps. It's awesome that I can easily change which Layer Comp each Smart Object displays. But when I make a change, it cascades across the Layer Comps in my master doc. So my master doc's Layer Comps cannot effectively capture a state.
    It would be awesome if Layer Comps were able to capture state changes for the display of Linked Smart Object's Layer Comps. #featurerequest

    Photoshop Feature Requests should be posted over at
    Photoshop Family Customer Community
    But before posting one look around whether one exists already on this issue and add your +1 if it does.

  • Should i set null those reference variable object created inside of funtion

    hi,
    I create object inside of a member function . after finish execute that method those variable should set null to be garbage collection or no need ?
       public void sampleFun(){
           Object obj = new Object();
            // some work
         obj = null ;  //// ----------- > this need or not ?
    }after finished that method execution should i set
       obj = null;explicitly or no need ?? plz

    No, there's no need.
    When the reference variable passes out of scope, it ceases to exist, so it doesn't reference the object any more. As soon as an object has no references pointing to it, it is available for garbage collection.
    Your rule of thumb should be: don't do anything about garbage collection unless you know why you're doing it. And even then don't do it unless you can prove you need to.
    Dave.

  • What CMYK profile should I set it at for printing in Australia?

    I'm working on a CD album cover and converting the photo from RGB to CMYK, but want to make sure that I have the correct CMYK profile.
    There are various web, Japan, US, and coated options in the colour setting box.
    But I need some guidance as to which one I should be setting this at in Photoshop?
    Thanks
    Kim

    This should get you started: http://www.drevolution.com.au/blog/index.php?id=2683940155866559937
    As mentioned in the article, always best to talk to your printer.

  • Which cluster attribute should you modify to ensure that load balancing and

    An EJB is targeted to a cluster. Remote EJB clients can therefore take advantage of WebLogic Server’s load balancing and failover capabilities.
    However, a proxy server exists between the clients and cluster, which performs IP address transaction.
    Which cluster attribute should you modify to ensure that load balancing and failover work correctly?
    A. Multicast Address
    B. Persistent Store
    C. Cluster Address
    D. Migration Basis
    E. Replication Channel

    http://docs.oracle.com/cd/E13222_01/wls/docs81/config_xml/Cluster.html
    Cluster address

  • I changed my data plan yesterday. I should have set it to change at the new month which is tomorrow. can i fix this?

    I changed my data plan yesterday. I should have set it to change at the new month which is tomorrow. can i fix this?

    I don't know if they'll be able to change it or not, but it's worth calling Customer Service ASAP (since you indicate your billing cycle starts tomorrow, so that would be midnight tonight) and asking.
    Customer Service
    Dial *611 from a cell phone
    (800) 922-0204
    Monday - Sunday 6 am - 11 pm

  • HT201320 Which Apple ID should I use to set up my iPad?

    If I have 2 Apple IDs, one for iTunes and one for mail, calendars, etc., which do I use when setting up my iPad?

    It took me a while but I eventually found a phone number to call on Apple's web site. No contact info was provided with the iPad.
    The tech support guy had me use my email ID during the initial setup and then go into Settings and change the iTunes ID to the correct one. I'm not sure it matters either way.

  • Which properties file should be modified for DocumentBuilderFactory

    I am creating a Document object using the following lines of code. Unfortunately, the DocumentBuiderFactory, by default looks for a namespace org.xml.... Which means that I get a parsing error when I am not connected to the net. Can someone point out which properties file needs to be modified to prevent this error from occuring.
    // Build the request document
    DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = builderFactory.newDocumentBuilder();
    Document response = builder.parse(in);
    Thanks in advance
    Jimmy

    Did you ever figure this problem out? If so, could you provide me with some advice about it?

  • GOOP VI "set modified data" locks LabVIEW for seconds

    I use GOOP.
    Sometimes the VI "set modified data" (from now on SMD) of one of my GOOP classes is locked for about 15 seconds, while CPU raises to 100%.
    It happens when SMD is called from a certain VI. It does not happen every time SMD is called from this VI.
    As I have understood GOOP, the VI "get data to modify" tries to access/lock the data members - which might take a while if the the data members are currently locked by another VI - but SMD only sets the data members and removes the lock, which should always be possible (at least if the data set has been locked by this VI, which - yes! - is the case).
    Other VIs are running in parallell, maybe they could cause the CPU to raise to 100% but I find it strange th
    at it only happens when SMD is called from this particular VI.
    I think I need a better understanding for how SMD really works.
    Regards

    Hi,
    Your description of how "get data to modify" (from now on called GDM) and "set modified data" works is correct and you have fully understand how it all works. The only VI that actually may wait is the "get data to modify" (happens if the data for the object is locked by something running in parallell as you describe). The GDM is however reentrant so that it really will be able to wait for seconds (specified by the timeout) and also letting other process wait as well using the GDM. The SDM is not reentrant (does not have to) and should really execute fast (set data and unlock) and never hold execution, just as you describe.
    Are you absolutly sure that it is the SMD that cause the CPU to freak out? Maybe the fact that you unlock the data releases ano
    ther part of your program that were "hanging on the lock" and the problem is actually in another part of the program. Do you have some exceptional large size of your data? Do you somehow elaborate with VI priorities and/or reentrant VIs. This might sometimes really cause strange situations. The situation you describe looks more like a "race" problem.
    The SDM problem you describe is new to me and I have never encounted it. Would it be possible for you to attach some LV code example showing the phenomenon?
    Best regards,
    Mattias Ericsson
    Endevo Sweden
    (member of the GOOP developer team)

  • Adding an updateProduct method which this method should call

    i would like to add an updateProduct method which this method should call the updateProduct method of the ProductDAO object to update the product.
    import java.util.Scanner;
    public class ProductMaintApp
    // declare two class variables
    private static ProductDAO productDAO = null;
    private static Scanner sc = null;
    public static void main(String args[])
    System.out.println("Welcome to the Product Maintenance application modified by Royce\n");
    // set the class variables
    productDAO = DAOFactory.getProductDAO();
    sc = new Scanner(System.in);
    // display the command menu
    displayMenu();
    // perform 1 or more actions
    String action = "";
    while (!action.equalsIgnoreCase("exit"))
    // get the input from the user
    action = Validator.getString(sc,
    "Enter a command: ");
    System.out.println();
    if (action.equalsIgnoreCase("list"))
    displayAllProducts();
    else if (action.equalsIgnoreCase("add"))
    addProduct();
    else if (action.equalsIgnoreCase("update"))
         updateProduct();
    else if (action.equalsIgnoreCase("del") ||
    action.equalsIgnoreCase("delete"))
    deleteProduct();
    else if (action.equalsIgnoreCase("help") ||
    action.equalsIgnoreCase("menu"))
    displayMenu();
    else if (action.equalsIgnoreCase("exit"))
    System.out.println("Bye.\n");
    else
    System.out.println("Error! Not a valid command.\n");
         public static void displayMenu()
    System.out.println("COMMAND MENU");
    System.out.println("list - List all products");
    System.out.println("add - Add a product");
    System.out.println("update - Update a product");
    System.out.println("del - Delete a product");
    System.out.println("help - Show this menu");
    System.out.println("exit - Exit this application\n");
    public static void displayAllProducts()
    System.out.println("PRODUCT LIST");
    System.out.println(productDAO.getProductsString());
    public static void addProduct()
    String code = Validator.getString(
    sc, "Enter product code: ");
    String description = Validator.getLine(
    sc, "Enter product description: ");
    double price = Validator.getDouble(
    sc, "Enter price: ");
    Product product = new Product();
    product.setCode(code);
    product.setDescription(description);
    product.setPrice(price);
    productDAO.addProduct(product);
    System.out.println();
    System.out.println(description
    + " has been added.\n");
    public static void deleteProduct()
    String code = Validator.getString(sc,
    "Enter product code to delete: ");
    Product p = productDAO.getProduct(code);
    System.out.println();
    if (p != null)
    productDAO.deleteProduct(p);
    System.out.println(p.getDescription()
    + " has been deleted.\n");
    else
    System.out.println("No product matches that product code.\n");

    i would like to add an updateProduct method which this method should call the updateProduct method of the ProductDAO object to update the product. Permission granted.

  • How to select server in which background job should run

    Hi,
    I want to run my program as background job. I want the user to select the server, in which background job should be run, in the selection screen of my program. When it is sheduled in background the job should run in the selected server.
    How to do this?
    Regards,
    Sriram

    Hi,
    please write the code like as below.
    DATA : D_GROUP like TBTCJOB-JOBGROUP.
    use the function moulde JOB_OPEN.
      D_JOBNAME = SY-REPID.
      D_GROUP- BTCSYSREAX =  " pass the target server name Here
         CALL FUNCTION 'JOB_OPEN'
            EXPORTING
                 JOBNAME          = D_JOBNAME
                 JOBGROUP       =  D_GROUP
            IMPORTING
                 JOBCOUNT         = D_JOBNO
            EXCEPTIONS
                 CANT_CREATE_JOB  = 1
                 INVALID_JOB_DATA = 2
                 JOBNAME_MISSING  = 3
                 OTHERS           = 4.
    submit   <Program name>
                  USER SY-UNAME VIA JOB D_JOBNAME NUMBER D_JOBNO
                  USING SELECTION-SET '  var1 '   " Give varient name
                  AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    JOBCOUNT             = D_JOBNO
                    JOBNAME              = D_JOBNAME
                    STRTIMMED            = 'X'
               IMPORTING
                   JOB_WAS_RELEASED     = D_REL
               EXCEPTIONS
                   CANT_START_IMMEDIATE = 1
                   INVALID_STARTDATE    = 2
                   JOBNAME_MISSING      = 3
                   JOB_CLOSE_FAILED     = 4
                   JOB_NOSTEPS          = 5
                   JOB_NOTEX            = 6
                   LOCK_FAILED          = 7
                   OTHERS               = 8.
    Hope this will helps you
    Regards
    Kiran

  • Which iPad Retina should I buy in the US so it will work in the UK?

    I am going to the States next month and want to buy the new iPad there.  Which iPad Retina should I buy in the US so it will work in the UK, the AT&amp;T or Verizon model? I'm probably staying with O2, but can't tell if different models are sold in the UK, or if its just the one.  If just the one, I can't find which model number it is for the UK. The apple store website isn't exactly clear on which model(s) is/are sold in the UK.

    Hi,
    We don't have cellular, but I have often read many ques. and answers here just for my own info when we were first buying. I do know that in the past, Verizon had a different system than ATT and others. That could all have changed with LTE. I checked a couple of articles and found the following links which might help you. PLEASE NOTE these were published in March and May of 2012, so things might have changed with the new ipad 4. Also note that you can buy a cellular here without a contract that you could then set up with your own UK phone company.
    http://www.tomshardware.com/news/Apple-iPad-UK-4G-LTE-Australia,15634.html    May 15, 2012
    http://apple.stackexchange.com/questions/43972/are-the-new-ipads-ipad-3-for-sale -in-the-us-unlocked-for-the-uk    Mar. 2012
    You also said you wanted retina display and then said you were probably staying with 02. If by that you mean the ipad 2, I want to let you know that the ipad 2 does NOT have the retina display. That would mean you'd have to get the old discontinued 'new' ipad or the ipad 4. And if I were you, I would not even think of buying an old 'new ipad, even if there's a great sale on them. I'd go straight to the ipad 4.
    Make sure you do as much research as possible.
    Hope this helps.

  • HT1206 I buy apps in my iPhone using different Apple IDs. Which Apple ID should I use to authorize the computer when synchronizing iPhone with iTunes?

    I buy apps in my iPhone using different Apple ID. Which Apple ID should I use to authorize the computer when sync iPhone with iTunes?

    Hi again,
    After a little further research, it appears that you would need to create separate iTunes libraries in order to be able to continue to purchase and download previously purchased items on the same computer, for two different Apple IDs. Sorry - but my husband and I have had the library we sync with authorized for so long, that we have not run into this issue, but it appears that you will get an warning when you try to authorize the second ID on the same computer, indicating that another ID is already associated with it.
    So, you will probably have to set up separate iTunes libraries for each ID:
    http://www.imore.com/how-use-multiple-apple-ids-one-computer-and-itunes
    Sorry for any confusion - hope this helps!
    Cheers,
    GB

  • Which uesr exit should I use by such a case

    The requirement is to send the email to manager when anyone create or change the Material data by using MM01/MM02.
    The function of sending email I have done but I don't know which user exit should be used to call the function.
    I have tried  MGA00001 >EXIT_SAPLMGMU_001>INCLUDE ZXMG0U02 and writed some code in the ZXMG0U02. (ex: break point) .but when I modified the Material and saved,the stop does not appear. whether I used a wrong user exit?

    You can use enhancement MGA00001 (industry only) for this.
    For more information, see the documentation for the following components assigned to this enhancement:
    Function Calls :
    EXIT_SAPLMGMU_001
    Enhancement Number : MGA00001
    If you want to send a mail for only material creation/ extend then you can you the badi BADI_MATERIAL_REF.
    we don't have BADI 's for Change the Material master records.
    If you want to send a mail for MM02 also then you can go for the Enhancement ' MGA00001' under the function module 'EXIT_SAPLMGMU_001'.
    Thanks
    Sekhar

  • In which situations we should use Character Mode Reports?

    Question: In which situations we should use Character Mode Reports?
    Explaination: I am faced with a certain situation. I feel that I should develop reports in Character Mode. But I am not sure about this.
    I invite all readers to contribute on the subject matter. Once I receive responses, I will explain my specific situation as writing it now may narrow the list of such situations.
    Also I would like to know what problems we face when developing reports in Character Mode. I was developing my first Character Mode report and I faced layering problems. So I would like to know more such precautions.
    TIA
    Tariq

    Hi Muhammad,
    There's any number of cases for using character mode Reports. However, they all typically come down to what your doing with the output of the report.
    Basically, you need character mode reports whenever the Report output needs to be read by some sort of Ascii file reader. This could be notepad, VI, MSVC, dot matrix or fixed character set printers, ...
    A less common case is where you just want to get at the data within the report. You're just using the ascii output as a data dump to pass through to another program/utility. (This is really just a specialised case of the previous one).
    There are some cases where character mode output may be one of several choices. Eg: the body of an email message which could be HTML or plain text.
    Robin.

Maybe you are looking for

  • Wide traffic when the iPad is connected to WiFi

    Hi, I have the new ipad 16g WiFi ipad seems wide traffic when it detects WiFi I was overseas with the cellular modem and the modem's data saw a very large traffic When I turned the iPad it stopped At first I thought that synchronization cloud images,

  • DW MX limit on name lenghth?

    I'm trying again here. i'm on DW MX Mac 10.4.8 Everytime I go over about 15 characters or so, it says you must rename as name is too long. Yet on the web I see pages of 50 characters. Can someone help me?

  • New Ipad User looking for some good CRM suggestions for small business

    Hello All, I am a new (and satisfied) Apple Ipad2 user.  I am the sales rep for a small business that is in the health care field.  I am looking for a good CRM program for the following reasons and I am wanting to know if there is a particular progra

  • Delivery - Quality Inspection Issue

    Dear Gurus, I have the following scenario where system works fine, but required an alternate solution for client. I have a valuated material, if there is no stock system can generate the sales order and than delivery, although cant possible for PGI,

  • Photoshop cs6- presentazioni pus

    gentile pfaffenbichier Good day for you! Excuse I do not speak English! Use photoshop cs6 mac 10.7.8 I go to automation, choose the presentation, the amount of pictures, I order, I compile, I choose dispel start. The result is a simple pdf with pictu