Use of % for wildcard matching in cursor

i can use the wildcard character('%') in a statement something like this :-
where city like nvl(cit,'%') in which if the null value is encountered in the variable 'cit', then city could be anything.
Now, my question is can i use this wildcard character('%') in a between condition like:
where serial_no between nvl(from_serial,'%') and nvl(to_serial,'%')
I guess we cannot use the wildcard character('%') in a between condition like we can in a 'like' statement. So, how do i use the wildcard character('%') in a between statement. Please help in resolving the problem.

Jatin
You are correct, wildcards only work with LIKE.
How you write your where clause depends on what datatype is involved. Assuming serial_no is numeric:
where serial_no between
nvl(from_serial,serial_no-1) and
nvl(to_serial,serial_no+1)
OR you could do it more explicitly
where (from_serial is null
or serial_no >= from_serial)
and (to_serial is null
or serial_no <= to_serial)

Similar Messages

  • Help to write using for all insted of cursor

    Hi,
    Can some one help to rewrite the pl/sql block using FOR ALL.
    DECLARE
      CURSOR c1
      IS
        SELECT SC.ASSESSMENT_TYPE
          || '_EXAMINER' ass,PORTFOLIO_COMMENT_ID
          --BULK COLLECT INTO l_tab
        FROM ibis.CANDIDATE_COMPONENT_REG CCR
        INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
        ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
        AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
        AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
        AND CCR.PAPER_CODE         =CEA.PAPER_CODE
        AND CCR.CANDIDATE          =CEA.CANDIDATE
        INNER JOIN ibis.subject_component sc
        ON SC.YEAR            = CCR.SPLIT_SESSION_YEAR
        AND SC.MONTH          = CCR.SPLIT_SESSION_MONTH
        AND SC.PAPER_CODE     = CCR.PAPER_CODE
        AND SC.SUBJECT        = CCR.SUBJECT
        AND SC.SUBJECT_OPTION = CCR.SUBJECT_OPTION
        AND SC.LVL            = CCR.LVL
        AND SC.COMPONENT      = CCR.COMPONENT
        AND SC.LANGUAGE       = CCR.LANGUAGE
        INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
        ON CCP.PAPER_CODE =cea.PAPER_CODE
        AND cea.CANDIDATE =CCP.CANDIDATE
        AND cea.year      =CCP.YEAR
        AND cea.month     =CCP.MONTH
        INNER JOIN ibis.cw_portfolio_comments cpc
        ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
        AND cpc.examiner_code         = cea.examiner_code
        WHERE CCR.WITHDRAWN           ='N'
        AND CCP.STATUS_ID             = 'P004'
      UNION ALL
      SELECT SC.ASSESSMENT_TYPE
        || '_EXAMINER' ass, PORTFOLIO_COMMENT_ID
      FROM ibis.CANDIDATE_COMPONENT_REG CCR
      INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
      ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
      AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
      AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
      AND CCR.PAPER_CODE         =CEA.PAPER_CODE
      AND CCR.CANDIDATE          =CEA.CANDIDATE
      INNER JOIN ibis.subject_component sc
      ON SC.YEAR             = CCR.SPLIT_SESSION_YEAR
      AND SC.MONTH           = CCR.SPLIT_SESSION_MONTH
      AND SC.PAPER_CODE      = CCR.PAPER_CODE
      AND SC.SUBJECT         = CCR.SUBJECT
      AND SC.SUBJECT_OPTION  = CCR.SUBJECT_OPTION
      AND SC.LVL             = CCR.LVL
      AND SC.COMPONENT       = CCR.COMPONENT
      AND SC.LANGUAGE        = CCR.LANGUAGE
      AND SC.ASSESSMENT_TYPE = 'INTERNAL'
      INNER JOIN ibis.subject_component sc1
      ON SC1.YEAR            = CCR.SPLIT_SESSION_YEAR
      AND SC1.MONTH          = CCR.SPLIT_SESSION_MONTH
      AND SC1.PAPER_CODE    != CCR.PAPER_CODE
      AND SC1.SUBJECT        = CCR.SUBJECT
      AND SC1.SUBJECT_OPTION = CCR.SUBJECT_OPTION
      AND SC1.LVL            = CCR.LVL
        --AND SC1.COMPONENT = CCR.COMPONENT
      AND SC1.LANGUAGE        = CCR.LANGUAGE
      AND SC1.ASSESSMENT_TYPE = 'EXTERNAL'
      INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
      ON CCP.PAPER_CODE =SC1.PAPER_CODE
      AND cea.CANDIDATE =CCP.CANDIDATE
      AND cea.year      =CCP.YEAR
      AND cea.month     =CCP.MONTH
      INNER JOIN ibis.cw_portfolio_comments cpc
      ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
      AND cpc.examiner_code         = cea.examiner_code
      WHERE 1                       = 1
      AND CCR.WITHDRAWN             ='N'
      AND CCP.STATUS_ID             = 'P004'
      UNION ALL
      SELECT SC.ASSESSMENT_TYPE
        || '_MODERATOR' ass ,PORTFOLIO_COMMENT_ID
      FROM cw_portfolio_comments cpc
      INNER JOIN examiner_moderator_allocation ema
      ON ema.moderator_code = cpc.examiner_code
      INNER JOIN examination_paper ep
      ON EMA.NO_LANG_CODE = EP.NO_LANG_CODE
      AND EMA.YEAR        = EP.YEAR
      AND EMA.MONTH       = EP.MONTH
      INNER JOIN
        (SELECT YEAR,
          MONTH,
          EXAMINER_CODE,
          PAPER_CODE,
          CANDIDATE
        FROM ibis.CANDIDATE_EXAMINER_ALLOCATION
        ) CEA
      ON EMA.YEAR           = CEA.YEAR
      AND EMA.MONTH         = CEA.MONTH
      AND EP.PAPER_CODE     = CEA.PAPER_CODE
      AND EMA.EXAMINER_CODE = CEA.EXAMINER_CODE
      INNER JOIN ibis.CANDIDATE_COMPONENT_REG CCR
      ON cea.YEAR                 = CCR.SPLIT_SESSION_YEAR
      AND cea.MONTH               = CCR.SPLIT_SESSION_MONTH
      AND cea.PAPER_CODE          = CCR.PAPER_CODE
      AND CEA.CANDIDATE           = CCR.CANDIDATE
      AND CCR.SAMPLED             = 'Y'
      AND CCR.DELETED_FROM_SAMPLE = 'N'
      AND CCR.WITHDRAWN           = 'N'
      INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
      ON cea.PAPER_CODE              = CCP.PAPER_CODE
      AND cea.CANDIDATE              = CCP.CANDIDATE
      AND cea.YEAR                   = CCP.YEAR
      AND cea.MONTH                  = CCP.MONTH
      AND cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
      INNER JOIN subject_component sc
      ON CCR.SPLIT_SESSION_YEAR   = SC.YEAR
      AND CCR.SPLIT_SESSION_MONTH = SC.MONTH
      AND CCR.SUBJECT             = SC.SUBJECT
      AND CCR.SUBJECT_OPTION      = SC.SUBJECT_OPTION
      AND CCR.LVL                 = SC.LVL
      AND CCR.LANGUAGE            = SC.LANGUAGE
      AND CCR.COMPONENT           = SC.COMPONENT;
    BEGIN
      FOR i IN c1
      LOOP
            UPDATE ibis.cw_portfolio_comments  SET EXAMINER_TYPE =i.ass
    where PORTFOLIO_COMMENT_ID=i.PORTFOLIO_COMMENT_ID;
      END LOOP;
    END;Edited by: user575115 on Nov 2, 2012 6:05 AM
    Edited by: user575115 on Nov 2, 2012 6:07 AM

    Hi,
    While running merge below error occurring.can you please advice.
    QL Error: ORA-30926: unable to get a stable set of rows in the source tables
    30926. 00000 -  "unable to get a stable set of rows in the source tables"
    *Cause:    A stable set of rows could not be got because of large dml
               activity or a non-deterministic where clause.
    *Action:   Remove any non-deterministic where clauses and reissue the dml.
    MERGE INTO ibis.cw_portfolio_comments cpc USING
    (SELECT SC.ASSESSMENT_TYPE
      || '_EXAMINER' ass,
      PORTFOLIO_COMMENT_ID
      --BULK COLLECT INTO l_tab
    FROM ibis.CANDIDATE_COMPONENT_REG CCR
    INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
    ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
    AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
    AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
    AND CCR.PAPER_CODE         =CEA.PAPER_CODE
    AND CCR.CANDIDATE          =CEA.CANDIDATE
    INNER JOIN ibis.subject_component sc
    ON SC.YEAR            = CCR.SPLIT_SESSION_YEAR
    AND SC.MONTH          = CCR.SPLIT_SESSION_MONTH
    AND SC.PAPER_CODE     = CCR.PAPER_CODE
    AND SC.SUBJECT        = CCR.SUBJECT
    AND SC.SUBJECT_OPTION = CCR.SUBJECT_OPTION
    AND SC.LVL            = CCR.LVL
    AND SC.COMPONENT      = CCR.COMPONENT
    AND SC.LANGUAGE       = CCR.LANGUAGE
    INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
    ON CCP.PAPER_CODE =cea.PAPER_CODE
    AND cea.CANDIDATE =CCP.CANDIDATE
    AND cea.year      =CCP.YEAR
    AND cea.month     =CCP.MONTH
    INNER JOIN ibis.cw_portfolio_comments cpc
    ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
    AND cpc.examiner_code         = cea.examiner_code
    WHERE CCR.WITHDRAWN           ='N'
    AND CCP.STATUS_ID             = 'P004'
    UNION ALL
    SELECT SC.ASSESSMENT_TYPE
      || '_EXAMINER' ass,
      PORTFOLIO_COMMENT_ID
    FROM ibis.CANDIDATE_COMPONENT_REG CCR
    INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
    ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
    AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
    AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
    AND CCR.PAPER_CODE         =CEA.PAPER_CODE
    AND CCR.CANDIDATE          =CEA.CANDIDATE
    INNER JOIN ibis.subject_component sc
    ON SC.YEAR             = CCR.SPLIT_SESSION_YEAR
    AND SC.MONTH           = CCR.SPLIT_SESSION_MONTH
    AND SC.PAPER_CODE      = CCR.PAPER_CODE
    AND SC.SUBJECT         = CCR.SUBJECT
    AND SC.SUBJECT_OPTION  = CCR.SUBJECT_OPTION
    AND SC.LVL             = CCR.LVL
    AND SC.COMPONENT       = CCR.COMPONENT
    AND SC.LANGUAGE        = CCR.LANGUAGE
    AND SC.ASSESSMENT_TYPE = 'INTERNAL'
    INNER JOIN ibis.subject_component sc1
    ON SC1.YEAR            = CCR.SPLIT_SESSION_YEAR
    AND SC1.MONTH          = CCR.SPLIT_SESSION_MONTH
    AND SC1.PAPER_CODE    != CCR.PAPER_CODE
    AND SC1.SUBJECT        = CCR.SUBJECT
    AND SC1.SUBJECT_OPTION = CCR.SUBJECT_OPTION
    AND SC1.LVL            = CCR.LVL
      --AND SC1.COMPONENT = CCR.COMPONENT
    AND SC1.LANGUAGE        = CCR.LANGUAGE
    AND SC1.ASSESSMENT_TYPE = 'EXTERNAL'
    INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
    ON CCP.PAPER_CODE =SC1.PAPER_CODE
    AND cea.CANDIDATE =CCP.CANDIDATE
    AND cea.year      =CCP.YEAR
    AND cea.month     =CCP.MONTH
    INNER JOIN ibis.cw_portfolio_comments cpc
    ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
    AND cpc.examiner_code         = cea.examiner_code
    WHERE 1                       = 1
    AND CCR.WITHDRAWN             ='N'
    AND CCP.STATUS_ID             = 'P004'
    UNION ALL
    SELECT SC.ASSESSMENT_TYPE
      || '_MODERATOR' ass,
      PORTFOLIO_COMMENT_ID
    FROM cw_portfolio_comments cpc
    INNER JOIN examiner_moderator_allocation ema
    ON ema.moderator_code = cpc.examiner_code
    INNER JOIN examination_paper ep
    ON EMA.NO_LANG_CODE = EP.NO_LANG_CODE
    AND EMA.YEAR        = EP.YEAR
    AND EMA.MONTH       = EP.MONTH
    INNER JOIN
      (SELECT YEAR,
        MONTH,
        EXAMINER_CODE,
        PAPER_CODE,
        CANDIDATE
      FROM ibis.CANDIDATE_EXAMINER_ALLOCATION
      ) CEA
    ON EMA.YEAR           = CEA.YEAR
    AND EMA.MONTH         = CEA.MONTH
    AND EP.PAPER_CODE     = CEA.PAPER_CODE
    AND EMA.EXAMINER_CODE = CEA.EXAMINER_CODE
    INNER JOIN ibis.CANDIDATE_COMPONENT_REG CCR
    ON cea.YEAR                 = CCR.SPLIT_SESSION_YEAR
    AND cea.MONTH               = CCR.SPLIT_SESSION_MONTH
    AND cea.PAPER_CODE          = CCR.PAPER_CODE
    AND CEA.CANDIDATE           = CCR.CANDIDATE
    AND CCR.SAMPLED             = 'Y'
    AND CCR.DELETED_FROM_SAMPLE = 'N'
    AND CCR.WITHDRAWN           = 'N'
    INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
    ON cea.PAPER_CODE              = CCP.PAPER_CODE
    AND cea.CANDIDATE              = CCP.CANDIDATE
    AND cea.YEAR                   = CCP.YEAR
    AND cea.MONTH                  = CCP.MONTH
    AND cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
    INNER JOIN subject_component sc
    ON CCR.SPLIT_SESSION_YEAR       = SC.YEAR
    AND CCR.SPLIT_SESSION_MONTH     = SC.MONTH
    AND CCR.SUBJECT                 = SC.SUBJECT
    AND CCR.SUBJECT_OPTION          = SC.SUBJECT_OPTION
    AND CCR.LVL                     = SC.LVL
    AND CCR.LANGUAGE                = SC.LANGUAGE
    AND CCR.COMPONENT               = SC.COMPONENT
    ) a ON (cpc.PORTFOLIO_COMMENT_ID=a.PORTFOLIO_COMMENT_ID)
    WHEN MATCHED THEN
      UPDATE SET cpc.EXAMINER_TYPE =a.ass;
      Edited by: user575115 on Nov 2, 2012 7:09 AM

  • Use one account for apps and other for itunes match

    Hello everybody
    My question today is quite simple. I use one account for apps and tv shows, but inwant to use a different itunes account for purchasing itunes match. How can I use them both on my devices? Will it be asking for my user-pass each time i play a song? What other thing should i consider?
    Thank you in advance

    I would strongly recommend you not do this.  You will regret it.
    I have played with this issue a lot.  You have to remain signed into match in order for it to show up on your phone. If you sign out to purchase an app or redownload one from your appstore id you use then match will be removed from your phone and when you go into your music app the icloud will not be there.  You then have to go sign back out of the store id you used for your app purchase and then sign back into match and everything will have to go though the download to your device process again.  This really is not what you want to do.
    Sign up to match with the apple id that you know you will use the most or has the most purchased items and use that for all purchases, i.e. books, apps, movies, and music.  You don't want to go though the other process.
    Plus apple will start not letting you sign into match because you signed out and back in, in to short a period of time.
    all store purchases on an iphone are linked to the store id.  if you sign out of your match id on the appstore and sign into another account to purchase an app then itunes match will sign out in the music app.  You can't have two store id's signed into your iphone at the same time.  They are all linked together.

  • Use cellular data for iTunes Match & Radio but not app Updates

    Is there any way to set an iOS device so that it will allow using cellular data for iTunes Match and iTunes Radio but not downloading app Updates. I want to be able to set my wife's phone so that the apps are automatically updated over Wifi but she can then use iTunes Match and iTunes Radio when she is out. She only uses those in limited capacity so I am not too worried about her using up her data plan with those. However, app Downloads seems to be quite large, and they happened a lot recently when they all updated for iOS8.
    Thanks,
    Tony

    No, but you could turn off Updates under Automatic Downloads in Settings>iTunes & App Store, then update them manually when you're connected to wifi.

  • Using multiple Apple ids for iTunes match

    Hi,
    I have one Apple id that I use for downloading music and apps on both iTunes and my ios devices, as well as itunes match. I have another that I use for for icloud. My iTunes match subscription is due to expire and I want to use my icloud apple id as my new iTunes Match apple id. If I made purchases with the prior apple id, and used that id for iTunes Match, and now want to change the iTunes Match apple id to my icloud apple id, will iTunes Match sync my music with the new apple id even though the purchases were made on the older id? Or do I have to use the same apple id for iTunes Match that I used to purchase the music in my iTunes library?
    Hope my question makes sense.
    Thanks,
    Steven

    iTunes Match can not be transferred to another Apple ID. It is a associated with the iTunes Store account ID you used to purchase it. You can, however, change your Apple ID: http://support.apple.com/kb/HE40

  • Can I use a iTunes card for iTunes match?

    Igot a 25 dollar iTunes gift card and I tried redeeming it for iTunes match but it wont let me it still says I need a credit card on file.  Whats the deal APPLE? Can I use the gift card, if not what do I have to do?

    Note: You may use store credit to pay for your iTunes Match subscription however a valid payment method must still be on file at the time of sign up.
    From Here
    How to Subscribe to iTunes Match
    http://support.apple.com/kb/HT4914

  • I have iTunes installed on a laptop that I use for work, but it's owned by my employer.  A new policy my have them deleting iTunes from the machine.  If that happens, will I lose all my music?  I am an iCloud user and pay for iTunes match.

    I have iTunes installed on a laptop that I use for work, but it's owned by my employer.  A new policy my have them deleting iTunes from the machine. If that happens, will I lose all my music?  I am an iCloud user and pay for iTunes match.

    If they just delete iTunes, the music files should still be there. I suggest making a backup of them though. Locate your iTunes folder (The one that contains your library file) and just copy the whole thing to your Documents folder or wherever you like (Just not in the same directory of the original folder otherwise the computer will get confused and could confuse your iTunes library). Then you will have a backup of all your music, plus if you purchased it from iTunes, you will still have it linked to your Apple ID so you can re-download them to any computer with iTunes on it when you feel like it.

  • My iphoto will not open for some reason. the cursor just keeps running...been using this for 3 years with no problem. It started doing this after I tried to load some photos from a camera I have successfully used before

    I cannot open my Iphoto on my macbook pro. I have used it for three years with no problem. However, after trying to load some pictures from my camera it seems to have frozen up. I force quit it and have not been able to get past the opening blank window since ...cursor still blinking as if it is downloading or trying to open.

    What version of iPhoto?

  • HT201209 Can I use a itunes gift card to pay for itunes match?

    Hello,
    Can I use a itunes gift card to pay for itunes match?

    Yes, as long as you have a credit card on file. See "To subscribe to iTunes Match" in this support article:
    http://support.apple.com/kb/HT4914
    Regards.

  • Using CTRL-SHIFT-F for searches, can the cursor please be in the search window by default?

    I regularly use CTRL-SHIFT-F to search particular folders (usually the Inbox) for a text string. When the search screen comes up, I sometimes start typing the text string, assuming that naturally the cursor's default position is in the search window. After all, that's the point, isn't it? But of course that's not true so I have to stop typing, use the mouse to move the cursor to where it belongs, and start typing again. This is only moderately annoying, but I have the feeling that it's only moderately difficult to fix, too.
    Any chance of that happening?
    Thanks in advance.

    Change the command line /: to some paragraph format PH or line feed /.
    /E       ELEMENT
    PH       &IT_TEXTO-TDLINE&
            OR
    /         &IT_TEXTO-TDLINE&
    Also why are you passing the text elemnt to internal table first using READ_TEXT. It can be directly done with INCLUDE Command.

  • Which account is used for iTunes Match?

    My son and I share an iTunes accounts but have separate iCloud accounts. Which is used for iTunes Match?

    Hi,
    Use the one that you sign into your joint itunes account. Icloud account does not affect itunes account.
    Jim

  • Can I use my credit on. iTunes for music match

    Do I have to have credit card for music match

    Just to clarify, the answer to both your questions is yes.
    You can use any store credit you have to pay for iTunes Match. However, you also need a credit card logged against your account. This is because it is a subscription service and I believe that all subscription services on iTunes require a credit card logged.

  • Using OEDQ for matching

    Hi
    I'm a newbie to OEDQ
    We are planning to use OEDQ for matching new customers we create using our application
    Basically we want to match incomming data against our customer database and check if there are any matching records, if found any will be returned to the user
    I'm planning to design the process and expose it as a webservice
    I have a customer database of 2 million. which will keep on getting added daily, so this data source needs to be refreshed daily
    Can anyone please suggest how will I do the data source refresh and which processor to use that matches my requirement
    I will take care of standardization of input data before I perform matching
    Thanks

    Hi,
    Please note first of all that EDQ comes with pre-configured matching services for exactly this purpose so you do not normally need to configure all the rules yourself, though of course you can if needed.
    The standard architecture is not to attempt to synchronize the data between the application and DQ, but to pass the data between - so avoiding the many issues with data replication and synchronization.
    In this architecture, EDQ provides Key Generation as a service. The service is first run in batch on all records in the system. Key values then need to be stored in a skinny table (ID, Key) in the application. Many key values are created per record.
    Then in business as usual processing, a new or updated record is passed to EDQ and its keys generated using the service. The keys are then used to select candidates (records which might match the driving record) using the skinny table, and some logic to select the DQ data (name, addresses, emails, phone numbers, SSN etc.) from the app. database. Then both the driving record and the candidates are passed to the matching service, which passes back the records which are a good match along with a score and a rule name indicating why they matched.
    All of the above is provided and described in the EDQ Customer Data Services Pack. See http://www.oracle.com/technetwork/middleware/oedq/documentation/index.html for more information.
    Regards,
    Mike

  • HT4914 can i use iTunes Gift Card for iTunes match subscription?

    can i use iTunes Gift Card for iTunes match subscription?

    See Here...
    Note: You may use store credit to pay for your iTunes Match subscription however a valid payment method must still be on file at the time of sign up.
    From Here
    How to Subscribe to iTunes Match
    http://support.apple.com/kb/HT4914

  • HT2534 why can't I use money in my account to subscribe for music match subscription?

    why can't I use money in my itunes account to subscribe for music match subscriptions?

    If you switch you will have to backdate it to keep the overages from happening. Also you'll pay the difference in advance. So if the difference is $20. You pay $40 more next month compare to this month, but the following month will be $20 more like it should(bill in advance). When you downgrade plans you'll get credited the difference like it should as it works both ways.

