Error in commenting text

Hi All,
We had this problem with comments added in a PDF file. When viewed in other computers, the comment "greater than" sign appears correctly. But in other computers, square box appears. I attached the screenshot for you to visualize it more. Does font have something to do with it? Hope someone can help me as we already didn't know what's wrong with this file.

If you can post a sample somwhere it would be helpful. Unfortunately, you cannot post one here.
When it doesn't work as you think it should, what version of Acrobat/Reader is being used and what OS?

Similar Messages

  • Script to change photo caption in iWeb to iPhoto comment text

    Hi,
    Does any body know, how I could automatic replace the caption of the photos I have imported from iPhoto with the Media Browser to iWeb with the comment text I have in iPhoto for every photo?
    It should be just a script, which gets told the album and the looks for the file name which is in the caption, reads the comment for the photo in iPhoto and then puts replaces the caption with it in iWeb, then the next photo ...
    I'm not good in scripting.;-(
    Thanks and Regards,
    JO

    Ok, here my script, what I'm using now to copy the comment to the title in iPhoto before importing the photos to iWeb:
    try
    tell application "iPhoto"
    activate
    copy (my selected_images()) to these_images
    if these_images is false then ¬
    error "Please select the images."
    display dialog "Copy comment to title for the selected photos?"
    set the image_count to the count of these_images
    display dialog "Processing " & (the image_count as string) & " photos." & return & return & "This will take a moment..." buttons {"•"} default button 1 giving up after 2
    repeat with i from 1 to the image_count
    set this_photo to item i of these_images
    tell this_photo
    set the title to the comment of this_photo
    end tell
    end repeat
    end tell
    on error error_message number error_number
    tell application "iPhoto"
    activate
    if the error_number is not -128 then
    display dialog error_message buttons {"OK"} default button 1
    end if
    end tell
    end try
    on selected_images()
    tell application "iPhoto"
    try
    -- get selection
    set these_items to the selection
    -- check for single album selected
    if the class of item 1 of these_items is album then error
    -- return the list of selected photos
    return these_items
    on error
    return false
    end try
    end tell
    end selected_images

  • Error while saving text as attachment

    Hi All,
      When a layout is generated. I get the following error :
    Error while saving text as attachment , Size of the attachment is maximun than the size allowed.
    I guess the generated layout is automatically saved as attachment. Can any one suggest how to disable the option of automatic saving as attachment
    Thanks ,
    Kaushik

    Hi,
    if you want to keep the automatic saving as attachment you might check note 599680.
    The saving is done normally in method TextGeneration in the underlying Business Object, e.g. BOSALESDOCGEN, BOACTIVITY or BOSERVICETRANSACTION. There you will find the according code lines in the end.
    Regards,
    Wolfhard

  • Voting poll using PHP & MySQL TypeError: Error #2007: Parameter text must be non-null.

    I am getting this back:
    TypeError: Error #2007: Parameter text must be non-null.
    at flash.text::TextField/set text()
    at AS3_Flash_Poll_PHP_MySQL_fla::WholePoll_1/completeHandler()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    PHP code:
    <?php
    // ---------------------------------------- Section 1 -----------------------------------------------
    //  IMPORTANT!!!! Connect to MySQL database here(put your connection data here)
    mysql_connect("ginaty05.fatcowmysql.com","fall2010","@regina") or die (mysql_error());
    mysql_select_db("poll_2010") or die (mysql_error());
    // When Flash requests the totals initially we run this code
    if ($_POST['myRequest'] == "load_numbers") {
    // Query the totals from the database
        $sql1 = mysql_query("SELECT id FROM votingPoll WHERE choice='1'");
        $choice1Count = mysql_num_rows($sql1);
        $sql2 = mysql_query("SELECT id FROM votingPoll WHERE choice='2'");
        $choice2Count = mysql_num_rows($sql2);
        $sql3 = mysql_query("SELECT id FROM votingPoll WHERE choice='3'");
        $choice3Count = mysql_num_rows($sql3);
        echo "choice1Count=$choice1Count";
        echo "&choice2Count=$choice2Count";
        echo "&choice3Count=$choice3Count";
    // ---------------------------------------- Section 2 -----------------------------------------------
    // IF POSTING A USER'S CHOICE
    if ($_POST['myRequest'] == "store_choice") {
        //Obtain user IP address
        $ip = $_SERVER['REMOTE_ADDR'];
        // Create local variable from the Flash ActionScript posted variable
        $userChoice = $_POST['userChoice'];
        $sql = mysql_query("SELECT id FROM votingPoll WHERE ipaddress='$ip'");
        $rowCount = mysql_num_rows($sql);
        if ($rowCount == 1) {
    $my_msg = "You have already voted in this poll.";
    print "return_msg=$my_msg";
        } else {
    $sql_insert = mysql_query("INSERT INTO votingPoll (choice, ipaddress) VALUES('$userChoice','$ip')")  or die (mysql_error());
    $sql1 = mysql_query("SELECT * FROM votingPoll WHERE choice='1'");
    $choice1Count = mysql_num_rows($sql1);
    $sql2 = mysql_query("SELECT * FROM votingPoll WHERE choice='2'");
    $choice2Count = mysql_num_rows($sql2);
    $sql3 = mysql_query("SELECT * FROM votingPoll WHERE choice='3'");
    $choice3Count = mysql_num_rows($sql3);
    $my_msg = "Thanks for voting!";
            echo "return_msg=$my_msg";
            echo "&choice1Count=$choice1Count";
    echo "&choice2Count=$choice2Count";
    echo "&choice3Count=$choice3Count";
    ?>
    AS3 code:
    stop(); // Stop the timeline since it does not need to travel for this to run
    // Assign a variable name for our URLVariables object
    var variables1:URLVariables = new URLVariables();
    //  Build the varSend variable
    var varSend1:URLRequest = new URLRequest("parse_my_poll.php");
    varSend1.method = URLRequestMethod.POST;
    varSend1.data = variables1;
    // Build the varLoader variable
    var varLoader1:URLLoader = new URLLoader;
    varLoader1.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader1.addEventListener(Event.COMPLETE, completeHandler1);
    // Set variable to send to PHP here for the varloader below
    variables1.myRequest = "load_numbers";  
    // Send data to php file now, and wait for response using the COMPLETE event
    varLoader1.load(varSend1);
    function completeHandler1(event:Event):void{
        count1_txt.text = "" + event.target.data.choice1Count;
        count2_txt.text = "" + event.target.data.choice2Count;
        count3_txt.text = "" + event.target.data.choice3Count;
    // hide the little processing movieclip
    processing_mc.visible = false;
    // Initialize the choiceNum variable that we will use below
    var choiceNum:Number = 0;
    // Set text formatting colors for errors and success messages
    var errorsFormat:TextFormat = new TextFormat();
    errorsFormat.color = 0xFF0000; // bright red
    var successFormat:TextFormat = new TextFormat();
    successFormat.color = 0x00FF00; // bright green
    // Button Click Functions
    function btn1Click(event:MouseEvent):void{
        choiceNum = 1;
        choice_txt.text = choice1_txt.text;
    function btn2Click(event:MouseEvent):void{
        choiceNum = 2;
        choice_txt.text = choice2_txt.text;
    function btn3Click(event:MouseEvent):void{
        choiceNum = 3;
        choice_txt.text = choice3_txt.text;
    // Button Click Listeners
    btn1.addEventListener(MouseEvent.CLICK, btn1Click);
    btn2.addEventListener(MouseEvent.CLICK, btn2Click);
    btn3.addEventListener(MouseEvent.CLICK, btn3Click);
    // Assign a variable name for our URLVariables object
    var variables:URLVariables = new URLVariables();
    //  Build the varSend variable
    var varSend:URLRequest = new URLRequest("parse_my_poll.php");
    varSend.method = URLRequestMethod.POST;
    varSend.data = variables;
    // Build the varLoader variable
    var varLoader:URLLoader = new URLLoader;
    varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader.addEventListener(Event.COMPLETE, completeHandler);
    // Handler for PHP script completion and return
    function completeHandler(event:Event):void{
        // remove processing movieclip
        processing_mc.visible = false;
        // Clear the form fields
        choice_txt.text = "";
        choiceNum = 0;
        // Load the response from the PHP file
        status_txt.text = event.target.data.return_msg;
        status_txt.setTextFormat(errorsFormat);
        if (event.target.data.return_msg == "Thanks for voting!") {
            // Reload new values into the count texts only if we get a proper response and new values
            status_txt.setTextFormat(successFormat);
            count1_txt.text = "" + event.target.data.choice1Count;
            count2_txt.text = "" + event.target.data.choice2Count;
            count3_txt.text = "" + event.target.data.choice3Count;
    // Add an event listener for the submit button and what function to run
    vote_btn.addEventListener(MouseEvent.CLICK, ValidateAndSend);
    // Validate form fields and send the variables when submit button is clicked
    function ValidateAndSend(event:MouseEvent):void {
        //validate form fields
        if(!choice_txt.length) {  
            // if they forgot to choose before pressing the vote button
            status_txt.text = "Please choose before you press vote.";  
            status_txt.setTextFormat(errorsFormat);
        } else {
            status_txt.text = "Sending...";
            processing_mc.visible = true;
            // Ready the variables for sending
            variables.userChoice = choiceNum;
            variables.myRequest = "store_choice";  
            // Send the data to the php file
            varLoader.load(varSend);
        } // close else after form validation
    } // Close ValidateAndSend function ////////////////////////

    This error means that you are trying to set the text field but there is no data in the variable. As a first step, try to identify where this is happening, eg Is it the first call, or once you have submitted your data or only if you try to submit data second time?
    Trace out the data that is returned for both completeHandlers to see if there is a missing var. Try this for "load_numbers" and "store_choice". Do it twice for "store_choice". Do you get back what you expected?
    You could also try altering the php to return some fixed dummy variables, eg  choice1Count=11&choice2Count=22&choice3Count=33, etc. If this works then you know that the error is in the PHP.
    It looks to me like the issue is when you submit the data a second time and just get back the return_msg - the handler then tries to assign the choice1Count etc but doesn't have any count data back from the poll.php.
    Test that there is data before assigning it, eg
        if(event.target.data.choice1Count){
            count1_txt.text =  event.target.data.choice1Count;
            count2_txt.text =  event.target.data.choice2Count;
            count3_txt.text =  event.target.data.choice3Count;

  • ActionScript 3 + PHP: TypeError: Error #2007: Parameter text must be non-null.

    Hi - Still new to flash as3 and php -
    it is a contact form page - user puts in information - i am to receive it in an email address their information
    as well the variables get sent back from the php to the .swf file.
    I am receiving these errors and not knowing how to fix them.
    any help would be much appreciated. thank you in advance really.
    below are the errors in flash - as3 code - and php code setup.
    errors:
    ActionScript 3 + PHP: TypeError: Error #2007: Parameter text must be non-null:
      at flash.text::TextField/set text()
              at kwangjaekim_fla::wholeform_16/completeHandler()
              at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    my as3 code is the following:
    // build variable name for the URL Variables loader
    var variables:URLVariables = new URLVariables();
    //Build the varSend variable
    var varSend:URLRequest = new URLRequest("contact_parse.php");
    varSend.method = URLRequestMethod.POST;
    varSend.data = variables;
    //Build the varLoader variable
    var varLoader:URLLoader = new URLLoader;
    varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader.addEventListener(Event.COMPLETE, completeHandler);
    //handler for the PHP  script completion and return of status
    function completeHandler(event:Event):void{
              //value is cleared at ""
              name_txt.text = "";
              contact_txt.text = "";
              msg_txt.text = "";
              //Load the response PHP here
              status_txt.text = event.target.data.return_msg;
    //Add event listener for submit button click
    submit_btn.addEventListener(MouseEvent.CLICK, ValidateAndSend);
    //function ValidateAndSend
    function ValidateAndSend(event:MouseEvent):void{
              //validate fields
              if(!name_txt.length){
                        status_txt.text = "Please Enter Your Name";
              }else if(!contact_txt.length){
                        status_txt.text = "Please Enter Your Contact Detail";
              }else if(!msg_txt.length){
                        status_txt.text = "Please Enter Your Message";
              }else {
              // ready the variables in form for sending
      variables.userName = name_txt.text;
              variables.userContact = contact_txt.text;
              variables.userMsg = msg_txt.text;
              // Send the data to PHP now
    varLoader.load(varSend);
    submit_btn.addEventListener(MouseEvent.CLICK, function(){MovieClip(parent).gotoAndPlay(151)});
              } // Close else condition for error handling
    } // Close validate and send function
    my php code is the following:
    <?php
    // Create local PHP variables from the info the user gave in the Flash form
    $senderName   = $_POST['userName'];
    $senderEmail     = $_POST['userContact'];
    $senderMessage = $_POST['userMsg'];
    // Strip slashes on the Local variables
    $senderName   = stripslashes($senderName);
    $senderContact     = stripslashes($senderContact);
    $senderMessage   = stripslashes($senderMessage);
    //!!!!!!!!!!!!!!!!!!!!!!!!!     change this to my email address     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
                              $to = "put iny me email address";
         // Place sender Email address here
        $from = "$senderContact ";
        $subject = "Contact from your site";
        //Begin HTML Email Message
        $message = <<<EOF
    <html>
      <body bgcolor="#FFFFFF">
    <b>Name</b> = $senderName<br /><br />
    <b>Contact</b> = <a href="mailto:$senderContact">$senderEmail</a><br /><br />
    <b>Message</b> = $senderMessage<br />
      </body>
    </html>
    EOF;
       //end of message
        $headers  = "From: $from\r\n";
        $headers .= "Content-type: text/html\r\n";
        $to = "$to";
        mail($to, $subject, $message, $headers);
    exit();
    ?>
    thank you once again
    jay

    thank you Ned -
    i put in the trace line as you mentioned -
    and this is what i received -
    returns: undefined
    TypeError: Error #2007: Parameter text must be non-null
              at flash.text::TextField/set text()
              at kwangjaekim_fla::wholeform_16/completeHandler()
              at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    what does this mean exactly?
    thank you for the help really

  • Error: "Message short text 26 107 does not exist"

    Hi DS Expert,
    We've upgraded our DS from 3.2 into 4.2.
    But sometimes several jobs fail with error: "Message short text 26 107 does not exist".
    This error does not occur in DS 3.2.
    Please help...
    Thank you.

    Hi,
    Such a message seems to be SAP/BI related.
    check wether you had shortdumps in your connected SAP system.
    In DS there are no "long/medium/short-" texts stored.

  • Error saving help text !

    What's the maxsize of a Item Helptext.
    Recieving following error when trying to add helptext larger than approx 2000 characters:
    Error saving help text for item "2863318983774284".
    Thanks Gunnar
    Message was edited by:
    ganderss

    just testing RSS freshness ;)
    sorry

  • SAPCAR: could not open for writing SAPCAR (error 28). Text file busy

    Hi,
    I´m trying to decompress this file( is for a kernel upgrade):
    SAPEXE_15-10006264.SAR
    And when I do SAPCAR u2013xvf SAPEXE_15-10006264.SAR, SAPCAR only decompress a few files and I´ve this error:
    SAPCAR: could not open for writing SAPCAR (error 28). Text file busy
    Instead when I decompress the SAPEXEDB_15-10006263.SAR, SAPCAR does this correctly. I´ve tried to download again the file but the error is always the same.Could someone help me?
    Best regards,

    Hi,
    Now, I´ve unpacked the files but when I do the file copy (in order to upgrade the kernel), I´ve these errors:
    cp: cannot create /usr/sap/SMD/exe/jcontrol: Text file busy
    cp: cannot create /usr/sap/SMD/exe/jlaunch: Text file busy
    cp: cannot create /usr/sap/SMD/exe/libicudata.sl.30: Text file busy
    cp: cannot create /usr/sap/SMD/exe/libicui18n.sl.30: Text file busy
    cp: cannot create /usr/sap/SMD/exe/libicuuc.sl.30: Text file busy
    cp: cannot create /usr/sap/SMD/exe/sapstart: Text file busy
    cp: cannot create /usr/sap/SMD/exe/sapstartsrv: Text file busy
    So could you help me?
    Best regards,

  • Retrieve HRTMC_PPOM succesor comment text.

    Hi All,
    In the transaction code HRTMC_PPOM, how can we retrieve the comment text in succesor tab in ABAP?
    Please advise.
    Thanks! 
    Regards,
    Nickcy.

    Hi Nick,
    You could proceed as below:
    1) Get Successor for position from HRP1001 (Relationsip B740)
    2) From relationship line ADATANR, get the document class and id.
    Refer Include LHRTMC_PPOMREL  method get_current_comments Lines 1551 to 1556
    loop at <lt_relationships> assigning <ls_relationship_wa>.
          assign component gc_additional_data_fieldname of structure <ls_relationship_wa> to
    <ls_relationship_padnnn_wa> casting type (gv_relationship_padnnn_name).
          assert sy-subrc = 0.
          move-corresponding <ls_relationship_padnnn_wa> to <ls_padnnn_wa>. " to correctly initialize values (assign
    does not take care of it)
          append <ls_padnnn_wa> to <lt_padnnn_table>.
        endloop.
    3) Get Text based on Document class and id as below:
    Refer Include LHRTMC_PPOMBUF method get_comment Lines 259- 272
      ls_comment_key_wa-class = iv_document_class.
            ls_comment_key_wa-objid = iv_document_id.
            append ls_comment_key_wa to lt_comment_keys.
            lv_rfc_destination = get_rfc_destination(
              iv_plan_variant = iv_plan_variant
              iv_object_type  = iv_object_type
              iv_object_id    = iv_object_id ).
            create object lo_message_handler.
            cl_hrtmc_document_utils=>get_content_of_texts(
              exporting it_texts           = lt_comment_keys
                        iv_rfc_destination = lv_rfc_destination
                        io_message_handler = lo_message_handler
              importing et_contents        = lt_comment_texts
                        ev_is_ok           = lv_is_ok ).
    Regards, Zen

  • Error when generating text environment

    I am using the ESS Address iViews for several countries. All coutries work fine, except Address for Netherlands, which crashes when user tries to update the address, see error message in Portal below. I also get a ST22 error
    Error when generating text environment., error key: RFC_ERROR_SYSTEM_FAILURE   
      Error when generating text environment., error key: RFC_ERROR_SYSTEM_FAILURE:com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Error when generating text environment., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.hr.per.nl.address.fc.FcPerAddressNL.modifyRecord(FcPerAddressNL.java:218)
         at com.sap.xss.hr.per.nl.address.fc.wdp.InternalFcPerAddressNL.modifyRecord(InternalFcPerAddressNL.java:634)
         at com.sap.xss.hr.per.nl.address.fc.FcPerAddressNLInterface.modifyRecord(FcPerAddressNLInterface.java:115)
         at com.sap.xss.hr.per.nl.address.fc.wdp.InternalFcPerAddressNLInterface.modifyRecord(InternalFcPerAddressNLInterface.java:212)
         at com.sap.xss.hr.per.nl.address.fc.wdp.InternalFcPerAddressNLInterface$External.modifyRecord(InternalFcPerAddressNLInterface.java:292)
         at com.sap.xss.hr.per.nl.address.detail13.VcPerAddressNLDetail_13.onFlush(VcPerAddressNLDetail_13.java:251)
         at com.sap.xss.hr.per.nl.address.detail13.wdp.InternalVcPerAddressNLDetail_13.onFlush(InternalVcPerAddressNLDetail_13.java:210)
         at com.sap.xss.hr.per.nl.address.detail13.VcPerAddressNLDetail_13Interface.onFlush(VcPerAddressNLDetail_13Interface.java:135)
         at com.sap.xss.hr.per.nl.address.detail13.wdp.InternalVcPerAddressNLDetail_13Interface.onFlush(InternalVcPerAddressNLDetail_13Interface.java:132)
         at com.sap.xss.hr.per.nl.address.detail13.wdp.InternalVcPerAddressNLDetail_13Interface$External.onFlush(InternalVcPerAddressNLDetail_13Interface.java:208)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:492)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$600(FPMComponent.java:78)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.raiseReviewAndSaveEvent(FPMComponent.java:948)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.raiseReviewAndSaveEvent(FPMComponent.java:1111)
         at com.sap.xss.per.vc.detailnavi.VcPersInfoDetailNavi.next(VcPersInfoDetailNavi.java:229)
         at com.sap.xss.per.vc.detailnavi.wdp.InternalVcPersInfoDetailNavi.next(InternalVcPersInfoDetailNavi.java:163)
         at com.sap.xss.per.vc.detailnavi.DetailNaviView.onActionNext(DetailNaviView.java:153)
         at com.sap.xss.per.vc.detailnavi.wdp.InternalDetailNaviView.wdInvokeEventHandler(InternalDetailNaviView.java:161)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:332)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:761)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:696)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:869)
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:77)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1356)
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:327)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:869)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:332)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:741)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:694)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.sap.aii.proxy.framework.core.BaseProxyException: Error when generating text environment., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.sap.xss.hr.per.nl.address.model.HRXSS_PER_P0006_NL.hrxss_Per_Modify_P0006_Nl(HRXSS_PER_P0006_NL.java:219)
         at com.sap.xss.hr.per.nl.address.model.Hrxss_Per_Modify_P0006_Nl_Input.doExecute(Hrxss_Per_Modify_P0006_Nl_Input.java:137)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
         ... 64 more
    the error in ST22 is
    Edited by: Tiberiu Sasu on Jul 19, 2010 5:33 AM

    Hi Tiberiu,
    Can you please elaborate a little like how you did install the language? Or was it standard SAP language installation?
    Thanks and Regards,
    Vinod

  • Displaying Russian commented text in ABAP program

    Hi Experts,
    I have one program in which comments are in Russian and in one system those commented text is being displayed in Russian after after choosing Cyrillic from Character set of Customizing of local layout option while in an other system same commented texts are displayed as junk characters even after choosing Cyrillic from Character set of Customizing of local layout option.
    Example :
    In 1st system, russian commented text is displayed correctly as follow
    DATA: YEAR_AFABG(4) TYPE N. " &#1043;&#1086;&#1076; &#1076;&#1072;&#1090;&#1099; &#1085;&#1072;&#1095;&#1072;&#1083;&#1072; &#1072;&#1084;&#1086;&#1088;&#1090;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080;
    while in 2nd system in which code comes from the 1st sytem, russian commented text is not displayed in russian and displayed as junk characters as follows -
    DATA: YEAR_AFABG(4) TYPE N. " Ãîä äàòû íà÷àëà àìîðòèçàöèè
    Can anybody help me on these ? Any help would be highly appreciated.
    Thanks in advance,
    Akash

    try this.
    data: report_pg type SY-REPID ,
          rpt_source type standard table of D022S .
    REFRESH rpt_source .
    move: <rpt name> to report_pg .
    READ REPORT report_pg INTO rpt_source .
    now do a search/find in rpt_source.
    Regards
    Raja

  • [svn:bz-trunk] 17219: Fixed typographical error in HTML text.

    Revision: 17219
    Revision: 17219
    Author:   [email protected]
    Date:     2010-08-06 13:19:20 -0700 (Fri, 06 Aug 2010)
    Log Message:
    Fixed typographical error in HTML text.
    Modified Paths:
        blazeds/trunk/apps/samples/testdrive.htm

    Can you check lcds too.  Thanks.
    Enjoy your pto

  • FCKeditor IE8 "Error in fieldname text."

    I have a richtextarea field and whenever I load it to edit existing text I get an alert that says "Error in fieldname text." If I click the OK button everything works fine but is driving my users crazy. I do not get this error in Firefox or Safari, only in IE8 and I did not have this problem with IE7. It appears to me that the error is happening in the FCKeditor routine FCK_ContentMenu_Init() routine. The CF generated code for the field is listed below.
    Note that the error message text is generated by CF in the onBlur event.
    Does anyone know why this is occurring and how I can prevent this error?
    Message was edited by: Kibbage.TEESO

    Suresh:
    The gender field was provided as example. I'm building generic coding to get text for any infty/field combo and certain infotypes with special processing types require the entire record to be passed.
    thank you though!  Your text reminded me that I needed to pass the work area <pannnn_wa2> to the method and not the original table.
    Loop at <pannnn2> into <pannnn_wa2>.          
    EndLoop.                                                                               
    CALL METHOD text_identifier_obj->read_text   
      EXPORTING                                    
        tabname = 'P0002'                          
        record =  <pannnn_wa2>                     
        Record_Specified = 'X'                     
        fieldname = 'GESCH'     
    No errors anymore.
    thanks again!
    warey

  • Where is the Infotype 0035 comment text stored

    Where are the comments text field on infotype 0035 stored?

    Please create report "" via SE38 and . With the report you can list all texts
    from PCL1, cluster TX that exits for several personnel numbers and a
    specific infotype.

  • Error including INCLUDE text

    Hi experts,
    I'm new at sapscript. I need to print the company logo on a label.
    I've read many posts everywhere and the task seems pretty simple.
    Somehow, I'm getting an error that I can't google anywhere while doing the sapscript check: "Error including INCLUDE text".
    I'm using the standard enjoy logo.
    The only command line is:
    /: INCLUDE ENJOY OBJECT TEXT ID ST LANGUAGE EN
    I'm mantaining the label text at OMCF.
    Any clue?
    Thanks in advance.
    Best regards,
    André Costa

    Hi ,
    /: INCLUDE ENJOY OBJECT TEXT ID ST LANGUAGE EN
    Here you are including the   Enoy Logo   but you have to check the Object name  for that logo  And text id
    go through this  link
    [http://www.sap-img.com/ts001.htm]
    Let me know if any concerns.....

Maybe you are looking for