Use an existing request in transport connection

Hello
I want to add objects into an existing transport request with transport connection.
How can i do?
Can i create a new one from transport connection but not transport it automatically? only insert objects inside it.
Thanks.

Dear Fernando Ariel Gonzalez ,
I think we can..
Please go through the steps below,
1. Go to rsa1 -> business content
2. Choose 'grouping' as "in dataflow afterwards"
3. choose 'collection mode' as "collect automatically"
4. choose 'infoproviders by infoareas' - choose appropriate infoprovider and 'insert objects for collection'
5. Select your query / queries
6.choose 'create transport request for BEx' and select appropriate development class
To Release a request....
se09/se10, 'modifiable' is marked, and 'display', cursor on you request and click truck button (release),
if request has 'child' request, need to release it first.
To delete or remove request
Goto SE03
Requets/Tasks > Unlock Objects
Give the Request num & Execute
Now Delete the Request on SE09
It is possible to rmove before transportataion from SE03. Well if you want to remove from after transportation it can happen in a case like this. While you delete the obect in dev, it should ask for a request and when that request is transported the object will get deleted in the target sys too.
For more information....
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3010ba90-0201-0010-2896-e58547c6757e
/message/1257362#1257362 [original link is broken]
Re: How to collect & transport new cube & new update rules
Re: Transport to BWQ issue?
Re: Transport a query from BWQ to BWP
Hope it helps you,Revert me back if you have any queries
Regards
Bala

