Interesting Confusion

SELECT STATUS ,
TO_DATE(CNT_ALL.PERIOD,'MM-RRRR') , CNT_ALL.SALES_CAT, CNT_ALL.DOM_EXP, CNT_ALL.REGION, CNT_ALL.CURR, CNT_ALL.PRODUCT,
SUM(TRIPS_CREATED)TRIPS_CREATED ,
SUM(TRIPS_DISPATCHED)TRIPS_DISPATCHED,
TRUNC((SUM(TRIPS_DISPATCHED)/(CASE WHEN SUM(TRIPS_CREATED)=0 THEN 1 ELSE SUM(TRIPS_CREATED) END)*100),2)||'%' Percentage
FROM
SELECT STATUS,DECODE(SALES_CAT, 'TRANSFER', TO_CHAR(TRANSACTION_DATE,'MON-RRRR'), DECODE(STATUS, 'DISPATCHED', TO_CHAR(ACTUAL_DEPARTURE_DATE,'MON-RRRR'), TO_CHAR(CREATION_DATE,'MON-RRRR'))) PERIOD,
SALES_CAT, DOM_EXP, REGION, CURR, PRODUCT, DECODE(STATUS, 'DISPATCHED', 0, COUNT(DISTINCT TRIP_ID)) TRIPS_CREATED, DECODE(STATUS, 'DISPATCHED', COUNT(DISTINCT TRIP_ID),0) TRIPS_DISPATCHED
FROM
SELECT WDD.STATUS, MMT.TRANSACTION_DATE, WTS.ACTUAL_DEPARTURE_DATE, WDD.CREATION_DATE, DECODE(UPPER(WDD.SOURCE_HEADER_TYPE_NAME),'PROFORMA','TRANSFER','SALES') SALES_CAT,
OETL.ATTRIBUTE1 DOM_EXP, OETL.ATTRIBUTE2 REGION, OETL.ATTRIBUTE3 CURR, MCB.SEGMENT3 PRODUCT, WTS.TRIP_ID
FROM
(SELECT WDD.DELIVERY_DETAIL_ID, WDD.SOURCE_LINE_ID, WDD.INVENTORY_ITEM_ID, WDD.SOURCE_HEADER_TYPE_ID, WDD.SOURCE_HEADER_TYPE_NAME, 'DISPATCHED' STATUS, NULL CREATION_DATE
FROM WSH_DELIVERY_DETAILS WDD
WHERE WDD.RELEASED_STATUS = 'C'
UNION
SELECT WDD.DELIVERY_DETAIL_ID, WDD.SOURCE_LINE_ID, WDD.INVENTORY_ITEM_ID, WDD.SOURCE_HEADER_TYPE_ID, WDD.SOURCE_HEADER_TYPE_NAME, 'CREATED' STATUS, MTRH.CREATION_DATE
FROM WSH_DELIVERY_DETAILS WDD
INNER JOIN MTL_TXN_REQUEST_LINES MTRL ON (MTRL.LINE_ID = WDD.MOVE_ORDER_LINE_ID)
INNER JOIN MTL_TXN_REQUEST_HEADERS MTRH ON (MTRL.HEADER_ID = MTRH.HEADER_ID)
WHERE TRUNC(MTRH.CREATION_DATE) BETWEEN :P_MONTH_FROM AND :P_MONTH_TO
) WDD
INNER JOIN WSH_DELIVERY_ASSIGNMENTS WDA ON (WDD.DELIVERY_DETAIL_ID = WDA.DELIVERY_DETAIL_ID)
INNER JOIN WSH_DELIVERY_LEGS WDL ON (WDL.DELIVERY_ID = WDA.DELIVERY_ID)
INNER JOIN WSH_TRIP_STOPS WTS ON (WTS.STOP_ID = WDL.PICK_UP_STOP_ID)
INNER JOIN MTL_ITEM_CATEGORIES MIC ON (WDD.INVENTORY_ITEM_ID = MIC.INVENTORY_ITEM_ID)
INNER JOIN MTL_CATEGORIES_B MCB ON (MIC.CATEGORY_ID = MCB.CATEGORY_ID)
INNER JOIN OE_TRANSACTION_TYPES_ALL OETL ON (WDD.SOURCE_HEADER_TYPE_ID = OETL.TRANSACTION_TYPE_ID)
LEFT OUTER JOIN (
SELECT DISTINCT TRX_SOURCE_LINE_ID, TRANSACTION_DATE, TRANSACTION_TYPE_ID
FROM MTL_MATERIAL_TRANSACTIONS MMT
WHERE TRUNC(MMT.TRANSACTION_DATE) BETWEEN :P_MONTH_FROM AND :P_MONTH_TO
AND TRANSACTION_TYPE_ID IN (50,53)
)MMT ON (MMT.TRX_SOURCE_LINE_ID = WDD.SOURCE_LINE_ID)
WHERE MIC.ORGANIZATION_ID = 327
--AND OETL.TRANSACTION_TYPE_CODE = 'ORDER'
AND MIC.CATEGORY_SET_ID IN (SELECT CATEGORY_SET_ID FROM MTL_CATEGORY_SETS_TL WHERE CATEGORY_SET_NAME LIKE 'IIL-Inventory')
AND ( NVL(TRUNC(WTS.ACTUAL_DEPARTURE_DATE), TRUNC(WDD.CREATION_DATE)) BETWEEN :P_MONTH_FROM AND :P_MONTH_TO
OR TRUNC(MMT.TRANSACTION_DATE) BETWEEN :P_MONTH_FROM AND :P_MONTH_TO)
AND DECODE(:P_DOM_EXP , NULL , 'ALL' , UPPER(OETL.ATTRIBUTE1)) = DECODE(:P_DOM_EXP , NULL , 'ALL' , :P_DOM_EXP)
AND DECODE(:P_REGION , NULL , 'ALL' , UPPER(OETL.ATTRIBUTE2)) = DECODE(:P_REGION , NULL , 'ALL' , :P_REGION)
AND DECODE(:P_CURR , NULL , 'ALL' , UPPER(OETL.ATTRIBUTE3)) = DECODE(:P_CURR , NULL , 'ALL' , :P_CURR)
AND DECODE(UPPER(WDD.SOURCE_HEADER_TYPE_NAME),'PROFORMA','TRANSFER','SALES') = NVL(:P_SOURCE_NAME, DECODE(UPPER(WDD.SOURCE_HEADER_TYPE_NAME),'PROFORMA','TRANSFER','SALES'))
GROUP BY
STATUS,
TO_CHAR(CREATION_DATE,'MON-RRRR'),
TO_CHAR(ACTUAL_DEPARTURE_DATE,'MON-RRRR'),
TO_CHAR(TRANSACTION_DATE,'MON-RRRR'),
SALES_CAT, DOM_EXP, REGION, CURR, PRODUCT
) CNT_ALL
GROUP BY
--CNT_ALL.PERIOD ,
STATUS,
TO_DATE(CNT_ALL.PERIOD,'MM-RRRR'),
CNT_ALL.SALES_CAT, CNT_ALL.DOM_EXP, CNT_ALL.REGION, CNT_ALL.CURR, CNT_ALL.PRODUCT
ORDER BY TO_DATE(PERIOD,'MM-RRRR')
my simple question is that ..
in parameter ":p_source_name" it has 2 categories
SALES
TRANSFER
SALES
i run the report to give SALE parameter
sample of data like this
STATUS----------------------TRIPS_CREATED------------------TRIPS_DISPATCHED
CREATED 10 0
DISPATCHED 0 7
I WANT THE OUTPUT LIKE THIS
TRIPS_CREATED------------------TRIPS_DISPATCHED
10 0
0 7
THIS CASE IS SIMPLE BECOZ IF I DELETE THE COLUMN NAME STATUS AND ALSO REMOVE THE STATUS COLUMN FROM GROUP BY CLAUSE THEN I REACHED THE MY REQUIRMENT.. BUT THE PROBLEM IS THAT
TRANSFER
IF I RUN THE REPORT IN TRANSFER PARAMETER
THEN
THE SAMPLE of data is like
STATUS------------- TRIPS_CREATED---------TRIPS_DISPATCHED     
CREATED------------------------2-------------------------------0     
DISPATCHED-----------------0------------------------------27     
IN CASE OF "TRANSFER" I WANT ONLY THOSE LINES WHO ARE DISPATCHED
I WANT THE OUTPUT LIKE THIS
STATUS------------- TRIPS_CREATED---------TRIPS_DISPATCHED     
DISPATCHED-----------------0-----------------------------------27     
PLZZ HELP.. IN BOTH CASES..

