Packing output-

Hi,
Experts
During delivery mantained packing list through handling unit i can see what are the materials are packed in packing material like one box or pallet etc.but i need a printout of this like packing output so can you help me regarding packing output and how to mantain this tell step by step.
thanks
sunil

Hi Sunil,
PL00 - is the Std SAP Output Type for Packing List, which gives details to be packed on cartons/Gunny bag/Pallets etc.
You can get this requirement through Output determination for the outbound deliveries.
You go to this IMG path do the configuration.
SPRO>Logistics execution>Shipping-->Basic shipping functions >Output control>Output determination -->Maintain output determination for outbound deliveries here you do steps.
Maintain condition tables
Maintain output types (Standard is PL00)
Maintain access sequences
Maintain output determination procedure (Standard V10000)
Assign output determination procedures
After that maintain the condition record for that output condition type in VV21 transaction.
Hope it helps!
Preethi.

Similar Messages

  • Packing queries

    Dear Experts,
    Could you please guide.
    1) When i try to create Packing HU numbers generated. Can i pack without HU.
    2)  if i have 1050 pcs and 150 pcs free goods, i need to pack in  Mastor Cartons. Assume 100 pcs can be accomodated in a Master carton, so 1050 pcs can be accomodated in 10 full cartons and one partial carton and free goods 1 full carton and one partial carton. In all the cases HU's will be created. Can we pack without HU.
    3) Once i packed  i need to create a packing list. Packing list containts no. of master carton, partial, batch, expiry etc. May i know how to create a packing list.
    4) While packing it need to consume the packing material and cost needs to be updated in SO. For this do i enter packing material at SO level.
    Please advise.
    Regards,
    Deepu Pillai

    1)
    No. HU will always be generated in packing.
    2)
    No. same answer as in Q1.
    3)
    You can customize packing output.
    IMG -> logistics execution -> Shipping -> basic shipping function -> output control -> output determination -> maintain output determination for handling units.
    4)
    If you generate packing item in delivery, you can set movement type for this packing item (as in customizing). Then system will create material document for the packing item when posting GI. This will consume the stock and post relevant cost. This is done via material document. You don't need and should not  add the packing item in SO.

  • Urgent : automatically Printing PICK/PACK Forms

    Hi All,
    I am working on Pick/pack forms.my requirement is to print the forms automatically after creating the Transfer Order.
    Is it possible through coding or any configuration needs to be done to achieve this.
    If coding is needed then can any one help me out what code and where it has to be placed, Its very urgent.
    Thanks.

    Dear Khan,
    Please go to your shipping output procedure control data here you can find Requiremnt colomun.You maintain the Routine 32 - WM Transfer order for the Pick/pack output types.
    Maintain the output condition record in VV21 transaction.
    Still you are not full filled with that requirement you can develop your own routine with the help of ABAPer in VOFM transaction then assign routine in your output procedure opposit to Pick/pack output types.
    I hope it will help you,
    Regards,
    Murali.

  • Full HD 3D with Mac mini/AMD Radeon HD 6630M graphics?

    I am able to output full HD 3D (1080p frame packing) with my 2011 MacAir. I used SwitchResX to define a new resolution of 2205 x 1920 for a 3D beamer that is connected via an HDMI adapter. The beamer recognizes this format as 3D and displayes the 2 packed frames as 3D.
    I wonder if the same is possible with the Mac mini with AMD Radeon HD 6630M graphics. It SHOULD work the same way, but only if this is ensured, I will buy one.

    Hi skampi77,
    here are the SwitchResX settings that work for an Onkyo AV receiver, and for an JVC 3D beamer (sorry for the German):
    I connected the 3D beamer either directly or via the Onkyo AV receiver to the HDMI or (via an adapter) to the DVI output of the Mac mini. And, indeed, the output is in both cases HDMI 1.4a.
    I can output full HD 3D images and video. For slide shows, I use a beta version of Graphics Converter v8 ( I asked Torsten Lemke to implement the frame packing format. Please contact him to get access to the beta version, even for testing purposes). This version has in the slide show settings a box "convert output to frame packing" that has to be checked. For video, I use Bino <http://bino3d.org>. In Bino frame packing output is one of the options.
    In both cases, one has to switch to the frame packing format before Graphics Converter or Bino is started.
    It is helpful to use one of the outputs (DVI or HDMI) for the "control screen", and the other for the 3D output that is switched to full HD frame packing format.
    I hope this helps.
    Cheers, Reiner

  • How to process an output message after pick and pack in LM46?

    Hi,
    I've implemented the User Exit to print the HU using LM18, it's working great but no output message is processed (and indeed, the sticker is printed on my own printer instead of the one defined in my Z custom output message).
    I used LM46 to pick and pack the HU, am i missing a step?
    In other words, how to process my custom output message after the pick and pack?
    Is there some code I must add in the LM18 User Exit?

    You know, in a user exit or a BADi you can access any variable of the program you want.
    Just find what which program calls the Exit User, put a break-point in it, and find the variable you need to access.
    Then add this kind code in your Exit :
    DATA: l_var TYPE ....
    FIELD-SYMBOLS: <fs_var>    TYPE ANY.
    ASSIGN ('(PGMNAME)variable') TO <fs_var>.
    IF sy-subrc = 0.
      l_var = <fs_var>.
    ENDIF.
    Same thing for a table :
    DATA: lt_var TYPE TABLE OF....
    FIELD-SYMBOLS: <fs_var>    TYPE ANY.
    ASSIGN ('(PGMNAME)table[]') TO <fs_var>.
    IF sy-subrc = 0.
      lt_var[] = <fs_var>.
    LOOP AT lt_var ASSIGNING ...
    ENDLOOP.
    ENDIF.

  • Packing directory output to a list

    I am new to this, I have tons of directories that I am working on. I want to output the files in each directory to a comma delimited list with each list named after  the directory containing the files.  So far I have been able to write a code that groups each files underneath each directory but i'm stuck as to the list part, I need help as to packing the output into a list thanks for your assistance.
    I have gotten as far as this
    <cfset dir = ("D:\dox\")>
    <cfdirectory name="Getdir" action="list" directory="#dir#" type="All" recurse="yes">
    <cfquery dbtype="query" name="Getfiles">
    SELECT * FROM Getdir ORDER BY directory, name </cfquery>
    <CFOUTPUT QUERY="GetBoth" GROUP="directory">
    <br><B>#GetBoth.directory#</B></FONT><br>
    <CFOUTPUT>#GetBoth.name#<BR></CFOUTPUT>
    </CFOUTPUT> 

    OK, well you can use valueList() to extract an entire query column as a list.  So that is easy enough.  However that requires the correct data to be in a single column.  So you might want to look at what columns you're fetching with your QoQ, and adjust that to better suit your requirement.
    Adam

  • Web Output Pack and COM interface

    There is no forum for the Web Output pack, so I am posting this in the output server forum, as this is the closest product to it...
    Is there anyone out there using or attempting to use the Adobe Web Output Pack via the provided COM interface?
    If so, were you successful or unsuccessful? Are you passing the data via a file or dynamics into the "Data" property?
    Are you having trouble parsing tags like "^Global" from you compiled form?
    I have this strange feeling I am the only person who is attempting to use the COM interface, passing data dynamicly...

    solved verifier problem by running "deploytool" in the windows 2k shell rather than running the verifier/ deployment inside the IDE .
    The IDE seems to work for most of the packaging activities on Applications and components .
    However, there are some IDE problems with deployment - wild guess is Classpath problems - that are solved by using the deploytool outside the IDE.

  • Internal Packing list output

    Hi All,
    I have created an outbound delivery. Then i go to transaction code VL02N. There i save the data. When i click on Save ,
    Internal packing list gets printed. I have added breakpoint in the program which associated with the form for internal packing list.
    But breakpoint is not getting triggered. I had debugged , but not able to find .
    Can anyone help me for that? So that i can find out how the output is getting printed.
    Thanks and Regards,
    Rakesh

    Print program is called in Update mode so you need to activate update debugging to let execution stop at your breakpoint.
    Follow these steps.
    Put break-point in print program.
    Before you press save, activate debugging mode by entring /h in command bar.
    Now press save, program will stop in debug.
    Go to menu Setting->Update Debugging
    Now press F8 and it should stop at your break-point.
    Regards,
    Pawan.

  • Change order of key figure is not working in Web report output (using WAD)

    Hi,
    We are using BI 7.0, release 701 and level 008. We are facing problem in WAD (web report output). When ever we do 'Select filter' for key figures and 'change the order' of key figures, it does not get reflected in new order. Though drag and drop of key figures is working.
    Though same change order is working fine in Bex Analyser.
    Kindly suggest some inputs.
    Thanks.

    Hi,
    On Which Service Pack are you on?WAD has this feature of re arranging the keyfigures in BI 7.0 for SPS 14...
    Regards,
    Bhagyarekha.

  • Packing Status at Delivery Header

    We are in the process of creating a form that will include the details of the all delivery items packed on a handling unit. We want the output to be triggered automatically when the delivery has been completely packed.
    We created a requirement to look at the packing status at delivery header level.  There is a packing status field (VBUK-PKSTK) at delivery header level  and packing status (VBUP-PKSTA) at item level.
    We did not expect the delivery header level header to change to "C" until all item were "C".  However, the header level field changes to "C" when the first item on the delivery is packed.  I
    I looked through the SAP Notes to see if there was something there to address this, but could not find anything. 
    I then searched the forums and found a message from 2007 saying that you must configure item categories with "must be packed" in order for this to work. I know we do not want to configure our system that way.  We have many sites and most do not use handling units.
    However, before I have my developer add code to check all statuses at item level prior to triggering an output, I want to make sure this is what has to be done.  And I have not missed a note to correct this.
    Thanks in advance.

    HI,
           Go to transaction "SE16N" and enter table "VBUK" and give the delivery number in the field sales document number. Now you type "&SAP_EDIT" in the transaction bar and execute. Here you can change the status(Total goods movement). And see If you can actually bill the document. Kindly please let me know If you need any more information on this.
    Regards,
    Ram Pedarla

  • An output module failed. The file may be damaged or corrupted.

    Whenever I try to render something in After Effects CC 13.1.1, an error message pops up, saying "After Effects error: Rendering error while writing to file '[not going to disclose]' An output module failed. The file may be damaged or corrupted (-1610153464)."
    Screenshot of the error message:
    I tried reinstalling QuickTime (7), repaired it, updated After Effects to the latest version(as I am writing this), checked firewall software, and used other formats such as AVI.
    Adobe Media Encoder (CC 2014-latest version) won't work with me, either.
    I sent the composition to Adobe Media Encoder, and this is what I got, no progress here.
    Screenshot:
    It took a while to connect to the dynamic link server, and failed.
    This is a log of what has happened in Adobe Media Encoder.
    - Source File: C:\Users\Default.BronyGue\Documents\not done\pinkcoverart_AME\tmpAEtoAMEProject-Pink Intro1.aep
    - Output File: C:\Users\Default.BronyGue\Documents\not done\pinkcoverart_AME\Pink Intro.mp4
    - Preset Used: YouTube HD 720p 29.97
    - Video: 1280x720 (1.0), 29.97 fps, Progressive
    - Audio: AAC, 320 kbps, 48 kHz, Stereo
    - Bitrate: VBR, 2 pass, Target 5.00 Mbps, Max 5.00 Mbps
    - Encoding Time: 00:00:12
    06/29/2014 02:29:14 PM : Encoding Failed
    The Operation was interrupted by user
    (no need to worry about the above part)
    - Source File: C:\Users\Default.BronyGue\Documents\not done\moddedchill_AME\tmpAEtoAMEProject-montage1.aep
    - Output File: C:\Users\Default.BronyGue\Videos\chilledup.wmv
    - Preset Used: Custom
    - Video: 1280x720 (1.0), 29.97 fps, Progressive
    - Audio: Windows Media Audio 10 Professional, 96000 Hz, Stereo, 24 bit
    - Bitrate: CBR, 2 pass, Max 10000.00 kbps
    - Encoding Time: 00:01:42
    11/22/2014 12:24:39 AM : Encoding Failed
    The Operation was interrupted by user
    - Source File: C:\Users\Default.BronyGue\Documents\not done\moddedchill_AME\tmpAEtoAMEProject-montage1.aep
    - Output File: C:\Users\Default.BronyGue\Videos\chilledup.mpg
    - Preset Used: Custom
    - Video: 1280x720, 29.97 fps, Progressive, Quality 75
    - Audio: MPEG Audio, 384 kbps, 48 kHz, Stereo, 16 bit
    - Bitrate: VBR, 1 Pass, Min 4.00, Target 15.00, Max 18.50 Mbps
    - Encoding Time: 00:00:11
    11/22/2014 12:52:11 AM : Encoding Failed
    The Operation was interrupted by user
    - Encoding Time: 00:00:51
    11/22/2014 12:53:51 AM : Encoding Failed
    Export Error
    Error compiling movie.
    Unknown error.
    - Encoding Time: 00:00:46
    11/22/2014 08:39:46 AM : Encoding Failed
    Export Error
    Error compiling movie.
    Unknown error.
    - Source File: C:\Users\Default.BronyGue\Documents\not done\moddedchill_AME\tmpAEtoAMEProject-montage4.aep
    - Output File: C:\Users\Default.BronyGue\Documents\not done\moddedchill_AME\montage.mpg
    - Preset Used: Match Source - High bitrate
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:00:00
    11/22/2014 10:06:45 AM : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.
    I need some help! Any solutions?.
    Computer Specs:
    AMD FX-6300
    8GB 1600MHz DDR3 RAM
    NVIDIA GeForce GTX 650 Ti BOOST
    1TB 7200RPM Hard Drive
    Windows 8.1 Update 1(with latest updates)
    EDIT(11/23/2014 8:31PM PST): For some reason, other projects work for me just fine. I am not sure why it is not working on one project.
    Screenshot of a new project other than this I am rendering at the time of writing this edit:

    Can other projects can output to the same output location? Yes
    Can other projects render with the same render settings (codec, format, etc.)? Yes.
    If you create a new composition and just add a solid layer to it with no effects in the same project does it render? No. I still get the error.
    Can you render that brand new comp with the same render settings, output settings, output location etc.? Yes.
    If so, what effects are present in the offending comp? Twixtor Pro in all the cinematics/clips, Motion Tile and Transform for pan/crop & wiggle, Magic Bullet Looks and Bad TV Warping preset with just Wave Warp & Venetian Blinds for color correction, Gradient Ramp for text, Bad TV Warping preset with everything for effect, Transform for fade in/out, and ReelSmart Motion Blur v4.1.2 for motion blur.
    Also, what scripts are you using? Just the Move Anchor Point script I found from one of Mt. Mograph's videos, Summit 16 - 2.5D Minecraft Steve - After Effects - YouTube.
    Have you ever installed any third-party codec packs? (I've heard of some codec packs causing weird issues like this.) Yes, (not everything I have, just everything I can think of and find) I have K-Lite codec pack, Fraps, x264vfw, and Xvid MPEG-4 codec.

  • Output can not be issued in SapScript..

    I want to see output of outbound delivery of Packing List when I clicked print preview, i got message Output can not be issued.
    In output there is showing red incorrectly processed No handling units exit.
    For that delivery no handling units exit. I want to print delivery with out handling units.
    Plz ket me know any suggestion.

    Hi
    Check with your functinal Consultant he can help out , u need to Click on MESSAGEs and then choose a communication Method and Medium etc etc and SAVE , this ur Functional Consultant can help out and then u can see the OUTPUT when u click on PRINT PREVIEW.
    surya

  • Last send e-mail is not getting updated in PO output tab

    Hi All,
    We are in SRM 4.0 and using extended classic scenario. Recently we did a support pack upgrade from SP09 to SP12.
    After that we are facing an issue in PO output tab.
    Whenever a Po has been outputed through e-mail or printout or fax it used to get updated in the Po output tab in the fields Last output sent & Via Medium and it will show the e-mail or printer name
    to which the PO has been sent.
    But after SP12, it is always showing the e-mail maintianed in the vendor master (txn: BP). If there is no e-mail ID maintained in the vendor master means then it shows only a blank value in the PO output tab.
    It is not showing the e-mail ID to which the PO has actually been sent. But in the output log, it is showing that e-mail ID.
    SAP is working on the issue and they also suggested me to check in SDN.
    Please help me.
    Thanks.

    Hi,
    Check the item Changes to the item in the Po for which the Po Number is not being displayed in Status tab of the PR. It is possible that if the PR Number is removed  or the line is deleted in the Delivery Schedule Tab of the PO , this will not be reflected in the Status tab of the PR . E ven if the PR Number will be available in line with the Item Number in the PO.
    Dhruba

  • SB Audigy Series Support Pack 5.3 (02/24/2015)

    This software/driver pack is unofficial, not supported by Creative Labs.
    Use it at your own risk.
    Supports any model of the following Sound Blaster cards (based on Emu10kx DSP):
    - Audigy
    - Audigy 2
    - Audigy 2 ZS
    - Audigy 4
    - Audigy 5/RX
    For Audigy SE/LS/Value and Live! 24-bit cards, click here for a compatible version.
    Operating systems supported:
    32-bit and 64-bit editions of Windows 10 / 8.1 / 8 / 7 SP1 / Vista SP2 / XP SP3
    Included in the pack:
    - Audigy series driver 3.01.0039 (Windows Vista or later) (**)
    - Audigy series driver 2.09.0016 (Windows XP)
    - ALchemy 1.45.03
    - Audio Console 1.41.00
    - DDL and DTS Connect License Activation 1.00.04 (*)
    - Dolby Digital Live Pack 3.03.08 (*)
    - EAX Console 3.00.60 (Windows Vista or later)
    - EAX Console 3.00.59 (Windows XP only)
    - Feature Mode Selection Utility 2.10.07
    - Graphic Equalizer 2.10.01
    - MediaSource DVD-Audio Player 2.00.78 (***)
    - SoundFont Bank Manager 3.21.02
    - Speaker Calibrator 1.60.14 (Windows XP only)
    - Speaker Settings 2.10.05 (Windows Vista or later)
    - Speaker Settings 2.10.04 (Windows XP only)
    - Surround Mixer 4.00.76 (Windows XP only)
    - THX Setup Console 2.20.08 (Windows XP only)
    (*) Purchase and activation required, more info at http://buy.soundblaster.com.
    (**) - For Audigy 5/RX (SB1550) and Audigy 4 Series II (SB0612) this driver also supports Windows XP.
    (***) - Requires Audigy 2, Audigy 2 ZS ou Audigy 4
    Does this driver improve sound quality or performance Are there any tweaks ?
    No, this driver does not improve sound quality nor increase performance.
    No, there are no tweaks.
    If someone states that its driver improves sound quality and performance, you are being fooled, cheated.
    It is even worse that the so called tweaks come from a person who is not EVEN technically acknowledged, does NOT know anything about Windows internals, software engineering and sound fidelity that all audiophiles always look for.
    If you "feel" the sound better, that is the infamous placebo effect and there is no real proof that any tweaks work.
    In fact, I have yet to see a driver that states in its release notes that it improves sound quality.
    I've disassembled about every single .SYS driver, .DLL libraries and .EXE executables and found nothing.
    There are some undocumented registry values, but nothing related to sound quality or performance.
    Would the so called tweaks even exist, they would be in my Support Packs, you can bet that.
    Fixes and improvements:
    - Fixed Audigy 5/RX support.
    - Readded "EndPoint Utility" to enable the use of other digital devices to output Dolby Digital Live encoded audio.
    - Fixed driver installation issues on Windows 10.
    - Fixed Audigy "1" or Audigy 2 mute issue.
    - Audigy RX is now fully supported.
    - EAX Console now works on Windows Vista or later.
    - Karaoke effects now work properly on Windows Vista or later, just use EAX Console to enable them. Effects will only be applied to the Microphone input.
    - Sound Blaster Audigy Control Panel now available for all cards, but it lacks many settings available on Audio Console, so use the later.
    - Added instructions on how to install the Gameport.
    - Fixed missing speaker settings strings on Windows XP when DDL is enabled.
    - Improved driver installation, less confirmation prompts.
    - Improved setup procedure and scripts.
    - Removed Encode switcher for now, only DDL is available.
    - Installation now customizable, select what you want to install.
    - New integrated Post Driver Install Helper tweaks the driver without tampering certificate.
    - CMSS2 is now available.
    - OpenAL 64-bit support.
    - Dolby Digital Live now works on Windows 8.1 (update 1). Creative Audio Service was not being installed on that OS.
    - Special FX, Advanced EQ, Studio and Custom presets now available on Windows Vista or later.
    - Audio Console does not crash anymore on non-English localized installs. Localized resources for Online Karaoke tab were missing; added mostly localized Korean and Chinese (Traditional) resources.
    - Online Karaoke page is available for all Audigy cards on Windows Vista or later; this is NOT a new feature, but an easier way to configure the Microphone.
    - EAX Settings for Windows Vista or later includes EAX Studio, a fancy version of EAX Control Panel, no changes in functionality, except the Test button now works.
    - Added fully localized Korean and Chinese (Traditional) resources for EAX Studio, which were missing.
    Undocumented fixes by Creative (not listed in the release notes):
    - Headphone mode now sticks and does not revert automatically to Speakers mode on Windows Vista or later.
    - Special FX, Advanced EQ and Studio presets were not working on Windows Vista or later.
    Release Notes:
    IMPORTANT: Driver uninstall on Windows Vista or later
    The included driver for Windows Vista or later has a bug that causes a stop (blue screen) error when unloaded by disabling the Audigy or uninstalling the driver.
    To workaround this issue, run the KillDrv.exe utility included and restart when asked to do so. Proceed normally and uninstall all the software or only the driver.
    If you have previously installed the Audigy 5/RX driver, you MUST run this utility.
    As the KillDrv verify the driver version installed, running it won't do any harm, even if the driver version is not affected.
    HOW TO INSTALL THE GAMEPORT DRIVER
    You can find a Gameport\ReadMe.htm file in the folder where you unpacked the Support Pack.
    Just follow the steps shown in the screenshots.
    WINDOWS 8.1 OR LATER DOES NOT SAVE SETTINGS
    - Configure all settings and shutdown. Your settings will be saved.
    - This does not work if you disable Fast startup permanently or temporarily (by holding the Shift key while shutting down).
    - On Windows 10 you need to run the application with Administrator privileges (right-click and choose Run as Administrator). This is valid for all applications used to configure the card.
    OpenAL 2D benchmark in RightMark 3DSound crashes your system
    The included driver for Windows Vista or later has a bug that crashes your system if you run the OpenAL 2D benchmark using 63 buffers.
    No problem With 62 or fewer buffers.
    OpenAL 3D and OpenAL 3D + EAX benchmarks are not affected.
    Details: DRIVER_IRQL_NOT_LESS_OR_EQUAL (0x000000D1) - ctoss2k.sys
    There is no DirectSound hardware acceleration on Windows XP 64-bit (x64) with 4GB RAM or more
    The Audigy driver does not support 64-bit addressing, disabling the DirectSound hardware acceleration and causing multichannel sound to be played only in the stereo channels (front left/right).
    Workarounds:
    - install the 32-bit (x86) version of Windows XP.
    - limit to less than 4GB the amount of RAM available to Windows.
    - enable the "Memory Hole" setting in the BIOS Setup, if your motherboard supports it.
    - install and use Creative ALchemy to convert the DirectSound API calls into OpenAL, which is not affected by this issue.
    Karaoke effects make the audio play in mono
    You can avoid this issue by using EAX Console to enable Karaoke effects. Audio Console is affected by the issue.
    Optionally, follow the steps below.
    Open EAX Settings, select a Karaoke effect, then click the Edit button.
    Click on the Source (Wave) tab and change the Original sound to 100% and Pitch Shift to 0%. Click the Save environment button.
    Repeat the steps for all Karaoke effects.
    These changes will be valid only for the current speaker configuration. If desired, repeat the same process for each speaker configuration.
    MediaSource DVD-Audio Player system requirements
    - 32-bit edition of Windows XP or later
    - any Audigy 2, Audigy 2 ZS or Audigy 4 card
    Built-in Decoder on Windows Vista or later
    To use the built-in decoder, make sure it is enabled in Audio Console.
    Select "SPDIF Out (Creative SB Audigy (WDM))" as the output device of your player and then configure the AC3/DTS filter to send the stream through SPDIF.
    When you restart your computer, the Tone settings (Bass and Treble) are not applied.
    Just readjust one of the controls one time per boot.
    Equalizer and EAX effects are not available when using OpenAL or ALchemy
    Only Tone (Bass and Treble) and CMSS 3D (CMSS, CMSS2 and Stereo Surround) features are available.
    There is no sound in games with OpenAL support
    Disable Advanced EQ and Special FX by selecting "No effect" before running the game or program.
    Equalizer settings are not applied after using OpenAL or ALchemy
    After you run a game with OpenAL support or using Creative ALchemy, the Equalizer settings are applied.
    Just run Equalizer and the saved setting is loaded automatically.
    Tone settings are lost when speaker configuration is changed
    Bass and treble settings reset to their default values when speaker configuration is changed.
    Download:
    Filename: Audigy_SupportPack_5_3.exe
    File size: 120 MB
    CRC32 hash: 76110093
    SHA- hash: 1001EB673EAF532EA10B2C986F1F4046D52F6771
    Mirrors: Google Drive
    All files are property of Creative Technology Ltd, unless otherwise noted.

    Originally Posted by Dave_
    Please help me daniel_K. All I want to do is send 5.1 sound to my Sony amp (SRT-DH520). I have purchased a new SB Audigy 5/Rx [CFC0] and when I install from your pack everything looks great until I toggle the "Enable Dolby Digital Live". Then I get no sound output at all. And when I try to test the signal through the audio settigs it says "The device is being used by another application. Please close any devices that are playing audio to this device". I cant think of any other device running. When I untick the Enable Dolby Digital Live I can get stereo sound again. The DDL is authenticated. The cable is working. The amp is fine. I neeeeed help....
    Unfortunately I don't have a sample card to test personally and don't know anyone with an Audigy 5/RX.
    Anyway, I have a suggestion.
    Run EndPtUtl.exe found in the Audio Console installation folder.
    If the issue still persists, try to use the Digital Output (Coaxial/Optical) of another device, provided that you have any on your computer.
    EndPtUtl.exe enables the use of any device for outputting encoded audio.

  • No output to speakers! HELP!!!

    • Running Panther 10.3.9
    • Using Garageband 2.02 + Quatafire 620 preamp/input gizmo.
    • Headphones are connected to Quatafire and so are the external (Truth studiomonitors) speakers.
    • I can use the speakers for everything BUT Garageband! I.e. iTunes, Safari, Quicktime etc etc etc.
    • Normally GB works perfectly but only via headphones connected to Quatafire. I cannot hear GB over the speakers.
    • Ive tried configuring the internal MIDI-program (sound and Midi prefs), Ive tried the Quatafire panel and the internal sound prefs. Nothing will make GB play over the speakers.
    • Ive tried changing the GB Midi-prefs. Nothing.
    • Tried combining GB-midi prefs with numerous other midi prefs - so far no luck.
    This is driving me absolutely insane. Is GB packed with bugs or just ridiculously hard to use?

    I dunno what or who HangTime is, but I can tell you hat I dont get any sound thru my external speakers no mattter what I do.
    New or old projects. It´s all the same.
    I CAN get sound thru the internal speakers (just by switching output device) and my headphone (via QuataFire), but the dang thing wont play thru my speakers
    Since I can listen thru my headphones, I knoww for a fact that the signal gets from GB thru my QuataFire external thingy and into my headphones.
    So why the signal wont run from GB to QuataFire and the speakers (connected to QuataFire) is beyond me.
    Yes, they are connected, and as I wrote before, I can listen to iTunes, Safari etc on the speakers.
    This is why I suggested the internal Mac MIDI-application.
    This application can change the channel from which the speakers get their signal. There seem to be 10 channels, and QuataFire has allocated 2 channels to the speakers. I can control the input via this MIDI application, but ONLY input from any other application than GB!!
    ***??

Maybe you are looking for

  • OBIEE report from multiple facts at different levels

    Currently we need to develop a report with columns from 3 different facts surrounded with conformed and non conformed dimensions at different levels. After setting the hierarchial levels and putting the facts into single logical table with different

  • FS10N ERROR

    Hi, I  want to see line item display in FS10N, when i doubble click on line items its throwing error as no line item selected for the all GL A/CS . but i have selected line item display in gl master.but i am abel to see some periods only . for ex i c

  • Report Layout change issue

    Hi, I am looking to change layout of report on Home . But I am not getting the options to change the layout. Please check the attached screen shot. Regards, Rohit Tripathi

  • I'm trying to repeat an action just don't know how, for example high light a word with the same color

    On pages I have to high lighting couple of words, every time I have to go to the top to repeat the same hight light is there a way you can repeat the same color without going the long route or a short cut?

  • Oracle 10gR2 Flashback Size

    Hi, I have following configured for flashback - *.db_recovery_file_dest='/u01/app/oracle/flash_recovery_area' *.db_recovery_file_dest_size = 4G I have 3 Oracle Instances running and so, with the same above mentioned parameters, I guess, Oracle create