Remove the bilingual "tag"

How do I remove the bilingual "tag" that appears at the bottom of every email I send? Thanks!
Solved!
Go to Solution.

Here you go:
Thanks,
Bifocals
http://bis.na.blackberry.com/html?brand=bell
Click Accept as Solution for posts that have solved your issue(s)!
Be sure to click Like! for those who have helped you.
Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

Similar Messages

  • How to remove the header tag in the XML data ?

    Hi All,
    I am sending an XML data from SFTP to Proxy, in that I want to remove the header tag (first tag) from the xml, while loading the data. how to do that ?

    Hi,
          It is not about the thing that, whether your source is XML or flat file. If you dont want some thing in your source file , dont consider it and dont map it with your target structure. think that, your not getting the header in your source.  What is the header here.
    <Emp_details>
    <Emp_Id> Employee No </Emp_Id>
    <Emp_Name> Employee Name </Emp_Name>
    </Emp_details>
    <Emp_details>
    <Emp_Id> 1234 </Emp_Id>
    <Emp_Name> xxxx </Emp_Name>
    </Emp_details>
    <Emp_details>
    <Emp_Id> 5678 </Emp_Id>
    <Emp_Name> yyy </Emp_Name>
    </Emp_details>
    you have two fields under node Emp_details. What do u want to avoid here?
    Regards,
    Reyaz

  • Remove the unnecessary tags in XML using PL/SQL

    Hi Friends
    from the below XML, its generate by a complex SQL query, Now we need to remove all the object type tags, and all the empty tags.
    Version - PL/SQL Release 11.2.0.3.0 - Production
    <MajorLine>
        <MAJOR_LINE_OBJECT_TYPE> -- Need to remove these Objects types showing in the XML
            <LINEID>143424538</LINEID>
            <ITEMNAME>TC-ABC-123</ITEMNAME>
            <ITEMPATH>78245</ITEMPATH>
            <QUANTITY>10</QUANTITY>
            <SERVICELINE/> -- Need to remove all the Empty tags
            <MINORLINE>
                <MINOR_LINE_OBJECT_TYPE> -- Need to remove these Objects types showing in the XML
                    <LINEID>143424799</LINEID>
                    <ITEMNAME>TCC-abc</ITEMNAME>
                    <ITEMPATH>78245</ITEMPATH>
                    <QUANTITY>10</QUANTITY>
                    <SERVICELINE/>-- Need to remove all the Empty tags
                    <MINOR_MINOR_LINES>
                        <M_MINOR_LINE_TYPE> -- Need to remove these Objects types showing in the XML
                            <LINEID>143424798</LINEID>
                            <ITEMNAME>SF15-abc-xyz</ITEMNAME>
                            <ITEMPATH>78245</ITEMPATH>
                            <QUANTITY>10</QUANTITY>
                      </M_MINOR_LINE_TYPE>-- Need to remove these Objects types showing in the XML
                    </MINOR_MINOR_LINES>
                </MINOR_LINE_OBJECT_TYPE>--Need to remove these Objects types showing in the XML
            </MINORLINE>
        </MAJOR_LINE_OBJECT_TYPE>-- Need to remove these Objects types showing in the XML
    </MajorLine>
    i tried one of the queries posted in this blog ,PFB  to remove the empty tags , but it didnt work for me unfortunately. Please help.
    PFB
    WITH sample_data AS (
      SELECT xmltype('<MajorLine>
        <MAJOR_LINE_OBJECT_TYPE>
            <LINEID>143424538</LINEID>
            <ITEMNAME>hijk</ITEMNAME>
            <ITEMPATH>78245</ITEMPATH>
            <QUANTITY>10</QUANTITY>
            <SERVICELINE/>
            <MINORLINE>
                <MINOR_LINE_OBJECT_TYPE>
                    <LINEID>143424799</LINEID>
                    <ITEMNAME>efg</ITEMNAME>
                    <ITEMPATH>78245</ITEMPATH>
                    <QUANTITY>10</QUANTITY>
                    <SERVICELINE/>
                    <MINOR_MINOR_LINES>
                        <M_MINOR_LINE_TYPE>
                            <LINEID>143424798</LINEID>
                            <ITEMNAME>abc</ITEMNAME>
                            <ITEMPATH>78245</ITEMPATH>
                            <QUANTITY>10</QUANTITY>
                        </M_MINOR_LINE_TYPE>
                    </MINOR_MINOR_LINES>
                </MINOR_LINE_OBJECT_TYPE>
            </MINORLINE>
        </MAJOR_LINE_OBJECT_TYPE>
    </MajorLine>') xmldoc
      FROM dual
    SELECT deleteXML( t.xmldoc
                    , '/MajorLine/*[.="" or contains(.,"?")]'
                    ) as result
    FROM sample_data t
    My email ID is [email protected] -- You can reach me
    thanks in advance ... Arun thomas T

    Hey Odie. Great to see you again, the query is
    SELECT XMLELEMENT (
              "MajorLine",
              major_line_object_type (
    oola_major.line_id,
    oola_major.ordered_item,
    oola_major.header_id,
    oola_major.ordered_quantity,
                 CAST (
                    MULTISET (
                       SELECT oola_ser.line_id,
    oola_ser.ordered_item,
    --oola_ser.header_id,
    oola_ser.ordered_quantity,
    CAST (
                                 MULTISET (
    SELECT oola_ser2.service_start_date,
    oola_ser2.service_end_date,
    oola_ser2.service_duration
                                      FROM oe_order_lines_all oola_ser2
                                     WHERE oola_major.line_id =
    oola_ser2.service_reference_line_id
                                           AND oola_ser2.header_id =
    oola_major.header_id) AS service_period_table_type)
    FROM oe_order_lines_all oola_ser
                        WHERE oola_major.line_id =
                                 oola_ser.service_reference_line_id
    AND oola_ser.header_id = oola_major.header_id) --As of now excluding cross order service line
    AS SERVICE_TABLE_TYPE),
                 CAST (
                    MULTISET (
                       SELECT oola_minor.line_id,
    oola_minor.ordered_item,
    oola_minor.header_id,
    oola_minor.ordered_quantity,
    CAST (
                                 MULTISET (
                                    SELECT oola_ser1.line_id,
    oola_ser1.ordered_item,
                                           -- oola_ser1.header_id,
    oola_ser1.ordered_quantity,
                                           CAST (
                                              MULTISET (
                                                 SELECT oola_ser3.
    service_start_date,
    oola_ser3.
    service_end_date,
    oola_ser3.
    service_duration
                                                   FROM oe_order_lines_all oola_ser3
                                                  WHERE oola_minor.line_id =
    oola_ser3.
    service_reference_line_id
    AND oola_ser3.header_id =
    oola_major.
    header_id) AS service_period_table_type)
                                      FROM oe_order_lines_all oola_ser1
                                     WHERE oola_minor.line_id =
    oola_ser1.service_reference_line_id
                                           AND oola_ser1.header_id =
    oola_major.header_id) --As of now excluding cross order service line
    AS SERVICE_TABLE_TYPE),
    CAST (
                                 MULTISET (
                                    SELECT oola_minor_m.line_id,
    oola_minor_m.ordered_item,
                                           oola_minor_m.header_id,
    oola_minor_m.ordered_quantity
                                      FROM oe_order_lines_all oola_minor_m
                                     WHERE oola_minor.line_id =
                                              oola_minor_m.link_to_line_id
                                           AND oola_minor_m.header_id =
    oola_major.header_id) --As of now excluding cross order service line
                                                                       AS m_minor_line_table_type)
    FROM oe_order_lines_all oola_minor
                        WHERE    --oola_minor.top_model_line_id=oola_major.line_id
    oola_minor.link_to_line_id = oola_major.line_id
    AND oola_minor.header_id = oola_major.header_id
    AND oola_minor.item_type_code != 'SERVICE') AS MINOR_LINE_TABLE_TYPE)))
              AS "XMLOutput"
      FROM oe_order_lines_all oola_major
    WHERE oola_major.line_id = 143424538 AND oola_major.link_to_line_id IS NULL;
    can we rewirte it to get the desired out put ..
    Desired output is Just remove the Object_type tags and empty tags coming in the output xml.
    The previous issues i mentioned are not solved yet  . actually will update the challenges ..
    Odie .. thanks.. again

  • How do I remove the acronym tags from menu items in Business Catalyst?

    Hello, can anybody answer this for me please? Not having any success googling or foruming it so far.
    How do I remove the acronym tags from menu items in Business Catalyst? 
    Thanks in advance
    Grant

    These are titles and in the dynamic menu will be the item description per item.
    These are actually important though and you do not really want to remove them but make them better and reword them other then the same as the link test. These are good for the user experience as well as SEO. A bot knowing a description of a link and where it is going coupled with the URL's and the title of an anchor are all important aspects of your sites SEO.

  • Removing the [Spam] tag from non Spam emails

    I have a few emails which come through to my Inbox with [Spam] in the subject field.  These emails are not Spam.  How do I remove the [Spam] tag and tell the system that they are not Spam. 
    If the system thinks they are Spam, why don't they go straight into the Spam folder?

    Hi orange_dude,
    Check out this link for more info on how to filter spam. Let me know if this helps.
    Thanks
    Neil
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • How do I remove the blue tag from my HD?

    Since upgrading to Mavericks I have had a blue 'dot' tag next to my HD's name on my desktop.
    I have figured out how to assign and remove tags from folders generally, but I just cannot find how to remove the blue dot from the main HD on the desktop.
    For example, if I right-click on the desktop icon I can see that the blue tag is selected in the tag options, but it just cannot be deselected there at all.
    If I right-click on the desktop HD icon and select 'Get Info' I can then see the top box in the Get Info panel has 'Blue' showing in it, but there appears to be no way to get rid of it there either.
    How can I switch of this unwanted blue tag on my HD icon?

    Looks like all you guys out there have all been a little too busy to post a reply to this one, but that's fine because life can be a little too full at times.
    The good news is that I found a solution, quite accidentally really.  I simply renamed the HD Drive (Get Info > Name & Extension).  The new name appeared under the drive icon without the blue tag.  Job done.  I am guessing that the blue tag was just a bug that was a hangover left by upgrading from a previous version of OS X, but whatever it was it has now gone.
    Thank you.

  • HELP! How do I remove the paragraph tags in the Actions window?

    Hi =)
    When I'm coding action script in the Actions window of Flash, in line breaks, the paragraph symbol is present, and there are dots in all the spaces, etc., etc.
    I accidentally turned this on, and don't know how to turn it off.
    It's like the paragraph symbol button in Microsoft Word.
    Can anyone help? I'd be FOREVER grateful.
    -"DLA"

    OMG THANK YOU!!!!
    Thank you, thank you, thank you!!!
    Man, I was really starting to sweat it here, but it worked!
    I'm forever thankful,
    DLA

  • Remove Empty XML Tags using module parameters

    Hi All,
    In my lanscape I have two PI Systems.
    My scenario is an IDOC reaches 1st PI system gets converted into an EDIFACT and then goes to the 2nd PI and from there it gets routed to the respective AS2 Party.
    I am using SOAP to pass message between the PI systems and B2B Toolkit's AS2 Adapter for the communication with AS2 party.
    The issue is when the message is getting converted from IDOC to EDIFACT there are a few feilds with occurence 1..1 and due to these fields i get an empty XML tag at the output. These empty XML tags give me an error in the B2B Toolkit's AS2 Adapter Receiver Channel
    I cannot change the occurence in the structure of the EDIFACT nor can I use an XSLT mapping to remove empty tags before the message reaches the Communication Channel.
    I want to know if there are any module parameters which i can use either in SOAP Channel or the AS2 Channel to remove the XML Tags.

    Hi Muni,
    "1..1 means, you must send some values for that fields. try to find out why these are not getting any values."
    This empty tag is expected. Before using B2B Toolkit's AS2 Adapter we used to use Seeburger's AS2 Adpater and the message used to get executed successfully with these empty tags.The issue is coming only when we are using B2B Toolkit's AS2 Adapter.
    "if you want to stop sending(the fields which are not needed in target) you can you can disable the fields in the message mapping."
    I cannot disable the feild in the mapping as some other message may use this field.
    Thanks,
    Farhaan

  • Removing message type tag in output file

    Hi guys,
    I'm new to XI. I have done an xml file to xml file scenario. It is working successfully
    The output file has a format
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:mt_xml_receiver xmlns:ns0="http://xml2xml">
         <DETAILS>
              <ID>111</ID>
              <NAME>Varun</NAME>
              <LOCATION>India</LOCATION>
              <ADD>Bangalore</ADD>
              <MOBILE>46572727</MOBILE>
              <EMAIL>[email protected]</EMAIL>
         </DETAILS>
    </ns0:mt_xml_receiver>
    I want to remove the additional tag present for the message type and i want the output in the format
    <?xml version="1.0" encoding="UTF-8"?>
         <DETAILS>
              <ID>111</ID>
              <NAME>Varun</NAME>
              <LOCATION>India</LOCATION>
              <ADD>Bangalore</ADD>
              <MOBILE>46572727</MOBILE>
              <EMAIL>[email protected]</EMAIL>
         </DETAILS>
    Can any one help me on how to achieve this???
    Pl help me on this guys
    Regards
    Varun

    HI Varun,
    This will help you..
    In the message type <b>mt_xml_receive</b>r there is a box where the namespace name is specified.
    Simply delete the same and activate the message type.
    In your case what you can do is as you dont want the message type name also.
    you can create the message type name as DETAILS instead of mt_xml_receiver.
    Regards,
    Sumit
    ps : reward points if tht helped u.

  • Remove un-necessary tags?

    Jdbc to file scenario, in this scenario we need to remove empty value tags from sender or receiver side before creating Xml document in third party.
    Is that possible? I know this is very dummy question but I am new in pi and sdn
    Ex:
    <test>
    <empdetails>
    <emp-no>12</emp-no>
    <emp-name></emp-name >
    <emp-salary>120000</emp-salary >
    <empid></empid>
    </ empdetails>
    <empdetails>
    <emp-no>13</emp-no>
    <emp-name>xsd</emp-name >
    <emp-salary></emp-salary >
    <empid>rt54</empid>
    </ empdetails>
    </test>
    any bisy give solution for this querry.
    Edited by: santhooshv on Dec 20, 2011 7:43 AM
    Edited by: santhooshv on Dec 20, 2011 7:45 AM

    hi,
    <test>
    <empdetails>
    <emp-no>12</emp-no>
    <emp-name></emp-name >
    <emp-salary>120000</emp-salary >
    <empid></empid>
    </ empdetails>
    <empdetails>
    <emp-no>13</emp-no>
    <emp-name>xsd</emp-name >
    <emp-salary></emp-salary >
    <empid>rt54</empid>
    </ empdetails>
    </test>
    As per My knowledge, That is possible with remove the empty tags of the Additional Parameters in u201CAdvanced Modeu201D in Sender Jdbc Communication channel.
    If you want to remove the empty tags from the test of the sender adapter, select Remove Empty Tags. Main advantage is  reduce the size of XML documents.
    <test>
    <empdetails>
    <emp-no>12</emp-no>
    <emp-salary>120000</emp-salary >
    </ empdetails>
    <empdetails>
    <emp-no>13</emp-no>
    <emp-name>xsd</emp-name >
    <empid>rt54</empid>
    </ empdetails>
    </test>
    please gothrough below link:
    http://help.sap.com/saphelp_nw73/helpdata/en/7e/5df96381ec72468a00815dd80f8b63/content.htm
    thanks,

  • Has iTunes stopped using the iTunNORM tag?

    Recently, I was trying to figure out whether I wanted to use info generated by the replay_gain algorithm in my iTunNORM tags, so I experimented with a couple of things, and one of things I did was to remove the iTunNORM tag completely from a copy of an aac file. I then added this song to iTunes, I noticed that the file remained unchanged, the iTunNORM tag was not created ( and yes I had the Sound Check feature on)
    So then I picked a song that I had, and I generated 3 aac's from it (one where I amplified the volume, one I decreased the volume, and one with the volume unchanged), so there was no iTunNORM tag in the files, no replay_gain tags in the files. I then added these songs to iTunes, and found out that soundcheck now works without adding the itunNORM tag to aac's; that is to say, if I have Sound Check off, then the 3 test acc's will play at different levels of loudness, and if it is on then they sound to be at the same level of loudness.
    Has anyone else noticed this behaviour?
    Has iTunes stop using the iTunNORM tag?
    BTW:
    I used foobar and qtaacenc (QuickTime commandline encoder) to create the aac files.
    I did this after I had upgraded to iTunes 11, I have since downgraded to 10.7 and I have gotten the same results. I am using the 64 bit windows version of iTunes.

    Also I'm very very interested in knowing the answer to your question.
    I posted yesterday some questions (among which your question itself) here "https://discussions.apple.com/thread/4791322" but nobody answered me yet.
    Did you find out at last if iTunes 10 stopped using the iTunNorm tag and where it eventually write soundcheck info into an mp3 file?
    Thank you very much for your anser.

  • Regex - Remove specific HTML Tags

    I have already found a solution in the forum to remove all html tags but I need some specific tags - img, a, b, i, u - and also their closing tags - </a>, </b>.
    The regex also needs to differ between img without the class attribute and with class attribute - it should remove elements with class attribute
    So I have tried to modifiy the found solution:
    result = Regex.Replace(result, "<[^(img|a|b|i|u)][^>]*>", " ");
    It works not optimal because it also removes the closing tags, doesn't differ and doesn't remove the br tags. It's not necessary to do all these actions in one statement.

    you can use regular
    <[(/body|html)\s]*>
    in c#:
    var result = Regex.Replace(html, @"<[(/body|html)\s]*>", "");
    <html>
    <body>
    < / html>
    < / body>

  • How can we remove the Calender,Active tasks,Recent activity and tags sectio

    Hi
    I want my landing page of my workspace (Keppel_Energy_EAP) to have only the WIKI home screen and want to remove the other sections like calender, Activie Tasks, Recent Activity and tags section.
    Can you please let me know how i can remove these sections.
    Thanks
    Ashok

    Hi,
    The teamcollab client is not modifiable unfortunately - what you have on the page is always there.
    Phil

  • Is it possible to Remove the inbuf and outbuf tags from a SALT exposed Tuxedo Service?

    Hi All,
    Currently I have the need to expose my tuxedo Service in a pre-created WSDL file (with all the fields names and namespaces already defined). Searching the web and the examples presented in the Tuxedo and Salt Package, I was able to configure most of the fields but  still can't remove the wrapper inbuf tag.
    Is there any parameter or configuration I can use to eliminate this tag so I can expose the SALT generated WSDL the way I want? Or is it a requirement for every tuxedo service to have his input exposed that way by using SALT?
    If you need anything else in order to provide an answer for this, please let me know. I'm also open to any sugestions.
    Thanks in advance,
    Brunno Attorre

    Hi,
    You would need to set the environment variable GWWS_WSDL_NO_BUF_WRAPPER="Y" (and restart the GWWS server).
    This should prevent the <inbuf> and <outbuf> tags from being added but it may depend upon the SALT release and rolling patch
    level you are using(i.e. if it is included or not) 
    Regards,
    Bob Finan

  • How to remove the page break for CSV report

    Hi,
    I'm working on a rdf report and have an issue with page break.
    As usual there exits a page break in the report output. how do I remove it.
    work around: set Page break before/after : NO
    worked on margin re-size, how ever could not resolve the issue.
    Can any one help me on this.
    Thanks in advance.
    Thanks,
    Santhosh

    There are two ways to do this:
    1) If you want to remove and individual dimension from a presentation, you can hide the dimension. This can be performed directly from within QueryBuilder. Within the first section of Query Builder that shows the selected measures selected and associated dimensions, simply remove the required dimensions from the right dialog panel.
    2) To hide all page items within a presentation, simply add the following the property, pagingControlVisible="False", to the presentation tag in your JSP. For example:
    <orabi:Presentation location="Local Computer Sales/Products/KPI Sales Prior Period and Prior Year" id="BIProductKPIs_pres2" pagingControlVisible="False"/>
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