Can you edit your post and put {noformat}{noformat} tags around the code/data so that we can actually read it.
And I think you need a new keyboard.  The one you've got seems broken as the Shift Key seems to be stuck down.  Either that or you just like SHOUTING at people.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • An error occurred while configuring server as a directory server.  Please check your network configuration and try again.

    Hi there,
    My Mac OS X Server 8.2 got buggered after I did the following steps:
    Wiped Profile manager using "/Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/wipeD B.sh"
    Clicking the Off button in the Profile Manager section of the Server.app
    Clicking the On button of the same
    Clicking on asks if I want to create a new directory master, but I know that one already exists.  Trying to continue confirms this.  So, I go and destroy it to start again, but afterward, I get the following error when trying to create the directory master:
    I've done this enough times while watching the system log to see the actual error thrown, which is:
    Nov 12 22:01:24 srv.domain.com Server[279]: An error occurred while configuring srv as a directory server:
        Error Domain=XSActionErrorDomain Code=-1 "A child action failed" UserInfo=0x7fee9516c0f0 {XSActionErrorActionsKey=(
            "Creating Open Directory master"
        ), NSLocalizedDescription=A child action failed}
    I have Googled the above and have discovered only a few entries here in these Apple communities, but have found no joy.
    Here's a similar threads: 
    https://discussions.apple.com/message/19237429#19237429
    Interestingly/confusingly, this server has been working just fine as a domain master using different domain names (on separate occasions/setups).  It was only after having clicked the OFF button in Profile Manager (after a wipe) that things stopped working.
    I could rebuild this server, as I have a backup image of it that I can restore, but I'd rather find out what's broken and fix it so as to hopefully be able to fix it if/when this ever happens to me again, learning something in the process.
    That said, I perform the following steps prior to running the Open Directory setup on a the server to try and clean it up as best possible.
    Clean up steps:
    Delete the DNS zone (and all entries).
    Turn off all server services
    Delete all file server sharepoints
    Change the host name at Hardware => SRV => Network tab.  This runs the Change Host Name program.
    Close Server.app
    Throw Server.app in the trash / Empty trash (I've also just trashed and put back with same result)
    Delete the /Library/Server directory
    Clear and recreate System keychain using "systemkeychain -vfcC" to clear out all the certs related to old host name.
    Delete all the entries in the Login keychain
    Reboot (probably don't have to)
    Re-download and install Server.app
    Run Server.app, which actually retains some settings from the last setup, though I don't know where to clean those.
    After Server setup, confirm that the host name from step 4 is what I want.
    Running "changeip -checkhostname" shows "Success".  I'm using an Internet domain name so pinging the "internal" zone (srv.domain.com) resolves with the correct internal IP, and pinging the "external" zone resolves to the correct external address on the Internet.
    It would seem like I'm all good to go, but when I try to turn on Open Directory and go through the setup prompts, I get the same "Confirm Settings" error as above.
    The *only* way that I've come close to "fixing" this is to cancel out of the Profile Manager.  Then, go destroy the open directory that already exists.  Then create the domain via the Profile Manager enabling process.  At present, this only seems work to for a "private" domain.  Neither of the two Internet domain names that I've used successfully in the past work with this (or any) method. 
    Any advice or clues you can throw my way would be most appreciated.
    Thanks,
    Kim

    Had the same problem found the answer here:
    https://discussions.apple.com/thread/3264944?start=0&tstart=0

  • Need Help with Consolidating...I Think

    Here is my issue:
    I had my entire hard drive backed up, and my hard drive failed about a month ago. The tech guys did a great job of giving me a new hard drive, and they TRIED to save my iTunes Music folder. When I got my computer back, my iTunes folder still had all its music except EVERY single file started about 30 seconds into the song. The beginnings were all gone, i'm guessing they were severely damaged.
    This was fine, because I then deleted the library (but kept the files for some stupid reason) and added the undamaged ones from my external.
    I realize my mistake, because now in my iTunes Music Folder (not my library), there are two copies of every album I have. One of them with 30 seconds missing, one of them without. Also, iTunes put all the songs for each artist in the same Artist Folder so they are all completely mixed with the undamaged files like this:
    Folder: Artist
    Track 1
    Track 1
    Track 2
    Track 2
    Track 3
    Track 3
    and so on, with every other track being the damaged file I don't need. I need to find a way to delete these files from my computer without manually listening to each one and seeing if it is the damaged or undamaged file. I have about 20 GB of music, so that would take AGES. Also, because i have 20 GB of Music, its currently taking up about 40 GB of space.
    I was thinking if I consolidated my Library (not the music folder) to a separate folder (on my external), then deleted the iTunes Music folder on my computer's hard drive, then moved it back from the external onto my hard drive, would this work?
    The original backed up files from my external are gone, so I have to find a way to separate the two. The only files I want to keep are the ones in my Library, not the entire folder.
    Any help would really be great, I would love to clear up that unused 20 GB.
    Thanks,
    Jason Porter
    Student - Ohio University
    Message was edited by: Jason Porter

    Oh, thank you!! I don't know what happened. I did "extend" the content section just like you described, by adding text boxes, but somehow the "previous" and "next" buttons got screwed up and I couldn't put anything underneath them. I recreated the page from scratch because I didn't know this tip, but it's sure good to know going forward.
    What's interesting/confusing, though, is that the page inspector says that the content height is 480 pixels, even though I've extended it much farther.
    Thanks, Roddy!

  • I am interested in buying a macbook laptop. I am confused however in which one I should buy for the type of work that I will be doing. I either am looking into getting a macbook pro or the macbook air. I am leaning more towards the air.

    I am interested in buying a macbook laptop. I am confused however in which one I should buy for the type of work that I will be doing. I either am looking into getting a macbook pro or the macbook air. I am leaning more towards the air.

    A basic MBA will be more than adequate.  Take into consideration that storage may be a long term issue unless you are not averse to traveling with an external HDD. 
    Ciao.

  • Interested but Confused

    We are a small advertising company in Taiwan. We are currently looking into purchasing the Adobe DPS, but there are a few confusing issues. Firstly, we'd like to use the publishing suite to create interactive catalogues for our clients, then upload these folios for our clients' potential buyers, etc. But with either the professional or enterprise version, we're not clear exactly how many folios can we upload per month to acrobat.com.  Also, is it possible to pay monthly for DPS? I really hope that someone can help with these questions, it would be greatly appreciated.

    Kinger74 first let me say Welcome and congrats for considering DPS as a solution for your company.  The best way and easiest way to answers all your questions would be to contact the Adobe Partner in your area.  They'll ask you a few questions about your needs and client base and express the options you will have if you choose to move forward with the solution.
    Hong Kong & Taiwan
    AWT System Ltd
    Michael Yue
    [email protected]
    Tel: (852) 3104 1592
    www.awt-system.com
    or you can contact Adobe directly (however they are a little slow in response) [email protected]  and a full list of partners is here: http://www.adobe.com/products/digitalpublishingsuite/partners.html
    And to give you a quick answer to your main question.   Once you purchase your DPS licence folios are uploaded to an Adobe Distribution server  and accessed through a separate Digital Publishing suite Dashboard.  Currently there hasn't been an expressed limit on how many folios you can host or applications you can produce.
    The limitation most people refer to regards to the "free preview" of folios hosted on acrobat.com.  A free acrobat.com account will allow you to store one free folio to test out the tools.  A paid acrobat.com accounts allows you a few more workspaces- thus more folios to preview.  To produce the content commercially it is expressed you must first purchase a license.  
    Hope that helps!

  • Really interesting bizarre bug in TreePath, I'm confused beyond belief

    Inside a large program, in which I use custom TreeModel instead of DefaultMutableTreeNode's etc, I have a following method which needs to recurse up a TreePath.
    This seems to be a MAJOR bug, because if you look in the following ten lines, I verify several times that the argument is non-null (and even return early if it is).
    However, at the line "while( ... )" it throws a NullPointerException! What, is the keyword "while" null ???!?!?! Because we know that tp is NOT null.
    We also know that we can call "tp.getPathCount()" because I do so and even print it out!#
    If you have any thoughts, please CC to [email protected], because at the moment I'm sure Sun will refuse a bug report (without more info) and I doubt I can make a small program that demonstrates this - otherwise surely it would have been found before!
    public static Hashtable getMapping( TreePath tp )
    System.out.println( "tp = "+tp );
    Hashtable rc = new Hashtable();
    if( tp.getPathCount() > 0 )
    else
    return rc;
    System.out.println( "tp = "+tp );
    int tpcount = tp.getPathCount();
    System.out.println( "tp.count = "+tp.getPathCount() );
    while( tp.getPathCount() > 0 )
    return rc;
    }

    Oh dear. After prolonged testing, I realised the problem: when the TreePath is the root, it returns null as parent , which happens just before I do the test as to whether to carry on - I had originally put the test just before that, but had moved it to just afterwards, thereby causing the problem!
    Very foolish, really.

  • S_ALR_87012178 Report -Issue Related to Interest calculations

    Hi,
    When we run a customer open item analysis S_ALR-87012178  we see that there looks to be interest for overdue balances showing on the report. It doesn't appear to be assigning the interst to the customer, but I wanted to see why this was here and if we have the ability to assing interest to balances. And also where you would turn this on and off in the system or for a customer.
    Kindly adivce me on this issue.i am confused because i didnot understand what they are asking.
    Thanks
    Sunitha

    Hi,
    You can go to F.99 in order to see all the reports for Customers.
    Hope you will find the best suitable report.
    When you are using "Drill down reports" do not forget to select
    "Object list (more than one lead column)" this would give you a option to sort them the line items as you want.
    Just for your information: SAP1 is the transaction code for all the reports in SAP.
    Regards,
    Ravi

  • Phone upgrade, data plans ... I am SO confused.

    The nearer the end of my Verizon contract drew the more research I've done.  I've searched online, on Verizon's website, talked to family, friends and total strangers.  The more I research the more confused I become. Please allow me to think and wonder outloud in what follows.  Perhaps someone here can help?
    Do I want an iphone ... or a Droid ... or the Thunderbolt?  While I have read hundreds of online articles and posts about all of them I remain confused.
    My sister insists I will love the iphone.  At home I spend virtually all my free time on my computer.  I am, I admit, a computer addict.  But all of my computers have been PCs.  I know nothing about - nor do I want to learn - about Apple.  My sister's son is a Mac fan and I am sure he teaches his parents about their iphones.  Will I have a problem learning the iphone?  Do I have to have an itunes account just to activate my iphone?
    On the surface the Droid looks more appealing to me.  But I know nothing about it.  And I've read a lot of posts here pooping the Android.
    Since I live in a 4G area and Verizon seems to be pushing the Thunderbolt, I've taken a look at it.  How does it compare to the iphone or the Droid?  I've read many negative posts on these boards about the 4G network.  (I do take all message board posts with a grain of salt.)  But, I wonder, why would Verizon introduce their 4G network yet offer only ONE phone which works on it?  And, I wonder, will there be an iphone 5 this summer which is 4G? ... should I put off my decision to upgrade until this summer -- or is the introduction of the iphone 5, whenever it may happen, only going to add to my confusion?
    Unlimited data plans: I was told (by some source I cannot recall) that an unlimited data plan is $30/month for the 3G network and $50/month for the 4G.  Both reviewing Verizon's website and speaking on the phone with a Verizon representative I am lead to belive the cost is $30 for either unlimited 3G or 4G.  True?  I would/will pay an increase to my bill of $30/month for unlimited data but not $50.  What is the truth about Verizon's 3G vs 4G network?
    Lastly: maybe I'm to sensetive.  Maybe I expect too much.  I've been a Verizon customer for ten years.  As my 2 year contract neared it's expiration I truly expected Verizon to send me some email or snail-mail which both thanked me for being a customer and offered me an incentive to continue my service with them.  I have received not one word.  I realize I am one small minnow in a vast sea ... but don't we small minnows make up Verizon's vast sea?
    I do hope that at least some of my confusions will be addressed, understood, and answered by you nice folks who monitor these boards.  Please, no techno-babble.  I've read the pcworld and cnet articles.  And I've read many verizon community messages.  If you reply, please do so using simple terms.  I am so easily confused!
    Thanks!

    Thank you, both, for your easy to understand replies.  Please allow me to ask (thinking out loud) a few more questions.
    Against my family's urgings, I've pretty much decided against the iphone.  If I'm going to take the leap from my old, trusty flip phone into this decade's smart phone I want to jump in full-throttle and get a 4G device.  So, first, a few questions about them....
    The two that perk my interest -- and which I've been comparing online -- are the Thunderbolt and the DROID Bionic.  The latter I cannot find on Verizon's website.  Has it not been released yet?  They both seem to compare similarly.  Are there any (notable) differences between the two? 
    Understanding that new technology (4G -- and the devices which go with it) can be problematic, is one better to wait a few months until "bugs" are worked out -- or is there really no reason to wait?  (I realize that before I can post this message "today's" technology is already outdated!)
    Whether rightly or wrongly, I continue to think of a "smart phone" as my Windows based computer: when an upgrade or "fix" is available I download and install a Microsoft update and it's "fixed."  Is the same true with a phone -- that a "fix" is available via a simple software download ... or do some "problems" require a whole new phone?
    I was, mistakenly, under the impression Verizon's unlimited data plan was $30 on the 3G network and $50 on the 4G.  I have been corrected and understand it is $30 on both/either.  But I note other carriers charge up to $80!  Question is, is Verizon apt to raise their price in the near future?  Is there any reason to be in a rush to lock in a $30/month unlimited data plan?
    Being a miser, I continue to look for the best deal.  As I mentioned in my original post, when the expiration of my current Verizon contract expiration date neared I expected to receive some promotional offers/deals.  I have received none.  My sister (pre-ordered) an iphone -- and received a $100 credit off the price of $199.  When I telephoned Verizon the representative stated she had never heard of any discounts on any phones to anyone!
    Another example.... When going to Verizonwireless.com I am offered a price of $250 for the Thunderbolt (with, of course, a 2 year contract).  But when going to another, "outside," company they offer it for $200.  Why?  Specifically, why doesn't Verizon seem to offer the BEST deals/prices to their existing, long-time customers?  I really don't get it.  I have been with Verizon for ten years.  I am going to upgrade to a smartphone (which means my monthly bill will increase by at least $30), and I will probably remain a Verizon customer for life.  So, is it unreasonable to think I might hope for some kind of "deal" that I know others have received?  If not, where do I look for -- and find -- them?
    Lastly, is there an option on Verizon's forums to notify me of replies via email?
    Thanks again, in advance, for your input.
    BTW, how can "iphone," "4G," or "DROID" not be in Verizon's spell checker?!?

  • Interest on arrears configuration

    Hi all,
    I am trying to use the interest on arrears calculation function to charge interest for customer overdue item.
    However, I am a bit confused on how the interest rate is linked to the interest indicator as there are so many reference interest rate and i could not find the linkage of which reference interest rate is used to calculate the interest charged.
    Can anyone help?
    Thanks!
    Regards,
    Hoay Ling

    Hi all,
    I am trying to use the interest on arrears
    calculation function to charge interest for customer
    overdue item.
    However, I am a bit confused on how the interest rate
    is linked to the interest indicator as there are so
    many reference interest rate and i could not find the
    linkage of which reference interest rate is used to
    calculate the interest charged.
    Can anyone help?
    Thanks!
    Regards,
    Hoay Ling
    hi,
    First create an Interest Indicator. ·     OB46 - Interest Settlement Calculation Type Int Calc. Type
    P - calculate interest based on line items.
    S - calculate interest based on account balances.
    Second, make it available to the interest run program.
    ·     OB82 - Interest Terms
    Third, determine the interest rate that will be used by the calculation.
    ·     OBAC - Define Reference Interest Rates
    ·     OB83 - Enter the Reference Interest Rates Value
    Fourth, assign the interest indicator to the reference interest rate.
    ·     OB81 - Define Time Dependent Terms
    Finally, determine the how and to which accounts the interest program will post.
    ·     OBV1 - Prepare Interest on Arrears Calculation
    ·     OB84 - Assign forms for interest indicators.
    ·     F.2B  - Arrears interest calculation
    Arrears Interest Caliculations of customers:
    Define Interest Calculation Type  : OB46
    Define No Ranges for Interest Form  : FBN1
    Define Reference Interest Rate  : OBAC
    Define time based terms  : OB81
    Enter Interest values :  OB83
    Prepare Interest on Arrears calculation :  OB82
    A/R Calculation of interest on arrears :  OBV1
    Assign forms for interest indicator : OB84(standard form is
    Arrears Interest :  F.2B

  • Dynamic link confusing two separate AE compositions in PPro from different projects

    I am using CS5 Master Collection for Windows 7 (64 bit) on an HP Pro desktop (Intel core 2 duo, 6Gb RAM). The tower has two hard drives installed (no RAID). CS5 is installed on the original C drive along with the OS, but the working files, footage etc are all on the larger, secondary F drive.
    I am working on a DVD project consisting of several seperate PPro projects. Each project has been colour corrected in AE using dynamic linking. Recently two of my projects suddenly became mixed up, by which I mean the video (not the audio) from one AE composition in one project has taken the place of another in another project. The clip remains the same length, but the link apears to be referencing the wrong clip during playback. Interestingly, there are two clips on the track above the affected clip that fade out and in at either end, during the dissolves between clips, the correct footage plays. It is only when the clip plays by itself that the problem occurs. The next clip also has the same error, though the problem only occurs for half the clip and then suddenly corrects itself. Just to be clear, All clips have been rendered, there are no more than two video tracks on the sequence, and I have tried replacing the composition from the asset menu (in which the clip plays back correctly), but the problem remains in the sequence.
    I hope that descrition is clear enough. My guess is some kind of file path error in the dynamic link, perhaps due to the separate hard drive. But I really wouldn't know. I'm very pressed for time right now and I'd prefer not to go against workflow and re-edit a new composition in AE, I would also like to understand what is going on in case it happens again.
    Any help with ths problem would be appreciated,
    J

    Thanks Colin, I tried what you suggested with both the AE Project that it should be referencing and the AE project it is erroneously referencing but both failed to fix the issue. Its as if a hidden clip were laid over the top of the one I want to play. Frustrating.
    Date: Mon, 24 Oct 2011 19:47:03 -0600
    From: [email protected]
    To: [email protected]
    Subject: Dynamic link confusing two separate AE compositions in PPro from different projects
        Re: Dynamic link confusing two separate AE compositions in PPro from different projects
        created by Colin Brougham in Premiere Pro CS5 & CS5.5 - View the full discussion
    It's not the comps that are the problem; it's the project file names themselves. You can have all the comps in a project named the same thing, and it'll be fine, but naming projects incrementally is an issue. After Effects includes a versioning function (Save and Increment) that will create a new AE project file with a serial number, e.g. AE Project 01, AE Project 02, etc. This is all well and good if you're just working in After Effects, but Dynamic Link gets confused and will usually start looking at the later project file for comps. That will just create a big mess, as you've found. Changing the names of the project files won't help things relink automatically properly, but it can help you fix things. Make all your DL AE comps offline in your Pr projects, and name your AE projects in a manner that is not serial (give them more random names). Select your offline AE comps, and right-click > Link Media, and point to the new AE project. Things should link up correctly then--but if they don't, you'll just have to remove all the AE comps from your Pr project, reimport the comps from the newly-named AE project, and replace them. It's a pain but it'll probably just keep getting worse if you don't.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3988711#3988711
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3988711#3988711. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Premiere Pro CS5 & CS5.5 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Big, confusing iPod Shuffle Problem

    Okay, this is a confusing one, so read it carefully to understand it fully
    The iPod shuffle in question is my ladyfriend's, bought in October 2005, and has never caused us a bit of trouble. Until last night.
    Last night I downloaded and ran the new iPod Shuffle fix that Apple distributed (http://docs.info.apple.com/article.html?artnum=303979) The iPod never had trouble in the past, but I wanted to keep up with the updates so that it stayed that way, and ran it.
    After it had finished running and reset, the iPod dissapeared from the finder. I thought "great, all done and dusted." When I tried to plug it in again and add music, I went through the "what is it called" tabs etc. which come up when you first use a shuffle. It was on the Finder, in iTunes, all was well.
    I noticed that after a few seconds, the iPod dissapeared from the Finder. Stayed in iTunes, but had seemingly vanished from everywhere else. This is interesting, as it's one of the things that the fix is supposed to solve in the first place!
    This is my problem. The iPod vanishes when something tries to use it. If I enable 'disk use' on the device, it appears. Turn it off, vanishes again. The iPod vanishing tricks have given me some error:1418's, which were fixed to many on a website dedicated to the 1418 error who used the fix. Even running older updaters doesn't fix these problems.
    I'd like to have this iPod stop dissapearing when I open programs such as iTunes, and have it work properly again.
    If anyone can contribute anything to this, I'd be very appreciative.
    Cheers everyone.
    Mac Mini   Mac OS X (10.4.8)   Saving for a Mac Pro

    Try this for last......
    http://www.apple.com/support/downloads/ipodshuffleresetutility10forwindows.html
    or
    Solution for iPod shuffel 512 not working (Green and Amber light blinking ), recommended
    (This is an apple bug - thousands have the same problem
    If the problem of green and amber light is still there with some people pl try this
    http://www.manythings.org/shuffle/
    1 set your ipod preferences on max data usage as shown on site
    2 set off the option that open ipod in itunes when connected
    3 get rebuild.py from net (exe) and put it on your base directory of ipod and run it, info is given on above site,
    every time u edit the songs directory hit the above file
    Otherwise product is really excellent
    If you get solved mail on [email protected] , INDIA
    thanks
    ENJOY_!!!

  • Report on Contacts Interests (related information section)

    I have activated the "Contact Interests" feature (related info section for a Contact) and "Contact Relationship". I'm not planning on using the "Contact Relationship" feature at the time but I will be using the "Contact Interests" If and only IF I can report on it.
    I'd like to create a report that shows a list of contacts and their interests but i can't seem to find the "Contact Interests" to add to my report.
    Also, I tried to do an advance search to see if I could get a list of contacts with a specific interest (golf, funds,etc...) but couldn't find how to search by that field.
    FYI- don't get confused thinking that this is a custom object because it isn't. I say this because when I called customer support they had no idea what I was talking about. Thanks God for 2nd Tier.
    Prompt suggestions are appreciated.
    Thanks.

    On R15 you cannot report off Contact Interests, but in R16 you can - at least that's oracle's word. You may want to ask your customers to wait till June. If your need is urgent then build some web services which will populate this data into an external database and report off that.

  • Confused by increase in Monthly Direct Debits

    Hi all.
    Being a newbie, I'm sure this topic must have been raised in the past.
    As a new BT customer, I was paying Monthly Direct Debits of £23.50 to cover my contract for Unlimited Evening and Weekend Plan plus BT Total Broadband Option 1.
    After 6 months, I have just received a bill advising me that my Direct Debits would increase to £38.00 per month (a rise of 62%!).
    Having been unable to get through to an advisor on the phone, I thought I'd do a little research on the web.  I found the BT Help topic "Why has my Monthly Payment Plan amount changed?", which lays out the way the bill is calculated:
    Monthly Rental Charges + Last quarter usage divided by 3 + Outstanding charges divided by 6 = Monthly Payment.
    In my case, this would be: £23.43 + £3.51/3 + £5.44/6 = £25.51 per month.
    Therefore, I'm a little confused, not to mention rather annoyed that my Direct Debits have been increased to £38.00pm, when £26.00pm would seem more reasonable!
    Any help would be appreciated.
    Martin

    Hi Martin,
    Having the same kind of problem with BT...you are not alone!
    I  signed up to BT Vision back in October10 where the nice salesman told me for the package i was having (phone, broadband and tv) I would be paying £51 a month based on my previous phone usage (this figure was worked out for 3 months in advance). After a few initial teething problems all went well until after 3 months BT then tell me my payments were jumping to £88.50 a month without any explanation (my phone usage had not changed in any way during this time). Another 3 months pass, where in the meantime I had paid BT a total of £265.50 but my bill says I only owed them £151.51 so I was in credit by £113.99. BT still wanted to carry on charging me £88.50 even though that was way over what I should be paying. After cancelling the direct debit ( which was an arduous process over the phone talking with their overseas billing department) I have now received a bill for £50+ .....where has my £113.99 credit disappeared?....wits end?....tearing my hair out?....pulling teeth?...all could be used to describe the BT billing experience. The scary thing is BT would of quite happily carried on taking £88.50 out of my account every month and not done a thing.....but if i wasn't paying enough they would be quick to up my payments. Also they are sitting on my £113....along with doubtless other customers overpayments and getting a nice little bit of interest off it. Unfortunately I am tied into an 18 month contract with them and whilst I cant fault the services they provide (although my broadband usage goes near my 40 GB limit which astounds me because we only use the internet for the usual things e mails you tube etc. but thas another forum issue!) i would quite happily just get a freesat box and another internet provider because it seems BT just dont care!
    rant over  ...well at least till i try to ring BT later!
    Pete

  • Confusion with PI 7.1 with integration scenario

    Hi, expert,
    I read a lot of documents before I have physically logged on to PI 7.1, I thought I had a very good idea about the new version. However when I am physically in PI 7.1, I found I get a little confused.
    I know ES is a big thing in 7.1, but I will be working on integration (integration scenario), I thought this part is not changed from 7.0 to 7.1. Basically in 7.0, you defined message type and message interface, message mapping and interface mapping, then you go to ID to configure the integration scenario. However in 7.1, you do not have message interface anymore, instead, we have service interface under which you define operations, which is fine from ES perspective. But if I am only interested in integration, what I need is like PI 7.0: outbound interface, mapping, inbound interface, NOT the operation. Now how can I define 7.0 message interface in PI 7.1? (I know operation mapping is 7.0 interface mapping).
    Can I make following understanding?
    1) Operation in 7.1 is like messag interface in 7.0
    2) Service Interface is a tool to group multiple related operations under one roof.
    3) To define integration scenario, I do NOT need the modeling. Modeling is only relevant to model ES, NOT for integration scenario.
    So if I am only interested in integration scenario, what is changed from PI 7.0 to PI 7.1?
    Thanks for advice
    Jayson

    > Can I make following understanding?
    > 1) Operation in 7.1 is like messag interface in 7.0
    Service Interface with one operation whose name is same as the service interface and Xi 3.0 compatible type is same as 7.0 Message Interface
    > 2) Service Interface is a tool to group multiple related operations under one roof.
    Yes.
    > 3) To define integration scenario, I do NOT need the modeling. Modeling is only relevant to model ES, NOT for integration scenario.
    Yes.
    >
    > So if I am only interested in integration scenario, what is changed from PI 7.0 to PI 7.1?
    I did not work much on this area but, as long as you are replacing the interface mapping with operation mapping things must be pretty much same here. For your information, Integration scenario is not a compulsion unless u want to represent the scneario graphically and create the ID objects automatically.
    You can create the ID objects manually whitout creating an integration scenario on ESR.
    VJ

  • Interesting Problem in VA4Java: Using POST with forward(req, res)

    I am trying to use POST Metod with forward(request, response) in VisualAge for java using webSphere test environment and getting an error page. Interesting thing is that if I set a breakpoint then I get the desired page otherwise an error page. However, if use GET Method everything works fine. What confuses me is that why POST method is not working without setting a breakpoint and running the code in debug mode? Does it has to do with WebSphere test environment or problem of using POST method with requrest forwarding in servelt API?

    Hi there,
    I am beginning in developping jsp / servlet in VAJ3.5 and Websphere Test Environment.
    i manage to run the servlet properly. unfortunetely the jsp is not working properly : in my hello.jsp (this example is coming from tomcat4.0), there is a method 'request.getContextPath()'
    WTE send me a message : 'method not found in interface javax.servet.http.HttpServletRequest'
    Any idea hox to solve this?
    VAJ3.5, WTE use JSP1.0, is it something linked to this?
    Thanks to you.
    Regards
    Hugues

Maybe you are looking for

  • Is my iPod no longer "updatable"?

    I have an 8G iPod touch (MA623LL), 3.1.3 software. I'm trying to download the update but I get the message that I have the current version. Am I at the end of my updates with the release of the the new iPod touch?

  • Safari suddenly loading all pages VERY slowly

    [ Edited by Apple Discussions Moderator; Please start a new topic about your technical issue. ] Out of the blue, Safari (v2.0.3) has started loading pages extremely slow (between 10 and 30 seconds). I have rest Safari to no avail. I have deleted the

  • Adding pictures/graphics w TEXT to DV movies

    In the past - I was told if I wanted to add a picture ( with text titling mixed in) to a DV quality movie in final cut pro - that I should use: 720x480 300 dpi Tiff file - however looks badly smudgy/ pixilated post importing. Q: Why does this look so

  • CS3 bridge not responding

    I have been using CS3 Bridge on Vista for over a year with no real problems. Recently I was using it to move some files around and it stopped responding to any command. I closed it via task manager and reopened it. It opened but did not respond to an

  • Slight yellow color in the top left of my i phone 5

    there is a slight yellow mark in the top left side of my i phone 5. I noticed just one week before only.