Copying text from Oracle Applications Window to other Application windows

Hi All,
I am not able to copy text from oracle applications windows to my other application windows.
Please advise.
Thanks,
Amit

Check in your organization who is able to copy the text. Then from that user machine, who is able to copy text, copy identitydb.obj file and copy to your machine (overwrite the current one)
Then clear its jcache and browser cache one time. From that point forward they can connect to both instances. This is accomplished as follows:
1. On each Client PC, you will need the new instance 1 (TEST) version of this identitydb.obj file located C:\Program Files\Oracle\identitydb.obj (default location )
2. Clear Jinitiator jcache : On the client PC delete all files found in c:\Program Files\oracle\jinitiator 11727 Export\jcache
3. Clear browser cache:
a) Netscape : Edità Preferencesà Advancedà cache and delete Memory Cache and Disk Cache
b) Internet Explorer : Toolsà Internet Options à delete Temporary Internet Files
For any further assistance pls. feel free to ask.
Regards,

Similar Messages

  • Hot to copy text from a Popup Windows in SAP CRM 7.0?

    Hi guys,
    we want to copy text from a POPUP Windows but you cannot highlighttext there.
    We've tried with "Popup to Decide List" and "Popup for Reuse components".
    Do you know if is possible to copy text from a POP-UP Windows in CRM WUI 7.0?
    We also have tried to export text to the clipboard using:
    CALL METHOD cl_gui_frontend_services=>clipboard_export
      IMPORTING
         data = lt_tab
      CHANGING
         rc = vl_rc
      EXCEPTIONS
         cntl_error = 1
         error_no_gui = 2
         not_supported_by_gui = 3
         no_authority = 4
      OTHERS = 5.
    It doesnu2019t work neither. It gets the exception CNTL_ERROR.
    Do you know any other Function/Class for this purpose?
    Thanks in advance.
    Fernando.-

    Solved.
    I've used a Text Area.

  • How do I copy text from a Spotlight search result quicklook window?

    Is it possible to copy text from the quicklook windows that appear when you hover over a Spotlight search result? It would be useful to be able to copy, say, a phone number or email address straight from the address book card that appears in Spotlight. The only options I see are to display the text in large type and to Facetime (for phone numbers) and to perform mapping functions for addresses; simple copying seems to be disabled for some reason.
    I am using Spotlight in OS 10.7.5.
    Michel Chaouli

    Try this:
    set the clipboard to item 1 of (get name of (static text of group 104 of UI element 1 of scroll area 1 of group 4 of window "Account Summary" of application process "Safari"))
    (10906)

  • Very slow copying text from microsoft word

    Any idea why copying text from word (office 2004) should be v slow? Copying same text in OS9 no problem (am currently copying text from client supplied documents into other applications ie. Quark, so having to go to another machine running previous OS + apps. seems a bit 'unnecessary'!)
    PowerBook G4 17"   Mac OS X (10.4.5)  

    Use the smart paste (Ctrl + Shift v) and select plain text only. Otherwise, you're pulling in Word's formatting when you do a regular paste.

  • Can't copy text from InDesign to other applications

    Hi there,
    Whenever I try to copy text from InDesign to any other applications, it simply fails. When I get to my text editor, email program, Illustrator or Photoshop, it's like the clipboard is empty.
    I'm able to copy shapes and other objects, though. I can also copy entire text boxes, but if I'm copying to Illustrator, for instance, all the lines of text are separated. It's treated as an object and is pretty useless for typical formatting needs.
    I'm on Mac OS X Mountain Lion, using InDesign CS5.
    Can anyone help?
    Thanks!

    Hi all,
    Thanks for replying!
    I tried unchecking "copy PDF", and also quit the only slightly-clipboard related app I use, Quicksilver, but it didn't fix the problem.
    Does anyone have any other ideas?

  • Can't highlight and copy text from the Podcast Information window

    With previous versions of iTunes I was able to convert Podcasts to AIFF files in my music library and then copy the track notes and text from the information window pane in Podcasts. With iTunes 8, I can get the information windows to pop-up but the text is not highlightable. Any ideas how I can cut and paste the info? thanks.

    I think I finally figured out the copy paste podcast thing and I do not know why I did not think of this earlier.
    Instead of clicking on the "i" symbol to get the information about the podcast to come up in the window that you cannot copy and paste from, hit command i or File> Get Info. The window that opens is just like the one that opens when you get info from a track in your regular music library. You can copy and paste from this one, even if it is a Podcast.
    paul

  • How to call a web Service from Oracle Applications?

    Hi friends,
    I've posted this question on OA Framework forum , but may be it's more appropiated put it here. Sorry for do it again:
    It's about how to call a web service from a Form or a .sql (via Request) in Oracle Applications:
    Could you please explain here the detailed steps (with code example if it's possible) to invoke a webservice from Oracle Applications?.. how did yo do it...?
    I've read differents posts here and the 33097.1 metalink note (by the way, the first recommended link in this note is broken...), but there are lots of theorical concepts and no real examples to see how/from where invoke the WS
    I'll have to call one webservice (I suppose the customer will give me the interface implementation)...but I've never did it with Applications so that's why I ask you for all the detailed steps...
    I work with Forms 6i, Apps 11.5.10.2 and DB 9.2.0.7.
    Thanks a lot.
    Jose.

    Hello Jose,
    I did using java program to call BPEL web services in 11.5.10.
    I pasted below the metalink note for your reference (Note:250964.1)
    The idea is first write a java program to call the webservice (in my case it is calling an BPEL web service, so this may not help directly), test it.
    Then port the java program as specified in the note, so that you could call your web service through concurrent manager scheduler.
    Is this ok?
    Thanks
    Arun.
    ======================================================
    Checked for relevance on 25-Apr-2007
    Application Install - Version: 11.5.8 to 11.5.10
    Goal
    ====
    How to register and create a Java concurrent program for Oracle Applications
    Release 11i
    Solution
    ========
    1. Create your Java Concurrent Program (JCP) , using a text editor.
    /*===========================================================================+
    | Concurrent Processing Sample Code |
    | |
    | FILENAME |
    | Hello.java |
    | |
    | DESCRIPTION |
    | Sample Java concurrent program |
    | About the simplest possible program, just writes a message to the |
    | logfile and output file. |
    | |
    | HISTORY |
    | $Log$ |
    | |
    +===========================================================================*/
    package oracle.apps.fnd.cp.sample;
    import oracle.apps.fnd.cp.request.*;
    public class Hello implements JavaConcurrentProgram {
    public static final String RCS_ID = "$Header$";
    public void runProgram(CpContext ctx) {
    ctx.getLogFile().writeln("-- Hello World! --", 0);
    ctx.getOutFile().writeln("-- Hello World! --");
    ctx.getReqCompletion().setCompletion(ReqCompletion.NORMAL, "");
    =======================================
    End Sample
    =======================================
    2. Create a sample directory under $JAVA_TOP:
    $ mkdir $JAVA_TOPoracle/apps/fnd/cp/sample
    3. Copy Hello.java into $JAVA_TOP/oracle/apps/fnd/cp/sample:
    $ cp $HOME/Hello.java $JAVA_TOP/oracle/apps/fnd/cp/sample
    4. Compile your java program:
    javac $JAVA_TOP/oracle/apps/fnd/cp/sample/Hello.java
    5. Test at the command line with following syntax:
    jre -Ddbcfile=$FND_TOP/secure/your_dbc_file.dbc \
    -Drequest.outfile=./outfile \
    oracle.apps.fnd.cp.request.Run \
    oracle.apps.fnd.cp.sample.Hello
    6. Register your custom java concurrent program with Oracle Applications.
    a. Navigate: Concurrent > Program > Executable
    b. Enter details into the form
    Executable: JCPHELLO
    Shortname: JCPHELLO
    Application: Application Object Library
    Execution Method: Java Concurrent Program
    Execution File Name: Hello (Insert a name that does not contain space or period)
    Execution File Path: oracle.apps.fnd.cp.sample
    c. Save the details
    d. Navigate: Concurrent > Program > Define
    e. Enter details into the form
    Program Name: JCPHELLO
    Program Shortname: JCPHELLO
    Application: Application Object Library
    Executable: Choose JCPHELLO from LOV
    Executable Options :
    f. Save the details
    7. Add this new concurrent request to your responsibility request group.
    a. Navigate > Security > Responsiblity > Request
    b. Query System Administrator
    c. Add new row and choose TestJava
    d. Save the changes.
    8. Run your new Hello Java Concurrent Program
    Navigate: Request > Run
    References
    ~~~~~~~~~~~
    Oracle Applications Developers Manual for Release 11i A75545-01
    ====================================================

  • Launch Discoverer 10g from Oracle Applications Menu

    Please provide steps to launch Discoverer 10g from Oracle applications menu.
    Thanks in advance.
    suresh

    Hi,
    Follow these steps....
    The process is in 3 stages _(stage 1 will be done only once for all the reports)._
    Stage 1:
    Set the application discoverer relevant parameters.
    Perform this stage only once.
    1.1 Enter the application in System Administrator responsibility.
    1.2 Choose menu 'Profile' and then submenu 'System'.
    1.3 Find the desired profile by filling 'Icx%Discoverer%' and press Find button.
    1.4 Fill the fields (only the values) as described in the table of values bellow.
    Parameter Value
    ICX: Discoverer Default End User Layer Schema Prefix your eul name without the suffix (_US).
    note that if you have several invs it can be diffrent between them.
    ICX: Discoverer End User Layer Language Override American English
    ICX: Discoverer Launcher http://your_server_name:7777/discoverer/viewer?Connect=[APPS_SECURE]
    ICX: Discoverer Release 10 or any other that you are using
    ICX: Discoverer Viewer Launcher http://your_server_name:7777/discoverer/viewer?Connect=[APPS_SECURE]
    ICX: Discoverer use Viewer Yes (or not if you want plus to open - but change the viewer to plus in the link as well - the previos parameter)
    Don't forget to press save button.
    Stage 1 Ends.
    Stage 2:
    Build an oracle application function for each discoverer report.
    Perform this stage for each report.
    2.1 Enter the application in System Administrator responsibility.
    2.2 Choose menu 'Application' and then submenu 'Function'.
    2.3 Fill needed values in each tab by the next instructions (function values)
    2.3.1 Description tab – fill the function, function user name and the description. Notice that the function value should be without spaces.
    2.3.2 Properties tab – fill the:
    Function with the same name you have choose in the previous tab,
    Type with 'SSWA plsql function',
    Maintenance Mode Support with 'None' (Default value),
    Context Dependence with 'Responsibility' (Default value).
    2.3.3 Form tab- fill the:
    Function with the same name you have choose in the previous tab,
    Form & Application fields leave empty,
    Parameters – there are two options available:
    1st Leave it empty – will cause the function to open the discoverer all reports web page and user will have to choose a specific report from the list .
    2nd Fill it with value '=workbook=name of the workbook' but without spaces, convert the spaces (if there are any) from the workbook name to + (plus) sign.
    For example '=workbook=BI+SERVICE+Performance' represents the string for the 'BI SERVICE Performance' report.
    Note: you can also send parameters to the report but since almost all the parameters have a default value (accept from dates) it's not necessary.
    2.3.4 Web HTML tab – fill the HTML call with ' OracleOASIS.RunDiscoverer'.
    Don't forget to press save button.
    Stage 2 Ends.
    Stage 3:
    Build an oracle application menu or submenu for each discoverer report that represented by the function you has created in stage 2.
    Perform this stage for each pair - responsibility + report/function.
    3.1 Enter the application in System Administrator responsibility.
    3.2 Choose menu 'Security' and then submenu 'Responsibility' and then submenu 'Define'.
    3.3 Locate the needed menu by the responsibility that you want to enable her to use the report – of course that the report should be granted for the responsibility via discoverer mechanism as well.
    Do it by clicking on the flashlight that located in the left upper corner and find the needed responsibility.
    3.4 Find the needed responsibility and select her via next screen (Don't forget to use % as wildcards)-choose by double click on her
    3.5 Copy the menu name that related to the responsibility you have choose from the menu field located in the next screen and close the window.
    3.6 From the navigator screen choose menu 'Application' and then submenu 'Menu'.
    3.7 Locate the menu that you've copied in 3.5 (with the flashlight and the find screen, double click on the menu name – similar to 3.3 and 3.4) via next screen.
    3.8 Press on the 'add record' sign (+) that located in the right upper corner of the screen (Do it after the mouse sign and focus is in the rows as you can see the oval mark).
    3.9 Fill the prompt with what you want the user to see in the menu that will activate the report link and after fill the user function name as you have build her in stage 2 (Don't forget to save it).
    Don't forget to press save button.
    Stage 3 Ends.

  • Can not copy text from AI CC or AI6 in to the file name

    I have an AI file with 80+ UPC codes that I need to separate in to individual files. Each UPC has a descriptor but when I copy the text and then try to paste it as file name it will not paste. I use this same process regularly in InDesign when I design print ads. Each print ad has a unique item number that prints with the copyright line so I simply copy and paste that information when I do the save.
    Under File Handling and Clipboard both PDF and AICB are on. I've tried this in AICC and AICS6. I also tried different files. Same issue. Any suggestions? I really don't want to have to type 80 some descriptions which are very lengthy. 

    I can not copy the text from Illustrator in to any OS X application/function (filename, Mail, Text Edit, ect). I can copy in to InDesign, Photoshop, Flash, and other other Adobe product. I can copy in to Word as well. I guess my work around will be Word.
    And the opposite is true. I can copy text from any other Adobe application to any OS X application/function with no issues.
    I guess my work around will be to OCR the text from Acrobat and open in Word. The descriptors have to be 100% accurate and some of them are pretty long.

  • Can't Copy Text From PDF Within Gmail Preview

    Hi,
    If I click on a pdf attachment while inside gmail, I get the expected preview window of that PDF. However, I can't copy text from it. If I press Command-C, it just makes a beeping noise letting me know nothing is being copied. If I select text and right-click, there's no 'copy' option. Also, in the top toolbar, Copy is greyed out in the Edit menu. However, if I just hold down Command-C for a couple seconds the text will copy anyways (while hearing a dozen audible beeps). I can copy text without issue using Firefox from the same PDF attachment preview inside Gmail.
    Thanks for any help.
    Yosemite 10.10.1
    Safari Version 8.0 (10600.1.25.1)

    Having same issue as well. I've had this problem pre-Yosemite and it seems to be Safari related. Copy to clipboard in Gmail preview works fine in Chrome & Firefox, just not Safari. As you indicated if you hold ctrl-c long enough it will eventually copy, just forces you to listen to the series of annoying bongs.
    Also there's no copy to clipboard in the context menu as illustrated below:
    http://i.imgur.com/adyyJO4.png
    Pretty annoying really, I'm not about to download a dozen attached PDFs to copy to clipboard, so now I'm sitting in the Delta lounge with my laptop bonging away as I wait for Safari to copy to clipboard and everyone looks at me like I'm a moron.
    NOTE: No I do not have acrobat or any other software loaded besides vanilla Safari. This has gone on on my MBP, Mac Pro and now this brand new MBP I got Monday as a company upgrade, it literally has nothing installed on it at the moment.

  • How can i copy text from a pdf while in firefox?

    i no longer seem to be able to highlight and copy text from a pdf, while in firefox 33.0, using adobe to view pdfs.
    how do i turn on the select tool, so i can do this?

    When viewing a PDF with a browser you are using a browse add-on (Adobe's, Firefox's, or some other provider).
    An add-on is not the desktop application; add-ons do not provide the full functionality of the desktop application (Reader or Acrobat).
    To have full use of all Comment and Drawing Markup tools save the PDF to the local machine's HDD.
    Launch Adobe Reader XI (pre-XI releases do not have the full set of these tools).
    Open the PDF. Annotate as desired.
    Be well...

  • Copy text from FrameMaker 11 to another editor

    It appears that one cannot copy text in FrameMaker 11 and paste it into another editor such as Notepad++ or MS Word. It is as though FrameMaker does not use the Windows clipboard. We observe this behavior with WYSIWYG View and Author View. On the other hand, we can copy text from the XML View and paste into these other editors with no problem.
    This issue seems to have been introduced with FrameMaker 11, as we can copy and paste the identical text from FrameMaker 10. As another data point, unstructured FrameMaker 11 also allows copy and paste to an external editor.
    Can anyone provide insight into why this behavior occurs and how we might modify it?
    Thank you,
    --larry0

    Hi Russ,
    I tried your suggestion and saw no difference between the keyboard shortcut and the menu command. However, your question about there being anything unusual in our files led me to think about what might be different. The difference is that we use DITA-FMx. I converted back to native FM DITA and the anomaly disappeared.
    I'll contact Scott Prentice directly about this issue to minimize traffic on this forum.
    Thank you for your help,
    --larry0

  • How can i copy text from a website without getting blue formatting?

    I can't seem to get rid of the blue background when I copy text from a website and paste it into a Word doc.
    Any suggestions?

    Use an intermediate application to "strip" the copy elements of their extraneous/unwanted data. Paste the original copy into a text-only application like TextEdit, then copy the text itself from that paste. Then, paste the text into your Word document.

  • Copying text from pdf, "square" characters

    Using SQL 2005 standard edition.
    I have an issue with pdf generated reports. When copying text from the pdf (from a cell in a table row) the characters are just pasted as "squares" into notepad\word etc. Each character is just a small square. I am using Arial font and not doing anything outside of the norm. This is also an inconsistent problem, it doesnt happen on all cells\tables but only on particular ones. Could it be data specific?
    Anyone come across this before?

    It is not data specific but the format specific. There are many similar issues commonly encountered. The reason is that the format in the clipboard cannot be well recognized by notepad or word. You can refer to this article:
    http://support.microsoft.com/kb/212318
    From which you can read:"Microsoft Word does not directly support conversion from Adobe Portable Document Format (PDF). PDF is the format in which documents are saved for viewing and exchange in the Adobe Acrobat Reader and Adobe Acrobat Exchange for Windows."
    For those words if you could not copy/paste successfully, you may use some tools from Adobe company to extract the data from PDF file to some recognized format such as HTML. I know that there is a tool which can do this conversion:
    http://www.adobe.com/products/acrobat/access_onlinetools.html
    Hope this answers your question.Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to copy customer in oracle applications in R12

    how to copy customer in oracle applications in R12

    When I copy (as in original example) 4 cells in Excel, the exact 4 cells paste correctly in another Excel, but on my web it post the 4 cells and then clear the cell below it. So the same data in the clipbord paste correctly into Excel, but incorrectly in the web.
    When I copy (as in original example) 4 cells from the web, the exact 4 cells paste correctly into Excel, and it then post correctly on my web solution.
    So, in summary this is what I find:
    - Copy from web and paste to Excel = no problem
    - Copy from web and paste to web = no problem
    - Copy from Excel and paste to Excel = no problem
    - Copy from Excel and paste to web = problem (first cell below pasted data get cleared)
    We have a SAP NetWeaver BI 7.0 system, I use Bex (WAD) Support pack 7 with Patch 1 and I have Internet Explorer (version 8) - on IE the compatibility view does not make any differance. Users with IE 7 experiance the same issue.

Maybe you are looking for

  • Can't log into itunes on my iphone 5s

    okay so , i have problem with i cloud and i reset my network then it worked but i stil can't download any application from i tunes and i tried to log out and log in again but i can't log in anymore and i don't know why , i need help , thanks in advan

  • Can I use a diiferent sim card in my ipad 4

    I want to use a visitors SIM card in Barbados with my ipad 4 which has been used with an O2 SIM in UK. Can I do this?

  • WRV210 Administration pages not visible in Internet Explorer

    I recently updated my firmware in my WRV210 router to Version 2.0.1.5 which is the most recent on Cisco's download page. After upgrading the firmware, I found that some of the administration pages do not appear to load correctly in internet explorer

  • Sender HTTP and validation

    Hallo, we have a HTTP sender to allow partners to send HTTP/XML message. THese messages are converted to IDOCs and are posted to the R/3 system. HTTP -> IDOC scencario Until now we have no validation of the incomming XML message. Goal is not to accep

  • BSP changes not showing immediately

    I've made some changes to views and the methods in our development system.  I executed CRM_IC and see my changes.  I transport them to our QA system and the codes there, but my changes aren't.  If we reboot they show up.  Is there another way to rese