Why I cannot get payroll result value ?

Expert,
In EBS Payroll R12, I define two elements A and B. A has priority 1500, B has priority 3500. So A will be processed ahead of B. I write a pl/sql package to calculate B, and attach the package to B through formula result. In the package, I will use "Pay value" of A, the logic can be abstracted as " A-Pay value * 0.05". However, the result of B is not my expected. I track my package and find the program doesn't get the Pay Value. I am sure my sql statement is right. So my conclusion is for one assignment calculation, these elements payroll result will be written back to DB together rather than one by one, right?
For my case, it I want to use the pay value of elements which have been calculated, how to do? Please give me some advice.
Thanks in advance.

Dear thierry,
Thanks for your kindly help. I follow your hints to modify my fast formula of B as below:
Cal_B:
dummy=A_BALANCE_ASG_RUN /* A_Balance will contain element A*/ /* a new line added here */
v_rtvl=CAL_B_external_F /* It is formula function, which will contain external PLSQL call. The plsql will use the Pay value of A */
return v_rtvl
Per my understanding, after calling statement "dummy=A_BALANCE_ASG_RUN", the relevant pay result of A should be flushed to DB.
unfortunately, when I process my payroll, the result still remains unchange. It seems that CAL_B_external_F cannot get the "Pay value" of A
If I modify fast formula as below:
Cal_B:
v_rtvl=A_BALANCE_ASG_RUN
return v_rtvl
I can get v_rtvl whose value is equal to A_BALANCE_ASG_RUN. It seems the value of A_BALANCE_ASG_RUN can be captured in the fast formula.
So, How do I understand your hints as below:
"A element_A_asg_run in your second fast formula, before calling the plsql, can do the trick, eventually."
I am eager to your help.
Regards,
Michael
Edited by: Gang2 on Mar 22, 2009 10:45 PM

