CIC decimation and Compensation filter

Hi,
I have to implement a three stage multirate filter in FPGA where Stage1 is a CIC filter, Stage2 and Stage3 are the FIR filters. I have generated the filter parameters of all the stages using the 'Multistage Multirate Filter Design Express VI'. According to that Stage1 decimates the signal 4 times, Stage2 and 3 decimates 2 times. So an overall decimation factor of 16. 
I used an FM band of 4 MHz with an IQ rate of 5MS/s as my input to the CIC filter. The CIC filter works fine and decimates the signal to an IQ rate of 1.25 MS/s. I then used those decimated signal values and fed it to the 'DFD MRate Filtering for Single block VI' , which decimates the signal further to an IQ rate of 625 kHz and gives the correct output as desired.
I did the same with 'FIR filter VI' using the coefficients generated by the' Multistage Multirate Filter Design Express VI' for stage2 and decimated it 2 times using 'Decimate (continuous) VI'. It should give me the same output as obtained by 'DFD MRate Filtering for Single block VI'. The frequency response of both FIR and MRate filter are the same but their filtered outputs don't match. 
Any suggestions why am I not getting the desired output? I have attached the VI of my labview code. Kindly have a look.
Thanks
Attachments:
test.vi ‏123 KB

Hello
I am building a digital down converter in LabVIEW. I am not able to figure out if my output is correct ( Inphase and Quadrature components). Am I on the right path? Please find attached the VI I have been working on.
Thank you.
Attachments:
ddcnew5.vi ‏267 KB

