Logical AND vs logical OR on empty boolean array

Just satisfying a curiousity...Can anyone tell me the logic behind this behavior (LV 7.1,8.0 and 8.2 do it)?
Logical AND on empty Bool Array = TRUE
Logical OR on empty Bool Array = FALSE
Of course there are very simple ways to work around this, but it doens't make sense. If the OR operator is FALSE for a given data set, how can the AND operator be TRUE?
Pic for proof.
Attachments:
emptyboolarray.JPG ‏41 KB

vituning wrote:
... how can the AND operator be TRUE?
The reasoning/logic has been discussed a few times in the past
e.g.  http://forums.ni.com/ni/board/message?board.id=170​&message.id=86827&requireLogin=False
=====================================================
Fading out. " ... J. Arthur Rank on gong."

Similar Messages

  • Validator using logical AND or logical OR

    How can I validate multiple TextInputs using logical AND or
    logical OR. For example:
    If TextInput1 == Null || TextInput2 == Null causes a
    validation error if both are null but passes validation as long as
    one field is populated or both fields are populated.
    John

    You could have a Boolean variable that is initially false,
    and only becomes true when one of the TextInput becomes populated.
    The variable could be set in the TextInput "change" event.
    Your validation code would check the value of that Boolean
    variable.

  • Restart logic and looping logic in process flow

    Is there any restart logic and looping logic in Oracle Warehouse Builder, process flow?

    Hi,
    The answer is NO. The curent version does not have restartable functionality. You have to have your own design for this.
    ta
    mahesh

  • How to separate UI logic and applcation logic

    Hi,
    For better performance i want to separate UI logic that is within PAI event and my application logic that is insert operation.
    any good idea?? shall i use function module??
    Thanks
    Regards,
    Virat

    Hi,
         The best way to seperate is to WRAP all your business logic into some ABAP objects class or some Function module and then in the PAI call appropriate methods.
    Still you will have the method call in the PAI but atleast the business logic is in a seperate component and you can transport it seperatley.
    Regards,
    Sesh

  • Row and Column detection of a 2D boolean array

    I use an array as showed by my example (LB8.2).
    Press a 1 or 0 in the array changes it's value and it gives
    back the Row and Column (that was changed).
    I use this to program a 22 channel patterngenerator (GPIB).
    It sends only the column (channel of patterngenerator) patterns, so that makes it faster.
    Has someone an idea if this row and column detection can be made simpler (faster)?
    Kind regards, Bernard
    Attachments:
    MyRowColDetection.vi ‏30 KB

    Here is a different way
    Tim
    Johnson Controls
    Holland Michigan
    Attachments:
    MyRowColDetection Rev TLE.vi ‏15 KB

  • IIF, BITAND & Logical AND in SSRS Expressions

    I have had some interesting times using IIF to display "X" when a bit is a word is true and "" when it is not. I THINK I understand it all now but would appreciate comments from anyone else to confirm that my understanding
    is correct.
    I was using, for example, the integer 8 as a bit mask to test for bit 3. In most programming language that I am familiar with, to test whether bit 3 is set in an integer X the test is "X and 8 = 8", looking for this to
    be true.
    In SSRS I tried =iif(x AND 8 = 8,"X","")
    but this always returned true. I then tried =iif((x AND 8) = 8,"X","") and that seemed to work as expected.
    My conclusion is that "AND" can be interpreted as either a
    Bitwise AND or a Logical AND depending on the context. In the first case I assume that "X" was evaluating as TRUE as was "8 = 8" so the result was always true. In the second case I had forced a
    Bitwise AND by using brackets to indicate precedence and got the result that I expected.
    This brings be to a second point. I have the impression that when presented with a numeric result (rather than 1/0 or TRUE/FALSE) IIF interprets 0 as false and any value greater than 0 as true.
    I say this because iif(x and 8, "X", "")
    also seemed to work even though the result should be either 8 if bit 3 not set and 0 if it is not.
    This is an example of and Excel function that does the same thing.
    Option Explicit
    Public Function BITAND(x As Long, y As Long)
        Dim z As Long
        Dim result As String
        z = x And y
        If z = y Then
            result = "X"
        Else
            result = ""
        End If
        BITAND = result
    End Function
    R Campbell

    Yes your understanding is correct
    This is from MSDN docuentation
    Logical and Bitwise
    Logical and bitwise operators perform logical manipulations between two integer terms in an expression.
    Operator
    Description
    And
    Performs a logical conjunction on two Boolean expressions, or bitwise conjunction on two numeric expressions.
    see
    http://msdn.microsoft.com/en-IN/library/dd255271.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Template UI Logic and backingbean

    Hi,
    I'm new to adf and i'm trying to build a sample project with jDevelopper 11.1.2.1.0 for my company to know if we can switch to it.
    I've go a use case to implement but i've got some issues to understand how i can do it.
    I must create a view with :
    1) a top zone with a toolbar (and other stuff)
    2) a center zone with a panel tabbed
    2.a) In the first tab, a bounded table with some columns
    2.b) In the second tab a splitter
    2.b.i ) In the first facet of the splitter a second bounded table with some other columns (but linked to the same iterator)
    2.b.ii) In the second facet of the splitter a form (to edit the data)
    3) a bottom zone with a statut toolbar.
    I've created my toolbar with a declarative component following the adf corner [079. Strategy for implementing global buttons in a page template|http://www.oracle.com/technetwork/developer-tools/adf/learnmore/79-global-template-button-strategy-360139.pdf], my toolbar have 5 buttons (create, edit, save, cancel and delete).
    I then created a template for placing panel, and table splitter ui components with a backingbean used for binding the ui components (in backingbean scope, its' important cause the template could be on the same page with nested template tag)
    I've created a taskflow following the adf corner [007.How to cancel an edit form, undoing changes with ADFm savepoints|http://www.oracle.com/technetwork/developer-tools/adf/learnmore/007-cancelform-savepoint-169126.pdf] for the edit form
    I created a page that inherits my template, placed the declarative component toolbar at the top, placed the two bounded datatable in the facets of the template, and finally created a normal region calling the taskflow.
    When i click on the create button, the template backing bean receive the "event" and handle it, changing a task flow parameter.... (updating the region)
    My taskflow update and show me the create form... no problem....
    But if the user is on the first tab, he sees nothing. So i would like to change the disclosed property of the showDetailItems of the panelTabbed.
    I then created a variable in the pageDef of the template that would store a boolean value if the page is in EditMode or not. (create and edit is edit mode. save, cancel and delete is not)
    I created a contextual event to listen when that variable change, like that a datacontrol from a bean with a single public method could handle that change :
    onIsEditModeChanged(boolean newValue){
     getGUI().swicthShowDetailItem(newValue);
    }The method try to get the backingbean of the template (with a el expression), and then call a updatePanel(Boolean newValue) for changing the disclosed property of the showDetailItems :
    public BackingBeanTemplate001 getGUI()
     FacesContext context = FacesContext.getCurrentInstance();
     ELContext eLContext = context.getELContext();
     ExpressionFactory expressionFactory = context.getApplication().getExpressionFactory();
     ValueExpression createValueExpression =
     expressionFactory.createValueExpression(eLContext, "#{backingBeanScope.backingBeanTemplate001}", BackingBeanTemplate001.class);
     return (BackingBeanTemplate001)createValueExpression.getValue(eLContext);
    public void swicthShowDetailItem(Boolean newValue) {
     if (newValue) {
      if(!showDetail2.isDisclosed()){
       showDetaill1.setDisclosed(false);
       showDetaill2.setDisclosed(true);
    }Here's my issue :
    When the onIsEditModeChanged method is called the backingbean of the template doesn't exist in the context.
    So adf create a new instance of it but doesn't fill the ui component references of the page so i can't change the properties cause i get a NPE.
    of course showDetail2 and showDetail1 have their binding property set :
    <af:showDetailItem text="showDetail1" id="pt_sdi1" stretchChildren="first" binding="#{backingBeanScope.backingBeanTemplate001.showDetail1}">
    And
    <af:showDetailItem text="showDetail2" id="pt_sdi1" stretchChildren="first" binding="#{backingBeanScope.backingBeanTemplate001.showDetail2}">the backingBeanScope.backingBeanTemplate001 is referenced in adfc-config.xml :
    <managed-bean id="__5">
         <managed-bean-name>backingBeanTemplate001</managed-bean-name>
         <managed-bean-class>org.darkink.test.backingbean.template.BackingBeanTemplate001</managed-bean-class>
         <managed-bean-scope>backingBean</managed-bean-scope>
    </managed-bean>If i put a button IN the template that change my attribut value :
    public void switchAction(ActionEvent actionEvent) {
             BindingContext bindingContext = BindingContext.getCurrent();
             DCBindingContainer bindingContainer = (DCBindingContainer)bindingContext.getCurrentBindingsEntry();
             AttributeBinding binding = (AttributeBinding)bindingContainer.getControlBinding("isEditModeAttr");
             binding.setInputValue(true);
    }I dont have the NPE, at the "JSF Invoke Application" the bean already exists in the context (it is created at the "JSF Restore View") and all the ui component are NOT null.
    BUT if a place my button in the page that inherits the template and i call that method :
    public void switchAction(ActionEvent actionEvent) {
             BindingContext bindingContext = BindingContext.getCurrent();
             DCBindingContainer bindingContainer = (DCBindingContainer)bindingContext.getCurrentBindingsEntry();
             DCBindingContainer bcPtb1 = (DCBindingContainer)bindingContainer.get("ptb1");
             AttributeBinding binding = (AttributeBinding)bcPtb1 .getControlBinding("isEditModeAttr");
             binding.setInputValue(true);
    }everything works the same BUT at the "JSF Invoke Application" the bean doesn't exist in the context (so adf create it, BUT doesn't fill the ui component bindings).
    The strange thing is that at the "JSF Restore View" the backingbean is well created and filled with the ref of the ui components....
    So here's my questions :
    1) Why there is a difference when my button is on the template and when it's on the page ??? (with the backingbean)
    2) Why the backingbean is not fully created (only the constructor is called and not the ui components bindings)
    3) How can i realise my use case ?
    4) Is there another method to implement UI Logic with template ?
    5) Is there a better way to do this ?
    6) How to get the context of the template ?
    Thanks a lot for all of you who had the patience to read all of this, i know it's a lot
    but i didn't know how to explain my problem without all thoses explanations.
    I've read all the adf corner and all the given pdf books on the site (that i've found) trying to search for a solution and
    didn't find one. So please don't tell me read the books, or the solution is already documented...
    It would be a lot more helpfull to explain me why it's not working or why what a did is not a good solution.
    Sorry for my poor english too.
    Thanks a lot....
    Angle
    P.S 1:
    In the swicthShowDetailItem method i've tried to change for using this :
    if (newValue) {
     RichShowDetailItem c = (RichShowDetailItem)getComponent("pt1:pt_pt1:pt_sdi2");
     if (!c.isDisclosed()) {
        ((RichShowDetailItem)getComponent("pt1:pt_pt1:pt_sdi1")).setDisclosed(false);
        c.setDisclosed(true);
    }It's working... but ugly and not efficient... so for me it's not a good answer....
    P.S 2:
    Another solution that i've found is that i could create an hidden button on the template
    that call the change event and in the page create a button that queue a click event
    on that button but for me it's not a solution.
    P.S 3:
    I dont like a JavaScript solution neither. for me, if a can bind my ui components to a backingbean
    i want to be able to use them !!!
    Edited by: 915518 on 19 févr. 2012 12:04
    Edited by: 915518 on 19 févr. 2012 12:10

    Hi,
    There will not any performance issue as such as all the code will be executed by the same Dialog workprocess in the application server.
    But it is alwys good to keep you flow logic and application logic seperated, so flow logic just calls the methods and the methods are in a different component like a static method of a class or function module in a function group.
    Best thing is Function Group as you can have screens in a Function pool.
    Regards,
    Sesh

  • Separate UI logic and database operation

    Hi,
    For better performance i want to separate UI logic that is within PAI event and my application logic that is insert operation.
    any good idea?? shall i use function module??
    Thanks
    Regards,
    Virat

    Hi,
    There will not any performance issue as such as all the code will be executed by the same Dialog workprocess in the application server.
    But it is alwys good to keep you flow logic and application logic seperated, so flow logic just calls the methods and the methods are in a different component like a static method of a class or function module in a function group.
    Best thing is Function Group as you can have screens in a Function pool.
    Regards,
    Sesh

  • ATP logic and RLT

    Dear  experts,
    Can you tell me the difference b/w ATP logic and RLT logic in availabity check i know both are working in invidually- but  how it is controlling the functional wise i am not able to understand.
    Pls  dont give the answere wt  is ATP and RLT how its works indvidually?.
    I need the answer how functional wise it is differenciating the business function and controlling the availability check?
    Regards
    Ishikesh

    Hi Ishikesh,
    I will try again with same example :
    See During ATP qty calculation the system checks that all the in hands orders are covered by
    existing receipts and also whether qts are left to cover the new orders.
    These qts
    that have not been assigned constitute ATP qty
    Example :
    Requirements of material MAT Qty 10 pcs
    stock 25 pcs
    If material is checked for availability then the system says material is
    available.
    Now the modifications happend here and ATP Qty will become 25-10 = 15 pcs
    This 15 pcs is now ATP Qty. Means if another customer will come and oRDER 17 piece then system will only confirm 15... that Available to Promise Quantity.
    You can check this from MD44 transaction.
    http://help.sap.com/saphelp_47x200/helpdata/en/f4/7d327a44af11d182b40000e829fbfe/frameset.htm
    RLT Logic : The definition says that it  is the time needed to produce the requested stock. It can be the time taken by the business to produce a material or the time to taken to procure it externally from a vendor. This includes the goods receipting time. RLT is the time taken for the material to become available. It is used only when doing ATP check. The value of RLT for a materail is specified on the material master.
    Now say Mr TEST has ordered 17 quantity, but after ATP system will confirm 15 Qties and Remaining 2 qtys it will check based on RLT when it can confirm.
    Hope i cleared your doubt. Do give ur feedback.
    Thanks,
    Raja

  • Seprating Persistence logic from business logic

    Hi all !!
    I was thinking about that is there any known way or a possible way by which i can write a Entity Bean in which i can seprate the business logic and Persistence logic. Like what if i want to decide at the deployment type whether my Bean is gonna be BMP or CMP.Becuzz it may be possible that CMP may work fine with a particular container but does'nt work with some other vendor's container , so at the deployemnt time i can juzz switch it to BMP rather than CMP.
    Any comments?
    Thankzz

    Greetings,
    Hi all !!
    I was thinking about that is there any known way or a
    possible way by which i can write a Entity Bean in
    which i can seprate the business logic and Persistence
    logic. Like what if i want to decide at the deploymentYep! It's called a DAO (Data Access Object). Of course, this is only useful for BMP beans...
    type whether my Bean is gonna be BMP or CMP.Becuzz it
    may be possible that CMP may work fine with a
    particular container but does'nt work with some other
    vendor's container , so at the deployemnt time i can
    juzz switch it to BMP rather than CMP.
    Any comments?Absolutely. First implement your bean class for CMP, then extend from it to make a BMP version. Then during assembly/deployment select the version appropriate to the environment. You can increase your application's portability even further by encapsulating the persistence logic in a DAO which could then be accessed from a JavaBean in JSPs/servlets (or applications) directly. :)
    ThankzzRegards,
    Tony "Vee Schade" Cook

  • How to change the elements number in Number To Boolean Array Function VI

    Hi, I'm working on using the DAQ digital output to control the digital input of a DAC, and I used the Number To Boolean Array Function. VI to convert the number to a Boolean array. The maximum number should be 4096, therefore it should consist of 12 elements.
    For the description of the VI, it says Boolean array returns an array of 8, 16, 32, or 64 elements, depending on the number of bits in the integer. Therefore, I change the number of the channels in task to 16, but it still doesn't work. Any suggesitions are greatly appreciated.
    Thanks!
    Possible reason(s):
    Write cannot be performed, because the number of channels in the data does not match the number of channels in the task.
    When writing, supply data for all channels in the task. Alternatively, modify the task to contain the same number of channels as the data written.
    Number of Channels in Task: 12
    Number of Channels in Data&colon; 32
    Task Name: _unnamedTask<1B>
    Solved!
    Go to Solution.
    Attachments:
    DAC test.vi ‏47 KB

    Once you have the boolean array, you can resize it using array tools. For example you can use "reshape array" with a lenght of 12 to trim the array to 12 booleans elements (you can also use array subset).
    LabVIEW Champion . Do more with less code and in less time .

  • Logical AND in MDX Reporting Services Parameter

    Hi, I would like to implement logical AND on a cube parameter. I have seen examples of hard-coded logical AND in MDX.
    (http://salvoz.com/blog/2013/12/24/mdx-implementing-logical-and-on-members-of-the-same-hierarchy/)
    But I'm not sure how to apply this to a parameter's MDX dataset.
    Here is an example of the automatically generated MDX which uses logical OR:
    This is the drop down parameter:
    WITH MEMBER [Measures].[ParameterCaption] AS [Department].[Department].CURRENTMEMBER.MEMBER_CAPTION MEMBER
    [Measures].[ParameterValue] AS
    [Department].[Department].CURRENTMEMBER.UNIQUENAME MEMBER [Measures].[ParameterLevel] AS
    [Department].[Department].CURRENTMEMBER.LEVEL.ORDINAL
    SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue],
    [Measures].[ParameterLevel]} ON COLUMNS
    , [Department].[Department].ALLMEMBERS ON ROWS
    FROM [MyCube]
    And the demo report dataset is:
    SELECT NON EMPTY { [Measures].[CompanyTbl Count] } ON COLUMNS,
    NON EMPTY { ([Product Level No].[Product Level No].[Product Level No].ALLMEMBERS ) }
    DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM
    ( SELECT ( STRTOSET(@DepartmentDepartment, CONSTRAINED) )
    ON COLUMNS FROM [MyCube]) WHERE
    ( IIF( STRTOSET(@DepartmentDepartment, CONSTRAINED).Count = 1,
    STRTOSET(@DepartmentDepartment, CONSTRAINED), [Department].[Department].currentmember ) )
    CELL PROPERTIES VALUE,
    BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING,
    FONT_NAME, FONT_SIZE, FONT_FLAGS

    Hi,
    I can see there just one parameter @Department@Department in your script. But if you had two parameters that should return resultset affected by two parameters. You can do it as either select from subselect from subselect.
    Example 1
    SELECT
    {x} ON COLUMNS,
    {ROWS_SET} ON ROWS
    FROM
    (SELECT StrToSet(@Param1) ON COLUMNS FROM
    (SELECT StrToSet(@Param2) ON COLUMNS FROM
    [CUBE_NAME]
    Or crossjoin between 2 parameters
    SELECT
    {x} ON COLUMNS,
    {ROWS_SET} ON ROWS
    FROM
    (SELECT StrToSet(@Param1)*StrToSet(@Param2) ON COLUMNS FROM
    [CUBE_NAME]
    Jiri
    Jiri Neoral

  • BEx Formula Use of 'Logical And' and Calculation for Gross Margin

    HI Bex gurus.
    Having an odd time with what should be a simple formula to handle the display of gross margin (GM). The goal here is to display GM% properly and the requirement is as follows
    If GM <= 0 then 0.0
      Else
    If GM > 0 and Sell > 0 then ( ( sell - cost /sell ) * 100 )
      Else
    If GM >0 and Sell = 0 then 100
    I am familiar with bex formulas and have referenced the help docs on booleans here -
    Boolean Operators - SAP Business Explorer - SAP Library
    But what is odd is that if I use a calculation or a CFK in the IF, THEN with a LOGICAL AND, the formula does not report correctly
    If I put in a static value, like 77, the expected logic is followed.  I have tried making sure have extra parentheses and changing the order of the statement, to no avail!  I could use some extra brains on this puzzling matter, so you help is greatly appreciated and will award points!
    Thanks
    lee lewis
    Here are the formulas in text and below screen shots.  Wish could copy and past formulas to and from editor!
    GM%77
    ( ( ( 'Order GM' >0 ) AND ( Order Sell  >  0 ) ) == 1) * 77 + ( ( ( 'Order GM'> 0 ) AND ( Order Sell == 0 ) ) == 1) * 100 + ('Order GM' <= 0) *0.0
    GM%
    ( ( ( 'Order GM' >0 ) AND ( Order Sell  >  0 ) ) == 1) * 'REF GM%' + ( ( ( 'Order GM' > 0 ) AND ( Order Sell == 0 ) ) == 1) * 100 + ('Order GM' <= 0) *0.0
    'REF GM%
    (order  sell - order cost /order sell ) * 100 )
    GM%77
    GM%

    Shouldn't you change on of the brackets in your REF GM% ?
    'REF GM%
    (order  sell - order cost /order sell ) * 100 )
    I would put that as
    'REF GM%
    (order  sell - order cost) /order sell  * 100 )
    Not sure what you mean with those red arrows... but in both cases you would be dividing by 0 (order sell = 0).

  • Difference between logical and virtual terms

    Hello,
    This is not purely oracle question; but in documentation so many times we find 2 terms:
    A. Logical
    B.Virtual.
    So what is the principle difference between logical and virtual? As I know physical is that which I can see and touch; while logical/virtual is that is imaginary. We say tablespace is logical not virtual; while Java Virtual Machine; not Java Logical Machine. So I want to know; what is the principle difference; why two words for an imaginary thing. Before posting question; I searched in google as “Difference between virtual and logical” but I couldn’t found the answer.
    Please quote your comments.
    Thanks & Kind Regards
    Girish Sharma

    Girish,
    I wont say that I am correcting you as this is like that half glass full/empty thing.May be what I see is half empty , you would see the same as half full.
    Well now coming to the explanation.I am saying honestly , I got more confused after reading your definitions.What do you mean by saing that tablespace is not virtual.I see it as purely virtual.We don't say it as virtual tablespace or logical tablespace but it is actualy logical/virtual, having no existance but just the definition right?
    How can you say that the size of virtual is larger than logcial?The size of tablespace is actualy the sum total of size of datafiles.So it actualy becomes very larger right?Much larger than JVM which is of few megs only.
    The point 3 totally knocked me out.I have no idea what you said.
    Ok I tell you this.Just remember the definition that Hans gave already.If you ask me than its the best definition that we can have. Just remember this and if some one asks you more further than give them your point 3 definition and tell them understand this ;-).Please don'tmind I am just kidding. Its just semantics.Don't get lost into it.You will find many people using both the terms interchangibly. So its ok.I shall stick with Hans's defintion,simple and concise.There are lot more other topics to dig upon in oracle.I can mail you lots of them.Spend time on those.Don't think that I am demotivating you.I understand you asked only because you have a doubt.But we got a good resolution of it and beyond that, its not of much use to dig it atleast not in the technial terms.
    Cheers
    Aman....
    PS:Are you on oraclecommunity.net?

  • Syncing issues with Logic and Akai MPC 1000

    I followed the directions in the manual and even some advice on another forum related to MPC's, but I still keep having problems whether I sync as Logic being Master or Slave.
    When I sync Logic as Master the Tracks are kept in time with each other but they are not syncing to the grid in Logic right. It's a little off even though I set a few blank bars at the beginning of the sequence I wanted to record, and set the the tempo in Logic to the exact same tempo on the MPC. When I go to copy and paste certain bars while arranging it's always off cause the tracks are not in time with the bars in the arrange window. I want the tracks to be in time with the grid so it is much easier to copy, paste and arrange.
    When I try to sync Logic as Slave...I can't even get it to work at all. The transport location just seems to jog in place. The last digits in the transport just keeps repeating themselves but no others, and there is no movement of the play head. It's just stuck. I don't know why it's doing that. When I try to sync Logic as slave I make sure the MPC is NOT in slave mode whatsoever, and that Logic isn't sending (as far as I know) any Master info to the MPC, so I really don't understand why it locks up.
    I'd really appreciate help in getting this sorted out as soon as possible.
    Message was edited by: excLOUsiv

    Ok, so I checked the SMPTE offset. I switched it so it will start at 00:00:00:00 or what have you. Good news is that the play head is no longer stuck. The first time I tried this I got an error message saying "System Overload. The Audio Engine was not able to process all required data in time. (-10011)" after about 8-10 bars of recording.
    Next time I tried this I did I stereo pass of one track and it worked perfect. It recorded the whole sequence and the sync was perfect. It was only that one time. Now I can't even get the empty initial bars to go through without getting that error.
    What is happening with this? I should have a powerful enough computer. I have a 2.2 ghz Intel core 2 duo Macbook pro, 2 gigs of ram, os 10.4.11