Similar Messages

  • How to choose request in transport connection?

    Hi all,
    I need your help. How can I to choose in which request I will include objects in transport connection?
    Thanks,

    We have two types of requests for BW objects..
    1. Customizing Request
    2. Workbench Request
    and another One for Bex objects
    Depends on the object type the corresponding requests are assigned.
    ie During activation on prompting screen when you click creation buttion or assignment only corresponding request type will be created/displayed depends on object type.
    In other way if you do it from RSA1-> Transport connection, it will allow you to assign only in the right request type with respect to object type else system through you a error with analogous message.
    You can create request by different way.
    Type 1. During object creation/activation, in prompt you can create a new request else you can assign in existing request.
    If you are not getting the prompt during activation then reason is two..
    a) Object is in $TMP development class where transport is not possible.
    Here go to menupath Extras->Object directory entry->select object..(Assign in appropriate package/development class)
    b) Object is already in the request, from se09 you can find the request where object is locked
    Type 2. Creation of request from SEO9.
    Go to SE09, Select appropriate request type radio button and click ok.
    You can directly add the object inside the request if you know the object type and other required details.
    Even here you can move the objects from particular request to another request by clicking on option"Include object"
    Type 3. Creation and assignment of object from RSA1
    From RSA1-> Go to tab Transport connection.
    Collect all your required object similar to business content installation.
    Click on truck button you will get a prompt where depends on the situation you have to create/assigne development class and create/assign requests.

  • Using XML Import/Export in Transport Connection

    Hi, I was investigating the feasibility of copying a query definition from one BW system to another using the XML Import/Export functionality in Transport Connection.  This is not to replace our current transport process across the landscape (Dev -> QA -> Prod), but merely just looking at possibilities for end users who develop queries in QA & then recreate them in Prod.
    My question is: has anyone worked with the XML Export/Import for types Queries & Query Elements?  I was trying this out between a Dev and Sandbox system and only had limited success.  I was able to take a small query and perform the Export to a local .xml file without much difficulty.  But when I try to do the Import, my query never shows up.  The Import function shows a green light, but I get a couple of error messages on the Import such as the following:
    ==========================================================
    SAP object 3WROG4HZ3NKP1PIYHCR1H24CQ () cannot be imported
    Diagnosis
    You attempted to import SAP object 3WROG4HZ3NKP1PIYHCR1H24CQ of type into the system via the XMI interface. However, you are not allowed to import SAP objects.
    System response
    The object was ignored during the import.
    Note: It can be that the import is incomplete when the required SAP objects are still not active in the system.
    Procedure
    Install the specified objects from Business Content. Only import the metadata afterwards.
    =========================================================
    The portion returned for Saving and Activating returns green lights.  The two sample objects mentioned appear to just be custom InfoObjects used in my query & don't look to be any different than others that work OK. 
    Just curious if anyone else has worked with this and could help advise. 
    Thanks...  Jody

    This is an old subject, but I think XML import only works for datamodeling objects like InfoObjects, InfoCubes, and ODS objects. If you try to export a query, and open the XML file in a text editor, there is not enough information (in my opinion) to build the query. As an example you don't see how key figures are to be displayed, filter or free characteristics.
    However, when an InfoObject is collected, you get all the attributes, texts in all languages.
    If anyone has more insight, please enlighten us.
    -John

  • Where used List for Packages (from Transport connection)

    Hi SDN,
    If objects , such as queries, or webtemplates, are incorrectly allocated to a BEx package at the beginning, my question is as follows:
    Can we find out which objects/queries/templates have been allocated to a particular package?
    Via some table, or where used list?
    As we have a global system, we are performing this task for many developers who have incorrectly used packages from the start.
    Thank you.
    Simon

    Hi Khaja,
    That is perfect!  I am tracking the various element objects
    ELEM
    TMPL
    QVIW
    etc...
    Would you happen to know if it is possible to mass change objects to the correct package and transport through.
    Thank you.
    Simon

  • TcpListener not working on Azure: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host

    Hi Everybody,
    i'm playing a little bit with Windows Azure and I'm blocked with a really simple issue (or maybe not).
    I've created a Cloud Service containing one simple Worker Role. I've configured an EndPoint in the WorkerRole configuration, which allows Input connections via tcp on port 10100.
    Here the ServiceDefinition.csdef file content:
    <?xml version="1.0" encoding="utf-8"?>
    <ServiceDefinition name="EmacCloudService" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2014-01.2.3">
    <WorkerRole name="TcpListenerWorkerRole" vmsize="Small">
    <Imports>
    <Import moduleName="Diagnostics" />
    <Import moduleName="RemoteAccess" />
    <Import moduleName="RemoteForwarder" />
    </Imports>
    <Endpoints>
    <InputEndpoint name="Endpoint1" protocol="tcp" port="10100" />
    </Endpoints>
    </WorkerRole>
    </ServiceDefinition>
    This WorkerRole is just creating a TcpListener object listening to the configured port (using the RoleEnvironment instance) and waits for an incoming connection. It receives a message and returns a hardcoded message (see code snippet below).
    namespace TcpListenerWorkerRole
    using System;
    using System.Net;
    using Microsoft.WindowsAzure.ServiceRuntime;
    using System.Net.Sockets;
    using System.Text;
    using Roche.Emac.Infrastructure;
    using System.IO;
    using System.Threading.Tasks;
    using Microsoft.WindowsAzure.Diagnostics;
    using System.Linq;
    public class WorkerRole : RoleEntryPoint
    public override void Run()
    // This is a sample worker implementation. Replace with your logic.
    LoggingProvider.Logger.Info("TcpListenerWorkerRole entry point called");
    TcpListener listener = null;
    try
    listener = new TcpListener(RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint1"].IPEndpoint);
    listener.ExclusiveAddressUse = false;
    listener.Start();
    LoggingProvider.Logger.Info(string.Format("TcpListener started at '{0}:{1}'", RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint1"].IPEndpoint.Address, RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint1"].IPEndpoint.Port));
    catch (SocketException ex)
    LoggingProvider.Logger.Exception("Unexpected exception while creating the TcpListener", ex);
    return;
    while (true)
    Task.Run(async () =>
    TcpClient client = await listener.AcceptTcpClientAsync();
    LoggingProvider.Logger.Info(string.Format("Client connected. Address='{0}'", client.Client.RemoteEndPoint.ToString()));
    NetworkStream networkStream = client.GetStream();
    StreamReader reader = new StreamReader(networkStream);
    StreamWriter writer = new StreamWriter(networkStream);
    writer.AutoFlush = true;
    string input = string.Empty;
    while (true)
    try
    char[] receivedChars = new char[client.ReceiveBufferSize];
    LoggingProvider.Logger.Info("Buffer size: " + client.ReceiveBufferSize);
    int readedChars = reader.Read(receivedChars, 0, client.ReceiveBufferSize);
    char[] validChars = new char[readedChars];
    Array.ConstrainedCopy(receivedChars, 0, validChars, 0, readedChars);
    input = new string(validChars);
    LoggingProvider.Logger.Info("This is what the host sent to you: " + input+". Readed chars=" + readedChars);
    try
    string orderResultFormat = Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\xB")) + @"MSH|^~\&|Instrument|Laboratory|LIS|LIS Facility|20120427123212+0100||ORL^O34^ORL_O34| 11|P|2.5.1||||||UNICODE UTF-8|||LAB-28^IHE" + Environment.NewLine + "MSA|AA|10" + Environment.NewLine + @"PID|||patientId||""""||19700101|M" + Environment.NewLine + "SPM|1|sampleId&ROCHE||ORH^^HL70487|||||||P^^HL70369" + Environment.NewLine + "SAC|||sampleId" + Environment.NewLine + "ORC|OK|orderId|||SC||||20120427123212" + Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\x1c\x0d"));
    writer.Write(orderResultFormat);
    catch (Exception e)
    LoggingProvider.Logger.Exception("Unexpected exception while writting the response", e);
    client.Close();
    break;
    catch (Exception ex)
    LoggingProvider.Logger.Exception("Unexpected exception while Reading the request", ex);
    client.Close();
    break;
    }).Wait();
    public override bool OnStart()
    // Set the maximum number of concurrent connections
    ServicePointManager.DefaultConnectionLimit = 12;
    DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString");
    RoleEnvironment.Changing += RoleEnvironment_Changing;
    return base.OnStart();
    private void RoleEnvironment_Changing(object sender, RoleEnvironmentChangingEventArgs e)
    // If a configuration setting is changing
    LoggingProvider.Logger.Info("RoleEnvironment is changing....");
    if (e.Changes.Any(change => change is RoleEnvironmentConfigurationSettingChange))
    // Set e.Cancel to true to restart this role instance
    e.Cancel = true;
    As you can see, nothing special is being done. I've used the RoleEnvironment.CurrentRoleInstance.InstanceEndpoints to retrieve the current IPEndpoint.
    Running the Cloud Service in the Windows Azure Compute Emulator everything works fine, but when I deploy it in Azure, then I receive the following Exception:
    2014-08-06 14:55:23,816 [Role Start Thread] INFO EMAC Log - TcpListenerWorkerRole entry point called
    2014-08-06 14:55:24,145 [Role Start Thread] INFO EMAC Log - TcpListener started at '100.74.10.55:10100'
    2014-08-06 15:06:19,375 [9] INFO EMAC Log - Client connected. Address='196.3.50.254:51934'
    2014-08-06 15:06:19,375 [9] INFO EMAC Log - Buffer size: 65536
    2014-08-06 15:06:45,491 [9] FATAL EMAC Log - Unexpected exception while Reading the request
    System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
    --- End of inner exception stack trace ---
    at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
    at System.IO.StreamReader.ReadBuffer(Char[] userBuffer, Int32 userOffset, Int32 desiredChars, Boolean& readToUserBuffer)
    at System.IO.StreamReader.Read(Char[] buffer, Int32 index, Int32 count)
    at TcpListenerWorkerRole.WorkerRole.<>c__DisplayClass0.<<Run>b__2>d__0.MoveNext() in C:\Work\Own projects\EMAC\AzureCloudEmac\TcpListenerWorkerRole\WorkerRole.cs:line 60
    I've already tried to configure an internal port in the ServiceDefinition.csdef file, but I get the same exception there.
    As you can see, the client can connect to the service (the log shows the message: Client connected with the address) but when it tries to read the bytes from the stream, it throws the exception.
    For me it seems like Azure is preventing the retrieval of the message. I've tried to disable the Firewall in the VM in Azure and the same continues happening.
    I'm using Windows Azure SDK 2.3
    Any help will be very very welcome!
    Thanks in advance!
    Javier
    En caso de que la respuesta te sirva, porfavor, márcala como válida
    Muchas gracias y suerte!
    Javier Jiménez Roda
    Blog: http://jimenezroda.wordpress.com

    hi Javier,
    I changed your code like this:
    private AutoResetEvent connectionWaitHandle = new AutoResetEvent(false);
    public override void Run()
    TcpListener listener = null;
    try
    listener = new TcpListener(
    RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["Endpoint"].IPEndpoint);
    listener.ExclusiveAddressUse = false;
    listener.Start();
    catch (SocketException se)
    return;
    while (true)
    IAsyncResult result = listener.BeginAcceptTcpClient(HandleAsyncConnection, listener);
    connectionWaitHandle.WaitOne();
    The HandleAsync method is your "While (true)" code:
    private void HandleAsyncConnection(IAsyncResult result)
    TcpListener listener = (TcpListener)result.AsyncState;
    TcpClient client = listener.EndAcceptTcpClient(result);
    connectionWaitHandle.Set();
    NetworkStream netStream = client.GetStream();
    StreamReader reader = new StreamReader(netStream);
    StreamWriter writer = new StreamWriter(netStream);
    writer.AutoFlush = true;
    string input = string.Empty;
    try
    char[] receivedChars = new char[client.ReceiveBufferSize];
    // LoggingProvider.Logger.Info("Buffer size: " + client.ReceiveBufferSize);
    int readedChars = reader.Read(receivedChars, 0, client.ReceiveBufferSize);
    char[] validChars = new char[readedChars];
    Array.ConstrainedCopy(receivedChars, 0, validChars, 0, readedChars);
    input = new string(validChars);
    // LoggingProvider.Logger.Info("This is what the host sent to you: " + input + ". Readed chars=" + readedChars);
    try
    string orderResultFormat = Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\xB")) + @"MSH|^~\&|Instrument|Laboratory|LIS|LIS Facility|20120427123212+0100||ORL^O34^ORL_O34| 11|P|2.5.1||||||UNICODE UTF-8|||LAB-28^IHE" + Environment.NewLine + "MSA|AA|10" + Environment.NewLine + @"PID|||patientId||""""||19700101|M" + Environment.NewLine + "SPM|1|sampleId&ROCHE||ORH^^HL70487|||||||P^^HL70369" + Environment.NewLine + "SAC|||sampleId" + Environment.NewLine + "ORC|OK|orderId|||SC||||20120427123212" + Encoding.ASCII.GetString(Encoding.ASCII.GetBytes("\x1c\x0d"));
    writer.Write(orderResultFormat);
    catch (Exception e)
    // LoggingProvider.Logger.Exception("Unexpected exception while writting the response", e);
    client.Close();
    catch (Exception ex)
    //LoggingProvider.Logger.Exception("Unexpected exception while Reading the request", ex);
    client.Close();
    Please try it. For this error message, I suggest you could refer to this thread (http://stackoverflow.com/questions/6173763/using-windows-azure-to-use-as-a-tcp-server
    ) and this post (http://stackoverflow.com/a/5420788).
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to Transport the Business content objects using Transport connections

    Hi BI Guru's,
    I have installed the BW statistics cubes in BW Devlopment and i want to Transport the same things to Quality using Transprot connection. Please send steps and tips for Transporting the BW statistics collected objects.

    Hi ,
    While installing have you given any package and created request for this activation? If yes go to SE 09 and release your task and then request. And receive this in STMS in BWQ.
    If you do not have created request and saved it in $tmp while activation then you have to go to RSA1 > transport connections> select your cube > grouping> only necessary objects> collect automatically> and press transport button this will give you request no > and then release this request> then go to BWQ> stms> select source system> select your request> and press import request button(white truck sign)> do necessary settings > and say OK. Once your request status is green then its successfully received in BWQ.
    Hope this helps.

  • I am trying to download the Facebook app to my new iPad and I keep getting an error .  It tells me to sign in using my existing Apple ID, which I enter, then when I put in the password I get ConnectionManager::invoke::Failed to find service connection url

    the iPad is totally new to me.  I can't seem to do anything with my Apple ID.  As the title says, I am trying to download the Facebook app to my new iPad and I keep getting an error.  It tells me to sign in using my existing Apple ID, which I enter, then when I put in the password I get ConnectionManager::invoke::Failed to find service connection url.  Cancel or Retry.  I have no idea what I'm doing wrong.  Any help would be greatly appreciated.
    I'd also love to know how to get rid of the old owner's name, which was Mike - I'm Ann

    Wow, I found a solution in another thread:
    I had exact same error.....
    Rebooting - Failed
    Logging in to iTunes - Failed
    Logging into itunes Store - Failed
    Logging into iTunes Genius - SUCCESS    I woulnd't have thought it would make a difference but it does Then just log into the 'other' services with iTunes.
    Good luck!
    I still need to know how to change the name to Ann, though, Mike keeps popping up - and yes, I have changed it under Settings.....

  • Using an existing connection in a Java Stored Proc

    Hi,
    I have to invoke a Java stored procedure from a PL/SQL stored proc. In the Java stored proc I open a database connection & execute some SQLs. To do this can I use the same connection that is used to invoke the PL/SQL stored proc. In other words can we use the existing PL/SQL connection within a Java stored proc that is being called by the former PL/SQL instead of creating a new connection?
    Thanks in advance.
    Sunitha

    Ok I understood how to get the default connection from http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#05_01
    Connection conn = DriverManager.getConnection("jdbc:default:connection");However, I find that the Java stored proc is running slower in Oracle VM than invoking it from a command line Java program using thick driver from a remote machine.
    Thanks anyway.
    Sunitha.

  • Why the "Change Package" in Transport Connection shows "Request/Tasks"?

    We want to transport our custom InfoCubes from Developement environment to Test environment:
    RSA1 -> Transport Connection, select an InfoCube we created and drag it over to the right frame, group it by "In Dataflow Before and Afterwards". The Package column shows it's attached to $TMP that we would have to change it to a custom package that it can be transported over. We click the Package picture icon with a pencil trying to change the package attached from $TMP to a custom one, but can't find any custom package we created with SE80 from here and instead, in this window, the first column is "Request/Task" and the values under this column are all checkboxes. The last column is "Object Name". I wonder if the "Change Package" picture icon only lists all the request/task for the selected transport objects selected other than the packages we expect? Weird!
    Thanks

    hi Kevin,
    the 'normal' way has been explained by Roberto and Siggi.
    if you still want change package screen in transport connection, it will go to package change/object directory entry screen after you mark the 'request/task' and click 'V'
    Re: Why created package with SE80 can't be found in Transport Connection?

  • Display objects exists in a transport request

    Hi all,
    I want to display all the objects (Items) exists in a transport request.
    Is there any Function Module to do so or it maintained in any database table.
    Please suggest for the process.
    Thanks
    Sanket sethi

    HI,
    Refer the link.
    Table for transport request
    Regards
    Sumit Agarwal

  • Using Existing Subscriptions with Freetalk Connect...

    I have an existing subscription for unlimited US and Canada calling to phones. I also have a Skype Online Number. Will I be able to purchase the Connect Me device and use these subscriptions with it, rather than having to purchase a package containing a voucher for a subscription?

    A subscription is tied to a SkypeID. So if you continue to use the same SkypeID on the Connect Me, your subscription will apply (and you can continue to use it for calls from Skype on your PC).
    Note that you can have multiple logins from different devices to the same SkypeID. Sometimes it's hard to track certain settings when you change, say, call fowarding via one device and then have to log out and in on the other device for the change to apply to all logins.
    If you get the basic Connect Me you will still get $1.00 worth of Skype credit which can be used for conversations that are not included in your subscrption (SMS messaging, calls to "caller pays" mobile outside North America, etc.) In your case, since you have a US/Canada subscription Skype credit can be used for any calls to outside US/Canada.
    Jim Courtney
    Editor and Publisher
    Voice On The Web
    Skype: jimcanuck
    @voiceontheweb

  • Creating a request in Transports? Step by step needed.

    Hi BW gurus,
    I would like to know the steps for creating a request with collection of necessary objects which needs to be transported.
    the necessary objects are: Multi provider, Info cube, Update rules.
    Collection mode is selected as manually.
    Grouping is selected as only necessary objects.
    The Infocube which needs to be transported is the new one created from a copy of existing cube.
    The Multiprovider is the existing one which has been modified by including the new cube created.
    The Update rules which needs to be transported are also the new ones created from the copy of existing ones.
    So, Please give me the step by step procedure for doing this.
    Note: Against Multiprovider, we have a check box for transport. When that can be checked. I hope it can be checked if we select the data flow before & afterwards only.
    Please clarrify.
    Points will be rewarded for sure for all helpful answers.
    So, please spare some time & write the answers.
    Thanks & Regards

    Hi,
    In Transport Connection Just select U r Multi provider select grouping  with Before
    then u 'ill get u r requirement after u can select witch objects u needs to transport.
    let me know further
    *******Asign Points If useful*******
    Cheers,
    Satya

  • Transport of Queries: Query Designer vs. Transport Connection in RSA1

    Hello,
    actually we are having a very strange behavior towards query transports.
    Whenever we collect queries using Query Designer ("save"),  all query elements are written on a transport request.
    Collecting queries using rsa1 transport connection collects additional repair elements. For some reason these repair elements cause problems: although query elements + repair elements are transported in transport protocol, the query itself does not exist on the quality system.
    Any idea why?
    Thank You!
    Goliad001

    Hi,
    If you are getting error in transport log due to repair elements, then you can move your transport in Overwrite mode. And when you are moving your query through transport organizer make sure that you have marked your query as well for transport along with dependent objects.
    Once you collect all the objects and write them to TR just have a refresh to make sure that all the objects are written to TR. You can check that just beside the object name in Transport organizer.
    Regards,
    Durgesh.

  • How the Requests are Transported  -Pls give the info in Detail

    Hi,
      Anybody pls let me know how the requests are transported from Development to
    Quality.I have a problem.My one request contains the Tasks of my other request.
    Pls let me know how to include mismatched task in the actual Request.I got assigned the task to transport tehse requests.Pls let me know

    Hi Sunny,
    you have to assign the neccessary objects need to be transported to Quality using Transport Connection in RSA1
    while assigning an object if you find it is already assigned to some other request then first release the existing request and then go ahead with new request.
    Always first release the Tasks and thn release the request in SE09/10
    To check whether if one object is assigned to multiple requests
    Go to Se03 >Objects in Requests> Search for Objects in Requests/Tasks --> Object selection --> select the respective object like cubes, ods,infoobjects > enter the technical name> and start searching
    Thanks ,
    Sudhakar.

  • Selection Checkbox is deactivated in Transport connection

    HI Experts,
                         I have to transport query from dev to Quality, when I selected the query in transport connection. The selection check box is not in active mode. can any one tell me why I am getting this problem..
    Regards,
    SVS

    if u r using existing transport request, please check the details of all object collected in that transport (use SE01 / SE09)..
    if transport contains only required query and not other things (which u dont want to move to quality), then u can use the TR.. else unlock the other items or delete them from TR.

Maybe you are looking for

  • HT1657 Why does my down load take so long

    How can I get iTunes tunes to download movies faster?

  • Weblogic.log formatting

    I have 2 weblogic servers running. one on my W2K laptop and an AS400 When a nosuchmethod error is logged on my W2K webserver I get the method name. When the same error is generated on my AS400 webserver it does not. Is there a way to get it to show u

  • Can't Sync with any other apps

    I just got the new 3G and am trying to get my iCal and my Address Book info from my MacBook to my iPhone and I don't see any syncing options for those options. I have only found things on the net for OS X 10.5 not 10.4. I am sure its not as hard as I

  • Shutdown from LXDE

    I followed the wiki to enable shutdown on LXDE, but it is not working. I endabled HAL and DBUS. This makes the options appear, but when I press the buttons I get back the desktop. The wiki says to edit /etc/PolicyKit/PolicyKit.conf, but I can't see t

  • In Flash CS5, I can't choose Smooth point in the Motion Editor.

    I'm working on the Flash CS5 Classoom in a book lessons, and in Lesson 4, in the Motion Editor, right-clicking on the keyframe in the Alpha property doesn't bring up a Smooth point menu selection, just an Add a keyframe option. Is there another way t