Logic Script (Copying records while save from input screen)

Hi Gurus,
How to handle below requirement in script logic:
Input screen column = Time (5 years)
User want to input forecast data in current year and same data should be copied over to rest of the 4 years.
I am new to Logic Script!
Thanks.

Another option is to add 4 properties to TIME dimension: SHIFT1,SHIFT2,SHIFT3 and SHIFT4 and fill them with members:
2014.01 -> 2015.01 2016.01 2017.01 2018.01
2014.02 -> 2015.02 2016.02 2017.02 2018.02
... etc
Some maintenance work...
The code will be simple and without FOR/NEXT loop:
*WHEN CATEGORY
*IS FORECAST
*REC(EXPRESSION=%VALUE%,TIME=TIME.SHIFT1)
*REC(EXPRESSION=%VALUE%,TIME=TIME.SHIFT2)
*REC(EXPRESSION=%VALUE%,TIME=TIME.SHIFT3)
*REC(EXPRESSION=%VALUE%,TIME=TIME.SHIFT4)
*ENDWHEN
Vadim

Similar Messages

  • Blank Screen while navigating from one screen to another in a web applicati

    Blank Screen while navigating from one screen to another in a web application.
    While navigating through the screens of the web-based application, I get blank screen at times. The application menu bar is still visible and the header and footer jsps are also still available. The main processing frame alone goes blank. Once I get the blank screen, I am able to choose from the menu option and contine navigating through the screens.
    The application has been deployed on WebSphere Application Server v6.0 and uses JDK 1.4.2. I have checked the application, server and systemerr logs. And there are no exceptions in any of the log files. There is no difference in the logs for a normal flow and the flow when the blank screen occurs.
    The blank screen does not occur always. It occurs around 3 out of 10 times. If you consider a particular page, mostly it loads normally and very few times, the blank screen occurs.
    Compression filter is being used and it gets invoked for every request. Size before and after compression also gets printed in the logs.
    Could this be causing any issue in terms of memory handled or could any jsp timeout be happening, though there are no exceptions in the logs.

    Well, since no one has any ideas, here is my two cents worth:
    Can you turn off compression and see if the problem goes away? If not, I suggest creating a small separate project with the same functionality as that part of the program that causes problems and see if you can duplicate it. Use System.out.println() in the java code and out.write() in the JSP pages throughout the java and JSP code to write to the log file or console as each section is run to see what section is causing problems. You can also consider commenting out sections of code in your JSP page to see if you can isolate the problem.
    I had a similar problem with the screen being blank and this is what I found:
    My JSP page had an include tag in it that included another JSP page. The outer JSP page was drawn and waited for the included JSP page to be drawn. The logic took several minutes to run and something timed out. The inner JSP page was never drawn. No log entry occurred. It appears that it was not Apache or Tomcat that caused the problem, but some firewall or similiar such device. If you have a firewall or similar device, see if the person who maintains it can temporarily set its timeout to a very long time (15 minutes) to see if the problem goes away. Apache and Tomcat probably also have a timeout feature too. You will have to read up on their configuration settings on how to set them.
    By the way, each of those devices probably has its own log file you can read to see if its reporting an error.

  • BPC Logic Script: Copy from calculated members (non-base) to base members

    Hi experts,
    I want to copy some values from some calculated members to base members in the same dimension. It appears I have a hard time scoping the calculated members.
    This is my C_ACCOUNT dimension:
    And this is the COPYCALC.LGF script I am running:
    LGX:
    *XDIM_MEMBERSET C_ACCOUNT = 450
    *WHEN C_ACCOUNT
    *IS 450
    *REC( EXPRESSION = %VALUE%, C_ACCOUNT = 50)
    *ENDWHEN
    LOG:
    LOG BEGIN TIME:2014-02-26 17:21:12
    FILE:\ROOT\WEBFOLDERS\STEP_UNIT_TEST \ADMINAPP\BUDGET_CASH\TEST.LGF
    USER:KAROLISB
    APPSET:STEP_UNIT_TEST
    APPLICATION:BUDGET_CASH
    [INFO] GET_DIM_LIST(): I_APPL_ID="BUDGET_CASH", #dimensions=16
    AA_NUMBER,AUDITTRAIL,BUDGET_OBJECT,BUDGET_TYPE,CATEGORY,COFOG,CURRENCY,C_ACCOUNT,C_ACCOUNT_DT,ENTITY,FLOW,GRANTS,MEASURES,TIME,TIME_DT,VERSION
    #dim_memberset=4
    CATEGORY:RES,1 in total.
    CURRENCY:LC,1 in total.
    TIME:2012,1 in total.
    C_ACCOUNT:450,1 in total.
    SCRIPT RUNNING TIME IN TOTAL:1.00 s.
    LOG END TIME:2014-02-26 17:21:12
    My model structure:
    So as you can see I am trying to copy from account 450 (which is non base) to account 50 ( which is base member). Also you can see that in the previous example no record was generated.
    Whereas,  if I replace the account 450 with 4500 I get record generated in order:
    LGX:
    *XDIM_MEMBERSET C_ACCOUNT = 4500
    *WHEN C_ACCOUNT
    *IS 4500
    *REC( EXPRESSION = %VALUE%, C_ACCOUNT = 50)
    *ENDWHEN
    LOG:
    LOG BEGIN TIME:2014-02-26 18:26:26
    FILE:\ROOT\WEBFOLDERS\STEP_UNIT_TEST \ADMINAPP\BUDGET_CASH\TEST.LGF
    USER:KAROLISB
    APPSET:STEP_UNIT_TEST
    APPLICATION:BUDGET_CASH
    [INFO] GET_DIM_LIST(): I_APPL_ID="BUDGET_CASH", #dimensions=16
    AA_NUMBER,AUDITTRAIL,BUDGET_OBJECT,BUDGET_TYPE,CATEGORY,COFOG,CURRENCY,C_ACCOUNT,C_ACCOUNT_DT,ENTITY,FLOW,GRANTS,MEASURES,TIME,TIME_DT,VERSION
    #dim_memberset=4
    CATEGORY:RES,1 in total.
    CURRENCY:LC,1 in total.
    TIME:2012,1 in total.
    C_ACCOUNT:4500,1 in total.
    REC :%VALUE%
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 0.00 ms. 1  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    CALCULATION TIME IN TOTAL :0.00 ms.
    1  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 1  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    AA_NUMBER AUDITTRAIL BUDGET_OBJECT BUDGET_TYPE CATEGORY COFOG CURRENCY C_ACCOUNT C_ACCOUNT_DT ENTITY FLOW GRANTS TIME TIME_DT VERSION SIGNEDDATA
    AA_NONE LIM NONE 10 RES FA_NONE LC 50 CAD_NONE A00 F99_1 NONE 2012 TD_NONE CURRENT 222.00
    1  RECORDS HAVE BEEN WRITTEN BACK.
    WRITING TIME :1.00  ms
    Why can I not copy value from 450 ? How do I solve this problem ?
    PS: currently I am testing this as a DM package run script but in the future I would like to make it a Default.lgf functionality.
    I am working on:
    BPC 10 SP5 for NW, calculation engine ABAP, BW 7.4

    Sorry to keep you in darkness. My code has developed since I have started this thread:
    *SELECT(%ADMISSIBLE%, "[ID]", C_ACCOUNT, " [THIERARCHY]<>'' AND [ACCTYPE]<>INC ")         // DEFINE THE SET OF REAL(ACTUALY EXISTING), NON-REVENUE AND NOT ANCIENT CASH ACCOUNTS HERE.
    *SELECT(%INADMISSIBLE%, "[ID]", C_ACCOUNT, " [ID] <> %ADMISSIBLE% ")
    *SELECT(%L1%, [ID], C_ACCOUNT, "[ID] = %C_ACCOUNT_SET%")       // DEFINE BASE LEVEL ACCOUNTS
    *SELECT(%L2%, "[THIERARCHY]",C_ACCOUNT, "[ID] = %L1% ")       // DEFINE FIRST(COUNTING FROM BASE) LEVEL PARENTS
    *SELECT(%L3%, "[THIERARCHY]",C_ACCOUNT, "[ID] = %L2% ")       // DEFINE SECOND(COUNTING FROM BASE) LEVEL PARENTS
    *SELECT(%L4%, "[THIERARCHY]",C_ACCOUNT, "[ID] = %L3% ")
    *SELECT(%L5%, "[THIERARCHY]",C_ACCOUNT, "[ID] = %L4% ")
    *SELECT(%L6%, "[THIERARCHY]",C_ACCOUNT, "[ID] = %L5% ")
    *SELECT(%LALL%, "[ID]", C_ACCOUNT, "[ID] = %L1%,%L2%,%L3%,%L4%,%L5%,%L6%")  //UNION OF ALL LEVELS
    *XDIM_MEMBERSET AUDITTRAIL = INPUT
    *XDIM_MEMBERSET VERSION = CURRENT
    *XDIM_MEMBERSET AA_NUMBER = AA_NONE
    *XDIM_MEMBERSET TIME_DT = TD_NONE
    *XDIM_MEMBERSET C_ACCOUNT_DT = CAD_NONE
    *XDIM_MEMBERSET C_ACCOUNT = %INADMISSIBLE%     //SCOPE LEAVES ALL POTENTIAL DESTINATIONS FOR MEMBERS IN %PARS%
    *FOR %A% = %PARS%    //LOOP OVER ALL ADMISSIBLE PARENTS
    *WHEN C_ACCOUNT
    *IS L_C_%A%
    *REC( EXPRESSION = [C_ACCOUNT].[%A%], C_ACCOUNT = L_C_%A%)         //SUM UP THE VALUES OF LEAVES AND WRITE THE SUM TO DESTINATION ACCOUNT
    *ENDWHEN
    *NEXT
    screen shot of part of member table for C_ACCOUNT:
    continuation in next reply (I have problems with my text editor)

  • Logic script copy

    Hi expert,
    part of my script:
    *DESTINATION_APP = FINANCE
    *SKIP_DIM = MATERIAL,Product
    *ADD_DIM Location = Entity.Loc
    what I concern that is  *ADD_DIM Location = Entity.Loc ......is not working fine
    when store to database, it store the "Entity.Loc" to my column Location.
    but what actually I want is store the value from the PROPERTY call "Loc" from my dimenson ENTITY.
    any idea how to do this??
    Thanks...

    Hi Nilanjan
    I have a similar issue...
    Can you explain please how can I use the variable  for many members...
    Im performing correctly some data copy to another app.
    The problem is that when I use add_dim it is not possible to input more than 1 member per dim.
    How can i fix this?
    I.e.
    Conceptos.vap (all this members) --> account 40000 (destination member)
    Conceptos "toner" ---> account 50010 (destination member)
    I wanted to simplfy my script by typing this (to me this is supposed to work, is very simple, also running a script separately works for both Conceptos)
    *select(%conceptos%,"id","conceptos","vap='i'")
    *xdim_memberset conceptos=%conceptos%
    *xdim_memberset moneda=mxn,usd
    *xdim_memberset lob=servicios_out
    *xdim_memberset metrica=importe_p
    *xdim_memberset consumibles=consumibles_dummy
    *xdim_memberset tiempo=%tiempo_set%
    **WHEN conceptos
    **IS %conceptos%,toner*
    WHEN metrica
    *IS importe_p,importe_r
    *REC(FACTOR=1,metrica="dummy_metrica")
    *ENDWHEN
    *ENDWHEN
    *COMMIT
    *DESTINATION_APP= ALLDORA_FINANZAS
    *xdim_memberset moneda=mxn,usd
    *xdim_memberset lob=servicios_out
    *xdim_memberset metrica=dummy_metrica
    *xdim_memberset tiempo=%tiempo_set%
    *skip_dim = conceptos
    *skip_dim = consumibles
    *add_dim ceco=A010ops001
    *add_dim cuenta=40000, 50010 ---> ERROR !!!!
    *add_dim empleado=empleado_dummy
    *WHEN conceptos
    *IS %conceptos%
    *REC(FACTOR=1,cuenta="40000")
    *IS toner
    *REC(FACTOR=1,cuenta="50010")
    *ENDWHEN
    *commit
    If I just type separately the logic for each one WITHIN the same script, the Account destination member taken is the one found at the bottom of the script, i mean, it is not performing the input in the final Account (40000 and 50010), just for one of them.
    However... since i have to do 14 different logics, it is very awkward to execute 14 scripts... in order for this logic to work,
    Thanx
    Velázquez

  • Dynamic creation of two records in IT19 from input in IT16

    Hi all
    I am working on a dynamic action to do like this:
    When a person is hired through a PA40 one enters an IT0016 (at this point predefined with probationary period 9), saves and by doing this creates an IT0019 with Task Type "U9" and a date of task 9 months later. This I believe is calculated by adding together the probationary period in IT0016 and the begin date into the variable PROBEND.
    Now the next step in my Dynamic action is a copy of the fist one, creating yet another IT0019 record. Only this time the Task Type is 36 and here comes the trouble: I want the PROBEND for this part of the action to be begin date + 6 months. Question is, can this be done by using a W indicator for the step setting P0016-PRBZT='6' before making the PROBATION routine? I cannot make it work.
    My code is as this (simplified):
    IType 0016, field PRBZT, FC04
    ***first 0019 record ***
    P some tests
    F PROBATION
    I INS,0019,U9
    W P0019-TERMN=PROBEND
    ***second 0019 record ***
    P Some other testing
    W P0016-PRBZT='006'
    F PROBATION
    I INS,0019,36
    W P0019-TERMN=PROBEND
    It DOES make two records - one of each type, but the date of task is not calculated correctly for the second record. Anyone has an idea how to crack this one?
    Regards
    Jesper

    Hi Brother
    I think u r calling the Dynamic action after u save infotype 0016 in both the cases. So how can we save something in an infotype which is just saved, I mean u r using a field of 0016 in the dynamic action,but remember that we are calling dynamic action after 0016 gets saved.
    So for changing the dates in 0016 just play around with CONTR Feature, To default the contrat elements and modify the dynamic action...
    Hope this resolves ur query
    Thanks and regards
    Mohammed Azeem

  • Picture disappears while editing from main screen view in iPhoto.

    Does anybody have any idea why this happens?  Certain pictures will disappear from the main view and I can't edit them at all since I can't see it.  I can see them in the thumbnail and once I exit the edit screen I see it again.  If I revert it shows again too. 
    This doesn't happen with all pictures only a few and I don't know why.  Any help would be appreciated.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    iPhoto 8 (09) and earlier- run the options indicated
    iPhoto 9 (11) and later- run  Option #4 to rebuild the database
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager (iPhoto 8 or earlier or IPhoto 11 and later) and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the
    File ➙ Rebuild Library (iPhoto 8 or earlier)
    or
    Library ➙ Rebuild Library (iPhoto 9 or later)
    menu option to rebuild the library.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Slow while going from one screen to another screen

    Hi,
          I have installed SAP 4.7 version. The hardware of system is 3GHz processor and 1 GB RAM.  It is taking more time while going one screen to another. So after entering XD01 or any tcode , I have to wait for seconds some times 10 second to a get a screen and  getting a screen form another screen.
    Can any one tell me reason for this and how can be this issue resolved.
    Thanks,
    Manas

    When using system for the first time, a lot of compiling still has to be done which takes time, but also the fact that your system 'only'  has 1 GB RAM, could cause these problems as well. According to requirements, 1GB should be enough, but I would recommend at least 2GB.

  • I can record midi data from my Mason & Hamlin Piano Disc Pro Record through my MOTU Traveller into Logic but Logic won't send midi data out to the MOTU Traveller to the Piano Disc player

    Hello All,
    I can record midi data from my Mason & Hamlin Piano Disc Pro Record through my MOTU Traveller into Logic Pro 9.1.8  but Logic won't send the midi data back out to the MOTU Traveller and thus to the Piano Disc player. I got it to playback one time but have no idea how and when it did it was looping or something because the velocity was way high coming back in and the damper pedal was slamming down. When I play a key on the piano the midi "in" light on the Traveller lights up. When I play the track back on my computer no lights blink on the Traveller and when I did the apple midi studio test in utilities when I play a key I get the confirmation signal noise and the Traveller blinks when I click on the down arrow of the Traveller in the Apple midi studio test the midi out light on the traveller never lights and the signal light on the piano does not blink either. No outbound signal at all...
    I have messed with every possible parameter I can find and and have had help from one of Piano Disc's premier editors but no luck. The piano was prepped for me on Logic so it would work with my studio.  I'm positive it's my fault and I'm overlooking something really simple and stupid but what!??!
    Somebody please help.  Thank you all in advance for ANY ideas you might have!

    Blues Piano,
    I'm not sure if this will be a help or not.  I'm so Logic Pro wet behind the ears that I make newbies look experienced.  However, I'm not expecting many on the Apple support forums have a PianoDisc system, much less one with the new optical record strip.  While I don't have any record strip on my PianoDisc, I do have a PianoDisc iQ that's only a month old.  I've been playing converted paper scrolls from hundred year old player pianos through it via the MIDI in port of the PianoDisc CPU.  I've found I have to open the MIDI file in Logic Pro (10.0.4) then go to <Track><New External MIDI Track> then copy the existing track to that new external track.  Only then can I see in the Track inspector (defaults left side of screen with the Icon for the instrument) the "Port" parameter.  Then I can select my external MIDI device in that Port selector. 
    I've also encountered problems with the PianoDisc not using enough force on the notes or using too much force.  To get around this problem, until I understand Logic better, I've been setting minimum and maximum volicities.  To do that I right click on the track and select "Select All."  Then I right click again and select "MIDI" then "MIDI Transform"  then "Velocity Limiter."  In the resulting pop up window in the center is a drop down and you can play with the velocity from "MIN" to "MAX" along with "ADD" "SUBTRACT" etc. 
    I hope this helps.  I envy you your Mason & Hamlin.  If you need more help on this just email me at pfleischmann at mac dot com.

  • I Recorded 4 audio tracks, could hear it in the headphones while recording. Meters show input. No playback sound. Advise.

    I Recorded 4 audio tracks, could hear it in the headphones while recording. Meters show input. No playback sound. Please Advise.

    How can anyone advise on such a cryptic post, all we can do is guess.
    Which version of Logic, what audio hardware are you using?
    Have you read the manual?

  • Hey guys ! I use logic pro ... not logic proX ... and i want to record my drums with 4 mics. I got a mixer with also 4 inputs ( Behringer Xenyx QX 1202USB ) But in my Logic i can't take the third input !?!? i can only choose 1 and 2 .... Please Help :)

    hey guys ! I use logic pro ... not logic proX ... and i want to record my drums with 4 mics. I got a mixer with also 4 inputs ( Behringer Xenyx QX 1202USB ) But in my Logic i can't take the third input !?!? i can only choose 1 and 2 .... Please Help

    Friedrich sp wrote:
    Can you send me a mixer wich can do that, please ?
    Who do you think I am? Santa Claus?
    What you need is not a mixer, but an audio interface with at least 4 mic inputs. There is a lot of choice there, but you should indicate a budget. You can go from, say, € 300 to € thousands, if you want.
    Roland UA 1010
    Focusrite Scarlett 18i8
    However, there are other options (like multi-out mixer plus multi in interface, or standalone mic preamps plus interface with 4 inputs, etc). I have little experience using these however so I really cannot say much about which one(s) to get. The two mentioned above both have four mic preamps, but they are by no means the only way to do it.
    The cheapest solution I can think of is to get a second 1204USB, plug it in, and in OS X create an Aggregate device (=the two are being merged into 'one virtual' interface with two discrete stereo (= four discrete mono) inputs. Disadvantage: you keep the same (limited) soundquality of the 16 bits convertors. Getting any of the interfaces mentioned earlier will also mean you'll make the significant step up from 16 to 24 bits sound.

  • Error while saving logic script

    Hello Everybody,
    From this morning we are having this message:
    Unhandled Error (HTTP Status:500): unmarshal.invalid.xml
    While trying to saving logic scripts.
    Anyone know the solution?
    Have tried the sap notes in the other threads but they don't seem to work.
    Got BPC 10 and installed recently the SP5
    thanks for help

    We have gone through the below SAP notes already but no luck!
    http://service.sap.com/sap/support/notes/1693703
    http://service.sap.com/sap/support/notes/1649819
    -Srujana

  • Why Logic create fades while saves

    I´m tired of this;
    Every time I save, Logic creates or optimizes hte fades and I lose many lots of minutes while this is happenning?
    Is ther a way to turn of this message/option. I save almost every movement I do, but now with Flex I can make 2 or 3 editions and lost 3 or 5 minutos while save and logic creates or optimizes the fades.
    Any help??

    Have you considered using inbuilt parallelism support built into Azure storage client library to upload large files or data in parallel? client library takes care of all the corner cases here so you do not have to worry about it. You can get the latest from
    nugget here
    Here's a sample code snippet on what you would need to do.
    // Create an options object that uploads in parallel where parallelism is N (N=8 here) times the number of processor count on the client machine.
    var blobRequestOptions = new BlobRequestOptions { ParallelOperationThreadCount = Environment.ProcessorCount * 8 };
    // Use options object when uploading a large file
    var blockBlob = container.GetBlockBlobReference("largeFileToUpload.txt");
    await blockBlob.UploadFromFileAsync(
    @"d:\pathToFile\largeFileToUpload.txt",
    FileMode.Open,
    accessCondition: null,
    options: blobRequestOptions,
    operationContext: null)

  • Logic Pro 9 crashing while recording

    Hi all,
    Been having serious issues with Logic 9 crashing, specifically while recording for a long period of time (30 mins continuous).  I'm recording 3 audio tracks at most, at 44.1k/16bit.  My computer has plenty of space available, 25 gigs at the start of record.
    System specs:
    MacBook
    Processor 2.13 Ghz Intel Core 2 Duo
    Memory 2 GB 800 Mhz DDR2 SDRAM
    This computer should be able to handle this.  Here is the crash log:
    Any ideas?
    Process:         Logic Pro [17027]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.0.0 (1660.12)
    Build Info:      Logic-16601200~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [109]
    Date/Time:       2011-07-08 17:32:41.398 -0700
    OS Version:      Mac OS X 10.6.2 (10C540)
    Report Version:  6
    Exception Type:  EXC_BAD_INSTRUCTION (SIGABRT)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x925c2732 __kill + 10
    1   libSystem.B.dylib                       0x925c2724 kill$UNIX2003 + 32
    2   libSystem.B.dylib                       0x9265598d raise + 26
    3   libSystem.B.dylib                       0x9266b9d9 __abort + 124
    4   libSystem.B.dylib                       0x9266ba55 abort_report_np + 0
    5   com.apple.logic.pro                     0x003cefa4 0x1000 + 3989412
    6   libSystem.B.dylib                       0x925c79bb _sigtramp + 43
    7   ???                                     0x00000004 0 + 4
    8   com.apple.CoreFoundation                0x908338db __CFRunLoopRun + 6523
    9   com.apple.CoreFoundation                0x90831864 CFRunLoopRunSpecific + 452
    10  com.apple.CoreFoundation                0x90831691 CFRunLoopRunInMode + 97
    11  com.apple.HIToolbox                     0x953cff0c RunCurrentEventLoopInMode + 392
    12  com.apple.HIToolbox                     0x953cfcc3 ReceiveNextEventCommon + 354
    13  com.apple.HIToolbox                     0x953cfb48 BlockUntilNextEventMatchingListInMode + 81
    14  com.apple.AppKit                        0x97ad3ac5 _DPSNextEvent + 847
    15  com.apple.AppKit                        0x97ad3306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    16  com.apple.AppKit                        0x97a9549f -[NSApplication run] + 821
    17  com.apple.prokit                        0x010b4a01 NSProApplicationMain + 326
    18  com.apple.logic.pro                     0x000039b6 0x1000 + 10678
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x925880ea kevent + 10
    1   libSystem.B.dylib                       0x92588804 _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x92587cc3 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x92587a68 _dispatch_worker_thread2 + 234
    4   libSystem.B.dylib                       0x925874f1 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x92587336 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x925618da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92562047 mach_msg + 68
    2   com.apple.CoreFoundation                0x9083277f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90831864 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x908377a4 CFRunLoopRun + 84
    5   com.apple.DVCPROHDMuxer                 0x407350fb AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 297
    6   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    7   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x92580856 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x90871ddd __CFSocketManager + 1085
    2   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    3   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x9256193a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x9258f445 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x925be028 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x917f1235 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x917f0f73 TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x9181516b TimerThread + 97
    6   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    7   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x92561916 semaphore_wait_trap + 10
    1   ...idesign.framework.digitrace          0x447a46b7 XThreads_RawEvent::Wait(unsigned long) + 39
    2   ...idesign.framework.digitrace          0x447a7e61 CWriteBehinder::DoWriteBehind() + 47
    3   ...idesign.framework.digitrace          0x447a7fab CWriteBehinderThread::StartWriteBehinder() + 21
    4   ...idesign.framework.digitrace          0x447a8101 XThreads_RawThread::TaskEntryPoint(void*) + 19
    5   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    6   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x925618da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92562047 mach_msg + 68
    2   com.apple.CoreFoundation                0x9083277f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90831864 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x908377a4 CFRunLoopRun + 84
    5   com.digidesign.framework.DAE            0x43c08884 FicIsAlive + 800
    6   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    7   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x9256d86a ioctl + 10
    1   ...n.framework.PlatformSupport          0x4463c957 CSyncPrim_Semaphore_DalImp::Acquire(unsigned long long) + 65
    2   com.digidesign.framework.DAE            0x43ce2209 FWAudioCallback + 337919
    3   com.digidesign.framework.DAE            0x43cc6290 FWAudioCallback + 223366
    4   com.digidesign.framework.DAE            0x43ce245c FWAudioCallback + 338514
    5   ...n.framework.PlatformSupport          0x4463cd74 CTask_Imp::MacOSXMasterThreadProc(void*) + 142
    6   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    7   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x9256d86a ioctl + 10
    1   ...n.framework.PlatformSupport          0x4463c957 CSyncPrim_Semaphore_DalImp::Acquire(unsigned long long) + 65
    2   ...n.framework.PlatformSupport          0x44645808 CSyncPrim_AutoResetEvent_Imp::Acquire(unsigned long long) + 42
    3   com.digidesign.framework.DAE            0x43c86941 FicReportExternalEvent + 151064
    4   ...gn.framework.CoreFoundation          0x441c9fac Sys_RawThreadTask::Run() + 36
    5   ...gn.framework.CoreFoundation          0x441e7782 Sys_RawThread::ThreadIDsAreEqual(void*, void*) + 48
    6   ...n.framework.PlatformSupport          0x4463cd5f CTask_Imp::MacOSXMasterThreadProc(void*) + 121
    7   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    8   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x9256d86a ioctl + 10
    1   ...n.framework.PlatformSupport          0x4463c957 CSyncPrim_Semaphore_DalImp::Acquire(unsigned long long) + 65
    2   com.digidesign.framework.DAE            0x43cb12ea FWAudioCallback + 137440
    3   ...n.framework.PlatformSupport          0x4463cd5f CTask_Imp::MacOSXMasterThreadProc(void*) + 121
    4   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    5   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x9258f806 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9258f4c2 _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x92591158 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02b381ee GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 17454
    4   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    5   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x925618da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92562047 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x013dbf31 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x013fa8fe MIDIProcess::RunMIDIInThread() + 150
    4   com.apple.audio.midi.CoreMIDI           0x013dd149 XThread::RunHelper(void*) + 17
    5   com.apple.audio.midi.CoreMIDI           0x013dcb16 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    7   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x925618da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92562047 mach_msg + 68
    2   com.apple.CoreFoundation                0x9083277f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x90831864 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x908377a4 CFRunLoopRun + 84
    5   com.apple.DesktopServices               0x960e963f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6   ...ple.CoreServices.CarbonCore          0x917d07ae PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    8   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x92587182 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x92587718 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x92587336 start_wqthread + 30
    Thread 14:
    0   libSystem.B.dylib                       0x92587182 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x92587718 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x92587336 start_wqthread + 30
    Thread 15:
    0   libSystem.B.dylib                       0x9258f806 __semwait_signal + 10
    1   libSystem.B.dylib                       0x925bb441 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x925bb37f usleep$UNIX2003 + 61
    3   com.apple.AppKit                        0x97c3d1ed -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation                    0x904808d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x90480888 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x9258efbd _pthread_start + 345
    7   libSystem.B.dylib                       0x9258ee42 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x92587182 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x92587718 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x92587336 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x9266b969  ecx: 0xbfffe45c  edx: 0x925c2732
      edi: 0x00000000  esi: 0x43961cb0  ebp: 0xbfffe478  esp: 0xbfffe45c
       ss: 0x0000001f  efl: 0x00000286  eip: 0x925c2732   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x02376000

    Are you recording AIFF, WAV or CAF?
    25 GB is not a lot of space, easpecially if that is on your system disk. You should KEEP at least 20 % of its capacity free, so unless your disk is 80 GB or smaller, it is too little. And since you only have 2 GB RAM, you'll need that free disk space (the less RAM, the more OS X needs free disk space to "offload" ongoing processes onto.)
    Unfortunately, the crash report doesn't yield any direct clues as to why this happened (it's a 'generic' crash report). But I would urge you to record .caf files to an External FireWire disk, not AIFF or WAV to the internal.
    from
    http://documentation.apple.com/en/logicpro/usermanual/index.html#chapter=14%26se ction=9%26tasks=true
    There is a maximum recording size according to file type, as follows:
    AIFF: The AIFF file format cannot handle audio file recordings larger than 2 GB:
    For 16-bit, 44.1 kHz stereo files, this equals a recording time of about 3 hours and 15 minutes.
    For 24-bit, 96 kHz, 5.1 surround files, this equals a recording time of about 20 minutes.
    WAVE (BWF): The WAVE file format cannot handle audio file recordings larger than 4 GB:
    For 16-bit, 44.1 kHz stereo files, this equals a recording time of about 6 hours and 30 minutes.
    For 24-bit, 96 kHz, 5.1 surround files, this equals a recording time of about 40 minutes.
    CAF: If the size of your recording exceeds the above limits, choose the CAF (Apple Core Audio Format) file format, which can handle the following recording times:
    The bit depth and channel format—mono, stereo, or surround—do not affect the maximum recording size of CAF files.[/quote]
    About 13 hours and 30 minutes at 44.1 kHz
    About 6 hours at 96 kHz
    About 3 hours at 192 kHz

  • Error while executing SSIS package - Error: 4014, Severity:20, State: 11. A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: 109, output error: 0)

    Hi,
    We are getting the following error when running our SSIS packages on Microsoft SQL Server 2012 R2 on Windows Server 2008 R2 SP1:
    Error: 4014, Severity:20, State: 11.   A fatal error occurred while reading the input stream from the network. The session will be terminated (input error: 109, output error: 0)
    SQL Server Data Tools and SQL Server Database Engine reside on the same server.
    We tried the following:
    Disabling TCP Chimney Offload
    Installed Windows Server 2008 SP1
    Splitting our SSIS code into multiple steps so it is not all one large continuous operation
    The error occurs during a BulkDataLoad task.
    Other options we are investigating with the engineering team (out-sourced, so delayed responses):
    Firewall configurations (everything is local, so this should not make a difference)
    Disabling the anti-virus scanner
    Are there other things we can try?
    Any insight is greatly appreciated.
    Thanks!

    Hi HenryKwan,
    Based on the current information, the issue can be caused by many reasons. Please refer to the following tips:
    Install the latest hotfix based on your SQL Server version. Ps: there is no SQL Server 2012 R2 version.
    Change the MaxConcurrentExecutables property from -1 to another one based on the MAXDOP. For example, 8.
    Set "RetainSameConnection" Property to FALSE on the all the connection managers.
    Reference:
    https://connect.microsoft.com/SQLServer/feedback/details/774370/ssis-packages-abort-with-unexpected-termination-message
    If the issue is still existed, as Jakub suggested, please provide us more information about this issue.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Error while copy of Update Rules from ODS 0SD_O03 to InfoCube 0SD_C13

    Hi all,
    I work on a NW04s SPS9 System I would like to simply copy Update Rules (from an ODS to an InfoCube) from the BCT to the 1:1 Z-Copies of these Objects.
    To do so, I copied the InfoProviders 0SD_O03 and 0SD_C13 to Z-Versions. In SAP BCT the InfoCube is updated from the ODS. The ODS itself is updated from InfoSource.
    After successfully copying the two InfoProviders as next step I tried to copy the Update Rules from the Content version Objects to the Z-Version Objects to link them.
    Similar to copying update rules in 3.5 I tried
    - right click on "ZSD_C13"
    - choose Additional Functions - Create Update Rules"
    - choose DataSource: ODS Object "ZSD_O03"
    - choose Copy from: InfoCube "0SD_C13"
    This result in the error "0SD_C13 is not suitable as a template for copying update rules".
    Some hints that might help:
    1. The very same error occurs if I try to copy the Update Rules from 0SD_O03 to 0SD_C13.
    2. I also tried to copy both Update Rules (to C12 & C13) on a BW 3.5 system where it worked fine: The update rules from both Z-ODSs to both Z-Cubes were copied correctly 1:1 and without any errors.
    3. In the NW04s System I was able to copy the Update Rules from the InfoSource 2LIS_11_VAITM to 0SD_O01 (as well as from 2LIS_11_VAHDR to ODS 0SD_O03). So I only cannot copy Update Rules from ODSs to InfoCubes while it is possible to copy Update Rules from InfoSources to ODSs.
    4. During copy of 0SD_O03 the system warned: "InfoObject 0FISCVARNT needs to be in key for DataStore object ZSD_O03". No matter whether I move this IO to the keys of the Z-ODS, the Update Rules copy does not work.
    - This warning does not show up on BW3.5 when I copy the very same ODS. Can anyone explain this?
    - This warning is not displayed during the copy of ODS 0SD_O01, just for 0SD_O03.
    5. Obviously during a preceding test I actually must have been able to copy the Update Rules for another copy of 0SD_C13 (as I can see the Update Rules in the SAPGUI). I stopped this first test as I was not able to do the Update Rules copy for 0SD_C12.
    Yet as of today I cannot copy Update Rules this for both cubes 0SD_C13 as well as 0SD_C12. So yesterday there was no error on copying the Update Rules to InfoCube ZSD_C13, but today there is. To my knowledge nothing has been changed in the System Setup / Customizing in the mean time.
    6. For both cubes ZSD_C13 as well as ZSD_C12 it is possible to copy Update Rules that map from the BCT ODS to the Z-InfoCbes. So I can copy Update Rules from 0SD_O03 to ZSD_C13 and from 0SD_O01 to ZSD_C12. This would point in the direction that the copied ODSes are the source of this behavior?
    I am not sure whether this is a special NW04s behavior and how to use it correctly so the Update Rules can be copied.
    Please could you help on how to copy these Update Rules in NW04s or share your experience if you had similar?
    Thanks a lot,
    Werner

    Hi Vinod,
    Check the update rules for the original cube. Are they active? It appears that they contain a formula...check this too.
    Hope this helps...

Maybe you are looking for

  • Add to computer

    I have a new lap top and i'm trying to add my printer to it but don't know how it don't have a CD drive and it don't have window it is a acer chromebook how do i fine drive this

  • Scale in pricing and free goods.

    Hi All, Can anyone plz tell me ,What is the role and how to use the scale in pricing and free goods determination. Regards, Ashima

  • Adobe Acrobat X Pro Ver. 10.1.7 rendering issues

    Hello I have rendering issues with Acrobat X Pro Ver 10.1.7. When I zoom in to 100% and use the hand tool to move the image around, it moves about 1 inch then it freezes for 3-4 seconds, then I can move it again.  This happens at all zoom %, but it g

  • CSS Footer problem

    I am new in designing using css for layout, and I'm having a problem getting the page content to push the footer down. Here's the page: http://wmsgroup.com/client_temp/osps/vsc.html I have attached the style sheet. Thanks!

  • Panel Refresh

    hi all, i need a trick to avoid the flicker in my Panel when i update the information of their labels. somebody tell me something about double buffering, what's that? thanks