How can I access t-code SOLAR_LIBRARY (Solution/Application)?

I have found in multiple places that configuration guides for CRM 2006 are now in Solution Manager.
I found several documentation in SAP Help that tells you to look into solution manager as follows:
Choose Solutions/Application -> Basic Configuration -> Configuration Structures -> ...
What I've learned diggin on internate is that Solutions/Application is a t-code called SOLAR_LIBRARY. When I try to access this t-code in my Solution Manager system I get a message T-code for internal SAP use.
My question is how can I get access to this configuration guides that are referenced in several places on the SAP Help portal?
Your help will be greatly appreciated...
Regards
Armando

Hi Amando,
the transaction Solar_Library is only used SAP-internally. To access configuration guides, you need to launch transaction Solar02, select your project, select the node "Configuration" and the tab "Structure". Via the button "Change Configuration Structure" you can launch the maintenance transaction for configuration structures. Select "Business Process Repository" as source and launch the F4 selection help. You can copy complete configuration structure in your project.
Best regards,
Michael

Similar Messages

  • How can I access two "E-Business suite" Applications at the same time

    I have Application "A", and for the performance issue, I decide to install another instance let say "B", and clone "B" from "A" in a daily basis, so for some reports I need the user to access "A" and for another reports to access "B".

    On the subsequent invoke event, put up another window.
    Or, duplicate the -app.xml and change the id.

  • How can I access xml document from javascript whithin a JSP page

    how can I access xml document from javascript whithin a JSP page?
    I have a JSP that receives an XML document from a JavaBean, so I can access it within the entire JSP, but I need to access it from the javascript inside the JSP... and I have no idea how i can do this.
    Thanks in advance!

    The solution would only work on MS IE browsers, as other browsers do not support an XML DOM.
    It can be done, but you would be stuck with using the Microsoft broswer. If that is acceptable, I have some example code, and a book recommendation.

  • How can i access and assign java xml Document variable in javascript block

    How can i access and assign org.w3c.dom.Document variable in javascript block
    I tried this xmlDoc = "<%=xmldoc%>";
    it is not working
    plz give me solution.
    thanx
    Vidya

    The solution would only work on MS IE browsers, as other browsers do not support an XML DOM.
    It can be done, but you would be stuck with using the Microsoft broswer. If that is acceptable, I have some example code, and a book recommendation.

  • (261936172) Q general How can I access an EJB hosted on a remote server?

    Q<general> How can I access an EJB hosted on a remote server?
    A<general> The ability to add EJB control files enables you to access an EJB that
    is deployed to the server on which your web service is running. When you select
    "add EJB control" you need to supply the home and remote interfaces for the EJB
    as well as the JNDI name. This does not provide you with the capability for creating
    a control for a remotely hosted EJB. To use a EJB hosted on another server you
    will have to provide the appropriate code within your web service itself. You
    will have to programmatically gain to access the JNDI for the remote server, lookup
    up the home stub and use it to create the remote stub for the EJB. Of course,
    to make this work you must have the necessary client interfaces in you classpath
    (home and remote interfaces) which can easliy be achieved by adding the EJB client.jar
    file to the lib directory in the webservice WEB-INF folder.

    just define the different server path in the description xml file
    <jndi-name>jnp://serverA(B)/....</jndi-name>

  • How can I access my iPhone 5 videos that I record?

    I took a couple of videos, including one long video (about 30 minutes) to test the quality and it was wonderful! The problem is that I can't do anything with them. They are (obviously) too large to send to people via things like email. I tried connecting it to my computer via usb to put the files onto my computer (my preferred method of dealing with files) but the video files were not there at all.
    From my computer, there was really only one available path of folders and it took me to my camera roll where I could transfer/copy/save all my photos to my pc (which is great because I have taken many nice pictures). The videos, which were also stored on my phones camera roll were not visible in the folder at all (though the folder properties indicated it was 5GB large as if to say it did have the videos).
    So my question is basically: how can I access my videos (and ideally get them onto my computer)?
    Other details: I do not own a Mac and my iPhone is my only Apple Product.

    I Figured it out!!!!
    My solution was to download the new iTunes and here is why I think it worked:
    I tried to download the old iPhone explorer thing to search for the file and it required iTunes, which I didn't have. I was running Vista because I had to reset my pc to factory defaults (poor old PC haha. if only I had money for a new one). I don't like iTunes at all so I never bothered with it. Anyway, I started downloading the new version of iTunes (10.something) and about 1/8th of the way through the install, my pc started installing driver software on its own. It turned out it was installing drivers for my iPhone 5 (this occurred 1/8th of the way through right after iTunes installed some Apple components stuff for PCs) and this time, when I looked in the phone's folder for its data, my 30 minute video was there !!! So I think what was needed was a driver on my PC for my phone which for some reason didn't install until I got some Apple components (which was the first part of the iTunes install).
    Thank goodness I don't need to touch iTunes and thank goodness it works! It is truly a wonderful phone and hopefully this will offer another solution to finding those pesky large video files (or large video file) that won't open up in the explorer.

  • How can I access global variables in a loaded Applescript?

    How can I access global variables in a loaded script, in Xcode, ApplescriptObjC? Basically, I have a global variable defined in my parent script using "property", and I need to modify objects connected to those variables inside of a loaded script.
    Example:
    Parent script:
    script AppDelegate
    property myTextField : missing value
    //linked to a text field object
    tell myScript to myAwesomeHandler_()
    end script
    Loaded script:
    on myAwesomeHandler_()
    myTextField's setStringValue_("The new Xcode is so glitchy ugh")
    //changes value of linked text field of parent script
    end myAwesomeHandler_
    The problem is, the variable is undefined in the Loaded script, and I need it to have the same value as the parent script, and I don't want to pass the variable through the Handler. Any ideas?

    I think want you are looking to do will need to be done in two steps. Because myTextField needs to be a property for the ObjectiveC part of the code you cannot turn it into a global.
    However if you make a temporary variable global assign the string to it in the handler then set myTextField off of it.
    global myTextFieldGlobal
    script AppDelegate 
    property myTextField : missing value 
    //linked to a text field object 
    tell myScript to myAwesomeHandler_() 
    myTextField's setStringValue_(myTextFieldGlobal)
    end script 
    on myAwesomeHandler_() 
    set myTextFieldGlobal to "The new Xcode is so glitchy ugh"
    //changes value of linked text field of parent script 
    end myAwesomeHandler_ 
    I know you stated you did not want the handler to return a value but I have to ask why? Global's, imo, are not a good idea and really should be used as a last resort.
    One other possibility is to pass a reference to the property to the handler. Not sure if that works in AS of if that would satisfy our requirement of not passing the variable through the handler
    <edit>
    Another though have you tried to define the property outside the script?  That is
    property myTextField : missing value
    script AppDelegate
    Not sure if that will work.
    You might also want to have a look at Scope of Properties and Variables Declared in a Script Object

  • How can i access the EJB from a Webdynpro

    Dear all,
    How can i access the ejb , from a webdynpro?.
    Is there any way to do that?.
    I want to write the entire code (business functions) within the EJB and i wan to access the entire methods from a WebDynpro Application.This is the situation.
    Please help me to , resolve this problem.(Here im using JDBC Connection .. etc.).
    I want to do the basic connection setting's and data retrieval part within the EJB and use that within the WebDynpro..
    how can i seperate this two(i mean, i want to seperate the JDBC connections and WebDynpro,i dont want to hard code any connection parameters within the webdynpro code)
    So that i want use that saet of particular function's in many webdynpro applications..
    (i dont need any help regarding webservice way.)
    If anyone can , please help me..
    I tried that javabean class , manifest file , that way (importing javabean model).
    but im getting errors.
    I cant properly utilize that..
    So please help me with steps regarding that,,
    for javabean
    and if any , for EJB also..
    with regards
    Kishor.G

    HI,
    Since webdynpros follows Model View Controller Architecture You can access EJBs in webdynpro(views/frontend) infact to connec to database uding JDBC you have to utilise EJB ( opening connection to database closing, and other Business functionality).See this link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/unkown/web dynpro tutorial and sample applications.faq#q-7
    <b>How to access the Car Rental Web Service?</b>
    Regards,
    RK

  • How can I access the selected element of a DropDownByIndex-box?

    Hi,
    I want to create a WebDynpro with two web services. I created the first request with the first web service and the results are displayed in a DropDownByIndex-Box. Now the user should choose one of the results and I would like to use this for the request with my second web service. How can I access the selected Element of a DropDownByIndexBox in the Code?
    Thank you!!
    Julia

    Hi Julia,
    when user select one element in drop down it automatically set lead selection of node binded to dropdown.
    For example if you bind a dropdown to node myNode with value attribute myAttribute the lead selection of node myNode is set in the position of element choose from user.
    So to take this chooised element use this code:
    wdContext.currentMyNodeElement.getmyAttribute()
    bye
    Andrea

  • How can I access revisions of a document using OpenXML sdk library?

    How can I access revisions of a document using OpenXML sdk library?
    Thanks in advance.
    Regards,
    Akanksha.

    Hi Akanska
    The following articles should give you a basic understanding of how to work with Revisions:
    https://msdn.microsoft.com/en-us/library/office/cc536011.aspx
    https://msdn.microsoft.com/en-us/library/ee836138%28v=office.12%29.aspx?f=255&MSPPError=-2147217396
    http://blogs.msdn.com/b/ericwhite/archive/2009/09/28/source-code-available-complete-implementation-of-accept-all-changes-tracked-revisions-in-open-xml-documents.aspx
    Cindy Meister, VSTO/Word MVP,
    my blog

  • How can i access process webservice in enterprise

    Hi,
    I have a bpm process(webserviceBPM) which is exposed as webservice, deployed project in studio embeded engine. I can access the wsdl file at http://localhost:9000/albpmServices/webserviceBPM/ws.
    Exported the same project and deployed the exp file in enterprise standalone with smart publish option. Now my bpm process is working fine but how can i access the wsdl file of the deployed process?
    Please suggest me the way to access the wsdl.
    Regards.

    Hi,
    This seems to be a recurring question across this forum. Please somebody from Oracle update the Doc team to include these details in the latest release.
    You can find the solution at this forum .Check for the last but one post.
    To launch Oracle BPM deployed Web Services [In BPM Enterprise]
    Rudraksh
    Edited by: rudraksh on Jul 30, 2009 10:46 AM

  • When I run an Utilities check on the HD. I always get a prompt-SUID System/Library/CoreS has been modified and will not be repaired. how can i access this to be repaired. Most files are corrupted by messages that they are one thing but should be another

    When I  run a system utilities check and select HD. i always get a prompt the the SUID System/Library/CoreS has been modified and will not be repaired. How can I access this file so that I may repair it? Left unrepaired . There are a lot of files that do not have the correct code. They are one thing but should be another

    Hello there, toestothenose.
    It seems that you may not have gotten the entire message into your thread here, but the following Knowledge Base article offers a good resource on which messages from Disk Utility's Repair Disk Permissions can be safely ignored:
    Mac OS X: Disk Utility's Repair Disk Permissions messages that you can safely ignore
    http://support.apple.com/kb/ts1448
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • JAAS: How can I access the JAAS subject in an EJB?

    Hello,
    I try to understand the JAAS integration in J2EE 1.3.
    I know:
    J2EE defines a role-based container managed authorization for the web and ejb container. Roles, users and their relationship are defined in the realm.
    JAAS has a more sophisticated policy-based authorisation model. Since J2EE1.3 I can define a realm using JAAS having the role-based authorization of the container managed security.
    My question:
    How can I access the JAAS subject object in an EJB or servlet to use the policy-based authorization?
    Thank you for your answers
    Peter

    May be I should redefine my question:
    If I use JAAS as J2EE-Realm, how can I receive the subject?
    All JAAS-Tutorials contains code fragments like
    LoginContext lc = new LoginContext("entryFoo");
        try {
            // authenticate the Subject
            lc.login();
            System.out.println("authentication successful");
            // get the authenticated Subject
            Subject subject = lc.getSubject();But if I use JAAS as J2EE-Realm the container creates the LoginContext.
    Whom can I ask for the subject now?
    There is no such method implemented in the EJBContext, the HttpServlet or HttpServletRequest!
    Peter

  • How can I access JSP variables from a JavaScript function in a JSP page?

    Respected sir
    How can I access JSP variables from a JavaScript function in a JSP page?
    Thanx

    You may be get some help from the code below.
    <%
        String str="str";
    %>
    <script>
        function accessVar(){
           var varStr='<%=str%>';
           alert(varStr);// here will diplay 'str'
    </script>

  • Can't access HTML code in Eloqua

    I want to enhance the functionality and looks and mobile email template. For that I am trying to access HTML Editor to modify HTML code. How can I edit HTML codes in Eloqua10?

    Hello Hammad,
    When it comes to email mobile templates, the feature that makes them a mobile template is the CSS code that can be accessed by going to the toolbox as demonstrated below:
    What this means to you is the following:
    While you cannot access the full source code of this email -- because it is a templated email and not an html uploaded email, you have two options to customize it:
    1) You can delete ALL the contents that come with the template -- the default image and text, and then add your contents to it.
    2) You can upload an email and use the css code that appears in the screenshot above.
    Hope this helps.
    Thanks,
    Tarek

Maybe you are looking for

  • I can't convert a Excel sheet to Numbers

    I've created a Numbers sheet on my iPad - sending it to Excel on  a computer it opens and works ok. When sending the sheet back (edited on Excel and) the iPad - Numbers comes up with the following (translated from Danish) "Sheet can not be imported -

  • Slow Script Error

    I recently purchased an Air for my business travel. I am getting a "Slow Script" pop-up when I try to enter my time card in my company's Microsoft Exchange web site. (A script on the page "TESite PSA - [xxxxxxx] Gxxx Mxxxxxxx" (https://timeos.northgr

  • If I restore & set up as new phone, can I save contact data?

    I've been searching for a while but still can't find the information I'm looking for... I have an iPhone3G on an O2-UK contract. When I first upgraded to iOS4, the MMS camera icon disappeared from the left of the message box, and I was unable to send

  • Pause key

    How do I dsable the Pause function on the Shift key? I have never seen a more useless function on a major key on a keypad before (in over 30 years of PC use). I would throw out my HP laptop if I could afford to do so. Hitting the Pause area of the fo

  • Lenovo G40-70 How to remove dirt/stain in laptop cover

    After bringing my laptop in school I noticed black marks in my laptop. Maybe it is caused by my bag. What solution can I use to remove it.