Suppress # sign

Hi Gurus,
How do I hide or suppress # sign in my BEx report. Please assist (points will be assigned).
Thanks

Hi,
One way is to restrict those chars where they are '#'.
Next thing is you can get this from the work book.
this is the code for the workbook.
-In your Workbook click on Alt+ F11
-Right Click on Modules
-Click on Insert
-Insert a module named SAPBEX
-Paste the following code there:
If queryID = "SAPBEXq0001" Then
resultArea.Select
'Remove '#'
Selection.Cells.Replace What:="#", Replacement:="", LookAt:=xlWhole, _ SearchOrder:=xlByRows, MatchCase:=False, MatchByte:=True
'Remove 'Not assigned'
Selection.Cells.Replace What:="Not assigned", Replacement:="", LookAt:=xlWhole, _ SearchOrder:=xlByRows, MatchCase:=False, MatchByte:=True
End If
' Set focus back to top of results
resultArea(1, 1).Select
End Sub
-Click on Save
-Save also the workbook
-Then Open the workbook again and enable macros.

Similar Messages

  • Can I suppress sign in dialog box?

    We are deploying Adobe CC in an enterprise setting...labs..ect.  We are using the Packing Tools for deployment.  However, when you start up a CC application it prompts you to sign into your creative account.  We want to suppress that window when someone starts the application.  We have attempted to use the Provisioning tool, however the option regsuppress=ss does not seem to disable the sign in window. 
    Here is the Prov command we are using:
    adobe_prtk --tool=VolumeSerialize --generate --serial= --regsuppress=ss --eulasuppress --locales=en_US
    No issues generating the XML file
    Lab Environment
    Windows 8.1
    Adobe Creative Cloud Enterprise Edition

    Team Installer http://forums.adobe.com/thread/1363686?tstart=0
    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Suppress -signed on a Signed Document

    Whenever, I sign a document, then go to save it, it always has the document name with '-signed' at the end of it.  Is there a way to always suppress the '-signed' addition?

    Adobe is closed until the new year, so the immediate answer is no. If you want the behavior changed you can ask here:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Adobe will look at your request next year. If you can get a thousand of your closest friends to put in additional requests it might get changed in the next version or two. There are good reasons for Adobe to have made the change that you do not like. It prevents accidental overwrites of original files, which caused issues greater than the inconvenience of changing the name of the file.

  • How can we suppress sign when printing?

    hi experts,
                 i am creating payslip so in that TAX & LIC amount are having minus sign .
    so i want to suppress minus sign while displaying
    how can i proceeed.
    please helpme.
    regards.
    satheesh.

    hello  sai ,
            thanks for replying,
                    i tried &fieldname(s)& first only . but in my program it is not supressing minus sign . I debug the smartform also in that also . iam passing like this
    &g_lic(s)&  . In L_TOKEN also asigning to OP field (S) but it is not supressing minus sign
    pls helpme
    regrads,
    satheesh.

  • Sign in Suppression of Photoshop elements 12

    How to Suppress sign in window after installation of the Photoshop elements 12.Even after login for the first time again its popping the same window when we relaunch the shortcut

    HI, After the launching shortcut "Adobe Photoshop elements 12" we are getting the below window.
    After we give the user credentials we are getting a window as displayed above which says "its validating the serial number" . The window appears for few seconds and disappears of its own. when we launch the shortcut again we are getting the "Sign In Required " Page again.
    Can't we suppress the "Sign In Required" window with some registry/Files during the installation of the application so that the window does not appears in the first launch of the shortcut itself. For your information we are installing and launching the application in Administrator mode.

  • Adobe Muse CC trial has expired and now I cannot enter a activation code for the product

    I installed Muse and the original instructions I obtained from my corporate office stated to use the enterprise key for our Adobe package and then accept the trial for Muse. The trial version of Muse has expired and I have a serial number but I can not input it. my options are listed as "buy" or "sign in" if you select "buy" then your are taken to the Adobe website. If you sign in you are prompted to "buy or continue the trial, and if you select continue it states that the trial has expired and sends you back to the screen that tells you to buy the software again. How can I get to input the serial number?

    Hello Aiva,
    If you have a creative cloud enterprise serial key, you can serialize Adobe Muse using that serial key and suppress sign in too (Muse CC 2014 64 bit). Please follow the steps mentioned in link below to serialize Muse CC 2014.
    Serialize Adobe Muse : http://helpx.adobe.com/creative-cloud/packager/provisioning-toolkit-enterprise.html
    Suppress registration : http://helpx.adobe.com/creative-cloud/packager/installing-products-exception-folder.html
    Hope this helps.
    Thanks,
    Ashish

  • Suppress 'First Sign On' screen in OCS 10.1.2

    Environment : Collab Suite : 10.1.2 on Linux
    I am bulk creating users in the OID, which are subsequently
    provisioned in the Content Services.
    How do I suppress the 'First Sign On' screen which is shown when the users
    log in for the first time ?
    We do not allow access to ftp services for the users, and would
    like the screen not to be shown.
    Do not mind an unsupported way to do the same.
    Regards
    Sanjay

    Using UserManager Web Service, call setUserPreference(Preference value) for the currently authenticated user.
    UserManager userManager = ....
    userManager.setUserPreferences(new Preference[]
    new Preference(FdkConstants.USERPREFERENCE_UIPROPERTIES_VIEWEDFIRSTLOGIN,
    Boolean.TRUE))
    You could also call setDomainDefaultUserPreference(Preference value) to make it a default setting for all new users provisioned.
    Additionally, for an existing user:
    setUserPreferencesForUser(long userId, Preference[] values)
    Set an array of user preferences for the specified user.
    Check the UserManager javadoc.
    Matt.

  • How to suppress the leading zeros , -ve sign in scripts

    Hi all,
    I was asked to suppress the leading zeros in a field while using a script.
    also how to suppress the negative sign in the scripts.
    Regards,
    Saroja.

    hi Saroja,
    <u>Sign</u>
    &ITCDP-TDULPOS& -> 100.00-
    &ITCDP-TDULPOS(S)& -> 100.00
    <u>zero</u>
    &DAY& -> 01
    &DAY(Z)& -> 1
    Hope this helps,
    Sajan Joseph.

  • Suppress the sign in sapscript

    hi friends..
    what is command for suppress the sign in sapscript

    This can be done in two ways, before passing back to form try to do like this in perform statement.
    IF value < 0.
    value = value *-1.
    ENDIF.
    and pass it back to form and it dispalys with out sign.
    OR
    IF you pass the value with negative sign to form you can surpress the sign while display like this
    &value(S)& " here S indicates surpress.
    Regards,
    SaiRam

  • Suppress Zeros in BPC

    I've run into a slight issue when suppressing Zeros in a standard report in BPC.  I'm hoping others have run into this as well, it seems like there should be a solution (but I haven't run into any via the help or this forum).  Here's the situation:
    I am showing both budget and actuals in a report.  I'd like to suppress zeros so that if BOTH budget and actuals are zero, it'll suppress the line.  However, if there are actuals and no budget (or vice versa), I'd like it to keep the line.  Seems simple?
    The control panel only allows me to put EITHER actuals or budget in it (in the category field).  Whatever is selected there, BPC will suppress based on that (i.e. if actual is selected as the category, it'll supress all fields with no actuals, even if there's budget there).
    I think if I use an EVDRE report I'm able to supress based on both (you can put that in the suppress field in the control panel), but I can't use that type of report because I need to display both actuals and budget for two different years.
    Help?!?

    Hi,
    This is feasible.
    Lets say that you are expanding the account dimension, then in one of the cells below the control panel, define the below:
    ([ACCOUNT].CurrentMember,[ACTUAL])<>0 and ([ACCOUNT].CurrentMember,[BUDGET])<>0
    Keep the suppression for the account dimension ON. Change the expansion function. In the EVEXP function, for the filter parameter, use the cell in which you have define the above formula. This will suppress all 0s if both actual and budget has 0s.
    Hope this helps.
    Edited by: nilanjan chatterjee on Dec 23, 2009 8:33 PM
    Edited by: nilanjan chatterjee on Dec 23, 2009 8:33 PM
    Put greater and less than sign in front both the 0s in the formula. I am not able to put it in the response.

  • How do you suppress page numbers. I am trying to print a screenplay for the first time since switching to Pages and I can't suppress Page

    How do you suppress page numbers. I am trying to print a screenplay for the first time since switching to Pages and I can't suppress Page #1 without making the rest of the pages inaccurate, as page #1 is the Title Page. Does anyone have any suggestions?

    When you signed to be able to post in the forums, you were urged to read and accept the Terms of Use ruling these forums.
    They claim :
    The contents of the "More Like This" box prove that applying the rules you would have get the wanted explanations without creating this new thread.
    Yvan KOENIG (VALLAURIS, France) mardi 26 avril 2011 10:04:03

  • How to Supress -ve sign in report painter output

    Dear All,
    I have developed a balance sheet using the report painter. The client wants to suppress the negative sign in the output. Is there any option to do this?
    Regards,
    Karthik

    hi,
    The no-zero addition suppresses leading zeros when used with type c or type n variables. In the case of a zero value, the output is all blanks.
    The no-sign addition, when used with variables of type i, p, or f, suppresses the output of the sign character. In other words, negative numbers will not have a sign and will appear as if they were positive.
    report xyz.
      data: c1(10) type c value '000123',
            n1(10) type n value 123,
            n2(10) type n value 0,
            i1     type i value '123-',
            i2     type i value 123.
      write: / c1,         20 'type c',
             / c1 no-zero, 20 'type c using no-zero',
             / n1,         20 'type n',
            / n1 no-zero, 20 'type n using no-zero',
            / n2,         20 'type n: zero value',
            / n2 no-zero, 20 'type n: zero value using no-zero',
            / i1,         20 'type i',
            / i2 no-sign, 20 'type i using no-sign'.
    output.........
    000123             type c                         
       123             type c using no-zero           
    0000000123         type n                         
           123         type n using no-zero           
    0000000000         type n: zero value             
                       type n: zero value using no-zero
           123-        type i                         
            123        type i using no-sign      
    reward if helpfull

  • Error message when attempting to sign/certify a form

    Tried posting this in the Forms section and got no responses.
    At the moment, I am working with Acrobat Professional 8.1.  I've created a number of simple forms in LiveCycle Designer for our department to use, but they have to be certified by our Doc Control department to be released for official use.
    The Doc Control clerk is using Acrobat Professional X.  When she clicks Sign and Certify, she gets an error message:  "This document contains some constructs which result in dynamic behavior or external dependencies which could affect its appearance.  The document contains rich content that cannot be reliably suppressed. Contact the document author regarding whether you should sign or trust signatures in the document.
    If I try to sign and certify, I get a notification that this content exists, but I am still able to apply a signature.  But, of course, I'm the form author.
    How can we get past this roadblock?

    Would it be possible for you to attach a sample (or test) file that is exhibiting this behavior?
    --Santosh

  • Suppressing Applet alerts when using java mail api

    Hi,
    Im using the following code to send email from my application. Im using JSF (tomahawk), Spring and hibernate in my application. I'm using spring email API classes to send email. This code works perfectly fine in the sense its parsing template and sending emails to the configured email id.
    I have defined this class as a managed bean and i have a commanButton is UI which is bound to this sendEmail() method
    <t:commandButton value="Send email" action= #{email.sendEmail}/>
    import java.io.StringWriter;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Properties;
    import javax.mail.MessagingException;
    import javax.mail.internet.MimeMessage;
    import org.apache.velocity.Template;
    import org.apache.velocity.VelocityContext;
    import org.apache.velocity.app.VelocityEngine;
    import org.apache.velocity.exception.ParseErrorException;
    import org.apache.velocity.runtime.resource.loader.StringResourceLoader;
    import org.apache.velocity.runtime.resource.util.StringResourceRepository;
    import org.springframework.mail.MailException;
    import org.springframework.mail.SimpleMailMessage;
    import org.springframework.mail.javamail.JavaMailSenderImpl;
    import org.springframework.mail.javamail.MimeMessageHelper;
    import au.gov.nsw.railcorp.onlineticketing.external.model.request.ServiceFees;
    public class EmailService {
         JavaMailSenderImpl sender;
         VelocityEngine engine;
         public EmailService(){
         sender = new JavaMailSenderImpl();
             sender.setHost("<smtp ip>");
             sender.setPort(25);
             sender.setUsername("<user id>");
             sender.setPassword("<password>");
             engine = new VelocityEngine();
             Properties p = new Properties();
             p.setProperty("resource.loader", "string");
             p.setProperty("string.resource.loader.class",
                  "org.apache.velocity.runtime.resource.loader.StringResourceLoader");
             try {
                   engine.init(p);
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public VelocityEngine getEngine() {
              return engine;
         public void setEngine(VelocityEngine engine) {
              this.engine = engine;
         public JavaMailSenderImpl getSender() {
              return sender;
         public void setSender(JavaMailSenderImpl sender) {
              this.sender = sender;
         public static void main(String args[]){
              EmailService emailService=new EmailService();
              emailService.sendEmail();
         public boolean sendEmail(){
         try{
                 MimeMessage message = sender.createMimeMessage();
                 MimeMessageHelper helper = new MimeMessageHelper(message);
                 helper.setTo("<to email id>");
                 helper.setFrom("<from email id>");
                 helper.setSubject("Teting velocity");
                 VelocityContext context = new VelocityContext();
                 StringWriter writer =  new StringWriter();
                 Template template =new Template();
                    StringResourceRepository repository =StringResourceLoader.getRepository();
                    String tempText="<html><body>Hi, ${username}...<p> this is a some template!</p></body></html>";
                 repository.putStringResource("myTemplate",tempText );
                 context.put("username", "Marc");
                 template = engine.getTemplate("myTemplate");
                  template.merge(context, writer);
                  System.out.println("VM Template:\n" + tempText);
                  System.out.println("Output:\n" + writer);
                  String body=writer.toString();
                  helper.setText(body,true);
                  sender.send(message);
            catch (MessagingException ex) {
                // simply log it and go on...
                System.err.println(ex.getMessage());           
            catch (MailException ex) {
                // simply log it and go on...
                System.err.println(ex.getMessage());           
            } catch (ParseErrorException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         } catch (Exception e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
         return true;
    }The problem i have is when i try to invoke the function sendEmail() from my UI it is throwing a series of applet alerts (some 10 of them) . The following are the alerts that i get
    1. The applet is attempting to invoke the java/lang/System.getProperty() operation on java.home
    2. The applet is attempting to perform a read operation on the file C:\Program Files\java\jre1.5.0_14\javamail.providers
    3. The applet is attempting to perform a read operation on the file C:\Program Files\java\jre1.5.0_14\javamail.address.map etc....
    For ever applet alert i had to click on 'allow' for it to proceed. But there is no problem in sending mail after that. One more interesting this is i DONT get this alert when i try to execute this java class directly instead of calling the method from another class or from UI.
    Can someone please let me know the reason for this applet alert and the way to suppress it?
    Its really urgent .. please help
    Thank you..

    Hi Subhadip,
    Thanks for the quick response :)
    Please help me understand this.. Im not explicitly using applet anywhere .I guess it should be used internally by one or many of the API classes i have used . In this scenario how can self sign the applet and which one?
    I have included some jars like activation.jar,mail-1.4.2.jar,velocity-1.6.2.jar in my webapp lib . Is there a means to sign these jars and use? Is this what you are suggesting me to do?
    One more doubt i have is how come the same method runs without any problem when executed as a standalone java class (with main() method)
    Will be really helpful if you could help me understand this...
    Thanks,
    Swami

  • How to suppress hierarchy levels on query visualization

    Hello Gurus, Does anybody know how to suppress from a level down on a query visualization?
    I mean, if I have the following structure...
    Level 1
       Level 2
       Level 2
          Level 3
          Level 3
    Level 1
       Level 2
          Level 3
    ...I want users to be able to expand only until Level 2, not seing Level 3 down on and without displaying those arrows ">" at the left of Level 2 nodes.
    If I set "Expand to Level" hierarchy property to "2" in query designer, the hierarchy is displayed correctly at the very first opening, but the users still have the arrow ">" sign at Level 2 and are able to expand the levels down on from there.
    Tks in advance! Regards,
    Marcelo Domingues.

    You can create hierarchy authorization.
    Cheers,
    Neel.

Maybe you are looking for