Similar Messages

  • Any way to set color for value in chart and still filter out values (but retain colors)?

    Is there any way that I can hard code a color into a chart and still filter out values?
    I have 5 divisions, each with a specific color.  I have put them into a stacked column chart and it looks fine.  My issue arises when I try to filter out some of the divisions.  The colors do not stay with the specified divisions.
    Ex.)
      Div 1 = Red
      Div 2 = Green
      Div 3 = Black
    When I filter out Div 1, this is what I see:
    Div 2 = Red
    Div 3 = Green
    I have tried standard delivered filter panel, and check-boxes using CHART_1.setDataSelection( )
    It seems like the color hard coding in the "additional" properties of the chart are not tied to the value, but are determined by sort order.  Any help is greatly appreciated

    Hi,
    There is one Possibility bu not By chart .
    It will look like chart but will use Text box .
    Lets say you have 5 Divisions & 3 Key figures .
    Then You need 5 * 3 = 15 Text box .
    Arrange them in 5 columns and 3 rows type of view .
    now .
    set fix width for all .
    set the height & position by coding
    You need to set this type of code for filter selection also .

  • External table.How to load numbers (decimal and scientific notation format)

    Hi all, I need to load inside an external table records that contain 7 fields. The last field is called AMOUNT and it's represented in some records with the decimal format, in others records with the scientific notation format as, for example, below:
    CY001_STATU;2009;Jan;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Jan;11200100;'60800;CYZ900;41380,77
    The External table's script is the following:
    CREATE TABLE HYP_DATA
    COUNTRY VARCHAR2(50 BYTE),
    YEAR VARCHAR2(20 BYTE),
    PERIOD VARCHAR2(20 BYTE),
    ACCOUNT VARCHAR2(50 BYTE),
    DEPT VARCHAR2(20 BYTE),
    ACTIVITY_LOC VARCHAR2(20 BYTE),
    AMOUNT VARCHAR2(50 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY HYP_DATA_DIR
    ACCESS PARAMETERS
    ( RECORDS DELIMITED BY NEWLINE
    BADFILE 'HYP_BAD_DIR':'HYP_LOAD.bad'
    DISCARDFILE 'HYP_DISCARD_DIR':'HYP_LOAD.dsc'
    LOGFILE 'HYP_LOG_DIR':'HYP_LOAD.log'
    SKIP 0
    FIELDS TERMINATED BY ";"
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    "COUNTRY" Char,
    "YEAR" Char,
    "PERIOD" Char,
    "ACCOUNT" Char,
    "DEPT" Char,
    "ACTIVITY_LOC" Char,
    "AMOUNT" Char
    LOCATION (HYP_DATA_DIR:'Total.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    If, for the field AMOUNT I use the datatype VARCHAR (as above), the table is loaded but I have some records rejected, and all these records contain the last field AMOUNT with the scientific notation as:
    CY001_STATU;2009;Jan;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Feb;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Mar;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Dec;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    All the others records with a decimal AMOUNT are loaded correctly.
    So, my problem is that I NEED to load all the records (with the decimal and the scientific notation format) together (without records rejected), but I don't know which datatype I have to use for the AMOUNT field....
    Anybody has any idea ???
    Any help would be appreciated
    Thanks in advance
    Alex

    @OP,
    What version of Oracle are you using?
    Just cut'n'paste of you script and example woked FINE for me.
    however my quation is... An external table will LOAD all data or none at all. How are you validating/concluding that...
    I have some records rejected, and all these records contain the last field AMOUNT with the scientific notation
    select * from v$version where rownum <2;
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    select * from mydata;
    CY001_STATU     2009     Jan     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Feb     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11200100     '60800     CYZ900     41380,77
    CY001_STATU     2009     Mar     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Dec     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11200100     '60800     CYZ900     41380,77MYDATA table script is...
    drop table mydata;
    CREATE TABLE mydata
    COUNTRY VARCHAR2(50 BYTE),
    YEAR VARCHAR2(20 BYTE),
    PERIOD VARCHAR2(20 BYTE),
    ACCOUNT VARCHAR2(50 BYTE),
    DEPT VARCHAR2(20 BYTE),
    ACTIVITY_LOC VARCHAR2(20 BYTE),
    AMOUNT VARCHAR2(50 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY IN_DIR
    ACCESS PARAMETERS
    ( RECORDS DELIMITED BY NEWLINE
    BADFILE 'IN_DIR':'HYP_LOAD.bad'
    DISCARDFILE 'IN_DIR':'HYP_LOAD.dsc'
    LOGFILE 'IN_DIR':'HYP_LOAD.log'
    SKIP 0
    FIELDS TERMINATED BY ";"
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    "COUNTRY" Char,
    "YEAR" Char,
    "PERIOD" Char,
    "ACCOUNT" Char,
    "DEPT" Char,
    "ACTIVITY_LOC" Char,
    "AMOUNT" Char
    LOCATION (IN_DIR:'total.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;vr,
    Sudhakar B.

  • Adobe Acrobat 8 and I Filter Question

    Hello,
          I have Adobe Acrobat 8 and I Filter 6.0 installed on a WinXP machine. I am also using Windows Search 4.0. My question is on how to create an embedded index of PDF files so that I may search with a keyword through 100 PDF files as an example. This is actually my last resort after searching thoroughly on the web. I have read articles ranging from editing the registry to how to create a single index within Adobe Acrobat for a single PDF file. Again I am looking to create one index that consists of multiple PDF files. If any can help me I would very much appreciate it. I just say to myself that at some point in time some programmer must have said to himself, can I search for a keyword through 20 PDF files on a desktop system or server?
    Thank you,
    Peter

    Hey john,
    Please try downloading Acrobat 8 from the following link:
    Download Acrobat products | 9, 8
    Regards,
    Anubha

  • How to install plugin and exta filter in photoshop cs ? and any special filter for special effects ?

    how to install plugin and exta filter in photoshop cs ? and any special filter for special effects ?
    kindly recommend me any best one and tel me step by step how i will add more plugins n filters

    A Plug_in normally come with an installer or install instructions. Check the documentation for the plug-in you trying to install.  It sounds like you don't know what plug-ins you want to install.  In that case you don't need to install any.  At some point you may read about a plug-in and what it can do and feel you have a need for it.  Then you will have a reason to install a plug-in that is not installed by default.  There may also be a cost involved most worthwhile plug-ins are not free.
    Adobe Optional Plug_ins downloads are Plugins Adobe want to remove from Photoshop  and no longer install by default. Also at some point in time these will no longer install into the current Photoshop for Adobe will remove feature or interfaces the use. For example the CS5 optional plugins will install in Windows CS6 perpetual version 13.0.1.3 but not in Subscription version 13.1.2 or perpetual Mac version 13.0.6 fot its 64bit only and the Mac CS5 optional plug-in for Picture package is only a 32bit plug-in.
    You will need to keep and maintain old versions of Photoshop if Adobe remove features you use in new versions of Photoshop.

  • Different decimal and thousand separators in contract items

    Hello!
    I have problem with printing contract in SmartForm. Contract consists of  many items and values are printed with different decimal and thousand separators. For example value in first item is printed as "40.000,00" and in second item as "40,000.00". All items are in same currency and belongs to same vendor.
    The same happens if I format the output by using the <b>write</b> command into character field.
    Why it happens and how can I solve it?
    Thanks in advance!
    Kind regards.
    Vlasta

    Hi
    Thank you for your help. I tried with SET COUNTRY 'xx' and get after that all items in same format (problem was that first item is different that others, very strange), but problem was still that now I have different format if I write number directly from internal table or from variable after used WRITE command (I have point as decimal separator for example for quantity and comma as decimal separator for example for price in one item line for invoice).
    Then I used SET COUNTRY SPACE which reset to user settings, and this solve problem - now I have all numbers written in same way, with one sign (for example comma) as decimal separator.
    It works now, but I still dont understand why that happens.
    I tried to give you reward points, but I don't see where can I do that (I'm new here).
    Yesterday I saw that place, but today I click everywhere on your answer and can't see where are that, I remember tree kind of points???

  • Simple authentication and authorization with a servlet and a filter

    Could somebody point me to code example that do simple authentication/authorization using one servlet and one filter? (without Spring, Struts, JSF or any framework)
    I&rsquo;m having a lot of problems with that, apparently, easy task.
    These are the rules:
    - A simple login page
    - Two roles (admin, registered).
    - If the user loged is an admin, redirect to his entry page (private/admin/index.jsp).
    - If the user loged is of role registered, redirect him to his entry page (private/registered/index.jsp).
    - If it&rsquo;s not a valid user, redirect again to login page.
    - Admin&rsquo;s users cannot go to private/registered/ area.
    - Registered users cannot go to private/admin/ area.
    - Non authenticated user cannot go to private/ area
    Thanks a lot in advance!
    Edited by: JLuis on 25-ago-2010 15:27

    AccessControl.java:
    package com.tlsformacion.security;
    import java.io.IOException;
    import javax.servlet.RequestDispatcher;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.tlsformacion.utils.Log;
    public final class AccessControl extends HttpServlet {
         private static final long serialVersionUID = 5741058615983779764L;
         private static final String USERNAME_ATTR = "username";
         private static final String PWD_ATTR = "password";
         private static final String LOGIN_PAGE_ATTR = "login_page";
         private static final String ROL_ATTR = "role";     
         private boolean isAuthentic = false;
         private String role = null;
         private String loginPage = null;
         public AccessControl() {
            super();
         public void init(ServletConfig config) throws ServletException {
              loginPage = config.getInitParameter(LOGIN_PAGE_ATTR);
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              debug("Inside doGet");
              doAccessControl(request, response);
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              debug("Inside doPost");
              doAccessControl(request, response);
         private void doAccessControl (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              debug("Inside doAccessControl");
              doAuthentication(request, response);     
              if (isAuthentic) { //Authentic user
                   doAuthorization(request, response);                         
              } else { //User NOT authentic
                   doRejection(request, response);
         private void doAuthentication(HttpServletRequest request, HttpServletResponse response) {     
              debug("Inside doAuthentication");                         
            String requestedURI = request.getRequestURI();
            if (requestedURI.contains("/AccessControl")) { //Comes from login page           
                 debug("Comes from login page");
                  String username = request.getParameter(USERNAME_ATTR);
                String pwd = request.getParameter(PWD_ATTR);   
                 role = getRole(username, pwd);
                 if (role != null) {
                      isAuthentic = true;
                      request.getSession().setAttribute(ROL_ATTR, role);
            } else { //Doesn't comes from login page
                 debug("Doesn't comes from login page");
                 if (isInSession(request)) {
                      debug("Rol is in session");               
                      isAuthentic = true;
                 } else {
                      debug("Rol is NOT in session");
         private void doAuthorization(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          
              debug("Inside doAuthorization");
              String requestedURI = request.getRequestURI();
              debug("requestedURI: " + requestedURI);
              if (requestedURI.contains("/AccessControl")) { //Comes from login page                                                                 
                   goHomePage(request, response);
              } else if (requestedURI.contains("/private/" + role)) { //Trying to access his private area
                   goRequestedPage(request, response);
              } else { //Trying to access other roles private area
                   goLoginPage(request, response);
        private void doRejection(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          
             debug("Inside goRejection");
             role = null;
              goLoginPage(request, response);         
         private void goHomePage(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              debug("Inside goHomePage");     
              String homePage = "private/" + role + "/index.jsp";
              goPage(request, response, homePage);
         private void goLoginPage(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              debug("Inside goLoginPage");
              goPage(request, response, loginPage);
         private void goRequestedPage(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              debug("Inside goRequestedPage");
              String contextPath = request.getContextPath();          
              debug("contextPath: " + contextPath);
              String requestedPage = request.getRequestURI().replace(contextPath + "/", "");
              goPage(request, response, requestedPage);
         private void goPage(HttpServletRequest request, HttpServletResponse response, String page) throws IOException, ServletException {
              debug("Inside goPage ...trying to go to: " + page);
              //Option A
              response.sendRedirect(page);
              //Option B
              //RequestDispatcher requestDispatcher = request.getRequestDispatcher(page);
              //requestDispatcher.forward(request, response);                  
         private boolean isInSession(HttpServletRequest httpRequest) {
             boolean inSession = false;
              role = (String)httpRequest.getSession().getAttribute(ROL_ATTR);
              if (role != null && !role.equals("")) {
                   inSession = true;
             return inSession;
        //PENDIENTE: mock method!
        private String getRole(String username, String pwd) {         
             String role = null;
             if (username.equals("admin") && pwd.equals("admin")) {
                  role = "administrator";
             } else if (username.equals("regis") && pwd.equals("regis")) {
                  role = "registered";
             return role;
        private void debug(String msg) {
             Log.debug(msg);
    }Proyect Folder Structure:
    WebContent
         login.html
         private
              administrator
                   index.jsp
              registered
                   index.jspBasically, the problem is that if you try to log as admin/admin (for example) the servlet AccessControl executes infinitely
    Edited by: JLuis on 26-ago-2010 8:04

  • Smartforms - dealing with decimal and thousand separators

    Hi,
    trying to reuse one of the standard SAP Smartforms - LB_BIL_INVOICE in an ECC 6.0 Unicode system I faced a problem with decimal and thousand separators for currency/quantity fields. In fact, default settings in User profile are not taken in consideration when printing this form. I have changed all the possible settings in the user profife and (after logoff/logon) nothing changes in my output.
    Just to be sure I tried to output the invoice with the original SAP smartform LB_BIL_INVOICE and the things were the same - means output takes wrong settings for decimal/thousand separators.
    For clarity I created a simple form with a single currency field and everything behaves well as expected. So this points me to the direction fo find out what is wrong with the LB_BIL_INVOICE. I downloaded the form into XML and checked the code, further uploaded it into a new one - no success.
    My question is:
    Is there a way to manipulate or overwrite default settings for decimal/thousand separators within smartform, and if yes - how to do this?
    I almost finished my quite complex form and wouldn't like to rewrite it from scratch.
    FYI: I'm not a Smartform expert, by have created/overwiten more than 15 different forms accros different systems - 4.6 C/D, 4.7, ECC 6.0 non-Unicode/Unicode, and never faced such an issue.
    I faced significant smartform 'improvement' in the ECC 6.0 release - especialy for text elements. The new integrated MS word control gives me a lot of throubles. According to this - is there an up-to-date documentation (even link to SAP course is acceptable) according to Smartform development in ECC 6.0?
    Thanks in advance.
    Regards,
    Ivaylo Mutafchiev
    Senior SAP Abap Consultant

    Hi,
    I took a quick glance into the print program, and the print program do a set country setting to reciving country. This will give you the separators that are confugured for this country.
    But if you change the print program and clear parameter country, the smartform will use the users settings instead.
    Regards
    Åsa Thenstedt

  • Can't apply Graduated Filter and Radial Filter in LR5 (photo becomes grey box)

    Hi,
    I am using the Lightroom 5, every functions are working fine, except the Graduated Filter and Radial Filter casuing me a problem.
    When I click on the Graduated Filter / Radial Filter button, and trying to apply the filter (i.e. draw the eclipse) on my photo, my photo in the central pane immediately turns grey, as per below screenshot.
    I have to click the Library Module and then click Develop Module in order to get back the photo showing in the central pane, but the same problem appears if I tried to use the Graduated and Radial Filters.
    Anybody knows the root cause and solution ? Please kindly help. Thank you !

    The easiest thing should be to simply apply the preset to an image, then choose to Update with Current Settings and make sure Graduated Filter is unchecked. Move through all of your presets like this.
    I don't know how many suspect presets you have to go through, but you can also manually edit them with a simple text editor to remove the Graduated filter. If you right-click on the preset, you can show in Explorer/Finder. Open the file in Notepad/TextEdit and simply remove the GradientBasedCorrections section (this has many sub-fields, most of which start with "Local"). Save the file and move on to the next.

  • Does Aperture have a salt and pepper filter

    I have scanned around 3000 photos and imported into iPhoto.  On enlargement many have dozens of small white spot and tiny hair imperfections.  In iPhoto these can be deleted individually by using the retouch tool.  Does Aperture (or hidden in iPhoto) support a tool for automatic, mass deletion of these spots?  I understand this can be called a salt and pepper filter, or perhaps de-speckle.  Notes: the speckles are random so not caused by a scanner setting.  The scanner plate was cleaned as well as possible and the photos were cleaned as best as possible given they were pulled from old albums.  Re-scanning is not an option.  i want to retain as much clarity as possible so do not want a general blur.  For simplicity I want to remain using an Apple product rather than an alternate photo-editing tool.  Thanks for reading. Vince

    No, Aperture does not have Speckle filters. But your white spots and lines are not exactly Speckle noise. For a real Speckle noise (Salt and Pepper) you would have very dark spots as well.
    In Aperture you could try to reduce the white spots and lines by applying the smoothing brush selectively to the darker areas, but that will only soften the spots, not remove them completely. Or use the "Repair" tool to remove the spots.
    One filter that works well with small, bright spots is the median filter, but that is missing in Aperture. In Photoshop or similar external editors you can use the  filter "Expend dark areas" (I am not sure how this filter is called in the english version - my Photoshop has german menus). This will shrink the white spots and white lines by expanding the darker regions. You need to set the radius to half of the size of the spots.
    Regards
    Léonie

  • CIC Activity and Sales Order Link Tables?

    Hello Experts,
    Can somebody let me know the CRM Customer Interaction Center(CIC) activity and its leading Sales Order Link tables or the data model?
    If somebody could point me to CRM CIC Data model it would be real helpful.
    If you have any document please send it to [email protected]
    Thank you
    Arun

    Arun,
    You should be able to use the document flow function mod : 'CRM_DOC_FLOW_READ_OB' to get any leading documents
    CALL FUNCTION 'CRM_DOC_FLOW_READ_OB'
         EXPORTING
           IV_HEADER_GUID  = wa_activity_guid
         IMPORTING
           ET_DOC_FLOW_WRK = lt_doc_flow.

  • Interactive report and default-filter

    ahoj!
    i have a question regarding interactive reports and default-filter for a date: is it possible to use the current date for the default-filter? apex need 'dd.MM.yyyy' for the filter... already tried to_date(sysdate, 'dd.MM.yyyy')
    thx in advance,
    christian

    Hi,
    I've just been trying the "in the last" option and had no problems for any number that I entered. Are you just entering 1 into the box? What error do you get?
    I've loaded the page with Debug switched on, and get:
    select
           null as apxws_row_pk,
           "DATE_ID",
           "ATD_DATE",
           "CHECK",
           count(*) over () as apxws_row_cnt
    from (
    select  *  from (
    select
    apex_item.checkbox(1, DATE_ID) "CHECK",
    "DATE_ID",
    "ATD_DATE"
    from "#OWNER#"."ATD_DATES"
    )  r
    where ("ATD_DATE" between systimestamp - (1 * :APXWS_EXPR_1) and systimestamp)
    ) r where rownum <= to_number(:APXWS_MAX_ROW_CNT):APXWS_EXPR_1 would contain the value 1 as that is what I've entered for the filter. My report's sql statement is just the innermost nested select statement, the rest has been added by the IR functionality and the filter.
    Andy

  • Excel web part and choice filter web part session timeout

    Hi,
    I have set up a excel web part and choice filter web part so I can change the parameters for the excel with the choice filter. I used this link: office.microsoft.com/en-001/sharepoint-server-help/connect-filter-web-parts-to-excel-web-access-HA010105470.aspx
    The problem that I have, is that each time I select a parameter through the choice filter web part, I get a session timeout:
    How can I prevent the session timeouts? I allready checked the Trusted File Location in the central admin (the location where the Excel is uploaded is not mentioned specifically, but the main domain is, so I guess all domains that built upon the
    main domain are also trusted locations?)

    Hi vjo,
    Please try to increase the Short Session Timeout in the trusted file location, compare the result.
    If this issue still exists, please check the ULS log to find whether there is something about this issue.
    The path of the log file is: C:\Program Files\Common Files\microsoft shared\Web Server Extensions\14\LOGS.
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Procedure for CICS adapter and XI integration?

    Dear All,
    Can you plz provide me the step by step procedure for CICS adapter and XI integration?
    Thanks,
    Srinivas.

    Hi ,
    Check this link..
    http://www.iwaysoftware.com/products/adapters/CICS_IMS_Transaction_Processing.html
    Regards,

  • Will Adobe be adding spot removal, adjustment brush and grad filter tools to lightroom mobile?

    will adobe be adding spot removal, adjustment brush and grad filter tools to lightroom mobile?will adobe be adding spot removal, adjustment brush and grad filter tools to lightroom mobile?

    We don't know (and anybody who knows can't say). It's an unanswerable question...

Maybe you are looking for

  • How do I stop my MacBook sleeping without a display

    Hi all, I have a MacBook Pro 13 joined up (alongside my PS3) to an Apple 24" LED Display (they are on a switcher - HD620). However, when I flip over to the HDMI input from the PS3, and therefore the MacBook Pro ceases to be using the 1920x1200 input

  • Automatic Credit Note generation during billing

    Hi, How automatic credit note is generated during billing where document type is RV ? During Billing i.e, sales invoice accounting document type become RV and accounting entries are :- 01 Customer A/c 50 Revenue A/c 50 Service tax payble A/c 50 Educa

  • Oracle 10g Dataguard Error

    Hi, I created a standby database using RMAN backups. I have followed all the steps correctly because the standby database does come up without any errors when I give the command 'alter database mount standby database;' or 'alter database recover mana

  • Mail in Mountain Lion does not display all HTML messages

    For some reason Mail app stopped siplaying most HTML messages. I haven't changed any settings but can't seem to figure out how to make mwaagwa qirg HTML display the way they used to. Thanks in advance!

  • WCT Configuration in SAP

    Dear Gurus,               In our company we have configured with holding Tax. Now their requirement is to deduct WCT from vendor . I just want to know does WCT have to configured in the same way as With holding tax or any other special function there