Global headers

Please help me in finding the xml file for global headers in OBIEE 11g.

Sneha,
global header means headers and footers or labelling....be clear in your question.
If your concerened with portal header name or the XML to change fr adding headers or footers the path is
<MW_HOME>\Oracle_BI1\bifoundation\web\msgdb\l_en\messages\
you can create custom messages also....but before changing original take a backup of it,if you change orginal it would disturb other features
ther are many files in it,depends on what you want to change tag of BI or etc etc
Hope it answers your question.
By,
KK

Similar Messages

  • [SOLVED] FFMPEG appears to be trashing bash script variables

    Hi,
    I have a directory containg MP4 files which were downloaded via youtube-dl upon which I want to extract audio using FFMPEG.
    I am using the usual find/while/read/do/done loop to process each file individually. The files were downloaded using Youtube-dl (invoked with --restrict-filenames) so the youtube video ID is recorded within the filename which can then be used to obtain the video title (ie to tag the audio with once extracted, ie ID3).
    Without FFMPEG the loop works as expected as can be seen when using echo, but as soon as I introduce FFMPEG into the loop, no such file or directory errors are reported because the filenames passed to FFMPEG are nonsense and appear to have been trashed, for instance, characters are stripped from the start or end of the filename.
    find . -name '*.mp4' | while read FILE
    do
    FNAME=${FILE%.mp4}
    FID=${FNAME: -11}
    FTITLE=${FNAME%-$FID}
    TITLE=$(youtube-dl --get-title $FID)
    # MP3="${FNAME}.mp3"
    AAC="${FNAME}.aac"
    ffmpeg -i $FILE -vn -acodec copy $AAC
    done
    Frequently green text like so reams down the terminal:
    stream #1:
    keyframe=1
    duration=0.023
    dts=355.033 pts=355.033
    size=252
    Swiftly followed by:
    00000000 21 0a 4f ff ff e0 3f fe a2 c6 b1 41 31 a0 88 41 !.O...?....A1..A
    00000010 28 3e 00 03 d2 15 25 4a 92 17 40 0b e4 f5 4c e5 (>....%[email protected].
    00000020 af 56 45 aa 31 0c eb 87 45 ac 26 54 8a ed c9 b4 .VE.1...E.&T....
    00000030 94 98 ca a8 03 34 aa bf 04 51 38 12 c9 43 80 62 .....4...Q8..C.b
    00000040 5b 16 94 99 20 18 9e cd 55 d0 6c 15 38 13 ce cc [... ...U.l.8...
    00000050 d4 2e 80 3b 10 e9 07 70 bc 23 8c 8c 84 96 8a 38 ...;...p.#.....8
    00000060 29 63 8d 87 75 5e 66 dc fa de 7f 4e 70 b2 44 09 )c..u^f....Np.D.
    00000070 39 c7 30 50 78 2b 6a b0 48 90 ba c4 14 c4 41 5c 9.0Px+j.H.....A\
    00000080 b6 3c 64 38 4d 92 3a b6 d1 01 d3 99 86 d5 54 23 .<d8M.:.......T#
    00000090 2a c4 13 49 61 50 b7 d0 3c 1e 2b 4b 90 c4 32 ae *..IaP..<.+K..2.
    000000a0 bc 6b 57 a6 de df 19 53 8e 38 66 d1 c4 fc a4 d5 .kW....S.8f.....
    000000b0 f9 6f a9 2d 20 6c eb 29 1e 1a ef 96 a6 84 82 63 .o.- l.).......c
    000000c0 0a cc 75 82 14 b4 08 09 fa 11 b8 0d e7 11 80 84 ..u.............
    000000d0 20 31 18 00 05 2a 54 af 46 ac 08 79 b9 a8 11 70 1...*T.F..y...p
    000000e0 f5 c0 2f 88 4b 27 7c a4 fd f9 f1 e4 77 53 c5 4a ../.K'|.....wS.J
    000000f0 d7 74 d1 02 80 46 40 08 16 a1 e7 .t...F@....
    It doesn't matter if the filenames originate from find or redirected from the contents of a text file. Anyone have any suggestions for workarounds?
    Last edited by jwm-art (2014-05-27 21:39:39)

    Self contained example:
    #!/bin/bash
    while read URL
    do
    echo -n "Downloading video from ${URL}... "
    youtube-dl --restrict-filenames "${URL}" --quiet
    if test $? -eq 0; then
    echo "Ok"
    else
    echo "FAIL"
    echo "Aborting..."
    exit
    fi
    done <<YT_URLS
    https://www.youtube.com/watch?v=XqdYnxv01yM
    https://www.youtube.com/watch?v=lX_o5t2YoUE
    https://www.youtube.com/watch?v=V9sI6VEDE5M
    YT_URLS
    find . -name '*.mp4' | while read -r FILE
    do
    echo "-----------------------------------------"
    echo -n "Converting ${FILE} to MP3... "
    MP3="${FILE%.mp4}.mp3"
    echo "${MP3}"
    ffmpeg -loglevel warning -y -i "${FILE}" "${MP3}"
    if test $? -eq 0; then
    echo "Ok"
    else
    echo "FAIL"
    echo "Abortingm..."
    exit
    fi
    echo
    done
    Here's the output on my system:
    $ ../ffmpeg_test
    Downloading video from https://www.youtube.com/watch?v=XqdYnxv01yM... Ok
    Downloading video from https://www.youtube.com/watch?v=lX_o5t2YoUE... Ok
    Downloading video from https://www.youtube.com/watch?v=V9sI6VEDE5M... Ok
    Converting ./Rabbit_City_White_Lable_-_Beyond_Control-lX_o5t2YoUE.mp4 to MP3... ./Rabbit_City_White_Lable_-_Beyond_Control-lX_o5t2YoUE.mp3
    Enter command: <target>|all <time>|-1 <command>[ <argument>]
    Parse error, at least 3 arguments were expected, only 1 given in string 'osmo_Dibs_-_Xultation-V9sI6VEDE5M.mp4'
    debug=1
    debug=2 1984kB time=00:02:06.95 bitrate= 128.0kbits/s
    error parsing debug value
    debug=0
    [output stream 0:0 @ 0xd90b60] EOF on sink link output stream 0:0:default.
    No more output streams to write to, finishing.
    [libmp3lame @ 0xc71de0] Trying to remove 815 more samples than there are in the queue
    size= 6971kB time=00:07:26.12 bitrate= 128.0kbits/s
    video:0kB audio:6971kB subtitle:0 data:0 global headers:0kB muxing overhead 0.004483%
    19212 frames successfully decoded, 0 decoding errors
    [AVIOContext @ 0xd9ff60] Statistics: 2 seeks, 17081 writeouts
    [AVIOContext @ 0xc77200] Statistics: 7082450 bytes read, 176 seeks
    Ok
    The first MP4 file found is converted, but alongside strange unexplained output, and then it just stops. In the first iteration of the second loop how does FFMPEG get hold of the second filename (incomplete, missing first character)? What is the "Enter command" all about? Its all very weird.
    Last edited by jwm-art (2014-05-27 20:17:57)

  • Any plans of taking Libav into concideration when building packages?

    Hi,
    I guess itæs till too early to say which side will "win" in the feude between libav and ffmpeg. As I haven't cared at all, I haven't done anything but keep using ffmpeg. But I currently had to install libav from AUR because ffmpeg just can't handle the Apple HTTP LS streams from Norwegian Broadcaster NRK, while someome said the command I used that should have worked, worked nice for them under ubuntu, whic uses libav. An indeed it does.
    Ths broke several players though, Dragon and vlc I hve noticed so far. The reason is that the dependencies (among) other things are not idential.
    Now, I won't say Arch should go with the one or the other, but it certainly would be nice if it was possible to have them both in the repos and working alongside each other when it comes to deps and conlicts with other pacjages. (Naturally they couldn't coexist on the same system.) At this point, after so much time has passed, and concidering the number of distros that have switched to libav, NOT recognizing and providing libav as an option seems very muh like taking sides, which I was under the impression from the initial discusion back in '11 that Arch wouldn't do. So if any TU ha the time, and the will, would it be posible to provide both.
    I expect minor differences in breakage and functionality to crop up mor and more often, and having bth availible could certainly be a plus.
    It's just too bad tht none of the projects spends any time whatsoever improving their documentation, which is often outdated and incorrect. Now, THAT would have been nice...
    edit: Is it corect that every package has to be compiled specifically for one or the other? I guess that's that for including them bot, then.
    Last edited by naguz (2012-08-02 23:18:48)

    DrZaius wrote:How can I reproduce this? Please show your command and the complete console output. FFmpeg should be able to do anything libav does and probably more since FFmpeg merges most stuff from libav (which occasionally cherry-picks from FFmpeg).
    Here is the output from ffmpeg (This include the command line, Best:)
    [spoiler]
    [gert@blad ~]$ ffmpeg -i http://nordond39a-f.akamaihd.net/i/no/open/bf/bf8ca71f099953f35eec1d087cc8fd5bc13ecd0d/bf8ca71f099953f35eec1d087cc8fd5bc13ecd0d_,141,316,563,1266,2250,.mp4.csmil/master.m3u8#t=10,20 -vcodec copy -acodec copy -f mp4 -absf aac_adtstoasc Moby_Dick_part1.mp4
    ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
    built on Jun 9 2012 13:50:13 with gcc 4.7.0 20120505 (prerelease)
    configuration: --prefix=/usr --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-libgsm --enable-libspeex --enable-postproc --enable-shared --enable-x11grab --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libschroedinger --enable-libopenjpeg --enable-librtmp --enable-libpulse --enable-libv4l2 --enable-gpl --enable-version3 --enable-runtime-cpudetect --disable-debug --disable-static
    libavutil 51. 54.100 / 51. 54.100
    libavcodec 54. 23.100 / 54. 23.100
    libavformat 54. 6.100 / 54. 6.100
    libavdevice 54. 0.100 / 54. 0.100
    libavfilter 2. 77.100 / 2. 77.100
    libswscale 2. 1.100 / 2. 1.100
    libswresample 0. 15.100 / 0. 15.100
    libpostproc 52. 0.100 / 52. 0.100
    Input #0, hls,applehttp, from 'http://nordond39a-f.akamaihd.net/i/no/open/bf/bf8ca71f099953f35eec1d087cc8fd5bc13ecd0d/bf8ca71f099953f35eec1d087cc8fd5bc13ecd0d_,141,316,563,1266,2250,.mp4.csmil/master.m3u8#t=10,20':
    Duration: 01:31:03.00, start: 0.100667, bitrate: 0 kb/s
    Stream #0:0: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 tbr, 90k tbn, 50 tbc
    Metadata:
    variant_bitrate : 213000
    Stream #0:1: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, mono, s16
    Metadata:
    variant_bitrate : 213000
    Stream #0:2: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p, 480x270 [SAR 1:1 DAR 16:9], 25 tbr, 90k tbn, 50 tbc
    Metadata:
    variant_bitrate : 388000
    Stream #0:3: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, mono, s16
    Metadata:
    variant_bitrate : 388000
    Stream #0:4: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 25 tbr, 90k tbn, 50 tbc
    Metadata:
    variant_bitrate : 713000
    Stream #0:5: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, stereo, s16
    Metadata:
    variant_bitrate : 713000
    Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 960x540 [SAR 1:1 DAR 16:9], 25 tbr, 90k tbn, 50 tbc
    Metadata:
    variant_bitrate : 1412000
    Stream #0:7: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, stereo, s16
    Metadata:
    variant_bitrate : 1412000
    Stream #0:8: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 25 tbr, 90k tbn, 50 tbc
    Metadata:
    variant_bitrate : 2394000
    Stream #0:9: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, stereo, s16
    Metadata:
    variant_bitrate : 2394000
    Stream #0:10: Audio: aac ([15][0][0][0] / 0x000F), 48000 Hz, mono, s16
    Metadata:
    variant_bitrate : 77000
    File 'Moby_Dick_part1.mp4' already exists. Overwrite ? [y/N] y
    Output #0, mp4, to 'Moby_Dick_part1.mp4':
    Metadata:
    encoder : Lavf54.6.100
    Stream #0:0: Video: h264 (![0][0][0] / 0x0021), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 90k tbn, 90k tbc
    Metadata:
    variant_bitrate : 2394000
    Stream #0:1: Audio: aac (@[0][0][0] / 0x0040), 48000 Hz, stereo
    Metadata:
    variant_bitrate : 713000
    Stream mapping:
    Stream #0:8 -> #0:0 (copy)
    Stream #0:5 -> #0:1 (copy)
    Press [q] to stop, [?] for help
    No longer receiving variant 5ze= 2601kB time=00:00:10.32 bitrate=2065.0kbits/s
    frame= 289 fps=8.8 q=-1.0 Lsize= 2991kB time=00:00:11.52 bitrate=2126.6kbits/s
    video:2759kB audio:227kB global headers:0kB muxing overhead 0.174383%
    [/spoiler]
    The same thing works fine runnning Libavs ffmpeg-command (but, strangly NOT running Libavs avconv, even though I thought it was basicly the same binay. I uess Apple Http is still somewhat in the early stages of implementation in both projects?)
    Might be the ffmpeg documentation is better than Libavs. I found several of the Libavs posted options to give an "unrecognzed variable" error with their ffmpeg-binary. They might have worked with avconv thought the documentaion did not mention it shouldn't work with the fmpeg one, just that you shouldn't use it. (But avconv, as mentioned, didn't work.)
    Note that I had to use the -map option with libav because it was unable to choose the highest qualty stream, it just chose the firt ones. Fmmpegs ffmpeg handled this nicely, but always stops after 2759kB of video. My theory is that it fails to travrse the "playlist" file, so it ends up with no more chunks to encode. Note hat ffmpegs ffplay handle it without a hitch, so there does indeed seem to be  bug somewhere here.
    Various other commands were tired both usin Libav and ffmpeg to the same efffect: fmmpeg got the right stream for 2759kB, Libav never got the right stream unless specified, but got the whole file.
    DrZaius wrote:libav-git in AUR seems to be filling this niche just fine. I see no reason for Arch to move libav to community or extra, and the maintenance burden of providing two similar (but different) packages, and getting the dependencies to work with both, would probably be an unreasonable expectation. However, I am not an Arch maintainer, but I can imagine that it is a large undertaking for Ioni to deal with FFmpeg alone.
    Yes, it's well and good hat it is in AUR, the problem is that replacing ffmpeg with libav breakes any video application using ffmpegs libvacodec, including vlc, Drgin etc., becuae these apllications in Arch repos are compiled for ffmpeg, not Libav.
    But as I have read a bit about it and realized this, there is simply no way to make them coexist with each other and other dependencies. (Well, unless I could find a way to make them still use ffmpegs libav, which is a separate package). Still, I don't believe this is anything arch packagers could or should do anything with. Guess it is one or the other. I guess I'l file a ug report sometime in October when I have time.
    Best: You could also use the bash script found on this page: http://nrkbeta.no/2012/04/23/test-nrks- … e-nett-tv/. Just search the page for "bash", and you will fid a comment form a user called gspr. Note tht that sript probaly have uite a few input-issues, don't run it on anything othr than nrk-URLS.
    Also, DrZaius: The URL I posted is probably NOT available outside Norway. You could go to tv.nrk.no and find a program you can watch where you ar located (basicly most of NRKs own-produced content), and then use the curl part of the mentioned script to get a dirct link. Or you could try this: http://nordond3c-f.akamaihd.net/i/wo/op … u8#t=10,20
    Sorry for all the typos, I have a replacement keyboard on the way. Someimes it writes out the key next to the key I push, and sometimes it just doesn't registrer the presses atall. Believe me, I have corrected more mistakes than the ones that are left, but they are still way too many...
    Last edited by naguz (2012-08-04 22:31:18)

  • [SOLVED] ffmpeg help

    Hi,
    I'm  failing to create a (approx) 10 sec video from a (approx) 25 sec one.
    As can be seen the resultant file is WAY too small.
    Please advise!
    Thnaks
    ----------copy of terminal------------
    $ ffmpeg -i out.mp4 -ss 00:04:18 -t 00:10:46 -async 1 -strict -2 out2.mp4
    ffmpeg version 2.1.1 Copyright (c) 2000-2013 the FFmpeg developers
    built on Dec 28 2013 21:49:15 with gcc 4.8.2 (GCC) 20131219 (prerelease)
    configuration: --prefix=/usr --disable-debug --disable-static --enable-avresample --enable-dxva2 --enable-fontconfig --enable-gnutls --enable-gpl --enable-libass --enable-libbluray --enable-libfreetype --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-pic --enable-postproc --enable-runtime-cpudetect --enable-shared --enable-swresample --enable-vdpau --enable-version3 --enable-x11grab
    libavutil 52. 48.101 / 52. 48.101
    libavcodec 55. 39.101 / 55. 39.101
    libavformat 55. 19.104 / 55. 19.104
    libavdevice 55. 5.100 / 55. 5.100
    libavfilter 3. 90.100 / 3. 90.100
    libavresample 1. 1. 0 / 1. 1. 0
    libswscale 2. 5.101 / 2. 5.101
    libswresample 0. 17.104 / 0. 17.104
    libpostproc 52. 3.100 / 52. 3.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'out.mp4':
    Metadata:
    major_brand : isom
    minor_version : 512
    compatible_brands: isomiso2avc1mp41
    encoder : Lavf55.19.104
    Duration: 00:00:25.03, start: 0.000000, bitrate: 9122 kb/s
    Stream #0:0(eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuvj420p(pc, smpte170m), 1280x720 [SAR 1:1 DAR 16:9], 8990 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc (default)
    Metadata:
    handler_name : VideoHandler
    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s (default)
    Metadata:
    handler_name : SoundHandler
    No pixel format specified, yuvj420p for H.264 encoding chosen.
    Use -pix_fmt yuv420p for compatibility with outdated media players.
    -async is forwarded to lavfi similarly to -af aresample=async=1:min_hard_comp=0.100000:first_pts=0.
    [libx264 @ 0xe529a0] using SAR=1/1
    [libx264 @ 0xe529a0] using cpu capabilities: MMX2 SSE2Fast LZCNT
    [libx264 @ 0xe529a0] profile High, level 3.1
    [libx264 @ 0xe529a0] 264 - core 138 r2363 c628e3b - H.264/MPEG-4 AVC codec - Copyleft 2003-2013 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=9 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=23 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
    Output #0, mp4, to 'out2.mp4':
    Metadata:
    major_brand : isom
    minor_version : 512
    compatible_brands: isomiso2avc1mp41
    encoder : Lavf55.19.104
    Stream #0:0(eng): Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuvj420p, 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 24k tbn, 23.98 tbc (default)
    Metadata:
    handler_name : VideoHandler
    Stream #0:1(eng): Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, stereo, fltp, 128 kb/s (default)
    Metadata:
    handler_name : SoundHandler
    Stream mapping:
    Stream #0:0 -> #0:0 (h264 -> libx264)
    Stream #0:1 -> #0:1 (aac -> aac)
    Press [q] to stop, [?] for help
    frame= 0 fps=0.0 q=0.0 Lsize= 0kB time=00:00:00.00 bitrate=N/A
    video:0kB audio:0kB subtitle:0 global headers:0kB muxing overhead 509.302326%
    miki ~/Chuli $ ls -l
    total 56264
    -rw-r--r-- 1 miki users 29063772 Dec 31 2013 Chuli_Badt.MOV
    -rw-r--r-- 1 miki users 185 Dec 31 11:28 Chuli_Badt2.MOV
    -rw-r--r-- 1 miki users 28536839 Dec 31 11:37 out.mp4
    -rw-r--r-- 1 miki users 262 Dec 31 12:24 out2.mp4
    Last edited by mibadt (2013-12-31 14:22:13)

    Why are you re-encoding instead of simply re-muxing? Using stream copy mode:
    ffmpeg -i out.mp4 -ss 4 -t 10 -codec copy out2.mp4

  • Tab pages not changed when selecting from TAB LIST

    Hi All,
    I have a form which has 15 tabs, 1st 10 Tabs are dynamic (enabled at new form instance, depending on configuration) and 11 to 15 are Static tabs visible for all.
    My problem is when i am clicking on tabs iam able to switch tabs, but when I select tab from Tab List I am not going to the selected TAB.
    Ex: when I am in TAB 1 and Select TAB15 from Tab list My form Still Stays in TAB1 and not moving to TAB 15
    Please provide me a Solution.
    My code in WHEN TAB PAGE CHANGED is
    DECLARE
    l_curr_rec NUMBER;
         BEGIN
              l_curr_rec := :SYSTEM.CURSOR_RECORD;
              --Get the Top Default Tab Page for the Form
              SHOW_VIEW('HDR_CANVAS_FIXED');
              :global.headers:=GET_CANVAS_PROPERTY('TAB_CANVAS', topmost_tab_page);
         IF(:GLOBAL.HEADERS='AS_REC_IMAGE')THEN      
    SHOW_VIEW('AS_REC_IMAGE');
    SET_VIEW_PROPERTY('AS_REC_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('AS_REC_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('AS_REC');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='TRIM_REC_IMAGE')THEN      
    SHOW_VIEW('TRIM_REC_IMAGE');
    SET_VIEW_PROPERTY('TRIM_REC_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('TRIM_REC_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('TRIM_REC');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='AS_SHIP_IMAGE')THEN      
    SHOW_VIEW('AS_SHIP_IMAGE');
    SET_VIEW_PROPERTY('AS_SHIP_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('AS_SHIP_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('AS_SHIP');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='TRIM_SHIP_IMAGE')THEN      
    SHOW_VIEW('TRIM_SHIP_IMAGE');
    SET_VIEW_PROPERTY('TRIM_SHIP_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('TRIM_SHIP_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('TRIM_SHIP');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='EXTRA')THEN      
                   ---Show the Export Canvas---------     
    SHOW_VIEW('EXTRA');
    SET_VIEW_PROPERTY('EXTRA',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('EXTRA',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('EXTRA');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSE -- DYNAMIC TABS
    --Hide all the other  static canvases
    IF (:GLOBAL.HEADERS='CT01')THEN
         GO_BLOCK('CT01');
    ELSIF (:GLOBAL.HEADERS='CT02')THEN
         GO_BLOCK('CT02');
    ELSIF (:GLOBAL.HEADERS='CT03')THEN
         GO_BLOCK('CT03');
    ELSIF (:GLOBAL.HEADERS='CT04')THEN
         GO_BLOCK('CT04');
    ELSIF (:GLOBAL.HEADERS='CT05')THEN
         GO_BLOCK('CT05');
    ELSIF (:GLOBAL.HEADERS='CT06')THEN
         GO_BLOCK('CT06');
    ELSIF (:GLOBAL.HEADERS='CT07')THEN
         GO_BLOCK('CT07');
    ELSIF (:GLOBAL.HEADERS='CT08')THEN
         GO_BLOCK('CT08');
    ELSIF (:GLOBAL.HEADERS='CT09')THEN
         GO_BLOCK('CT09');
    ELSE --ELSIF (:GLOBAL.HEADERS='CT10')THEN
         GO_BLOCK('CT10');
    END IF;
              END IF;
         END;
    Thanks,
    Durga Srinivas.
    Edited by: DurgaSrinivas_886836 on Dec 3, 2012 8:12 PM

    In your trigger, you are doing a SHOW_VIEW ('HDR_CANVAS_FIXED'); before you select the :GLOBAL.HEADERS information. I'm not sure what HDR_CANVAS_FIXED is, but I am wondering if that is what is messing you up. What happens if you either comment that out:
    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
      --Get the Top Default Tab Page for the Form
      --SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <-------------------------------------------------------Comment it out */
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        .or if it is necessary move it to after the :GLOBAL.HEADERS:
    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
      --Get the Top Default Tab Page for the Form
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <------------------------------------ Swap it with :global.headers */
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        SET_VIEW_PROPERTY ('AS_REC_IMAGE', VISIBLE, PROPERTY_TRUE);
        SET_TAB_PAGE_PROPERTY ('AS_REC_IMAGE', ENABLED, PROPERTY_TRUE);
        GO_BLOCK ('AS_REC');
      --Hide the other canvases except the Pricing Canvas
      ELSIF (:GLOBAL.HEADERS = 'TRIM_REC_IMAGE') THEN
        SHOW_VIEW ('TRIM_REC_IMAGE');
        .

  • Ffmpeg records video only, no audio

    I'm trying to record my desktop (or single programs) with ffmpeg. The video quality is okay (would be better, if I had a better pc, I guess), but somehow, I cannot record any audio. I did it with
    $ ffmpeg -s 1280x1024 -r 30 -f x11grab -i :0.0 -acodec libmp3lame -ab 128k -vcodec mpeg4 -sameq -y testtestaudio.mp4
    or
    $ ffmpeg -s 1280x1024 -r 30 -f x11grab -i :0.0 -acodec libfaac -ab 128k -vcodec mpeg4 -sameq -y testtestaudio.mp4
    but I always get a result like that:
    video:9956kB audio:0kB global headers:0kB muxing overhead 0.036333%
    which means, that ffmpeg didn't record the audio output.
    I don't know where to start to get the audio problem fixed. Has anyone a similiar problem or does someone know, why it does not record? Do you need any more information from me?

    I already sended ChemBro my script via e-mail but it might be also interesting for someone of you:
    # -V0 means verbosity level 0 for the rec command of SOX.
    /usr/bin/rec /home/hb/t_game.wav -V0 &
    /usr/bin/ffmpeg -f x11grab -y -r 15 -s 864x640 -i :0.0 -vcodec huffyuv /home/hb/t_game.avi
    #/usr/bin/ffmpeg -f x11grab -y -r 15 -s 688x544 -i :0.0 -vcodec huffyuv /home/hb/t_game.avi
    #/usr/bin/ffmpeg -f x11grab -y -r 15 -s 688x544 -i :0.0 -vcodec mjpeg /home/hb/t_game.avi
    # Do a hard kill for rec after ffmpeg's X11 recording session has ended
    killall /usr/bin/rec
    /usr/bin/mencoder -ovc copy -oac copy -audiofile /home/hb/t_game.wav -o /home/hb/game.avi /home/hb/t_game.avi
    rm /home/hb/t_game.avi
    rm /home/hb/t_game.wav
    You have of course to adjust the output path for audio and video. I couldn´t make rec really "silent" and you´ll see the volume meter being written to the console. Not nice but it works....:D

  • Problems with format converter

    I need help.
    I had to convert a movie that used my PC for 26 hours, so it can be played in Apple TV. It was in WMV format.
    But after been converted the Quick time does not recognize the movie.
    I saw the file information and has no information in the file format.
    Below is the log file of the converetd movie:
    Duration: 02:19:03.1, bitrate: 1949 kb/s
    Input:
    Stream #0.0: Audio: wma9, 44100 Hz, stereo, 1411 kb/s
    Stream #0.1: Video: wmv3x, 720x576, 25.00 fps, 1860 kb/s
    Output:
    Stream #0.0: Video: h264, 1280x720, 23.97 fps, q=2-31, 2500 kb/s
    Stream #0.1: Audio: mpeg4aac, 48000 Hz, stereo, 160 kb/s
    Stream mapping:
    Stream #0.1 -> #0.0
    Stream #0.0 -> #0.1
    no need for a SAR
    VBV buffer size too small, using 2920 kbit
    using cpu capabilities MMX MMXEXT SSE SSE2
    Video:2543079kB Audio:146413kB Global headers:0kB Muxing overhead -155.779698%
    slice I:876 Avg QP:20.64 Avg size: 29780
    slice P:199106 Avg QP:23.69 Avg size: 12948
    slice I Avg I4x4:30.0% I8x8:0.0% I16x16:70.0%
    slice P Avg I4x4:6.7% I8x8:0.0% I16x16:30.2% P:28.9% P8x8:0.0% PSKIP:34.2%
    kb/s:2497.0
    Message was edited by: Pedro Santos

    I'm afraid that stuff in the log is beyond me, but it seems either you or the decoder are trying to change the frame rate. I also believe that your target rate is too high given your source materials bitrate although I doubt this is causing you a problem.
    I'm also not sure why mpegstreamclip would be asking for mpeg2 playback components when you are trying to convert from a WMA, or if it is that you have converted your DVD's to WMA so as you can convert them to h264 in a second encoding then I'm not sure why you would do this.
    To be honest I'm not sure if it's your WMA's that have a problem or your conversion that's going wrong, if you have a small sample of your WMA and care to email it to me, I'll take a look at it for you.

  • Globally changing headers, footers, and menu bars

    Hello all!
    Lets say I'm going to create a website that consists of 100 pages which all contain an identical menu bar. If I decide to add one more item to the menu bar, how can I go about doing so by making changes to 1 file instead of all 100 files? Is it possible to do this using HTML? Does Dreamweaver support this type of functionality?
    Thanks,

    This would mean that I will need to change all the extentions for my web pages from HTML to PHP. Is there a solution for this
    that will still allow me to keep my HTML extention?
    Thanks for the reply!

  • Repeated column headers in Crosstab report when exported to Excel

    I have created a Cross tab report and wanted to export it in the format "Microsoft Excel(97-2003) (*.xls)", as the formatting of the report is lost in Excel  Data Only format. But when I export the data the column headers are repeated in the Excel. Is there any solution to avoid repeated column headers without losing the formatting of layout?

    I suppose one answer we should have before anything else;
    Does the export work from the CR designer?
    You may also want to see the following:
    How to WYSIWYG SAP Crystal Reports Export to XLS
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Infotype screen headers needs to be changed for all the infotypes

    Hi Guys,
    This would be for a global implementation question.
    For the US for a particular region, the screen header needs to be changed for all the infotypes.
    The existing field (in the infotype header) is Employee Group which needs to be replaced with employment status.
    The know how to change the headers but my question is STAT2 exists in IT 0000 but does not exist in 0001, 0002 0007.........etc
    When i go to Table T588J to add an entry , Screen Header 42......,
    I get an error " No Field STAT2 exists for infotype 0001"
    No field STAT2 exists for infotype 0001.
    Message no. PG811
    Diagnosis
    No STAT2 field exists for infotype 0001.
    Procedure
    Please contact your system administrator.
    Procedure for System Administration
    In Customizing, determine the incorrect entry in Personnel
    Administration in the Header structure per infotype view, step " Determine infotype header and correct it
    I would like to have some inputs from you guys ..... Any Suggessions...
    Thanks,
    Aastha

    Hi Aastha,
    Correct me if I am wrong.
    First you need to maintain the header in T588J.
    Screen header of an infotype is defined in view V_582A_B. We can define one screen header for employee and another for applicant in view V_T588I. The header modifier selected from view V_T588I has a definition in table T588J, which finally gets shown on the screen.
    Depending on the transaction class (A = Personnel Administration, B = Recruitment) and the country grouping, a header modifier is assigned to the infotype header in the u201CHeader Modificationu201D view V_T588I.
    For example like
    Screen Header / Tr. Class / Header modifier
    00                    /        A      /  60
    In the view u201CHeader Structure per Infotypeu201D (V_582A_B), a header has been assigned to every infotype. It also determines whether the data is valid from the system date or the start date of the infotype record
    Hope this is useful.
    Regards
    RK

  • How can I search for a string like a partial IP address in the global search

    When searching for a string like "10.255." the global search finds messages containing "255" or "10" and both.
    This happens no matter whether quotation is used or not.
    When quotation is used it probably will match on the given order as well, but beeing in the timezone '+0100' the string "10" is always found first (in the email headers...).
    Is there a way to tell the global search not to use '.' or any other character as whitespace?

    When searching for a string like "10.255." the global search finds messages containing "255" or "10" and both.
    This happens no matter whether quotation is used or not.
    When quotation is used it probably will match on the given order as well, but beeing in the timezone '+0100' the string "10" is always found first (in the email headers...).
    Is there a way to tell the global search not to use '.' or any other character as whitespace?

  • Removing Headers - No Template

    Hello,
    I inherited a RoboHelp project, orginally developed in X5.
    The author hard-coded the header information (Name of Book >
    Topic Title) with no template. I would like to remove the header
    information and use the Breadcrumbs feature.
    The project has approximately 600 topics, removing the
    headers individually is time-consuming. How I can globally remove
    all the headers? I thought about creating a new template, attaching
    the topics and then remove the header from the template. My concern
    with this option is loosing the Return to Top functionality, there
    is a hyperlink in the footer to the top of the page.
    Your assistance is welcomed.

    Hi Chris
    I think you will struggle a bit with this, as RoboHelp is
    probably trying to be ever so helpful and attempting to calculate a
    relative path based on the folder.
    One thing you may wish to consider is creating a small little
    JavaScript that you can insert. The script would simply perform a
    "Write in" of the code. Because it would be happening via script,
    RoboHelp should then leave it as is. I'm not certain of this next
    part, but you might even notice that RoboHelp stops being irritable
    when you work with templates. Maybe some of that IBS is stemming
    from RoboHelp attempting to calculate those paths.
    Just thinking out loud here... Rick

  • Most efficient way to globally shift page content

    Hi folks,
    I decided to start my InDesign career with something nice and simple: a 326-pp book divided into 57 sections.  I just got my first POD proof back, and it all looks good – except that I would like to shift everything down the page by a pica or a quarter of an inch.
    The master page setup in my book is not the most efficient.  I have an A-master in each story document (= chapter = section) with nothing on it but a single column with margin settings. Then I have two chapter title page masters (recto & verso) and two body text masters (recto & verso).  I can modify the masters on my sync source story document, but when I try to sync the changes through the other story documents, I get erroneous placement of headers, and I lose the story- (i.e., chapter-) specific title text (which is entered in the title master pages).
    I have been looking for a global fix. I tried adjusting the top margin in the A-master page, but the margin doesn't seem to push page elements down.  Another possibility is to set up a global crop routine in Acrobat (my final output is PDF), and then add the material chopped from the bottom back to the top (also in Acrobat).  I'd like to find some way of pulling off the necessary shift in InDesign, however.  I have a gut feeling it's possible, but a search of the InDesign Help material hasn't turned up anything yet.
    Any thoughts?
    TIA
    Richard Hurley
    Grass Valley MultiMedia

    "Use the AdjustLayout.jsx, a sample script that ships with InDesign. Go the the Scripts Panel and find it there and double-click it,"
    Neat. 
    The Acrobat crop is the way to make this happen in a hurry, but I had a good time playing with the Script Panel. Thanks for letting me know about it.

  • Display of  Row and Column Headers in NW2004s Bex Analyzer

    Hi all,
    when I open a query with the NW2004s Bex Analyzer (Excel)Frontend <b>Row and Column Headers are not visible</b>. I need to go to <b>"Tools-Options" and check the box  for "Row and Column Headers" which seems to be unchecked by default</b>.
    Is there <b>a possibility to make the Row and Column Headers visible by default when I open a query</b> so that I don't have to use Tools-Options every time.
    Thanks
    Alex

    This is fixed with SP8. The default template doesn't have this specified in SP7. It's a very easy fix. Just specify that the column headers are specified by default. Then save this new workbook as the global workbook template such that all queries use this new template. You can customize this standard template however you like!

  • OSB10gR3 - Global Variables in Oracle Service Bus

    All,
    I have three proxies in my application. I want to use the same variable in all the proxies. I am not sure how to do this. Is there any possibility other than using Transport Headers.
    Thanks,
    Bals.

    Hi Bals,
    Can you explain more?
    OSB - global variable substitute?
    Re: Are there global variables in OSB??
    Regards,
    Anuj

Maybe you are looking for

  • Using RSA1GEND Report for transports

    Hi, I did a search on term RSA1GEND and did not get any results. Has anyone had to run this report program to ensure the transport of the generic delta datasource completed successfully? I am getting an error from the destination system saying that .

  • Can anyone explain why I cannot restart my computer after apple hardware test with no problem found

    Can any body help when starting computer apple hardware test appears following test, no problem found but cannot restart computer apple hardware test appears again How can i skip apple hardware test?

  • Mac Pro Late 2013 USB problems / freezing

    I have a quad-core CPU Mac Pro late 2013 (Model Identifier: MacPro6,1).  MacOS X 10.9.5. I have had all sorts of USB devices hooked up to it.  At any one time, I usually have all 4 ports filled.  I have a 3TB USB 3.0 disk that stores my large files,

  • Illustrator CS6 mac performance issues

    Hi there, Ever since I've been using Illustrator CS6 on my Macbook Pro Retina, I have noticed the simple, but anoying performance issues. The scrolling is so laggy, it gets irritating to move arround the project. Is there any problem with the softwar

  • Installing on Dell Latitude D420 - mount external DVD player

    when i choose No 2 'Select Packages' from the setup menu i try choosing 'mount the cd-rom and install from there'. But i get 'no cd drives were found'. I understand that my cd/dvd drive isn't mounted, but i can't find out how to mount it. I thought i