Similar Messages

  • I have the old iPad and would like to know why I cannot get Skype to work on it.I can get to ring the number but the person cannot here me.

    I have a old iPad and would like to know why I cannot get Skype to work.I can get it to ring the number but when the person answers they can't here me why is this.

    Based on Skype's website, are you using a compatible headset?

  • Why i cannot get in the itunes store? Please help me

    Why i cannot get in the itunes store? Please help me

    Check your firewall to ensure that itunes and ituneshelper are allowed.
    Check your internet settings.
    Control Panel – Internet Options – Advanced
    Check that SSL 3.0 and TLS 1.0 are checked.
    Uncheck “Check for server certificate revocation (requires restart)”
    Click okay

  • Why we cannot get Fios in Lower Macungie PA

    Is there a reason why we cannot get fiber optic internet and TV in my town? Is there a monopoly rule set by the township?

    Try attending a town hall meeting or asking local officials. They might be able to answer the question without trying to get a petition going first. Now, if there is a refusal to get Verizon out, then you can try to get a petition set up with others in your town to present to the town officials. Even then, if everything goes well, you're still at the mercy of Verizon wanting to bring the service out. If they can score permission to bring out TV services, they will be more motivated to build the services out, but as announced in many locations, it's unlikely Verizon will build out FiOS any more unless they are obligated to do so for are finishing up a roll-out.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Why do I get Missing Parameter Values error from CrystalReportViewer in VS2005

    Post Author: eseidel
    CA Forum: .NET
    Hi everyone,
    I have spent way to much time trying to figure this problem out and am getting no where now. I was hoping someone with more experience in CR for VS2005(I think v.9) and VS2005 may be able to help.  I have a report with 10 parameters that Im setting in code.  I have another 3 parameters in a subreport(with same names as 3 in main report) that are being pushed in(I hope) through my ApplyParams() method.  I have checked the output of each parameter before and after it is assigned in ApplyParams.  All values are being set....So why do I keep getting an error when I run it for Missing Parameter Values no matter what I do?  The error comes after SetDBLogonForReport(myConnectionInfo).  I have been struggling with this problem for almost 3 days now and have tried numerous approaches.  If I remove the subreport it works ok.  Why is subreport not getting parameters(I think this is where the problem stems from)?  Please any advice would be greatly appreciated.  Thank you. If need be I can e-mail the report but I don't know how much that will help without being able to access the datasources.
    Eric
    Code Snippet
    Private _Parameters As New System.Collections.Specialized.StringDictionary
    Public Property Parameters() As System.Collections.Specialized.StringDictionary
         Get
             Return (_Parameters)
         End Get
         Set(ByVal Value As System.Collections.Specialized.StringDictionary)
            If (Value Is Nothing Or _Parameters Is Nothing) Then Exit Property
            For Each entry As DictionaryEntry In Value
                _Parameters.Add(entry.Key, entry.Value)
            Next
       End Set
    End Property
    Private Sub SetParameters()
        Parameters("kiPerformance") = rptKi.ToString
        Parameters("PreparedBy") = rptPreparedBy
        Parameters("SupplierName") = rptSupplierName
        Parameters("Supplier") = rptSupplier  'Param in subreport too
        Parameters("ApprovedBy") = rptApprovedBy
        Parameters("kiPerformanceGoal") = rptKiThisGoal.ToString
        Parameters("kiForecastGoal") = rptKiForecast.ToString
        Parameters("kiNextGoal") = rptKiNextGoal.ToString
        Parameters("kiBegRange") = rptBegDate.ToString("d") 'Param in subreport too
        Parameters("kiEndRange") = rptEndDate.ToString("d") 'Param in subreport too
    End Sub
    Public Function ApplyParams()
        Me.SuspendLayout()
        Dim rpt As CrystalDecisions.CrystalReports.Engine.ReportDocument = _
        crv.ReportSource
        If (rpt Is Nothing OrElse _Parameters Is Nothing) Then Return False
        Dim crParameterFieldDefinitions As ParameterFieldDefinitions = rpt.DataDefinition.ParameterFields
         If (crParameterFieldDefinitions Is Nothing) Then Return False
         For Each crParameterFieldDefinition As ParameterFieldDefinition In crParameterFieldDefinitions
             If ((Not crParameterFieldDefinition.IsLinked) And _
                 _Parameters.ContainsKey(crParameterFieldDefinition.Name)) Then
                   Dim crParameterValues As ParameterValues = _
                   crParameterFieldDefinition.CurrentValues
                   If Not (crParameterValues Is Nothing) Then
                         Dim crParameterDiscreteValue As New ParameterDiscreteValue
                         crParameterDiscreteValue.Value =  _Parameters.Item(crParameterFieldDefinition.Name)
                         crParameterValues.Add(crParameterDiscreteValue)
                         'Console.WriteLine(crParameterFieldDefinition.Name & ": " & crParameterDiscreteValue.Value)
                        crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)
                  End If
              End If
           Next
           crv.ReportSource = rpt
           Me.ResumeLayout()
           Return Nothing
    End Function
    Private Sub ConfigureCrystalReports()
            Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo
            Dim pFields As New ParameterFields()
             Dim pField As New ParameterField()
             Dim disVal As New ParameterDiscreteValue()
             'Connection stuff,sorry I can't show you this part
             'Bind report
            rptCard = New ReportCard
           LoadDataSource()
           rptCard.SetDataSource(dsOcc)
           rptCard.Subreports("FailOcc").SetDataSource(dsOcc)  'Ive tried without this line as well
           rptCard.PrintOptions.PaperSize = PaperSize.Paper11x17
           rptCard.PrintOptions.PaperOrientation = PaperOrientation.Landscape
           crv.ReportSource = rptCard
           'Load parameters for report
           SetParameters()
           crv.RefreshReport()
           SetDBLogonForReport(myConnectionInfo)
    End sub
    Private Sub SetDBLogonForReport(ByVal conn As ConnectionInfo)
             Dim tableLogOnInfos As TableLogOnInfos = crv.LogOnInfo
             For Each myTableLogOnInfo As TableLogOnInfo In tableLogOnInfos
                  myTableLogOnInfo.ConnectionInfo = conn
             Next
    End Sub
    Private Sub crv_Error(ByVal source As Object, ByVal e As CrystalDecisions.Windows.Forms.ExceptionEventArgs) Handles crv.Error
          MsgBox(e.Exception.Message)
          e.Handled = True
    End Sub
    Private Sub crv_ReportRefresh(ByVal source As Object, ByVal e As CrystalDecisions.Windows.Forms.ViewerEventArgs) Handles crv.ReportRefresh
           ApplyParams()
    End Sub

    Post Author: mewdied
    CA Forum: .NET
    By any chance are the parameters in your subreport stored procedure parameters?
    There was a specific fix for stored procedure parameters available from:ftp://ftp1.businessobjects.com/outgoing/CHF/crnet20win32x86_en_chf.zip
    The specific fix is described in the readme under Problem ID # ADAPT00532856

  • DSO Lookup - Cannot get correct result

    Hi
    I have a requirement to create new report that will contain the following PO quantity , PO quantity received in time and PO quantity received late.
    I have identified in 2LIS_02_SCL DS that ProcessKey 001 is for PO quantity and ProcessKey 002 is the goods receipts (BWMNG-> CPQUAOU) while (DBWMNG-> CPDEOGQUOU) is for delta change
    The data is now in DSO but  I would like to have them in Cube
    Steps I have taken
    -     I have Created new Inobject ZPO_QUANTITY and ZPO_QTY_REC
    -     Added this infoobjects to the cube
    I wrote this code in END ROUTINE when loading from  DSO to the cube but I am not getting the required result. Instead  I get same values e.g 2  for all PO document numbers even though the values are different.
    u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026
    DATA: rp TYPE tys_tg_1.
    LOOP AT RESULT_PACKAGE INTO rp.
    SELECT SINGLE CPQUAOU FROM /BIC/APMMSC00 into rp-/BIC/ ZPO_QUANTITY
    WHERE PROCESSKEY = 001.
    MODIFY RESULT_PACKAGE FROM rp.
    ENDLOOP.
    u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026u2026
    Please whats wrong with my code and I can I achieve the result
    thanks

    Hello Vamsi and Mansi,
    thanks alot guys. Unfortunately I don't get correct result for all PO Documents
    I am trying to extract only CPQUAOU from DSO but not getting same in Infocube
    This is the code
    DOC_NUM    PROCESSKEY PSTNG_DATE MATERIAL           SCL_DELDAT COMPL_DEL CPQUAOU
    4500000118 001        00.00.0000 000000000500024490 18.05.2009                           12,000
    4500000118 002        18.05.2009 000000000500024490 18.05.2009                           10,000
    4500000119 011        00.00.0000 000000000400000023 18.05.2009                          100,000
    4500000120 001        00.00.0000 000000000500024490 18.05.2009                           20,000
    4500000120 002        21.05.2009 000000000500024490 18.05.2009 X                         20,000
    4500000121 002        18.05.2009 000000000500024490 18.05.2009 X                         10,000
    4500000121 001        00.00.0000 000000000500024490 18.05.2009                           10,000
    4500000122 001        00.00.0000 000000000500024490 18.05.2009                            4,000
    4500000122 002        24.05.2009 000000000500024490 18.05.2009 X                          4,000
    4500000123 011        00.00.0000 000000000400000026 18.05.2009                            4,000
    4500000124 001        00.00.0000 000000000500024490 18.05.2009                            5,000
    4500000124 002        25.05.2009 000000000500024490 18.05.2009 X                          5,000
    4500000125 011        00.00.0000 000000000400000026 18.05.2009                            2,000
    DATA: rp TYPE tys_tg_1.
    LOOP AT RESULT_PACKAGE INTO rp.
    SELECT SINGLE CPQUAOU FROM /BIC/AMOMMSC00 into rp-/BIC/ZPO_QTY
    WHERE DOC_NUM = rp-DOC_NUM AND PROCESSKEY = 001.
    *Deriving PO Quantity received in time based on posting date, planned
    *delivery date and delivery completed flag
    SELECT SINGLE CPQUAOU FROM /BIC/AMOMMSC00 into rp-/BIC/ZPO_REC
    WHERE DOC_NUM = rp-DOC_NUM AND PROCESSKEY = 002 AND COMPL_DEL = 'X' AND
    PSTNG_DATE <= rp-SCL_DELDAT.
    if sy-subrc = 0.
    MODIFY RESULT_PACKAGE FROM rp.
    endif.
    clear rp.
    ENDLOOP.
    Thanks alot

  • Why am I getting very high values for the very low frequency region of a random signal?

    I am tyring to produce a power spectrum graph for a Tachogram data, related to Heart Rate Variability Analysis. This data can be thought to be as a random signal, but has a frequency spectrum range of 0 - 1HZ.
    The problem that I am facing is, I am getting very high values for very low frequency region, closer to DC value. Even the DC value is really high, in the range 10^8. It is suppose to be a low number. Any suggestions would be appreciated.
    Thanks.

    Here is what my work is all about. I am trying to develop a software for Heart Rate Variability analysis. I am not sure if you are aware of heart beat waveforms, they are bunch spikes, occuring at irregular intervals. We have to do analysis on this waveform. How ? First we have to create a plot called Tachogram. This is done by, for example, let's name the first spike R1, the second one R2, and the third one R3, and so on. This is how the co-ordinate points are created. (R1, R2-R1), (R2, R3-R2), and so on...
    Here R1 is the time instant at which the spike R1 occurs, and R2-R1 is the time difference between these peak occurences. So, if we plot these values, then it gives us one like what you saw on your time domain plot. What we have to do with this signal is, we have to apply FFT technique to produce its power spectrum for analysis. Generally the frequency range of the spectrum goes from 0 - 0.5 Hz. They part this range into VLF, LF, and HF, and analyze how much power is distributed in these regions. The distribution would tell you if you were stressed out,or have worked out, things like that. Normally, you can view spikes around LF, HF region. If you had viewed the power spectrum for the data that I sent, then that's what it pretty much looks like. I think I have said a lot about it now. Hope you get it.
    We were talking about the "other component", I can't really see where it lies, must be in the 60-80 sec. range in the graph. If you look at the spectrum, I am getting a huge value around 0.0033 Hz, how do I minimize or remove this ?
    Also, I am using Unevenly Spaced Signal Spectrum.vi, I am not sure what excactly is the unit for the Power Spectrum output. Technical Papers denote, Periodogram algorithm used by this VI, gives Power Spectral Density ? If that's right, then the unit is V^2/HZ.
    Please advise.
    Again, I should thank you for your time and effort.
    I have to meet a deadline this week in finishing this project, and your help is immense to me at this point.
    Thanks & Best Regards,

  • Why do I get this result when I use split

    Hello guys
    I have created a script that looking for the active path,
    var myPath = (File($.fileName).parent.parent.parent.fullName);
    alert(myPath)
    I recieve "/xxxxx/xxxx/xxxx/341542"
    the only thing I am interested of in this information it's the number,
    so I added on the code
    var myPath = (File($.fileName).parent.parent.parent.fullName).split("xxxx/xxxx/xxxx/");
    the problem is
    I recieve ",341542"
    why do I recieve a comma before the number??
    there is no comma. in the path.

    Laubender,
    in my opinion on Mac OSX  path.fullname also get the folderpath separated with "/"
    Isn't it so?
    But back to the problem.
    The best way is to use name instead of fullname:
    alert(decodeURI(File($.fileName).parent.parent.parent.name))
    Otherwise with the match function:
    If there are no digits at the end of the path - the result is null and match fails.
    I'm with Trevor and Kai Rübsamen: .match(/[\/:]\d+$/) or the split method should be the best in this case.

  • VS2008 C# cannot get return/export values from SAP (one way connection yet)

    Hello Experts,
    I have successfully established connection to SAP by using Visual Studio 2008 (C#) and web services:
    -     I am able to login into the SAP-System with my C#-Application
    -     I am able to call and run functions with my C#-Application
    -     I am able to passing over vales from my C#-Application to the function module (importing variables = ok)
    The problem I face now is getting return values from the function module (getting values of the exporting variables). I just have no idea how to call the u201CResponse-methodu201D correctly in C#.
    I think the problem is hided in the wsdl-xml-file.
    Here are my codes (only C# codes are really relevant) I post them step by step:
    ABAP CODE OF FUNCTION MODULE:
    FUNCTION Z_GET_BP_DATA.
    TABLES: but000.
    Data: ls_test type but000,
          lv_bpid type BU_PARTNER.
    u201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201D
    u201D importing parameter BPID = type string   u201D
    u201D exporting parameter BPNAME = type string u201D
    u201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201Du201D
    lv_bpid = BPID.
    SELECT SINGLE *  from but000 into ls_test
      where PARTNER = lv_bpid.
    BPNAME = ls_test-NAME_LAST.
    ENDFUNCTION.
    [Here|http://ng-webservice.com/myxml.xml] is code of my wsdl-xml-file:

    C
    APPLICATION MAIN CODE:
    using System;
    using System.Net;
    using System.Collections.Generic;
    using System.Text;
    using System.Web.Services.Protocols;
    using System.Web.Services;
    namespace test
        class Program
            static void Main(string[] args)
                try
                    //Sample Project for calling WS in SAP and writing data
                    string var_bpid = "0000000082";
                    string var_bpname;
                    CookieContainer cookie = new CookieContainer();
                    webref_get_bp_data.service _proxy1 = new test.webref_get_bp_data.service();
                    webref_get_bp_data.ZGetBpDataResponse _proxy3 = new test.webref_get_bp_data.ZGetBpDataResponse();
                    test.webref_get_bp_data.ZGetBpData myref = new test.webref_get_bp_data.ZGetBpData();
                    test.webref_get_bp_data.ZGetBpDataResponse myresponse = new test.webref_get_bp_data.ZGetBpDataResponse();
                    _proxy1.Credentials = new NetworkCredential("MYUSER", "MYPASSWORD");
                    _proxy1.CookieContainer = cookie;
                    myref.Bpid = var_bpid; // myref gets an id for passing over to the function module
                    _proxy1.ZGetBpData(myref); // call/run function module with given bpid
                    var_bpname = _proxy1.ZGetBpData(myref);
                    var_bpname = myresponse.Bpname; // HOW TO GET EXPORTING VALUE???
                    Console.WriteLine(myref.Bpid);
                    Console.WriteLine(var_bpname);
                    cookie = _proxy1.CookieContainer;
                    Console.WriteLine("Finish proxy1");
                    string response = Console.ReadLine();
                catch (SoapException exc)
                    Console.WriteLine("Exception thrown");
                    throw exc;
                    string response = Console.ReadLine();

  • Why do I get the "this value would cause one or more objects to leave the pasteboard" message when p

    I'm placing images from Bridge by selecting the image or images and going to File>Place>In Indesign. This loads the cursor in ID and I attempt to click and drag a frame to size the image on the page. That's when I get the message.
    Placing images into existing frames is OK, and single click to place works also. Only when I click and drag to create a new frame.
    This happens every time regardless of image size, resolution or root folder location.
    Any ideas? Why is ID stuck with click & drag?
    iMac 2.66GHz 8GB RAM
    OSX 10.8.2

    Try trashing your prefs. See Replace Your Preferences

  • Help why I cannot get Infinity

    I am moving to a new build in calne wilts and half out of the 29 new homes can get Infinity while the other half does not show on the checker but tey are in no order just hit and miss so no reason why we can not all get Infinity. We all have the same postcode SN11 0FF and use the same cab so is it because we have not got a phoneline installed yet or any other reason but when I phone BT they just say you dont get Infinity  Help Help Help

    There must be two Cabs serving the 29 New house's, Your House must be on the Cab that has not been FTTC enabled yet.
    and if only one CAB then yes you need a phone line first ! thats how you receive FTTC or any other type of Broadband via a telephone cable.

  • Why Do I get different result when Run as Admin to Standard?

    Why when Running this script to copy from the "config64" folder (if files exist)(if not copy from "config32")  if works correctly when running  Batch file normally (copies the config64), but using the exact same line when running
    the Batch file as "Run as Administrator" it doesn't work correctly (copies the config32, even though Files do exist config64 folder as they did when I ran it normally and it worked)
    >nul 2>nul dir /a-d "Folder\config64\*" /s && (XCOPY "%~dp0Folder\config64\File64.ini" "%ProgramFiles(x86)%\CompanyFolder\ProductFolder\" /y /d) || (XCOPY "%~dp0Folder\config32\File32.ini" "%ProgramFiles(x86)%\CompanyFolder\ProductFolder\" /y /d)
    UAC is turned off and I'm the administrator (only user on a standalone PC) running windows 8.1.
    Is there a reason or it is a strange bug with Windows 8.1?

    A LOT  more intellectual than
    Frederik Long Who just had no clue himself to not offer an answer. As I've only been looking at this for 2 weeks I think I've come far and you help is much appreciated. Thank you JRV!
    You seem to miss the point. Assuming that your problem is caused by a bug can prevent you from finding the real cause. If you had dismissed the bug theory then you might have done some real debugging, e.g. by breaking up your single-line script (which is
    hard to comprehend) into easily digestible pieces and adding some debugging code like so:
    @echo off
    set Target="%ProgramFiles(x86)%\ComapanyFolder\ProductFolder\"
    dir /a-d "Folder\config64\*" /s 1>c:\Test.log 2>&1
    if %ErrorLevel% EQU 0 (
    XCOPY "%~dp0Folder\config64\File64.ini" %Target% /y /d /s 1>>c:\Test.log 2>>&1
    ) else (
    XCOPY "%~dp0Folder\config32\File32.ini" %Target% /y /d /s 1>>c:\Test.log 2>>&1
    The log file would have told you quickly what is going on. Furthermore - why should I offer my own solution to your problem when JRV gave you a perfect answer straight away?

  • I cannot get the "ARCKEY" value in my payload to be written to the Idoc

    I am trying to write the interface filename to the ARCKEY field of an Idoc. I can see it in the Payload but the Idoc in the target system always has the GUID/MessageId in this field.
    I've got "Apply Control Record Values from Payload" switched on in the communication channel.
    Reading some other threads, is it because you actually can't  over-ride this field?
    Help!
    Regards
    Robert

    Hello ,
               Followin g control fields will be set by system and not allows to modify
    SNDPOR
    MANDT
    DIRECT
    CREDATE
    CRETIME
    TABNAME
    STATUS
    OUTMOD
    DOCREL
    ARCKEY
    HTH
    Rajesh

  • Why I am getting different RGB Values in photoshop vs. Illustrator?

    The RGB values differ between Illustrator and Photoshop. The same file opened in photoshop displays different RGB values although the the colour was input correctly in illustrator. Both files were saved and reopened within the RGB colour space. There is a zero value in the desired RGB colour scheme, could this have something to do with it?

    RGB values relate to the color space used. The same color in sRGB and Adobe RGB will have very different numbers (and vice versa).
    There is no such thing as "RGB color space". That's a color mode, not a color space. There is only sRGB, Adobe RGB, ProPhoto RGB etc.

  • HT201364 why, i cannot get the free upgrade for mavericks

    in app store there is a message on update tab: os x mavericks and there is a button with the message "free upgrade", but when i pushed that button there is a message that "We could not complete your purchase. The product distribution file could not be verified. It may be damaged or was not signed"
    Why is it happen
    thanks

    http://www.apple.com/support/mac/app-store/contact/

Maybe you are looking for

  • Skype for windows phone 8.1 is completely broken

    Skype tells me that I have an notification but it doesnt even tell me from who and when I try to send a message it doesnt even send it just sits there with that spinnng circle forever even when i'm talking to that person right now on the desktop app.

  • Apple TV Movie Purchases Playback Support

    I have a 3rd generation Apple TV. I have purchased and retned dozens of movies; and never experienced any issues when viewing them up until recently (all of them on 1080p). I have Verion Fios, and recent speed test clock my speed at over 50mbps. The

  • How do I set up an iTunes computer as a DLNA server?

    I have a nice new Sony TV and Sony Blu-ray player on order, both of which can do DLNA streaming over my household LAN.  They want to find a DLNA server with content -- and I have a Windows 7 PC with iTunes 10.5.1 and a massive library.  How do I make

  • Sales Office and Sales Group Automatic Determination based on the Sold to P

    Hello every one We need determine sales office and sales group based on sold to party master data in Activity Management in SAP CRM 2007. I want to know if there is a way to do it when we save the document. Any ideas???

  • HDSP 96/52: New driver doesn´t work. How can I deinstall it to use old one?

    Hi guys, after installing the newest rme-audio driver (Version 1.6) for my hdsp 96/52 on my G5 2 Ghz dual I don´t get no sound anymore. I also installed the flash update. It seems to be a driver problem, cause on my backup-system, using the 1.5 versi