Any program for advanced clipboard usage?

Hi everybody!
I need to make a clipboard the same for everything, so it's like syncronized. I need data in clipboard to be saved there when I close an application where data was copied. And I need data to be available everywhere inside one user, for example in OpenOffice, in Terminal, in Mozilla, etc...
Is there any program for this? Or maybe system settings to configure?

skanky wrote:
Sorry if this is going OT:
Another silent fail for me, second one this evening:
anamnesis --start
No error, and a ps check returns nothing. This means anamnesis -a fails (I assume that's why it fails, as the help says it needs it running).
All/most other anamnesis functions seem to work.
EDIT: actually it seems to be problem with the -a option and the log file says the daemon is running. I'll post an error to the bug tracker.
Just to update here to finalise, a fix is apparently in the pipeline.

Similar Messages

  • Any program for mac to download videos from website like youtube, dailymotion, and any video online?

    Any program for mac to download videos from website like youtube, dailymotion, and any video online?

    TOAST!
    http://www.roxio.com/enu/products/toast/default.html?gclid=CIDu-MaizLACFQFeTAoda nEfWA
    Ciao.

  • Do you know any program for 3d modeling and rendering for Mac?

    Do you know any program for 3d modeling and rendering for Mac?

    I use MegaPov for 3D-rendering. MegaPov is a Mac version of the free PovRay, a photrealistic renderer. It is perfect, if you like to write animation scripts to program elaborate animations and shading.
    If you prefer a GUI to a scripting language you may consider Blender; it is also free.
    Rather expensive, but with an elaborate GUI are Maya and Cinema 4D; both are available for the mac.

  • Any program for Deletion the normal Parked documents in Standard SAP

    Hi All,
    is there any program for delete the normal parked documents in Standard SAP ??  we have nearly 2000 documnets so we can't do manually one by one at FBV2/FBV6.
    please help.
    Raj

    Hi,
    You can create a CATT/LSMW project, by recording the relevant transactions and then make a mass change by executing it.
    Regards,
    Eli

  • Any program for calling bapi from ABAP step by step

    any program for calling bapi from ABAP step by step
    points will be rewarded,
    thank you,
    Jagrut BharatKumar Shukla

    Hi Jagrut,
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    ex BAPI:
    API_SALESORDER_CREATEFROMDAT1
    BAPI_SALESORDER_CREATEFROMDAT2
    You can get good help form the following links,
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sappoint.com/abap/bapiintro.pdf
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://sap-img.com/bapi.htm
    <b>EG::</b>
    <b>Here is the step by step procedure for creating BAPIs.</b>
    There are 5 different steps in BAPI.
    - Create BAPI Structure
    - Create BAPI Function Module or API Method.
    - Create BAPI object
    - Release BAPI Function Module.
    - Release BAPI object.
    Step1. Creating BAPI Structure:
    - Go to <SE11>.
    - Select Data Type & Enter a name.
    - Click on Create.
    - Note: Always BAPI should be in a development class with request number (Not Local Object).
    - Select Structure & hit ENTER.
    - Enter the fields from your database. Make sure that the first field is the Primary Key Field.
    - Then SAVE & ACTIVATE.
    Step 2. Creating BAPI module:
    - Enter TR.CODE <SE37>.
    - Before entering any thing, from the present screen that you are in, select the menu
    Goto -> Function Groups -> Create Group.
    Enter a name (Note: This name Must start with ZBAPI)
    Let this screen be as it is and open another window and there, enter TR.CODE <SE80).
    Click on the Third ICON that says Inactive Objects.
    Select the group that you just created and click on Activate.
    Notice that the group you created will disappear from the list of inactive objects.
    - Go back to ><SE37> screen and enter a name and hit <ENTER>. Then enter the group name that you just created and activated.
    NOTE: When you release a function module the respective group will be attached to that particular application. It cannot be used for any other application. NEVER include an already existing group that is attached to another module.
    Now click on the first Tab that says [ATTRIBUTES] and select the radio button that says remote-enabled module since we will be accessing this from any external system.
    Then click on the second tab that says [IMPORT].
    Enter a PARAMETER NAME, TYPE and the structure you created in the first step. Also select the check box ‘Pa’. All remotely enabled functional modules MUST be Pa enabled, where Pa means ‘Passed by Value’ and if you don’t select ‘Pa’, then that means it will be passed by reference..
    Then click on tab that says [EXPORT].
    Enter the following as is in the first three fields
    RETURN TYPE BAPIRETURN (These 3 field values are always same)
    Here also select ‘Pa’ meaning Pass by value.
    Note: BAPIRETURN contains structure with message fields.
    Then SAVE and ACTIVATE.
    Step 3. Creating BAPI object:
    - Enter Tr.Code <SWO1> (Note. It is letter ‘O’ and not Zero).
    - Enter a name and then click on create. Enter details.
    NOTE: Make sure that that Object Type and Program name are SAME.
    - Enter Application ‘M’, if you are using standard table Mara. If you are using your own database then select ‘Z’ at the bottom.
    - Then hit <ENTER>.
    - Now we have to add ‘Methods’. High light METHODS and then select the following from the menu:
    Goto Utilities -> API Methods -> Add Methods.
    - Enter function Module name and hit <ENTER>.
    - Select the second FORWARD ARROW button (>)to go to next step.
    - Check if every thing looks ok and again click on FORWARD ARROW button (>).
    - Then select ‘YES’ and click on <SAVE>.
    - Now on a different screen goto TR.CODE <SE37>. Enter Function Module name and select from the top menu Function Module -> Release -> Release.
    - Goback to TR.CODE <SWO1>.
    Here select the menu combination shown below in the same order.
    - Edit -> Change Release Status -> Object Type Component -> To Implemented.
    - Edit -> Change Release Status -> Object Type Component -> To Released.
    - Edit -> Change Release Status -> Object Type -> To Implemented.
    - Edit -> Change Release Status -> Object Type -> To Released.
    - Then click on <SAVE>.
    - Then click on Generate Button (4th button from left hand side looks like spinning wheel).
    - Then Click on the button that says ‘PROGRAM’ to see the source code.
    To check if this is present in work flow goto TR.CODE <BAPI>.
    Here it shows business object repository.
    - First click on the middle button and then select “ALL” and hit ENTER.
    - Goto tab [ALPHABETICAL] and look for the object that you created. This shows that the BAPI object has been created successfully
    <b>Reward pts if found usefull :)</b>
    regards
    Sathish

  • TS1424 error 1009 while downloading any program for ipad

    error 1009 while downloading any program for ipad

    I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not downloading properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • Is there any Program for Perfornance Calculation?

    Hi,
    Is there any standard program for calculating ABAP program performance? Please help me in this.
    Thanks in Advance.
    Siva Sankar.

    Hi
    These are the main performance points where u have to look
    there is no program for this
    reward if usefull
    Performance Tuning is nothing but optimizing the performance of your program through various techniques thus increasing the productivity of the user.
    Purpose
    In this world of SAP programming, ABAP is the universal language . Often due to the pressure of schedules and deliveries, the main focus of making a efficient program takes a back seat. An efficient program is one which delivers the required output to the user in a finite time as per the complexity of the program, rather than hearing the comment “I put the program to run , have my lunch and come back to check the results”
    Use
    Leaving aside the hyperbole, a performance optimized ABAP Program has the following uses:
    Saves the time of the end user.
    Increases the productivity of the user.
    In turn keeps the user and hence the management happy.
    Challenges
    Performance of a program is also often limited due to hardware restrictions, which is out of the scope of this tutorial.
    Ways of Performance Tuning
    Selection Criteria
    Select Statements
    Select Queries
    SQL Interface
    Aggregate Functions
    For all Entries
    Select Over more than one Internal table
    Internal tables
    4. Typing
    5. Control Statements (If, Case, While..)
    6. Field Conversion
    7. ABAP Objects
    8. Tools for Performance Analysis
    Selection Criteria
    Restrict the data to the selection criteria itself, rather than filtering it out using the ABAP code using CHECK statement. 
    Select with selection list.
    Note: It is suggestible to make at least on field mandatory in Selection-Screen as mandatory fields restrict the data selection and hence increasing the performance.
    SELECT * FROM SBOOK INTO SBOOK_WA.
    CHECK: SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    The above code can be much more optimized by the code written below which avoids CHECK, selects with selection list
    SELECT CARRID CONNID FLDATE BOOKID FROM SBOOK INTO TABLE T_SBOOK
    WHERE SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    Select Statements Select Queries
    Avoid nested selects
    Select all the records in a single shot using into table clause of select statement rather than to use Append statements.
    When a base table has multiple indices, the where clause should be in the order of the index, either a primary or a secondary index.
    For testing existence , use Select.. Up to 1 rows statement instead of a Select-Endselect-loop with an Exit.
    Use Select Single if all primary key fields are supplied in the Where condition .
    Point # 1
    SELECT * FROM EKKO INTO EKKO_WA.
      SELECT * FROM EKAN INTO EKAN_WA
          WHERE EBELN = EKKO_WA-EBELN.
      ENDSELECT.
    ENDSELECT.
    The above code can be much more optimized by the code written below.
    SELECT PF1 PF2 FF3 FF4 INTO TABLE ITAB
        FROM EKKO AS P INNER JOIN EKAN AS F
          ON PEBELN = FEBELN.
    Note: A simple SELECT loop is a single database access whose result is passed to the ABAP program line by line. Nested SELECT loops mean that the number of accesses in the inner loop is multiplied by the number of accesses in the outer loop. One should therefore use nested SELECT loops  only if the selection in the outer loop contains very few lines or the outer loop is a SELECT SINGLE statement.
    Point # 2
    SELECT * FROM SBOOK INTO SBOOK_WA.
    CHECK: SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    ENDSELECT.
    The above code can be much more optimized by the code written below which avoids CHECK, selects with selection list and puts the data in one shot using into table
    SELECT CARRID CONNID FLDATE BOOKID FROM SBOOK INTO TABLE T_SBOOK
    WHERE SBOOK_WA-CARRID = 'LH' AND
    SBOOK_WA-CONNID = '0400'.
    Point # 3
    To choose an index, the optimizer checks the field names specified in the where clause and then uses an index that has the same order of the fields . In certain scenarios, it is advisable to check whether a new index can speed up the performance of a program. This will come handy in programs that access data from the finance tables.
    Point # 4
    SELECT * FROM SBOOK INTO SBOOK_WA
    UP TO 1 ROWS
    WHERE CARRID = 'LH'.
    ENDSELECT.
    The above code is more optimized as compared to the code mentioned below for testing existence of a record.
    SELECT * FROM SBOOK INTO SBOOK_WA
    WHERE CARRID = 'LH'.
    EXIT.
    ENDSELECT.
    Point # 5
    If all primary key fields are supplied in the Where condition you can even use Select Single.  Select Single requires one communication with the database system, whereas Select-Endselect needs two.

  • Any programs for directing a proxy to applications installed on Mac?

    So I've used MacProxy on Mac OSX 10.7.5 this does not work, it simply crashes my computer whenever I launch an appliation.
    I wanted to find an application, or a setting that will allow me to set authentication for certain applications, or all applications.
    Since the application I need this for runs an updater which checks for updates, then launches a client. (Vendetta Online)
    I am on my Universtiy wireless, which uses 802.1X via PEAP (MSCHAPv2).
    Thanks in advance.

    If the Intel Mini came with Leopard it will not run Tiger. Macs don't run systems earlier than the versions with which they were released. Even if you clone onto the Mini's internal drive your Tiger was designed for a different computer architecture (PPC) that was pre-Intel and won't work.
    Leopard does not have Classic so your OS9 programs will not run (I don't think they can run on an Intel machine in any case). There is a program called Sheepshaver that was supposed to provide some Classic capability (but only 9.0.4 or earlier) on Leopard but is not user friendly (I'm just reporting what I have read). More information [here|http://forums.macosxhints.com/showthread.php?s=&threadid=53434].
    I wouldn't use an old version of Diskwarrior on Leopard. Check Alsoft's site about upgrades.
    Message was edited by: Limnos

  • Search Item drop-down does not show any data for Advanced Search.

    Hi,
    I have a requirement to add a new criteria to the existing Advanced Search region of 'My Employee Information' in Manager Self Service responsibility. I substituted the AdvancedSearchVO to include the new column. Using personalization i did the below steps to show the new column in the page,
    1) Created a 'Message Styled Text' item under Table Layout region to display the result. I associated the View Instance (AdvancedSearchVO1) and View Attribute (AttrColumn).
    2) In Advanced Search Panel created a new CriteriaRow and set the 'Search Allowed' property to True.
    3) In Advanced Search Mappings i tried to create the new mapping but the Search Item drop-down does not show any of the CriteriaRow item. But Results Item shows the 'Message Styled Text' item created in step 1 above.
    Any idea what i would be missing becasue of which 'Search Item' property does not show any data?
    I am using OAF version 12.1.1.
    Thanks, Suresh

    Hi,
    I faced the same situation but i still waiting for the solution.. this is my problem's thread..
    Addition of LOV Search Filter using Personalization
    But when i tried to create a new custom page with advanced table and created a new LOV column via personalization. i was able to create new search mapping.. but this is not happening in the seeded page case :(.
    I m also looking for solution...if any one can provide some inputs on it , will be highly appreciated.
    Thanks
    Renu

  • Does Apple have any programs for Disabled Americans?

    I am a Disabled American and due to a very limited income I have been unable to afford a computer since losing my ability to work. Is anyone aware of whether Apple participates in altruistic or philanthropic programs whereby someone like myself may be eligible for an Apple computer that I am otherwise unable to afford?  I've always been an Apple and Mac user and supporter but at this phase of my life it's as though I can enthusiastically watch from the sidelines but I feel like I can't play in the game, so to speak. If a program exists which may provide refurbished or otherwise unused products to others like myself, there is a very real possibility that with access to a computer I could even rejoin my former colleagues in the workplace. This sounds looney, but it would be a joy to feel viable enough to begin paying taxes again!  My country has faithfully looked after me; I'd like the opportunity to give back now.
    Any information available will be very appreciated!  Thanks to all...
    T

    Your best bet would be to work through local philanthropic or servic organizations. Groups like Rotary, I believe often do such things. Also, you might try asking around at support groups for your particular disability. If you are working with a hospital or government social worker, they may also know of programs.

  • Are there any programs for MBP (Universal Binaries) that allow you to...

    Rip or at least play DVDs from any region?
    Thanks for the help!

    Try these:
    http://www.versiontracker.com/dyn/moreinfo/macosx/22715
    and
    http://www.dvd2one.com/?loc=download
    William
    PS the non-binary version of DVD2OneX works on mine ...

  • Any programs for OS 10.2.8 that convert video for my 5G Ipod?

    Hopefully free. I have Quicktion pro 6.5.3, it won't work.

    mpeg steamclip is good, and it's free.

  • Does SAP Provide any standard conversion program for Batch Managment activa

    Hi,
    An idea if SAP Provides any standard program to conversion of non batch managed material to batch managed material in a productive SAP Environment and close open documents,
    It would be great help if somebody can reply to these queries.
    Thanks in advance
    Regards
    Bijaya Pradhan

    Hi
    Use the same Driver program RIPROV00 which is used as Script driver program to fire the output from smartforms also
    Only thing is little bit you have to modify the program such that it triggers the smartform instead of Script.
    I think there is no smartform driver program for this IW21.
    see some standard SF driver program like RLE_DELNOTE and
    modify it and use it.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Is any Programming knowledge require for SAP MDM people ??

    Hi,
    My name is Balu completed Mechanical Engineering. Am Interesting to learn SAP MDM. Is there any Programming Knowledge require for to learn SAP MDM. Please reply my Question.
    Thanks In Advance,
    Best Regards,
    Balu

    My name is Balu completed Mechanical Engineering. Am Interesting to learn SAP MDM. Is there any Programming Knowledge require for to learn SAP MDM. Please reply my Question.
    Thanks In Advance,
    Best Regards,
    Balu
    Hi Balu,
    It all depends on the kind of role you aim at or how you want to sell yourself.
    I dont think programming knowledge is required for core SAP MDM related work but it all depends on the role in hand,project requirement,landscape,customization etc.
    I will like to add that SAP NetWeaver Master Data Management (SAP NetWeaver MDM) can provide a single version of master data for supplier, product, customer, or user-defined data objects in heterogeneous environments.
    It is not only a tool but a part of strategy.It has to interact various SAP as well as legacy systems for data related operations.
    SAP provides its users with set of APIs which one can use to achieve customization as per their requirement.
    There are ABAP,JAVA and .NET APIs provided by SAP for this purpose.
    In all,having a coding experience in any of the above languages would certainly be a plus.
    Hope it help!
    Thanks,
    Ravi

  • Hello all.   Hope someone can help me. I recently downloaded some  updates for my imac.  Since doing this the computer starts up but I get no logon box.  The home screen opens but I can't open any programs or files. I've tried rebooting, no joy. Help!!

    Hello all..   I hope someone here can help.  I recently downloaded some updates to my imac.  Since then the computer starts but I get the home screen opening without the logon box.    I can't open any programs or files and if I click on the Safari tab it disappears from the dock.  I've tried rebooting with no joy.
    I contacted technical help at Apple and was told to hold down the ctrl and alt keys with two other keys, I think the S or P keys when powering up. This worked
    and the computer seemed fine but now the problem has reappeared.  Is there a way to removed downloaded updates from the computer or revert it to an earlier state?   Sorry for the long question. Hopefully one of you clever people can help.   Simon

    Clntxwhtby wrote:
    Hay thank you for your time . I do that every time I know I am online. It says that I am up to date . I have found that I have 10.4.11 version, and that my boot version is 10.6.2, and that my kernel version is 8.11.1.
    I have a hard drive icon on my desktop that says 10.6.2....
    I use to have iphoto, it doesnt open anymore, it says there is 1.2gigs on that disk.There are many things on here that are the same way. Where do I start?
    It's always good to go with one thing at a time and stay focused on that. Let's start with the OS you're running. Click on the Apple menu > About This Mac. What does it say under Mac OS X version ?

Maybe you are looking for

  • Itunes 10.5.3 keeps crashing

    I got a new laptop recently and its Windows 7 64-bit. I installed itunes 10.5.3 32-bit and it kept crashing, so i reinstalled it without knowing about 64-bit. It stopped crashing, but after i updated my computer, it started crashing when i try to add

  • Load external swf by .extension and get totalFrames

    What I am trying to achieve is dragging and droping a swf into this app while trace its totalframes. But no luck yet, cant seem to ge the file.extension to be loaded. code so far: package           import flash.display.Sprite;           import flash.

  • BEx Broadcasting in portal PDF format thrugh Query designer

    hi, i have a problem in sending a query as a mail using broadcaster in pdf format through portal The steps to reproduce: from Query designer executing a query , it takes me to portal screen, there right click on the report and Broadcast and Export->B

  • ADF - Jdev 11g - FacesMessage

    Hi, I am facing a strange issue while using FacesMessage class to show Information to User. Here is my code : FacesContext ctx2 = FacesContext.getCurrentInstance(); FacesMessage msg2 = new FacesMessage(*FacesMessage.SEVERITY_INFO*,"", "Please contact

  • Only appear 10 rooms in the tab "My rooms"

    Hi experts, I have a problem, when i visit my rooms, i see that only appear the last 10 rooms in the tab "My Rooms", Why? How can modify it? Thanks in advance, Regards,