Odd problem with placing text on a path

I've created a symetrical circle with the elipse tool, and with the eliptical marque tool to eventually place some repeating text around the border of a DVD. I can get the text on the path easily as I've done this before, but the problem I'm having is that the path isn't a smooth circle as it should be, and the alignment of the individual letters in the long string of text is all over the place. In other words, it doesn't smoothly follow the path. some of the characters are rotated at weird angles, and I can't seem to produce a smooth, symetrical cicle on which to place the text. Anyone run into this and know of a solution?

If that happens on the path made from Elliptical Marquee tool selection, try setting the
Make Work Path options to a Tolerance of 2.0 pixels and see if that makes a difference.
MTSTUNER

Similar Messages

  • Problems with importing text messages from PC Suit...

    Problems with importing text messages from PC Suit 7.1.18.0 to my Nokia 5800
     I am trying to import a csv file that contains text messages (Note that this file was created using PC Suit 7.1.18.0) to a subfolder that I have created to My Folders but PC Suits only imports the text messages to the Draft folder. Note that initially it shows that the messages are import in the correct folder but after a refresh it shows them in the Draft Folder. Is their any setting that I should change in the PC Suit or the phone? My computer runs on Windows XP Service Pack 3 and the Nokia 5800 was upgraded to the latest firmware v20.0.012
     Thanks for your help

    Most phones only allows importing of draft and archived box for SMS.
    To do a restoring, you need to backup the SMS as a .nbu file using PC Suite and restore later.
    If you got an SD card, you can also do a backup on the SD Card (backup.arc) then restore later (reset and restore: backup.arc and mmc).
    What's the law of the jungle?

  • A problem with copying text from english pdf to a word file

    i have a problem with copying text from english pdf to a word file. the english text of pdf turns to be unknown signs when i copy them to word file .
    i illustrated what i mean in the picture i attached . note that i have adobe acrobat reader 9 . so please help cause i need to copy text to translate it .

    Is this an e-book? Does it allow for copying? It is possible that the pdf file is a scan of a book?

  • Problem with selecting text in Adobe Reader XI

    Hi all, I am encountering a problem with Adobe Reader XI and it is very strange I could not find an alike issue on the internet so I guess I have to submit a question with it.
    So here it is, I am using Adobe Reader XI Version 11.0.2, operating system: Windows 7. I do not know it starts from when but it has the problem with selecting text - to be copied in pdf documents. I ensure that the documents are not scanned documents but word-based documents (or whatever you call it, sorry I cannot think of a proper name for it).
    Normally, you will select the text/paragraph you want to copy and the text/paragraph will be highlighted, but the problem in this case that I cannot select the text/paragraph, the blinking pointer (| <-- blinking pointer) will just stays at the same location so I cannot select/highlight anything to be copied. It happens oftenly, not all the time but 90%.
    This is very annoying as my work involves very much with copying text from pdf documents, I have to close the pdf file and then open it again so I can select the text but then after the first copying or second (if I am lucky), the problem happens again. For a few text I have to type it myself, for a paragraph I have to close all opening pdf documents and open again so I could select the paragraph to copy. I ran out of my patience for this, it causes trouble and extra time for me just to copying those texts from pdf documents. Does this problem happen to anyone and do you have a solution for this? I would much appreciate if you could help me out, thank you!

    Yeah,  I totally agree, this is very strange. I have always been using Adobe Reader but this problem only occurred ~three months ago. It must be that some software newly installed I think. But I have no idea.
    About your additional question, after selecting the texts and Ctrl + C, the texts are copied and nothing strange happens. It's just that right after I managed to copy the texts, it takes me a while to be able to select the texts again. For your information, I just tested to select the texts and then pressed Ctrl, the problem happened. And then I tried pressing C and then others letters, it all led to the problem.
    I guess I have to stick with left-clicked + Copy until I/someone figure the source of this problem. Thanks a lot for your help!

  • Problem with append += text in Text Field

    Hi guys
    i have a problem with append text.
    I have one array which contain some city names, like CityArea=["NAME 1", "NAME2" ...etc];
    Then i have one String and one Text Field.
    Using for loop im getting right results. But when im running script again then im getting  same text again.
    F.ex.
    First time:
    City name: Name 1
    City name: Name 2
    Second time:
    City name: Name 1
    City name: Name 2
    City name: Name 1
    City name: Name 2
    I have tried to make TextField to and String to Null and delete it, but it's appearing again.. :/
    How to avoid this?
    Here is script:
    for (var i1:int = 0; i1 < CityArea.length; i1++)
      _CityAreaString1 += "<P ALIGN='LEFT'><FONT FACE='Verdana' SIZE='32' COLOR='#ffffff'>        "+CityArea[i1]+"</FONT></P>";
      _CityAreaString1 += "<P ALIGN='LEFT'><FONT FACE='Verdana' SIZE='5' COLOR='#ffffff'><BR></FONT></P>";
    _CityAreaTF1 = new TextField();
      _CityAreaTF1.border = true;
      _CityAreaTF1.wordWrap = true;
      _CityAreaTF1.multiline = true;
      _CityAreaTF1.selectable = false;
      _CityAreaTF1.antiAliasType = AntiAliasType.ADVANCED;
      _CityAreaTF1.name = "CityAreaTF1";
      _CityAreaTF1.embedFonts = true;
      _CityAreaTF1.htmlText = _CityAreaString1.toUpperCase();

    I think i found why.
    There was no problem with TextField.
    There was a problem with Array. "CityArea"
    So each time I executed script it added new string in Array. And that is because i got like:
    TextField
    City 1
    City 2
    City 1
    City 2
    Running this script is Ok:
    for (var i1:int = 0; i1 < CityArea.length; i1++)
      _CityAreaString1 += "<P ALIGN='LEFT'><FONT FACE='Verdana' SIZE='32' COLOR='#ffffff'>        "+CityArea[i1]+"</FONT></P>";
      _CityAreaString1 += "<P ALIGN='LEFT'><FONT FACE='Verdana' SIZE='5' COLOR='#ffffff'><BR></FONT></P>";
    But outside of this for loop there is another for loop for adding Cities in CityArray.
    I fixed it by adding empty array at the start of function
    function myFunc():void
    CityArea = [ ]; // Empty array fixed this issue
    // LOOP FOR ADDING SHOPS IN CITY AREA
    for (var j:int = 0; j < _Shops; j++)
    CityArea.push(_Shop);
    // FOR LOOP TO ADDING SHOPS IN STRING
    for (var i1:int = 0; i1 < CityArea.length; i1++)
      _CityAreaString1 += "<P ALIGN='LEFT'><FONT FACE='Verdana' SIZE='32' COLOR='#ffffff'>        "+CityArea[i1]+"</FONT></P>";
      _CityAreaString1 += "<P ALIGN='LEFT'><FONT FACE='Verdana' SIZE='5' COLOR='#ffffff'><BR></FONT></P>";
    Thank you for your help kglad

  • Problem with placing of properties file

    Hi all,
    Iam using a properties file.
    From a jsp, Iam reading the property file.....
    Its giving FileNotFoundException....
    I hope its problem with placing of my properties file...
    I placed the properties file in WEB-INF/classes..folder.....
    But still iam getting the FileNotFoundException...
    PLz tell me where exactly should I place my properties file...
    Thanks ....

    first rule of using a forum: read recent topics !
    http://forum.java.sun.com/thread.jspa?threadID=668488&tstart=0

  • CS3 - Problem with dynamic text -

    Hello,
    I have a problems with my text, when i write a few ligne inside a dynamic text box, if i selec the text and by the way drag it down the first line goes up and disapear. Is there any way to solve this?

    This is the Flash Player forum; please post your question in the appropriate product forum.

  • Problem with the text from previous year in current year appraisal (PPR)

    Hi Gurus,
    I have some problem with the text from the PPR of the previous year in the PPR current year.
    The text from the previous year have not the same displaying in the tab "previous year" of  the current year PPR.
    EXAMPLE :
    this is write in the PPR of year 2009 in Individual Targets without Incentives (tab My S-imple) :
    -Aufrechterhaltung der MA motivation, in dieser Zeit der Neuorientierung.
    -G1 Unterstüzung
    -Fachübergreifende Teamarbeit ausbauen
    Gefährdungsbeurteilung weiter führen
    -tragen von PSA einfordern
    -VI Opt.(Intervalle)
    -Azubi und Praktikanten AUsbildung unterstüzen
    and this is what I have in the PPR of 2010 in Individual Targets without Incentives (tab Previous Year's Targets):
    -Aufrechterhaltung der MA motivation, in dieser Zeit der-Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    there is the error, all the end of the text isn't displayed and the begin of the text is repeated.
    I think that this issue is created at the creation of the PPR.
    If someone have a idea he is welcom.
    thanks and regards

    Hi,
    Please follow the note:425601,
    Go to Tcode: OBA5 change the error messge into warning message. carry out the settlement and roll abck the warning message into the error message after sucessfull settlement.
    Reward points if found useful.
    Thanks!

  • Problem with sending text messages replies

    After update to OS 3.0 I have problem with sending text messages:
    - I CAN send new text message to someone but
    - When someone REPLY me, then I CANNOT send next message in conversation
    - If I DELETE someone's reply from that conversation text message sends fine.
    Anyone have this problem? I have iPhone 3g with OS 3.0 update, previously on 2.x the problem didn't appear. Carrier Orange in Poland

    no my girlfriend, was useing my old N75, now she is useing her old phone last night and today. we have been texting with no problems at all. ..so i'm back in the iphone, and we're going to get her a new phone tonight,or she's going to use one of my other back-up phones till we get one for her. called at&t today to see if she could get an early upgrade before oct. just to make me happy with all the BS i've been through (10 hours or more on the phone trying to fix the problem). but at&t came through with their great customer satisfaction!!! NOT!!! so, gonna try and get her a good phone out of contract and see after hers and mine are up might just jump from at&t. very unhappy with them as how they handled this whole thing.

  • Premiere Elements 13 , Problems with new text/titles

    Premiere Elements 13, bisher keine Probleme. Nachdem die Filmlänge etwa 15 Minuten beträgt immer größere Probleme Titel/texte einzugeben. Wartezeiten sind extrem lange oder Programm stürzt ganz ab.

    High ATR,
    Computer running on Widows 7 ,64 Bit System, Service Pack 1, Processor AMD Phenom(tm) X4 945 3.00 Ghz;RAM 8 GB
    Grafikkarte: NVIDIA GeForce 8800 GT
    If the video on the timeline is longer than 10 minutes the problem will be remarkable. The response times adding a title is getting longer(2-15 seconds).
    As the video is now 18 minutes the response time is after each action(resizing of letters or any changes of the text) up to 30 seconds or the program crashes completely.
    Project settings are the following:
    General HD 1080i; 29,97frames/second; Video:1920v 1080 H, 30 fps
    Video: maximale Bittiefe, Dateiformat i-frame only mpeg, Kompressor MPRG i-Frame, Standbilder optimieren
    The video is a mixture  of full HD videos 1920x 1080 .mov and pictures up to 4608x3456 pixels.
    When the program crashes I remarked that the main memory RAM(8Gb) was fully used by the premiere program. Might there be a problem?
    Thank you for your service.
    thomasd
    Von: A.T. Romano 
    Gesendet: Sonntag, 1. Februar 2015 23:55
    An: Thomas Deschler
    Betreff:  Premiere Elements 13 , Problems with new text/titles
    Premiere Elements 13 , Problems with new text/titles
    created by A.T. Romano <https://forums.adobe.com/people/A.T.+Romano>  in Premiere Elements - View the full discussion <https://forums.adobe.com/message/7151822#7151822>

  • Problems with recieving texts?

    I am having problems with recieving text messsages, today I only had 2 hours that I recieved text messages. This has happened a few times, and when I take my phone to the verizon store they say there is no problem. Has anyone else had this problem?

    hoovie,
    I'm sorry to learn you are having issues with your text messaging. Just so I know I am up to speed, are you getting messages delivered to your phone on a 2 hour delay or do you have only a 2 hour window where you can receive any messages? Does this happen with only specific persons? Are you having any trouble sending text messages throughout the day?
    Please advise more information so I can help further.
    Thanks
    AdamE_VZW
    Follow us on Twitter @VZWSupport

  • 2.1EA2 - Still problems with trigger text tab on table panel

    I'm currently running SQLDeveloper 2.1 EA2 and I'm experiencing problems to display text of tables triggers.
    In fact I have found that file displaying this text has an mistake : It's assumed that trigger owner is the same as table owner.
    In file oracle/dbtools/raptor/oviewer/base/xml/tables.xml of extension oracle.sqldeveloper.oviewer.jar version11.1.1.63.10.
    This file contains an section dedicated to triggers :
    select dt.trigger_NAME, dt.trigger_type, dt.triggering_Event, dt.status, :OBJECT_OWNER sdev_link_owner,
    dt.trigger_NAME sdev_link_name,'TRIGGER' sdev_link_type
    from DBA_triggers dt
    where dt.table_owner = :OBJECT_OWNER
    and dt.table_name = :OBJECT_NAME;
    And the source part :
    select text sql
    from dba_source
    where name=:TRIGGER_NAME
    and owner=:OBJECT_OWNER;
    I Think the glitches is the owner=:OBJECT_OWNER.
    I made some tests by replacing the table.xml in archive (I know it's hugly). My modifications are :
    1) add an trigger_owner column in firsts selects
    2) use :TRIGGER_OWNER instead of :OBJECT_OWNER
    This seems to solve problems.
    I don't know how to report this as a bug, bu I hope that someone of the devel team will push it forward to solve the problem on 2.1 final.

    It's there; it's just very small. Consider either giving it some rows or column int values or a preferred size, or putting it in a JScrollPane with a preferredSize set.
    another thought is to use a BorderLayout for the whole thing, and place the JScrollPane/JTextArea BorderLayout.CENTER, put the JTextField and JLabels in a JPanel using GridBag and placing this into the main BorderLayout.NORTH, and placing the buttons into their own panel which is added to the main BorderLayout.SOUTH.
    Edited by: Encephalopathic on Sep 24, 2008 9:51 AM

  • I have some real odd problems with flash

    Right, I have sort of had two problems with adobe flash player 10, so bare with me, I need to tell you the ‘back story’ before I reach my current issue:
    Back story; latest version of flash been running normally for a while until it tries to update. When it wants to update it goes to 100% completion then comes up with a message saying ‘Unable to complete because Adobe Flash Native Control Panel is open. Please close the Adobe Flash Native Control Panel and please try again‘
    After this, my pc and adobe website (and other websites) will report that I have no flash. At all. So I try to update/install/uninstall again (after rebooting computer each time obviously) - and no luck. I either got a message like the one above or this one: ‘The Flash Player Settings Manager is currently open. Please close the Flash Player Settings Manager and try again’.
    So I find that I have no flash, yet I have flash and I can’t upgrade, install or uninstall. I have found a solution to this in other forums by going into my System32 folder on my C drive and using the freeware program ‘Unlocker’ to delete the file ‘C:\WINDOWS\system32\FlashPlayerCPLApp.cpl ‘upon restarting. After that I can uninstall flash properly and reinstall to the latest version.
    I’ve had to do this twice now, after each attempted ‘update ‘and each time I have to completely uninstall flash in the way stated above and then reinstall it properly.
    So that is the first issue- now to my current problem:
    After doing the following I tried to install the latest flash from adobe’s website...but my computer seems to ‘eat’ the executable file and then not actually install the latest flash. It downloads and opens fine but as soon as it starts to install, the actual executable file vanishes. It doesn’t go anywhere, not the recycle bin; it just...vanishes. Then nothing happens. According to Task manager, there is an ‘Install_flashplayer’ in the background using 8000 k or so memory and seeming doing something, but it’s not on screen and it does...nothing. I’ve waited almost a good hour and nothing happens despite memory usage dipping a bit.
    So first problem of mine is this Adobe ‘Flash Native Control Panel ‘and ‘Flash Player Settings Manager’ seems to be causing problems with my flash every time it needs to update (and subsequently makes adobe flash player thins it Schrödinger’s cat being in a state of installed and uninstalled).  I want to know how to stop thins form happening each time I need to update. I can't seem to find any information on how to actually 'close' these programs.
    My second is getting my PC to actually install the latest version of flash as opposed to eat it and make it a ghost program like my PC is pacman and the excitable file is a blue ghost.
    I currently have Flash player 10,3,183,5 installed and it is working fine (until the investable update issue is bound to come along).
    My system is Vista 32-bit.
    My main web browser is firefox 3.6.18
    Ask me if you need more specs, and sorry for the bad analogies.

    Here you go, hopefully this is the right thing and will help:
    =O====== M/10.1.53.64 2010-06-17+14-28-57.760 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\FlashPlayerUpdate.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0003 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0010 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10h_Plugin.exe
    0011 [I] 00000017 C:\Windows\system32\Macromed\Flash
    =X====== M/10.1.53.64 2010-06-17+14-29-05.045 ========
    is =O====== M/10.1.82.76 2010-08-21+10-32-59.173 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\C977.dir\InstallFlashPlayer.exe" -iv 0
    0001 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0002 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Plugin Path 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0008 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10i_Plugin.exe
    0009 [I] 00000017 C:\Windows\system32\Macromed\Flash
    =X====== M/10.1.82.76 2010-08-21+10-33-25.178 ========
    =O====== M/10.1.85.3 2010-09-23+07-57-41.815 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\A90B.dir\InstallFlashPlayer.exe" -iv 0
    0001 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0002 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Plugin Path 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0008 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10k_Plugin.exe
    0009 [I] 00000017 C:\Windows\system32\Macromed\Flash
    =X====== M/10.1.85.3 2010-09-23+07-57-49.180 ========
    =O====== M/10.1.102.64 2010-11-11+10-41-25.479 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\93E7.dir\InstallFlashPlayer.exe" -iv 0
    =X====== M/10.1.102.64 2010-11-11+10-48-16.518 ========
    =O====== M/10.1.102.64 2010-12-02+10-52-34.774 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\B37.dir\InstallFlashPlayer.exe" -iv 0
    0001 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0002 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Plugin Path 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0008 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10l_Plugin.exe
    0009 [I] 00000017 C:\Windows\system32\Macromed\Flash
    =X====== M/10.1.102.64 2010-12-02+10-52-52.605 ========
    =X====== M/10.3.183.5 2011-08-12+17-20-19.029 ========
    =O====== M/10.3.183.5 2011-08-12+17-59-38.530 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Pictures\uninstall_flash_player.exe" -force 
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [W] 00001018
    0005 [W] 00001037 Software\Macromedia\FlashPlayer\SafeVersions/ 2
    0006 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0007 [W] 00001019
    0008 [W] 00001020
    0009 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0010 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0012 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0013 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0014 [W] 00001021
    0015 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0018 [W] 00001018
    0019 [W] 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0020 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0021 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0022 [W] 00001019
    0023 [W] 00001020
    0024 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0025 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0026 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0027 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0028 [W] 00001021
    0029 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0030 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0031 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\system32\FlashPlayerCPLApp.cpl 2
    0032 [W] 00001048
    0033 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0034 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0035 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0036 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0037 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0038 [W] 00001036 Software\Opera Software/Plugin Path 2
    0039 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.5 2011-08-12+17-59-42.866 ========
    =O====== M/10.3.183.5 2011-08-12+18-12-09.286 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\InstallAX.exe" -install activex -msi
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash10v.ocx
    0004 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_ActiveX.exe
    0005 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil10v_ActiveX.dll
    =X====== M/10.3.183.5 2011-08-12+18-12-19.509 ========
    =O====== M/10.3.183.5 2011-08-12+21-09-19.716 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\Rar$EX00.569\fp_10.3.183.5_archive\10_3r183_5\flash player10_3r183_5_win.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0004 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [W] 00001036 Software\Opera Software/Plugin Path 2
    0010 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0011 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0012 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0013 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0014 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.5 2011-08-12+21-09-25.004 ========
    =O====== M/10.3.183.5 2011-08-13+09-57-05.662 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Pictures\install_flash_player_10.exe"
    0001 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0002 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Plugin Path 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0008 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0009 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0010 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0011 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0012 [E] 00001040 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.5 2011-08-13+09-57-23.634 ========
    =O====== M/10.3.183.5 2011-08-13+11-10-23.454 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\FP_PL_PFS_INSTALLER.exe"
    0001 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0010 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0011 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0012 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0013 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0014 [E] 00001040 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.5 2011-08-13+11-10-32.783 ========
    =O====== M/10.3.183.5 2011-08-13+11-12-29.782 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Pictures\install_flash_player_10.exe"
    0001 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0010 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0011 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0012 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0013 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0014 [E] 00001040 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.5 2011-08-13+11-13-06.961 ========
    =O====== M/10.3.183.5 2011-08-13+11-15-13.433 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Pictures\install_flash_player_10.exe"
    0001 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0010 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0011 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0012 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0013 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0014 [E] 00001040 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.5 2011-08-13+11-15-26.589 ========
    =O====== M/10.3.183.5 2011-08-13+11-24-30.735 ========
    0000 [I] 00000010 C:\Windows\system32\Macromed\Flash\FlashUtil10v_ActiveX.exe -uninstall activex -msi
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 [W] 00001015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_ActiveX.exe 5
    0003 [I] 00000018
    0004 [W] 00001015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_ActiveX.exe 5
    0005 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0006 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0007 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0008 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0009 [W] 00001021
    0010 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0011 [W] 00001015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_ActiveX.exe 5
    0012 [I] 00000012
    =X====== M/10.3.183.5 2011-08-13+11-24-31.422 ========
    =O====== M/10.3.183.5 2011-08-13+11-24-16.274 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Downloads\uninstall_flash_player.exe" -force 
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0003 [W] 00001017
    0004 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0007 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0008 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0009 [W] 00001021
    0010 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0011 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0012 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0013 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0014 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0015 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0016 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0017 [W] 00001021
    0018 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0019 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0020 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0021 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0022 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0023 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0024 [W] 00001036 Software\Opera Software/Plugin Path 2
    0025 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.5 2011-08-13+11-24-45.103 ========
    =O====== M/10.3.183.5 2011-08-13+11-30-53.024 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Pictures\install_flash_player_10.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [E] 00001039
    =X====== M/10.3.183.5 2011-08-13+11-30-59.264 ========
    =O====== M/10.3.183.5 2011-08-13+11-31-34.013 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Pictures\install_flash_player_10.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0008 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Plugin Path 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0013 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0014 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0015 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0016 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.5 2011-08-13+11-31-39.457 ========
    =O====== M/10.3.181.34 2011-08-13+20-09-58.153 ========
    0000 [I] 00000010 "C:\Users\Emeline Porter\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\QPMER51O\install_flash_player_ax_10.3.181.34[1].exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash10u.ocx
    0007 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10u_ActiveX.exe
    0008 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil10u_ActiveX.dll
    0009 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0010 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0011 [E] 00001040 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.181.34 2011-08-13+20-10-03.328 ========
    =O====== M/10.2.153.1 2011-08-13+20-15-45.112 ========
    0000 [I] 00000010 "C:\Users\Emeline Porter\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\DDOGJGNF\install_flash_player_10.2.153.1[1].exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash10o.ocx
    0006 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10o_ActiveX.exe
    0007 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil10o_ActiveX.dll
    =X====== M/10.2.153.1 2011-08-13+20-15-52.160 ========
    =O====== M/10.3.181.16 2011-08-14+20-00-42.794 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\Rar$EX02.431\fp_10.3.181.16_archive\10_3r181_16\fla shplayer10_3r181_16_winax.exe"
    0001 [E] 00001040
    =X====== M/10.3.181.16 2011-08-14+20-00-47.240 ========
    =O====== M/10.3.183.5 2011-08-14+20-07-01.733 ========
    0000 [I] 00000010 "D:\Users\Emeline Porter\Downloads\uninstall_flash_player.exe" -force 
    0001 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0002 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0009 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0010 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0012 [W] 00001021
    0013 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0014 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0015 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0016 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0017 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0018 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0019 [W] 00001036 Software\Opera Software/Plugin Path 2
    0020 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.5 2011-08-14+20-07-06.023 ========
    =O====== M/10.3.181.16 2011-08-14+20-10-54.036 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\Rar$EX01.603\fp_10.3.181.16_archive\10_3r181_16\fla shplayer10_3r181_16_winax.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash10r.ocx
    0006 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10r_ActiveX.exe
    0007 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil10r_ActiveX.dll
    0008 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    =X====== M/10.3.181.16 2011-08-14+20-11-01.415 ========
    =O====== M/10.3.183.5 2011-08-14+20-16-17.115 ========
    0000 [I] 00000010 "C:\Users\EMELIN~1\AppData\Local\Temp\FP_PL_PFS_INSTALLER.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0008 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Plugin Path 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF32.dll
    0013 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil10v_Plugin.exe
    0014 [I] 00000017 C:\Windows\system32\Macromed\Flash
    0015 [I] 00000019 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0016 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0017 [W] 00001024 C:\Windows\system32\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.5 2011-08-14+20-16-22.512 ========

  • Problem with long text

    Hi folks,
    iam uploading longtext in transaction KP06 in bdc programing using create_text.
    now my problem is if i pass selection criteria
    case 1:
    Vertion : N0
    fiscal year : 2007
    planner profile: CCPLAN4
    then the budeget plan data uploading successfully along with long text.
    case2: Vertion : N1
    in this case also everthing wrking fine
    case3: Vertion : 001
    in this case budgetplan data uploading sucessfully but longtext is not uploading,
    i debbug the proragm , create_text also returning sy-subrc = 0. but if i check in KP06  the long text is not there.
    data declaration
    vertion : VERSN type C(3)
    can u tell me the problem is in logic or with FM ?
    note : i checked with save_text also.
    regards
    neeru

    HI Naimesh,
    the FM Create_text internally contains both FMs save_text and commit_text,
    even i debug the FM in case of vertion N1, N0 and 001,
    all the cases sy-subrc = 0.
    code:
    CLEAR G_OBJNR.
    LOOP AT RECORD.
    COST = RECORD-BDC01.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = COST
        IMPORTING
          output = COST.
        CONCATENATE 'KS' p_kokrs record-bdc00 INTO g_objnr.
            SELECT SINGLE * FROM COSP WHERE OBJNR = g_objnr
                              AND GJAHR = P_GJAHR
                              AND VERSN = p_ver
                              AND KSTAR = COST.
      IF SY-SUBRC = 0.
          LEDNR = COSP-LEDNR.
          OBJNR = COSP-OBJNR.
          GJAHR = COSP-GJAHR.
          WRTTP = COSP-WRTTP.
          VERSN = COSP-VERSN.
          KSTAR = COSP-KSTAR.
          HRKFT = COSP-HRKFT.
          VRGNG = COSP-VRGNG.
          VBUND = COSP-VBUND.
          PARGB = COSP-PARGB.
          BEKNZ = COSP-BEKNZ.
          TWAER = COSP-TWAER.
    CONCATENATE LEDNR OBJNR INTO OBJNR.
    CONCATENATE OBJNR GJAHR INTO TNAME1 separated BY SPACE10.
    CONCATENATE TNAME1 WRTTP VERSN INTO TNAME2.
    CONCATENATE TNAME2 KSTAR INTO TNAME3 separated BY SPACE.
    CONCATENATE TNAME3 VRGNG INTO TNAME4 separated BY SPACE4.
    CONCATENATE TNAME4 BEKNZ INTO TNAME5 separated BY SPACE10.
    CONCATENATE TNAME5 TWAER INTO TNAME.
    I_THEAD-TDOBJECT = 'CCSS'.
    I_THEAD-TDID = 'COSP'.
    I_THEAD-TDNAME = TNAME.
    I_THEAD-TDSPRAS = 'E'.
    APPEND I_THEAD.
    i_tline-tdformat = '*'.
    I_TLINE-TDLINE = RECORD-LONGTEXT.
    APPEND I_TLINE.
    loop at i_thead.
    CALL FUNCTION 'CREATE_TEXT'
      EXPORTING
        FID               = I_THEAD-TDID
        FLANGUAGE         = I_THEAD-TDSPRAS
        FNAME             = I_THEAD-TDNAME
        FOBJECT           = I_THEAD-TDOBJECT
      SAVE_DIRECT       = 'X'
      FFORMAT           = '*'
      TABLES
        FLINES            = i_tline
    EXCEPTIONS
      NO_INIT           = 1
      NO_SAVE           = 2
      OTHERS            = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDLOOP.
    CLEAR I_TLINE.
    REFRESH I_TLINE.
    CLEAR I_THEAD.
    REFRESH I_THEAD.
      SELECT SINGLE * from cokp into itab WHERE OBJNR = g_objnr
                              AND GJAHR = P_GJAHR
                              AND VERSN = p_ver
                              AND KSTAR = COST.
    if sy-subrc = 0.
       itab-TXFLG = 'X'.
       append itab.
       write:/ 'Text saved for', record-bdc00 , record-bdc01.
       else.
          write:/ 'Text saved for', record-bdc00 , record-bdc01.
          ENDIF.
    ENDIF.
    my program wrking fine but the long text is not visible for vertion 001.
    regards
    niru

  • Odd problems with reading DVD media [concluded]

    There is an odd problem I've encountered...(I'm not sure if its a bug with Arch Linux or Linux in general).
    Firstly, the details:
    * I've updated the systems (using "extra", "current", and "community" respositories). So its the current one (0.80 "Voodoo"). I'm NOT using "Unstable" respository.
    * I've already added the user to the "optical" and "storage" groups. So there's no problems in relations to permissions.
    * My fstab entries for the CD and DVD drives are default (I didn't touch them)...That is, "iso9660" and "udf" respectively.
    * My desktop environment is KDE 3.5.5...And I have changed the behaviour of the desktop icons such that DVD media, CD media, and USB devices will have an icon pop-up as soon as you plug them in.
    * I have "hal" loaded in the DAEMONS of /etc/rc.conf
    * I'm using 4 different Linux systems with the following DVD burners.
    => Pioneer DVR-108
    => Sony DW-Q120A
    => Hitachi-LG GCC-4240N (DVD-ROM/CD-burner combo)
    * There are three Sempron 2800+ (Socket 754, 1.6Ghz) boxes and the last one is on an IBM R40 ThinkPad, and I know you can't read DVD-R media on that. But it should be able to read DVD+R media without issue.
    * Two of the Semprons are running Arch, as well as the ThinkPad. The final Sempron box is running Ubuntu 6.06.1
    * When I installed K3b I did: pacman -S k3b dvd+rw-tools
    * All the DVD media is Verbatim DataLifePlus ones.
    Here's what I've done...
    I've burnt two DVD media (they're just video files from last year's Blender 2006 conference thing, so its legal stuff).
    One is a DVD+R and the other is DVD-R media. Both were done on a Windows 2000 Pro SP4 box using Nero 6.6.1.4
    What's the problem?
    Well, KDE in the Arch Linux boxes doesn't recognise the media!...There is no DVD icon that automatically pops up on any of the Arch Linux boxes!
    When I run dmesg on the Arch boxes, the only relevant info I get is:
    ISO 9660 Extensions: Microsoft Joliet Level 3
    ISOFS: changing to secondary root
    Now if I re-insert these DVD media onto an Ubuntu 6.06.1 LTS box...The DVD+R works perfectly! While the DVD-R does not.
    When I run dmesg on this box, I get the following:
    [17179654.808000] hdc: cdrom_decode_status: status=0x51 { DriveReady SeekComplet e Error }
    [17179654.808000] hdc: cdrom_decode_status: error=0x40 { LastFailedSense=0x04 }
    [17179654.808000] ide: failed opcode was: unknown
    [17179654.808000] hdc: cdrom_decode_status: status=0x51 { DriveReady SeekComplet e Error }
    [17179654.808000] hdc: cdrom_decode_status: error=0x40 { LastFailedSense=0x04 }
    [17179654.808000] ide: failed opcode was: unknown
    [17179654.808000] hdc: cdrom_decode_status: status=0x51 { DriveReady SeekComplet e Error }
    [17179654.808000] hdc: cdrom_decode_status: error=0x40 { LastFailedSense=0x04 }
    [17179654.808000] ide: failed opcode was: unknown
    [17179654.812000] hdc: cdrom_decode_status: status=0x51 { DriveReady SeekComplet e Error }
    [17179654.812000] hdc: cdrom_decode_status: error=0x40 { LastFailedSense=0x04 }
    [17179654.812000] ide: failed opcode was: unknown
    [17179654.812000] hdc: DMA disabled
    [17179654.812000] hdc: ide_intr: huh? expected NULL handler on exit
    [17179654.860000] hdc: ATAPI reset complete
    [17179655.364000] ISO 9660 Extensions: Microsoft Joliet Level 3
    [17179655.412000] ISOFS: changing to secondary root
    [17179725.140000] Unable to identify CD-ROM format.
    [17179729.348000] Unable to identify CD-ROM format.
    [17181395.032000] ISO 9660 Extensions: Microsoft Joliet Level 3
    [17181395.032000] ISOFS: changing to secondary root
    If I re-burn the data onto a DVD+RW, Arch and Ubuntu immediately sees it, and KDE (or Gnome in Ubuntu), will have a DVD icon popping up! I can view the video clips without issue!
    Now here's the really odd part...
    When I load up K3b on either Arch OR Ubuntu, they recognise all DVD media! (As in, they can read the media disc information!)...Tools => DiskInfo
    If I click on the PIONEER - DVD-RW DVR-108 on the tree menu on the left side in K3b, (to view the contents of the DVD-R or DVD+R media), it can't read and pops up an error message informing about a read problem. It suggests I try dmesg|tail to see what's wrong.
    When I do that, I get...
    # dmesg|tail
    grow_buffers: requested out-of-range block 18446744073708569376 for device hdc
    UDF-fs: No partition found (1)
    grow_buffers: requested out-of-range block 18446744073708569376 for device hdc
    UDF-fs: No partition found (1)
    grow_buffers: requested out-of-range block 18446744073708569376 for device hdc
    UDF-fs: No partition found (1)
    grow_buffers: requested out-of-range block 18446744073708569376 for device hdc
    UDF-fs: No partition found (1)
    grow_buffers: requested out-of-range block 18446744073708569376 for device hdc
    UDF-fs: No partition found (1)
    I repeat the same procedure on DVD+RW, and it works perfectly!
    Should I use another burning application instead of Nero on the Windows box?
    Could it be the way I burn things?
    (Some DVD+R and DVD-R are burnt with multisession while others aren't.)
    Has anyone else experienced similar issues?
    What are your "workarounds" or fixes?

    It *should* work...But they don't.
    I tried this...
    mount -t auto /dev/dvd /mnt/dvd
    I get this...
    mount: block device /dev/dvd is write-protected, mounting read-only
    mount: wrong fs type, bad option, bad superblock on /dev/dvd,
    missing codepage or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so
    I then do dmesg|tail
    grow_buffers: requested out-of-range block 18446744073708569376 for device hdc
    UDF-fs: No partition found (1)
    If I try this...
    mount -t iso9660 /dev/dvd /mnt/dvd
    I get this...
    mount: block device /dev/dvd is write-protected, mounting read-only
    mount: wrong fs type, bad option, bad superblock on /dev/dvd,
    missing codepage or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so
    I then do dmesg|tail
    Unable to identify CD-ROM format.
    If I stick in a DVD-R that is burnt in one go without multisession, I get this in the dmesg
    UDF-fs: Partition marked readonly; forcing readonly mount
    UDF-fs INFO UDF 0.9.8.1 (2004/29/09) Mounting volume 'SW', timestamp 2006/11/07 19:37 (1000)
    It reads this disc perfectly and KDE pops up a DVD icon.
    I'm scratching my head as I'm not sure what is the problem.
    Could it be hal or the way the DVD media was formatted?

Maybe you are looking for

  • Workaround for HFM Drill-Through when using custom dimensions ( 4) in FDM

    Hi all, we have the following scenario: - Target Custom 3 is defined as a combination of Target Product and Target Cost Center - Target Product needs to be obtained by mapping field "PRODUCT" in the source file - Target Cost Center needs to be obtain

  • BT mail not working on ipad

    Since updating to IOS 8.3, BT Yahoo mail is not working on my iPad - but works on iPhones, PC etc. I have deleted the email account and installed again, but it will not download or send any emails. I have double-checked settings and all correct. any 

  • Post e71 firmware upgrade problem

    1) Back up recovery - For some reasons, not all applications and settings are restored. 2) Internet Browser failed to load. Anyone else experience similiar? Will keep you guys/gals updated with progress.

  • Flow of control in SAP implemented Organization?

    Suppose an organization(say A) is implemented SCM system then explain me how the data flow from enterprise portal of A's supplier to the system of A.... I m asking that how BI and ECC are involved and how controls are switch over from one system to a

  • Netscaler VPX - Citrix optimizations

    I set up a Netscaler VPX for my Citrix XenApp 6.5 farm when I deployed it. However, I did not do any sort of customizations to optimize this for Citrix clients. The only purpose of the netscaler is to handle Citrix traffic, so that seems as if I can