Maybe you are looking for

  • Segment creation problem

    I have a File to IDoc scenario. The IDoc imported has a particular segment E1EDPAD occuring only once in the structure. I have PRI and QUALF in that segment. For a particular source field X, I need to send the value of QUALF as 3 and then the value o

  • Is there anyway to change the size of the font in images in slideshow

    You seem to be able to change the size and style of the font in embedded Image Gallery, but is there a way to change the size of the font, that is displayed in the full screen slideshow mode? Small white font over black bars are very hard to read.

  • MacoBook Pro connecting wirelessly via Personal Web Sharing from iMac G5

    Subject line says it all... more specifically my problem is that some things seem "blocked" on the MBP when i'm connecting wirelessly via my iMac network, but then are 100% functional when I use other wireless networks. examples: • gmail via Mail.app

  • Remove (or adjust) iPhoto Book Binding Gutter

    Howdy All, I am trying to print some of my own iPhoto books (on a Canon Pixma ip4200 with duplex printing). Unfortunately, iPhoto (I believe) seems to be putting a binding gutter on the left side (appropriate for an Apple print job). Whereas my print

  • How to create subfolders for Albums?

    everytime i add a new albums to that long list, it gets very hard to find them again. sometimes i dont even know what im looking for because its just a random list. is there any way to improve it? i still wanna keep the albums as they are instead of