Maybe you are looking for

  • Assign production order number to batch number automatically

    Hi All, I have been trying to assign production order number to batch number when clicked on create icon in t-code CO02, and successfully assigned Production order number to batch number through EXIT_SAPLV01Z_001 Question: Now i want to assign same p

  • Does PS CS6 take better advantage of multiple processors than PS CS5?

    Hi, According to the article on this Adobe Support page, it says: There is a law of diminishing returns with multiple processors- The more processors you use, the less you get from each additional processor. Therefore, Photoshop isn't necessarily fou

  • Lookup View Validation Refresh

    Hello, I have a view defined with Trinidad components only. There I use the follwoing: <tr:selectOneChoice label="Label 1" binding="#{homePageBean.selectOneChoiceRubrikIs1}" id="s1" immediate="true" autoSubmit="true" valueChangeListener="#{homePageBe

  • What do the numbers greq.-1.aif mean on a clips sound wave.

    I'm working on a project where I'm trying to replace the ambient sound with music, but I don't seem to  be able to soften or even delete the roar of the convention hall. I'm trying to use the Audio FX noise reducer and though the preview sounds good

  • Building a custom web-to-print solution. Where to begin?

    I am a web developer in an organization that deals with creating books. They don't actually print and distribute the books, but they create the book designs in InDesign where they then send them to the printers to be printed and distributed. The orga