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

Similar Messages

  • Many problems with the 'Export to Text' (.txt) in CR Xi

    Hi,
    I have listed many problems with the 'Export to Text' (.txt) function of CR Xi.
    These problems are related to this export format only (meaning everything works fine in the Viewer or in the 'Export to PDF')...
    - Multi-columns layout do not export as Multi-column (export only a one column);
    - Numeric values with parenthesis for negative values or with a fix currency sign at the leftmost position are not exported correctly;
    - Fields having a Suppress formula which is "WhilePrintingRecords" do not appears when exported;
    - Fields with 'Suppress double value' checked are not always suppressed when exported to Text.
    - 'Keep Group Together' flag is not working.
    - 'Reset Page Number After' simply does not works when exported to text;
    - 'Keep object together' on TextBox/Section is not working.
    - Whenever a group is ending on the last line of a page, the the following page as the same Group header as the previous group with no records until the page is filled, then the PageBreak and PageHeader is missing but the records of the following group appears.
    I would like to know what is the status of the 'Export to Text' function (is it a deprecated function not supported anymore???).
    If still supported, when will these bugs be fixed???
    Thanks

    Hi Rene
    Export to Text is supported till date. Crystal Reports 2008 also supports this with Keep together working however when I tried with format with multiple columns, it didnot show up in the exported text file.
    Regards
    Sourashree

  • Problem with Append mode in File Receiver

    Hello,
    I am facing some problem with Append Mode in File Receiver.
    In channel config, i have given :
    Construction Mode : Append
    File Type : Text
    Message Protocol : File Content Conversion
    The size of the file which i am trying to send is about 9.5MB.
    I got this error,
    "Recovering from loss of connection to database; message
    loaded into queue by recover job: System Job (Failover Recovery)".
    So, it would seem that there was a loss of connnection to the database    
    while the file was being written.
    Note -  XI successfully recovered from the connection loss and   
    successfully wrote the file, however since the communication channel  
    was set to append, it appended to the partial file that was written   
    before the database connection loss. This is not correct. The file    
    should have been overwritten after the recovery even though the communication
    channel was configured to append.                                     
    Can anyone help me on this regard.
    Thanks,
    Soorya.

    Hi Venkat,
    I would suggest u to split the file in to chunks if u face any problem in processing at a time in append mode and also
    Memory Requirements are must 4 processing huge files:
    Q: Which memory requirements does the File Adapter have? Is there a restriction on the maximum file size it can process?
    A: The maximum file size that can be processed by the File Adapter depends on a number of factors:
    o The most important one is the size of the Java heap, which is shared among all messages processed at a certain point in time. In order to be able to process larger messages without an out of memory error (OOM), it is recommended to increase the size of the available Java heap and/or to reduce the concurrency in the system so that fewer messages are processed in parallel.
    o Another factor negatively influencing the maximum message size in releases up to and including XI 3.0 SP 13 is an enabled charcter set (encoding) conversion if the message type is set to "Text".
    o Using the transport protocol "File Transfer Protocol (FTP)" also uses more memory for processing than the transport protocol "File System (NFS)" (up to and including XI 3.0 SP 13).
    o If the Message Protocol "File Content Conversion" is used in a File Sender channel, consider that not only the size of the input file affects the File Adapter's memory usage, but even more the size of the XML resulting from the conversion, which is usually a few factors larger than the original plain text file.
    To reduce the memory consumption in this scenario, consider configuring the setting "Maximum Recordsets per Message" for the sender channel. This will cause the input file to be split into multiple smaller mesages.
    Plz do refer the following links:
    U may plan the availability of ur communication channel using "Planning Availability Times" feature
    http://help.sap.com/saphelp_nw04/helpdata/en/45/06bd029da31122e10000000a11466f/frameset.htm
    /people/sravya.talanki2/blog/2005/11/29/night-mare-processing-huge-files-in-sap-xi
    hi check the below links for reference
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10748ef7-b2f0-2910-7cb8-c81e7f284af5
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7086f109-aaa7-2a10-0cb5-f69bd2affd2b
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2498bf90-0201-0010-4884-83568752a857
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cc1ec146-0a01-0010-90a9-b1df1d2f346f
    Regards,
    Vinod.

  • Problems with displaying dynamic Arabic text

    We have a problem with a navigation system we are building
    which has to be able to display dynamic Arabic text. We are pulling
    in the Arabic text using XML. The problem we are having is that the
    character are not displaying joined up where they should be (for
    instance in the middle of words). Arabic characters have different
    shaping according to the position they take up within a word. What
    we are producing is apparently unreadable. Has anyone come accross
    this problem before? Is it solveable?

    Hi:
    Is there any possible chance that Adobe would do something to asist us Fl8 users with international character support.
    Everyone has some work-around, except Abode, and they are all usually related to XML.
    My setup is PHP (CMS supporting many languages) -> MySQL -> PHP -> Flash8 (Dynamic Text Fields) and the olpart that does not work is when I inject an extended character into the string - Flash stops displaying anything from that character on.
    If Adobe has or did have some component / solution or anything other than the usual System.useCodePage = true (which never seems to actually work), please let me know.
    Best Regards,

  • HT4623 is anyone else having problems with receiving and sending text messages. most people in my contacts are not getting messages that i send to them.

    is anyone else experiencing problems with (SMS) text messaging. Most all of my daily contacts dont receive my messages.

    Make sure you have checked off iCloud contacts in your Contacts app under Groups in upper left corner.

  • Problem with focus and selecting text in jtextfield

    I have problem with jtexfield. I know that solution will be very simple but I can't figure it out.
    This is simplified version of situation:
    I have a jframe, jtextfield and jbutton. User can put numbers (0-10000) separated with commas to textfield and save those numbers by pressing jbutton.
    When jbutton is pressed I have a validator which checks that jtextfield contains only numbers and commas. If validator sees that there are invalid characters, a messagebox is launched which tells to user whats wrong.
    Now comes the tricky part.
    When user presses ok from messagebox, jtextfield should select the character which validator said was invalid so that user can replace it by pressing a number or comma.
    I have the invalid character, but how can you get the focus to jtextfield and select only the character which was invalid?
    I tried requestFocus(), but it selected whole text in jtextfield and after that command I couldn't set selected text. I tried with commands setSelectionStart(int), setSelectionEnd(int) and select(int,int).
    Then I tried to use Caret and select text with that. It selected the character I wanted, but the focus wasn't really there because it didn't have keyFocus (or something like that).
    Is there a simple way of doing this?

    textField.requestFocusInWindow();
    textField.select(...);The above should work, although read the API on the select(...) method for the newer recommended approach on how to do selection.
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)",
    see http://homepage1.nifty.com/algafield/sscce.html,
    that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    Don't forget to use the "Code Formatting Tags",
    see http://forum.java.sun.com/help.jspa?sec=formatting,
    so the posted code retains its original formatting.

  • Problem with tabs in xml text

    I have a problem with my XML setup here
    i use Tab key to aligh up info in the xml text for aligned
    display in the program
    hoever i tested on several computers and get different
    resolts.
    how can i fix this.
    Please view the linked Image
    http://img129.imageshack.us/img129/8394/flashtextproblemti4.jpg
    this is what happenes even thow all run xp and all run same
    latest flash version.
    Anyone got an ideer how i can solve this.
    BTW the font is verdana.
    This is my actionscript ....
    // Function to parse an address
    f_parseAddress = function () {
    // Set the text
    _root.stageholder.textfield.htmlText =
    this.firstChild.firstChild.firstChild.nodeValue;
    // Create the XML object
    XML_address = new XML();
    // Set up the XML object
    XML_address.ignoreWhite = true;
    // Add the handlers
    XML_address.onLoad = f_parseAddress;
    // Load the XML file
    XML_address.load("./Data/xml/kontakt.xml");
    This is my XML file
    <?xml version="1.0" encoding="iso-8859-1"?>
    <text>
    <address>
    <![CDATA[
    <font size="20">Company name</font>
    Company name
    address
    address
    Dir. tlf. + xx xx xx xx xx
    + xx xx xx xx xx
    Mobil + xx xx xx xx xx
    + xx xx xx xx xx
    web: <a href="
    http://www.xxxxxxxxxxxxx.xx"><b>www.xxxxxxxxxxxxx.xx</b></a>
    E-mail: <a
    href="mailto:[email protected]"><b>[email protected]</b></a>
    ]]>
    </address>
    </text>
    If anyone got a solution on how i can get my text to allign
    corect
    i would like to hear about it
    Best reguards
    Mis

    alrighty then try this xml structure.
    Note: formatting information like b, or linkage tags should
    not be part of the xml.
    The XML format is a universal format for data, if you fill it
    with style information this is not good practive (in general, there
    are of course scenarios where it makes sense, also since (x)html IS
    also XML).
    In your case you want to put the information about multiple
    companies in a xml file, but you let the flash decide how to
    display format this information.
    so if you use the sugested XMl structure you will have full
    control of the layout within flash, because you can grab every
    piece of information from the xml and place it jsut where you want
    in flash and format it within flash.
    Of course this process is more coding work than your previous
    attempt, but it pays of when you have a lot of data to process and
    when you want to have full control of the final layout.
    But maybe its overkill for your application (I don't know how
    many companies will be stored in your xml and how complex the rest
    of the app is).

  • Problem with unicode in MIME text/html

    Hi;
    I have a java program that sends email by sending it to our exchange server using SMTP. The email has both a To and a Bcc in the single email sent.
    The bcc addressee receives the email fine.
    The to address however has a problem with chars that are > 0x7f in the html. The html uses utf-8. But the displayed characters look as though the utf-8 part was ignored.
    Also weird, if I go to view, options in Outlook for the bcc email (which is good) it shows:
    MIME-Version: 1.0
    Content-Type: multipart/alternative;
    boundary="----=_Part_0_32437168.1135634913407"
    Return-Path: [email protected]
    X-OriginalArrivalTime: 26 Dec 2005 22:08:33.0366 (UTC) FILETIME=[E94D1F60:01C60A68]
    ------=_Part_0_32437168.1135634913407
    Content-Type: text/plain; charset=Cp1252
    Content-Transfer-Encoding: quoted-printable
    ------=_Part_0_32437168.1135634913407
    Content-Type: text/html; charset=Cp1252
    Content-Transfer-Encoding: quoted-printable
    ------=_Part_0_32437168.1135634913407--
    But for the to email (which has the problem), it only shows:
    MIME-Version: 1.0
    Content-Type: multipart/alternative;
    boundary="----=_Part_0_32437168.1135634913407"
    Return-Path: [email protected]
    X-OriginalArrivalTime: 26 Dec 2005 22:08:33.0366 (UTC) FILETIME=[E94D1F60:01C60A68]
    Does javamail do anything weird when it gets an email with a to and a bcc and split it up wrong? I just download and installed the latest mail.jar and activation.jar.
    thanks - dave

    OK...this didnt quite cure it for me...but having done this AND then this...
    MimeBodyPart htmlText = new MimeBodyPart();
    final String htmlStuff = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
    + "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"
    + "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">"
    + "<head>"
    + "<title>Stuff.</title>"
    + "<meta http-equiv=\"Content-Type\" content=\"application/xhtml+xml; charset=utf-8\"/>"
    + "</head><body>"
    + "<p>Currency Symbols: \u00A3\u00A2\u20A3\u20AC$<p>"
    + "</body></html>";
    DataSource htmlSource = new DataSource()
    private String stuff = htmlStuff;
    private Charset cset = Charset.forName("utf-8");
    public String getContentType() { return "text/html"; };
    public java.io.InputStream getInputStream() throws IOException
    return new ByteArrayInputStream(cset.encode(stuff).array());
    public String getName()
    return null;
    public OutputStream getOutputStream() throws IOException
    throw new IOException();
    htmlText.setDataHandler(new DataHandler(htmlSource));
    htmlText.addHeader("Content-Transfer-Encoding","base64");
    This works for me as shown by the Unicode chars in the html.
    If you intend to take this to production create a decent external DataHandler class and avoid the use of the anonymous class - which then avoids the need for the final String and the string can come from anywhere then.
    Hope this helps,
    Barry

  • Problem with italicizing/underlining/bolding text

    When I'm typing notes, press enter and attempt to start a new line with italicized/underlined/bolded text, it's very unreliable.  Sometimes it works, most times it does not.  The format tab in the bar at the top will briefly flash blue, but nothing happens.  I've dealt with the same problem in Pages, and in both iWork '09 and the latest version.  I always wind up having to type some text first, then go back and do whatever I want with the formatting, which is a significant waste of time and a major annoyance.  Am I doing something wrong or is this just a case of terrible software design on Apple's part?

    MX6.0 or 6.1?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "anglefish" <[email protected]> wrote in
    message
    news:gqjj44$l98$[email protected]..
    > Pulling my hair out stage - I have installed Dreamweaver
    Mx on my vista
    > laptop
    > and created a website but all the text has an underline
    which I am unable
    > to
    > get rid of. The underline option is not selected it just
    appears. Is this
    > a
    > compatibility problem. Any help would be much
    appreciated.
    >

  • Problem with inverted commas in texts in WAD

    Hi all,
    I've a problem with description texts in WAD. In a graph where one of the columns have the description, let's say something like ' bla"bla ' (in Hebrew we've texts with inverted commas in the middle of the word) and when I point with my mouse on the point to see the value in numbers the text is cut. let's say 'bla"bla' had 15 value it wouldn't show it, but it would show 'bla'. if the text is ' bla ' with value 18, it shows ' bla 18' .
    How can i solve it?
    thank you,
    Yoav.

    Hi Abraham,
    thsi could be a problem from the specisic setting of the infocube. Please check the BEx Settings from the infocube. You can find them by the following steps:
    - search for the infocube
    - doubleclick on the infocube
    - choose an specific infoobjekt
    - right mousebutton and click "specific dataprovider settings"
    - check if the right entries are set
    Hope this will help.
    André

  • Problem with After effects present text animations

    When I want to use the text animation presets I get an error message, an example is when I want to use a text "animate in" preset and got the following error message:  After Effects error:  Can't import file "Fly In From Bottom.ffx": unsupported filetype or extension. ( 0 :: 1 ). I have check my bridge script settings and they are activated for After effects.

    Sounds like you are trying to import a FFX file instead of applying an animation preset. Some users are reporting problems with Bridge. Just type the name of the animation preset into the Effects and Presets panel and apply it from inside AE.

  • Problems with downloading pics from text?

    Hi  - is anyone else having problems downloading pics attached to text after running the 4.1.2 upgrade?
    I've tried powering on and off - turning off wi-fi and just having data...(and vice versa)...to no avail.   the text and pictures are coming from another verizon user....they have a "non-smart" phone.

    Have you performed a System Cache wipe since the JB update? I would try it, it will not wipe your phone, you will not lose anything. If you are going to do this, make sure you follow the instructions exactly, as failure to do that could wipe the phone by accident.
    Turn the phone off and perform Clear Partition. Clearing the partition will remove any temporary files that may be causing the problem, but will not delete your files or settings.
    - Power the phone down.
    - Hold the volume up and down and power key down all at the same time until you see the Boot Mode Selection Menu. This should happen within a couple of seconds.
    - Press the volume down key until "Recovery" is highlighted. Press the volume up key to select.
    - Wait until you see a triangle with an exclamation point in it.
    - Press and hold the volume down key. While doing that, press and hold the volume up key then release them. This should put you into the Android system recovery.
    - Press the volume down key until wipe cache partition is highlighted.
    - Press the power button to select. You will be brought back to the Android system recovery utility when it is complete.
    - Press the power button to select "reboot system now". Wait for the phone to boot.
    Check to see if it cleared the problem. This fixed a couple of app issues with my RAZR after the update.

  • Intermittent problem with PC Suite - no text is di...

    I have an intermittent problem with PC Suite - every so often it will stop displaying any text.
    For eaxmple, right-click on the task bar icon gives a list of icons for backup, messages, sync etc., but the text is missing.  Also, the 'tool-tips' in the application itself are empty grey boxes.
    Restarting PC Suite solves the problem for a while, but it always comes back.
    The main problem is that when it gets in this state, incoming call alerts don't show the name/number.
    Has anyone else had this and managed to sort it.
    I'm running PC Suite 7.1.40.6 on a Lenovo ThinkPad T61p running Windows XP SP3.  The phone is a 6230i connected via Bluetooth.
    Thanks.
    Alan.

    Yes the Support line directed me to try a different USB port, with no luck.
    Also looked for the connection in windows device manager>>nothing appeared except the computers ports...
    [quote]Hi, Here is something what you could try to do: 1. Uinstall Nokia PC Suite 6.82.22 (or 6.7 or 6.8x) and restart PC. 2. Go to Windows' Control Panel and open "Add or Remove Programs" application. 3. If there are "PC Connectivity Solution" (or "Nokia PC Connectivity Solution" and/or "Nokia Connectivity Cable driver", uninstall those and restart PC. 4. Install PC Suite 6.82.22 and restart PC. If problem happen again: 1. Go to Windows' Control Panel and open "Add or Remove Programs" application. 3. Select "PC Connectivity Solution", click "Change" and then "Repair". 4. After Repair, restart PC. And if no help again: Save RegPCSuiteComponents.bat file to C:\Program Files\PC Connectivity Solution\ folder. Then go that folder and run it (double-click that file). After that restart PC. Does any of those help you?? [/quote]
    I've tried your 1st & 2nd suggestions....but I can't find the "connectivity solution" folder you mention (and being a complete noob (!) I don't know what a .bat file is (nor how to use it lol)
    In fact I can't find PC Suite anywhere in the program files. I REALLY think that it wasn't installed OK....it should not have taken less than one second to download if it took 1 3/4 hrs initially

  • Does anyone have problems with some websites where text is overwritten and it is impossible to navigate the site as the buttons to for example confirm purchases do not work?

    I am having problems with some websites - e.g. Easyjet and more recently the Sport Relief website, where the text overwrites other text and images and it means it is impossible click to accept, confirm or find further information?

    lindsayfromstow on the wold wrote:
    I am having problems with some websites - e.g. Easyjet and more recently the Sport Relief website, where the text overwrites other text
    Post a screen shot.
    What browser and what version are you using?
    Have you tried a different browser?

  • Problem with Approve & Reject buttons text

    Hi Team,
    Once we have configured UWL in EP 7.0 & backed is SRM 7.0, facing problem in Approve & Reject Buttons text.
    Instead of showing Approve & Reject text on Buttons, it showing text like this  com.sap.pct.srm.core.action.oldwfl.approve  & com.sap.pct.srm.core.action.oldwfl.reject
    Can you please help me on this?
    Thanks in advance.
    Thanks & Regards
    Sandeep.

    Sergio, Thanks for your reply.
    It's happening for all the task items. Pls find out XML file here. here i pasted some of the code from my XML, because it is not taking full XML code here.
          <Action name="com.sap.pct.srm.core.action.oldwfl.approve" groupAction="" handler="FunctionModuleActionHandler" referenceBundle="com.sap.pct.srm.core.approve" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="FunctionModule" value="/SAPSRM/FU_WF_RFC_DECISION"/>
            <Property name="IV_DECISION" value="APPROVED"/>
            <Property name="IV_APF_VERSION" value="0500"/>
            <Property name="IV_WIID" value="${item.externalId}"/>
            <Property name="IV_MODE" value="APPROVAL"/>
            <Property name="FunctionModule" value="/SAPSRM/FU_WF_RFC_DECISION"/>
            <Property name="display_order_priority" value="50"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.conf.detail" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="detail"/>
            <Property name="ObjectValue" value="a=b&amp;sapsrm_botype=${item.BOTYPE}&amp;sapsrm_boid=${item.BOID}&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_mode=${item.BOMODE}&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="conf"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.oldwfl.conf.display" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="detail"/>
            <Property name="ObjectValue" value="a=b&amp;sapsrm_botype=BUS2203&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_mode=DISPLAY&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="conf"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.OldWFL" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="oldwfl"/>
            <Property name="ObjectValue" value="a=b&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="uwl"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.conf.display" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="detail"/>
            <Property name="ObjectValue" value="a=b&amp;sapsrm_botype=${item.BOTYPE}&amp;sapsrm_boid=${item.BOID}&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_mode=DISPLAY&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="conf"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
    Thanks & Regards
    Sandeep.

Maybe you are looking for

  • Problems with Express C2 version...

    Hi all, I have been getting some strange problems with Express lately. I get the following message about an umimplemented method: CurrentServiceDetailWindow: Got Exception. SYSTEM ERROR: The method SetWindowTitle is unimplemented. It should be implem

  • Concatenate interface fields(string) to Text Field

    Hi experts. I'm looking for solution. I created adobe interactive form displaying in ABAP WebDynpro, using ZCI layout I want to display sample text like: Hello mr. John today is monday. - John and monday are variables from interface. But I have probl

  • Exception caught: Language 'VI' not available; nested exception is com.syclo.sap.exception.SAPException: Agentry

    Hi, I test my Agentry application on my ipad, it can connect to SAP server but it then display the error: Language 'VI' not available; nested exception is:  | com.syclo.sap.exception.SAPException | It can load data fine on my ATE. The language on my

  • Canon RAW Photos Corrupted in iPhoto

    In the last few weeks my Canon RAW photos are importing with some photos corrupted (half good half another photo or unrecognizable), Anyone experiencing a similar problem recently?

  • Flash CS5.5 freeze issue when testing movie.

    So I've been working on a new animation for several months and I've encountered a problem. Details: After exporting the swf by testing the full movie, it plays the first four scenes, and then after that it crashes. The symbols keep going but the movi