Audigy 4 and Reciever/Amp simple question

Hi all,
Despite inundating myself with what is probably TOO much information from the knowledge base and forum, I could really do with an answer to what is essentially a pretty simple question....
I recently got an Audigy 4 sound card and external io hub. Lovely bit of kit. Very nice. I only really use it to watch the odd dvd and listen to music with WMP9.
I have a Sony multi-channel receiver/amp with 5. speakers attached.
The amp has multiple digital connections - all either optical or co-axial. (and individual 5. analogue too)
These currently accept optical links from my dvd player and xbox. Lovely.
So, I would prefer to use the digital connections (nice and easy cable approach as with xbox) but I think I'll only get 2 channels when I play dvd... So what is the best way to connect the two....
Thanks
Glen

The thing about that kind of digital connection is that involves compressing 5. channels into the space of 2, using proprietary encodings. This makes sense in terms of storage space savings (i.e. more room on that DVD for special features), or if bandwidth is constrained (i.e. broadcast TV can fit 5. into the space originally designed for stereo), but the only way it makes any kind of sense for getting audio a few feet from the soundcard to a receiver or speaker system is because nothing more direct ends up being available. The result is that your xbox needs a high-powered chip to make something very (and unnecessarily) complex seem simple. Your Audigy does not have that; it does not have the ability to make that kind of 5. audio for your receiver to then decode.
Your Audigy does, in fact, have the ability to output 5. digitally, in the digital space that 6 full-range channels need, using a single cable; but your receiver, like virtually all of such, doesn't accept it. CL digital speaker systems have a "Digital DIN" input which uses it, but your receiver does not have a "Digital DIN" input, nor any equivalent of that. Even if it did, there's still a problem, because it's muted for DVD-Audio's higher-resolution formats, purely as an effort to prevent consumers access to high-resolution digital audio signals that are not encoded, for copy-protection reasons.
Because DVD 5. soundtracks are pre-encoded on the DVD, you don't need the Audigy to be able to encode. All that is needed is to get the soundtrack from the DVD to your receiver as is. The Audigy can do that. As the other post indicates, the keys are to tell the DVD player software to output digital, and to tell the Audigy not to decode.
Under the covers, that actually uses the Audigy as a 2-channel soundcard, and the rest of its channels are "wasted." None of its real multichannel capabilities can actually be used with a "digital" connection like that. However, if all you do is watch DVD's and listen to stereo audio files, especially if your receiver has features to simulate full surround from stereo, you may not care.
Personally, my strong preference is for the multichannel analog hookup, although I might set up both types so I could compare the sound of the receiver's decoding with the Audigy's decoding.
Things you can't do when using an external decoder hookup:
. Use the soundcard to adjust volume while listening to DD/DTS multichannel soundtracks (though it's best to use the receiver to adjust volume all the time, actually).
2. Hear any other sound sources while listening to DD/DTS multichannel soundtracks.
3. Get multichannel audio from PC games.
4. Get multichannel upmixing using CL's CMSS feature.
-Dave
[email protected]

Similar Messages

  • Applecript and xcode. Simple question, unknown answer. help!

    Hello,
    I am completely new to XCode and have been trying to use some self-made applescript libraries for a new Applescrip-xcode app.
    My question is just how to call from my main script (applescrip) the functions inside those libraries. I used to do something like this (and works fine) when using applescript editor:
    set library_file to "pathtolibFolder:myLibrary.scpt"
    set myLibrary to (load script file (library_file))
    set aVariable to aFunction() of myLibrary
    This code (I think obviously) does not work in xcode, and I think there should be somewhere something like:
    #include "myLibrary.scpt"
    Those self-made-libraries are already compiled and have been imported (non .applescript but .scpt), de-compiled and re-compiled by xcode correctly (no errors), but I don't know where I have to put the connections to those libraries in my project. I'm sure the answer is simple but I'm unable to find it by myself.
    Thanks!
    Message was edited by: rampol

    Replying myself... I think I've found the answer, not yet tried but looks nice. I post (paste) it here cos it might be useful to someone. I'll let you know if that works:
    How could I include an applescript as its own ASOC class?
    It's pretty straightforward. In XCode, Make a new file ... class... ASOC.
    And you can basically paste in your applescript into the middle of the file that is created. Make sure that you change the names of any handlers you want to call from outside the class into ASOC methods by adding an underscore between name and parentheses; i.e. from doThething() to doTheThing_()
    A typical applescript handler:
    property aProperty : "a string"
    global aGlobal
    on doTheThing(withThis)
    return retVal
    end doTheThing
    as its own ASOC class:
    script aScriptClassName
    property parent : class "NSObject"
    property aProperty : "a string"
    global aGlobal
    on doTheThing_(withThis)
    return retVal
    end doTheThing_
    end script
    Then, to call the methods in your new ASOC class from another ASOC class, the easiest thing to do is add your new class to your application's Interface Builder NIB and connect it to a property in the ASOC class you want to call your methods from.
    property myOtherClass : missing value
    myOtherClass's doTheThing_(itsInput)
    -------------------------------------------------

  • Audigy 4, and its software - some questions, probl

    Hello.
    I bought Audigy 4 oem yesterday.
    Is there any way to apply settings from equalizer in games? It doesn't works in games. And even doesn't start during play (error occures). I really need to adjust.
    I found bass and treble settings in mixer, and it works in games, but... I heard that, when those settings are applied, resampling is 44kHz instead of 92kHz. Is it true?
    [sorry for my english]Message Edited by najfeld on 07-28-2006 06:54 AMMessage Edited by najfeld on 07-28-2006 07:8 AM

    I think the problem is more a codec problem than a driver issue: that the codec (or a part of the codec) somehow got corrupted. Try to re-install the codec software with mpeg4 support and see if it works.
    Good luck!

  • EJB 3.0 and jndi lookup (simple question)

    hi all,
    i am newbie on Weblogic Application Server and i have some issues,
    i have weblogic application server 10.0, also i have oracle timesten in-memory database, i have configured datasource and deploy my ejb 3.0 application, but i could not done jndi lookup?
    here is my example:
    1. one stateless session bean :
    import javax.ejb.Remote;
    @Remote
    public interface InsertSubscriber {
         public void insertSubscriber(SubscriberT subscriberT);
    } 2. here is it's implementation :
    @Remote(InsertSubscriber.class)
    @Stateless
    public class InsertSubscriberBean implements InsertSubscriber {
         @PersistenceContext(unitName = "TimesTenDS")
         private EntityManager oracleManager;
         public void insertSubscriber(SubscriberT subscriber)
              try {
                   System.out.println("started");
                   oracleManager.persist(subscriber);
                   System.out.println("end");
              } catch (Exception e) {
                   e.printStackTrace();
    }3 and my test client :
    public class Client {
         public static void main(String[] args) {
              Context ctx = null;
              Hashtable ht = new Hashtable();
              ht.put(Context.INITIAL_CONTEXT_FACTORY,
                        "weblogic.jndi.WLInitialContextFactory");
              ht.put(Context.PROVIDER_URL, "t3://192.9.200.222:7001");
              try {
                   ctx = new InitialContext(ht);
                   InsertSubscriber usagefasade = (InsertSubscriber) ctx
                             .lookup("ejb.InsertSubscriberBean");               
              } catch (NamingException e) {
                   e.printStackTrace();
              } finally {
                   try {
                        ctx.close();
                   } catch (Exception e) {
                        e.printStackTrace();
    }what i did incorrect ???
    i got error like this : Name not fount exception
    when i tried to view jndi tree on weblogic server application console i found this :
         Binding Name:     
    TimestenExampleTimestenExample_jarInsertSubscriberBean_InsertSubscriber     
         Class:     
    test.InsertSubscriberBean_o7jk9u_InsertSubscriberImpl_1000_WLStub     
         Hash Code:     
    286     
         toString Results:     
    weblogic.rmi.internal.CollocatedRemoteRef - hostID: '2929168367193491522S::billing_domain:AdminServer', oid: '286', channel: 'null'what does it mean how i can done lookup to jndi ?
    Regards,
    Paata Lominadze,
    Magticom LTD.
    Georgia.

    Hi All,
    I am using the weblogic cluster with session replication and EJB 2.0 with Local entity beans.
    for fail-over session should be replicated to another server so we can achive the same session if 1st server fails.
    Suppose i m using two managed server(server1,server2) in the cluster.I am storing the object of class ABC into session and object contains the instance of Local-EntityBean home but i put that as a transient.I have also override the readObject and write object method.
    when write object is called on 1st server,readObject method should be called on second server so we will be sure that session is replicating properly.
    pleaase find the code below : -
    public IssuerPageBean() {
    initEJB();
    private void readObject(java.io.ObjectInputStream stream) throws IOException, ClassNotFoundException {
    stream.defaultReadObject();
    initEJB();
    initializeCommonObject();
    private void writeObject(java.io.ObjectOutputStream stream) throws IOException {
    stream.defaultWriteObject();
    private void initEJB() {
    try {
    ic = new InitialContext();
    issuerHome = (LocalIssuerHome) ic.lookup("java:comp/env/Issuer");
    } catch (NamingException e) {
    e.printStackTrace();
    in my case if i am calling the constructor IssuerPageBean(),it calls the initEJB() method and lookeup the entity local home properly but when readObject method is called on another server only initEJB() method is called directly and getting the exception below :
    WARNING: Error during create -
    javax.naming.NameNotFoundException: remaining name: env/ejb/Client
    at weblogic.j2eeclient.SimpleContext.resolve(Ljavax/naming/Name;Z)Ljavax/naming/Context;(SimpleContext.java:35)
    at weblogic.j2eeclient.SimpleContext.resolve(Ljavax/naming/Name;)Ljavax/naming/Context;(SimpleContext.java:39)
    at weblogic.j2eeclient.SimpleContext.lookup(Ljavax/naming/Name;)Ljava/lang/Object;(SimpleContext.java:57)
    at weblogic.j2eeclient.SimpleContext.lookup(Ljavax/naming/Name;)Ljava/lang/Object;(SimpleContext.java:57)
    at weblogic.j2eeclient.SimpleContext.lookup(Ljava/lang/String;)Ljava/lang/Object;(SimpleContext.java:62)
    at weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(Ljava/lang/String;)Ljava/lang/Object;(ReadOnlyCont
    extWrapper.java:45)
    at weblogic.jndi.internal.AbstractURLContext.lookup(Ljava/lang/String;)Ljava/lang/Object;(AbstractURLContext.jav
    a:130)
    at javax.naming.InitialContext.lookup(Ljava/lang/String;)Ljava/lang/Object;(InitialContext.java:347)
    at com.lb.equities.veda.tools.salesvault.jsp.ClientPageBean.initEJB()V(ClientPageBean.java:218)
    at com.lb.equities.veda.tools.salesvault.jsp.ClientPageBean.readObject(Ljava/io/ObjectInputStream;)V(ClientPageB
    ean.java:191)
    at java.lang.LangAccessImpl.readObject(Ljava/lang/Class;Ljava/lang/Object;Ljava/io/ObjectInputStream;)V(Unknown
    Source)
    at java.io.ObjectStreamClass.invokeReadObject(Ljava/lang/Object;Ljava/io/ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava/lang/Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava/lang/Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava/lang/Object;(Unknown Source)
    at java.util.HashMap.readObject(Ljava/io/ObjectInputStream;)V(Unknown Source)
    at java.lang.LangAccessImpl.readObject(Ljava/lang/Class;Ljava/lang/Object;Ljava/io/ObjectInputStream;)V(Unknown
    Source)
    at java.io.ObjectStreamClass.invokeReadObject(Ljava/lang/Object;Ljava/io/ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava/lang/Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava/lang/Object;(Unknown Source)
    at java.io.ObjectInputStream.defaultReadFields(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava/lang/Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava/lang/Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava/lang/Object;(Unknown Source)
    at weblogic.common.internal.ChunkedObjectInputStream.readObject()Ljava/lang/Object;(ChunkedObjectInputStream.jav
    a:120)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(Ljava/lang/Class;)Ljava/lang/Object;(MsgAbbrevInputStream.java:
    121)
    at weblogic.cluster.replication.ReplicationManager_WLSkel.invoke(ILweblogic/rmi/spi/InboundRequest;Lweblogic/rmi
    /spi/OutboundResponse;Ljava/lang/Object;)Lweblogic/rmi/spi/OutboundResponse;(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(Lweblogic/rmi/extensions/server/RuntimeMethodDescriptor;Lweblogic
    /rmi/spi/InboundRequest;Lweblogic/rmi/spi/OutboundResponse;)V(BasicServerRef.java:492)
    Please help .
    Thanks in Advance.
    Edited by hforever at 03/04/2008 7:28 AM

  • html:select and html:options simple question  - please help

    Hi Friends,
    I am having a problem, please help me .I want to run a query and display all the lastnames of all the users in my database.Here are my files:
    UserForm.java
    public class UserForm extends ActionForm{
         private name firstName;
         private name lastName;
         //all getter and setters
    viewuser.jsp
    <html:select property="lastName">
        <html:options collection="users" property="lastName" labelProperty="lastName" />
    </html:select>
    and my Java Utility class method
    public ArrayList getusers() throws Exception {
             ArrayList aList = new ArrayList();     
              Connection con = ConnectionUtil.getConnection();
              PreparedStatement stmt = null;
              try {
                   stmt = con.prepareStatement("select last_name from USERS);     
                   ResultSet rs = stmt.executeQuery();
                      if (rs.next()) {
                          aList.add(rs.getString(1));
                      }else {
                           return null;
                      rs.close();
                      return aList;
              } catch (SQLException e) {
                   e.printStackTrace();
                   throw new ServiceProcessingException(e.getMessage());
              } finally {
                   ConnectionUtil.closeStatement(stmt);
                   ConnectionUtil.closeConnection(con);
         }My problem is what i need to do in my Action class,so that it sets the "users" variable
    properly and i would be able to read that variable in my jsp and display the lastname
    of all the users.I am tryin this but failing badly:
    public class UserAction extends Action{
      ArrayList userssList = Utility_class_obj.getUsers();
      request.getSession().getServletContext().setAttribute("users", usersList);Please Please help,I would really appreciate your help.
    Thanks

    Thanks a lot friend...this time i made it work my style,next time i will use tha mehod.But I think I am not doing it the right way,please correct me:
    This is the method in my utility class where i run the query and I doubt I am not doing it right here:
    PreparedStatement stmt = null;
    ViewForm vForm = null;
    try {
    stmt = con.prepareStatement("SELECT LAST_NAME FROM   USERS_ADD");     \
    ResultSet rs = stmt.executeQuery();          
    while(rs.next()) {
           vForm = new ViewForm(rs.getString(1));          
          aList.add(vForm);          
       rs.close();
       return aList;          }
    }And I made this constructor in my viewForm class:
    public ViewForm(String lastName){          this.setLastName(lastName);     }I do this in my Action class then:
    ArrayList pList = csDAO.getUsers();  
         if(pList  != null){         
         request.getSession().getServletContext().setAttribute("plist", pList);      
    }And finally this in my jsp:
        <html:select property="lastName"> 
        <html: options collection="plist" property="lastName" labelProperty="lastName" /> And it works,but i don't think I can keep adding constructors to my form class like that,and moreoever if I want to search by first name ,there would be a conflict between 2 constructors,so can someone please tell me the right way to do this.
    Thanks
    Mick

  • Upgrading my wife to 4G from a CDMA and had a simple question about the SIM.

    Hi,
    I'm planning on upgrading my wife from the Droid to the Droid 4 for Christmas. I intend to buy the new phone through ebay to save a little money and I was wondering how that would work out with the SIM card. Can I just call Verizon and ask for a 4G SIM card or do I need to do something else?

    Yep, you can call and ask them to send you one or you can pick one up at your local Corporate Verizon store

  • Moving Final Cut Project to External Hard Drive...Simple Question!

    I'm new to Final Cut, Macs and External Hard Drives and have a simple question:
    I've created a project in Final Cut. I would like for Final Cut to be stored on my mac, but all project/media files to be stored on the External Hard Drive. Which files do I move to the hard drive and what settings to I have to change for Final Cut to be able to locate them?
    Many thanks!

    Well, you should always store the Application and the project file on your main OS drive. And yes, always have an external for the media. In FCP, open the SYSTEM SETTINGS in the FCP menu and you will see the interface for setting your Capture Scratch disk.
    The files you move default to the DOCUMENTS folder, and are in the FINAL CUT PRO DOCUMENTS. The Capture SCRATCH, RENDER and AUDIO RENDER files.
    Do yourself a favor and glance at that manual...or the FCP tutorials. This is FCP basics 101.
    Shane

  • Current Year and current month?simple question

    How can i get four Digit current Year and two digit current month. So if is march it should get me as 03 and the Year as 2002. Please do help me, is a simple question isn't it ?. Thanks for your earliest response.
    Thank you.

    i have a directory structre of the format
    REPTS2000209/E200209-98000001
    in which 2002 is current YEAR
    09 is current month
    and 9800001 is the code i would submit(list box) from a form
    so what i need is a program that can generate the above path and open that particular PDF file
    so basically E200209-98000001.pdf is the PDF file.
    i am submitting it from JSP page. PLEASE HELP ME how can i program.

  • This might be a simple question.   On those sites that do not differentiate between models when on the internet I.e. Facebook when after your comment and you cannot hit "enter" on an iPad for examp. And speed is slow to connect.  What is = to post?

    This might be a simple question. On those sites that do not differentiate between CRT, laptop, tablet etc. such as an iPad Mini and using the Facebook site fir example when going to post a comment and you do not have a enter button on the IPad and the speed is slow how do you get your comments to post if we do not have a enter button? 
    <Email Edited By Host>

    I don't have facebook so I cannot answer but for your personal security, I have asked the hosts to remove your e-mail address.   It is very unwise to publish this.

  • Simple question about telnet and characters

    Hi all,
    We've installed for the first time a SUN machine. So i think it's for a SUN expert a very simple question.
    Normally when i type a special character it will be dispayed like " � " [alt+132]
    But when i use a telnet session and i type "alt+132" i get a "d" and not "�".
    Does someone know where i must start to find out how this works ?
    Thanks you very much.
    ESP

    This is probably related to the locale your server is in. I don't remember the default locale a box is installed in if you don't specify. I think its "C". I use the UTF-8 or en_US.ISO8859-1 locales at home. At work, usually C but sometimes applications may require UTF-8. BEA Weblogic required this for a project a while back. This is defined in /etc/init/tz.

  • Simple question about flex and AS 3.0

    Hi, this might sound like a simple question so I apologize...
    I have both a copy of flex 2 and 3, and i want to simply code in AS
    3.0 not mxml. I referred to the help of both flex 2 and 3, and all
    i could come up with is "you can add dynamic behavior to your
    documents using actionscript", which means to me, you only write
    your functions in AS and create instances with mxml (...ugh).
    personally, i find mxml to be ugly (mainly because it looks like
    html to me), and i'd rather not use it. coming from programming in
    an IDE in Java, it seems like it would be nicer to have something
    similar, all the while having the power and cool features of flash.
    I'm not fully educated in this matter so i understand that i could
    be totally wrong.
    i mean, if i have to code in mxml, i will. i'm a web
    programmer for a living, and if a more experience programmer said
    something like "if you don't code mxml in flex, you'll never get a
    job coding in flex", i would trust the advice, and learn the ugly
    code. :)
    yes, i do have Flash cs3, it's great but it seems like a pain
    to me the way you organize classes.... i've only seen a few
    tutorials, ones that explain how you cannot simply import a custom
    class, you have tell your movie to link to it, put it in the same
    directory, or manually name the package, it's sort of confusing.
    my main point here is that i'm very eager to start building
    apps in straight AS 3.0 instead of using flash cs3 (for some
    projects), and it would be cool to get some help or be pointed in
    the right direction.
    to simplify:
    can i write AS 3.0 and only as 3.0 in flex 2 or 3? how? can
    you link me to a tutorial? any advise?
    thanks!

    Hey William, thanks for the post. It's a great coincidence
    because I'm reading that book as well. I'm about half way through
    it, and I love it. I installed mxmlc on my linux box and am writing
    pure AS 3 apps. I think that's the way to go, though I know it's
    not for everybody.
    My problem with mxml is that it has a weird syntax for
    function calls, and it's not as 'intuitive' for a person like me,
    who came from C++ and Java programming in the past. I like writing
    programs in the C++ and Java style syntax, and since so many other
    languages use a similar syntax, I don't see any reason to learn the
    nuances of mxml, unless I was getting paid to do it. As far as I
    can tell there is no benefit.
    I hate using Flash to write flash apps as well, I feel like
    they become messy and confusing, especially when trying to write an
    OOP application. I only use it if I want to move an object in a
    very specific way and can't do it with the Tween methods.

  • Simple question about mount and delay script

    Hello, I have a simple question about mounting volumes on start up.
    My computer wakes up auto - and then auto there are serveral applescript tasks (mount and start up programs)
    I use this script (daily) for serveral connections with external volumes I always need the connect to. ( In the script I use this code 3 times for other locations) I do this on start up.
    set Uname to "XXX"
    set Pword to "XXX"
    set someVolume to "afp://XXX.XXX.XXX.XXX/XXX/XXX
    mount volume someVolume as user name Uname with password Pword
    (same code for 2 other locations)
    When i do this on start up sometimes the script says there is no connection possible. I guess it's because on start up the connection isn't there. And 1 minute later when computer is total ready the connection is ok. When I run the script then It works. Just sometimes ( In the morning) 'It' want to connect but the script stops. When i do it manually(I run the script again) it works just fine.
    Is it possible that I need a delay? Can someone explain this?
    How would I make a delay handler for this script? Is that the best solution?
    Thanks in advance. This is something small i'm wondering about.
    Colin

    BTW, If you saved the script as an application +(and not as an application bundle)+ you could drop the script on to *Drop Script Backgrounder* (freeware).
    Then the script would run in the background, so, you wouldn't see it running in the Finder.
    <http://www.macupdate.com/info.php/id/7922/drop-script-backgrounder-x>
    Tom

  • Probably incredibly simple question, so sorry. I have just changed e-mail after many many years and I want to e-mail everyone in my mac mail client with the new e-mail address at the same time.

    Probably incredibly simple question, so sorry. I have just changed e-mail after many many years and I want to e-mail everyone in my mac mail client with the new e-mail address at the same time.

    If you are using Address Book, open it, create a new Group, select all you contacts by click the top one while holding down the shift key and then select the last one. Drag the contacts to the group, then send an e-mail to the group.

  • Why does this site have online chat when you can never actually chat - always "not available"?  I was trying to get a simple question answered without calling and being on hold for 10 minutes?

    Why does this site have online chat when you can never actually chat - always "not available"?  I was trying to get a simple question answered without calling and being on hold for 10 minutes?

        Hello flabucki,
    Help is just a post away for you my friend! I can help with your questions right here. May I ask what question do you have? Both myself and the community would love to assist in any way that we can.
    Thank you…
    ArnettH_VZW
    Follow us on Twitter @VZWSupport

  • Four simple questions on LOP, DateModifier, HolidayCalendar and PlanVersion

    Dear All,
    I feel for you people it's a simple question and not required to post 4 different threads.
    1. I create a LOP and a ML, how the system knows for LOP we have to deduct salary and for ML not required?
    2. Date Modifier: We create a date modifier, but where we mention specific date for the date modifier?
    3. Why holiday calender (or number range) can't transport? Why it 's not asking for a request while saving?
    4. We can create different plan versions. Once we create a new plan version and planed to use that. How to transport the data from one Planversion to another? Do we need to repeat all the process again, like position, person etc or we can transport?
    Regards
    ET

    1. I create a LOP and a ML, how the system knows for LOP we have to deduct salary and for ML not required?
    This is throught Absence Valuation that is Paid and Inpai which we configure in table T554C and assign the absence vlaution to the Absences the table V_554S_G
    2. Date Modifier: We create a date modifier, but where we mention specific date for the date modifier?
    Hmmm once you Generated the pay periods the dates are generated and stored in table V_T549S
    3. Why holiday calender (or number range) can't transport? Why it 's not asking for a request while saving?
    For holiday Calendar we have the Transport request which shd be done Manually check the truck button in the tcode SCAL
    4. We can create different plan versions. Once we create a new plan version and planed to use that. How to transport the data from one Planversion to another? Do we need to repeat all the process again, like position, person etc or we can transport?
    Can you littel more clear
    *I feel this are the doubts raised by you interview  questions are not allowed as per the Rules of SDN

Maybe you are looking for

  • How can I prevent breadcrumbs from being used on the first page?

    Hi, I'm using the latest version of the technical communication suite to produce a WebHelp layout from a framemaker book. Thanks to all the help I've received so far it's proceeding well, although slowly. II have an initia l'home'  page, that isn't p

  • Templates and SSI

    http://kirtmarkle.com/slide1.html http://kirtmarkle.com/ http://kirtmarkle.com/gallery_frameset.html Above I have included a link to a set of 3 slides I create this morning in an attempt to better define my site (as well as links to my Home and Galle

  • Manual price change control from quote to sales order

    Dear Gurus, I'm currently investigating possibility of config for the following requirement. 1. Sales person creates quotation (VA21) and performs manual pricing changes accordingly. 2. Quotation is saved with 'blocked' status automatically. 3. Quota

  • OpenHub Error (Urgent)

    ==== Output of System Commands: Repeat # 0 ==== mv: 0653-401 Cannot rename /interf/BWQ/539/Logility/zdpcdr_co.dat to /interf/BWQ/539/XI_Temp/zdpcdr_co.dat:           A file or directory in the path name does not exist. External program terminated wit

  • Which is higher quality, edit to tape or print to video on digital betacam?

    Which is gives higher quality results, edit to tape or print to video on digital betacam?