Maybe you are looking for

  • ERROR while generating CAP file

    Hello, Iam trying to generate a cap file of JCRMI applet. Iam getting the following errors while generating a CAP file. Can anybody help me. Thanks in advance, With Regards, Abhishek Goud {color:#ff0000}{color:#008080}*C:\Documents and Settings\Admin

  • How to improve print quality from PSE9 on Mac?

    Is there a combination of various options in the Photoshop Elements 9’ and the HP Photosmart (C7180) printer’s dialogue boxes (on a Mac, OS 16) that would result in acceptable photo prints? I’ve browsed around in both the corresponding HP and the Ado

  • IDOC ISSUE-10/10 POINTS ASSIGNED

    Hi all I m facing problem to upload data through idoc.the scenario is like we receive electric meter reading in flat file format. And to upload that data JAVA code is written which will create an IDOC FILE this authorization is only give to 2-3 perso

  • Why is my music not listed correctly?

    I've been having this problem for some time now and it's been getting very annoying. The thing is, when looking at my artists, songs or albums in the music app on my iPod (4th gen, running iOS 6.0.1), some titles would be under the correct letter, an

  • Oracle VM 3 - 192.168.1.0 is locked

    Hi there, So I finally managed to create a virtual machine and whatnot ... but I'm so dumbfounded when it said "192.168.1.0" is locked. Can anyone please tell me what "locked" means ... there's nothing in the job log file ..