Client change in R/3 for BW

Hi,
We have a unit test client as X and now it has to change to Y.
I have heard about BDLS and BDLSS tcodes which help but I need some more clarifications:
1 - Will running BDLS/BDLSS takes care of all the things like datasources, trabnsfer rules, infosource etc?
2 - If yes then what is the procedure/steps to run BDLS/BDLSS?
     If No then what additional tasks we have to perform to ensure that BW points to Client Y and everything is working fine.
Please suggest.

Hi Martin,
Thanks for your reply.
So r u saying that running BDLS/BDLSS will take care of everything?
Do I just have to delete and reload the data without touching the datasource, transfer rules, transformations etc?

Similar Messages

  • 'Client Changes' must be allowed when download which kind of object?

    Dear Expert,
    When we download some kind of objects from ECC to CRM, we must set allow 'Client Changes' via SCC4. For example, download DNL_CUST_CNDALL
    Do we have to  allow 'Client Changes' via SCC4 before download all customzing objects? How about Biz Objects and Condition Objects?
    Thanks a lot!
    Hedy

    Hi, Hedy
    Not, I think it's required only for DNL_CUST_CNDALL.
    But, you can see any errors in smw01 and check does it need for specific case.
    Denis

  • Change WOL Port number for clients

    Hi All
    We want to implement in our environment WOL functionality , for WSUS deployment and scheduled OSD deployments
    We cannot unfortunately implement the default UDP port 9
    My question is how can we change that default port on the clients?
    I know that we can change the port on the primary server -> Site configuration -> Sites -> Properties primary site server -> tab 
    Port and here we can change the port number of Wake on Lan
    For the client I noticed that there is a client setting -> Power Management -> Wake on Lan port Number (UDP) but that number is grayed out and set to 9
    Also when I create a custom Client Setting that port number is grayed out and set to 9
    How can I change that port number for the client?
    Thx in advance
    Regards,
    Johan

    The port number in Client Settings/Power Management is grayed out because "Enable wake-up proxy" is disabled. When you enable it, it becomes available. Be aware that wake-up proxy and wake on lan is 2 different things. (Beware mac address flapping)
    To change the Wake On Lan port go to, primary server -> Site configuration -> Sites -> Properties
    primary site server -> tab  Port.
    Wake On LAN port number (UDP)
    For System Center 2012 Configuration Manager SP1 and System Center 2012 R2 Configuration Manager only:
    Keep the default value of 9, unless you have changed the Wake On LAN (UDP) port number in the site Properties, Ports tab.
    Important
    This number must match the number in the site Properties. If you change this number in one place, it does not automatically update in the other place.
    Benoit Lecours | Blog: System Center Dudes

  • How to update a large (over 4 million item) List(Of Byte) quickly by altering indexes contained in a Dictionary(Of Integer, Byte) where the Dictionaries keys are the indexes in the List(Of Byte) that need to be changed to the values for those indexes?

       I'm having some difficulty with transferring images from a UDP Client to a UDP Server. The issue is receiving the bytes necessary to update an original image sent from the Client to the Server and updating the Servers List(Of Byte) with the
    new bytes replacing bytes in that list. This is a simplex connection where the Sever receives and the Client sends to utilize the least amount of bandwidth for a "Remote Desktop" style application where the Server side needs image updates of whatever
    occurs on the Client desktop.
       So far I can tranfer images with no issue. The images can be be any image type (.Bmp, .Gif, .JPeg, .Png, etc). I was working with sending .JPeg's as they appear to be the smallest size image when a Bitmap is saved to a memory stream as type
    .JPeg. And then I am using GZip to compress that byte array again so it is much smaller. However on a loopback on my NIC the speed for sending a full size screen capture is not very fast as the Server updates fairly slowly unless the Clients screen capture
    Bitmap is reduced in size to about 1/3'd of the original size. Then about 12000 bytes or less are sent for each update.
       Due to .JPeg compression I suppose there is no way to get the difference in bytes between two .JPegs and only send those when something occurs on the desktop that alters the desktop screen capture image. Therefore I went to using .Bmp's as each
    .Bmp contains the same number of bytes in its array regardless of the image alterations on the desktop. So I suppose the difference in bytes from a second screen capture and an inital screen capture are what is different in the second image from the initial
    image.
       What I have done so far is save an initial Bitmap of a screen capture using a memory stream and saving as type .Bmp which takes less than 93 milliseconds for 4196406 bytes. Compressing that takes less than 118 milliseconds to 197325 bytes for
    the current windows on the desktop. When that is done PictureBox1 is updated from nothing to the captured image as the PictureBox's background image with image layout zoom and the PictureBox sized at 1/2 my screens width and 1/2 my screens height.
       Then I save a new Bitmap the same way which now contains different image information as the PictureBox is now displaying an image so its back color is no longer displayed (solid color Aqua) and the cursor has moved to a different location. The
    second Bitmap is also 4196406 in bytes and compressed it was 315473 bytes in size.
       I also just found code from this link Converting a Bitmap to a Byte Array (and Byte Array to Bitmap) which gets a byte array
    directly from a Bitmap and the size of that is 3148800 for whatever is full screen captured on my laptop. So I should be able to work with smaller byte arrays at some point.
       The issue I'm having is that once the Client sends an image of the desktop to the Server I only want to update the server with any differences occuring on the Clients desktop. So what I have done is compare the first screen captures bytes (stored
    in a List(Of Byte)) to the second screen captures bytes (stored in a List(Of Byte)) by using a For/Next for 0 to 4196405 where if a byte in the first screen captures List is not equal to a byte in the second screen captures List I add the index and byte of
    the second screen captures list to a Dictionary(Of Integer, Byte). The Dictionary then only contains the indexes and bytes that are different between the first screen capture and second screen capture. This takes about 125 milliseconds which I think is pretty
    fast for 4196406 byte comparison using a For/Next and adding all the different bytes and indexes for each byte to a Dictionary.
        The difference in Bytes between the inital screen capture and the second screen capture is 242587 as an example which changes of course. For that amount of bytes the Dictionary contains 242587 integers as indexes and 242587 bytes as different
    bytes totaling 485174 bytes for both arrays (keys, values).  Compressed the indexes go from 242587 to 43489 bytes and the values go from 242587 to 34982 bytes. Which means I will have to send 78, 481 bytes from the Client to the Server to update the display
    on the server. Quite smaller than the original 4196406 bytes of the second Bitmap saved to type .Bmp or the compressed size of that array which was 315473 bytes. Plus a few bytes I add as overhead so the server knows when an image array ends and how many packets
    were sent for the array so it can discard complete arrays if necessary since UDP is lossfull although probably not so much in current networks like it may originally have been when the internet started.
        In reality the data from the Client to the Server will mostly be the cursor as it moves and updating the Server image with only a few hundred bytes I would imagine at a time. Or when the cursor selects a Button for example and the Buttons
    color changes causing those differences in the original screen capture.
       But the problem is if I send the Dictionaries Indexes and Bytes to the Server then I need to update the original Bitmap List(Of Byte) on the server by removing the Bytes in the received informations Index locations array from the Servers Bitmap
    List(Of Byte) and replacing those Bytes with the Bytes in the received informations Byte array. This takes so long using a For/Next for however many indexes are in the received informations Index array to update the Bitmap List(Of Byte) on the server using
    "Bmp1Bytes.RemoveAt(Index As Integer)" followed by "Bmp1Bytes.Insert(Index As Integer, Item As Byte)" in the For/Next.
        I've tried various For/Next statements including using a new List(Of Byte) with If statements so If the the integer for the For/Next ='s the Key in a Dictionary(Of Integer, Byte) using a Counter to provide the Dictionaries Key value then
    the Dictionaries byte value will be added to the List(Of Byte) and the counter will increas by one Else the List(Of Byte) adds the original "Bmp1Bytes" byte at that index to the new List(Of Byte). This takes forever also.
       I also tried the same For/Next adding to a new Dictionary(Of Integer, Byte) but that takes forever too.
       I think I could use RemoveRange and AddRange to speed things up. But I don't know how to retrieve a contiguous range of indexes in the received indexes that need to be updated in the servers "Bmp1Bytes" List(Of Byte) from the received
    array of indexes and bytes which are in a Dictionary(Of Integer, Byte).  But I believe this would even be slower than some realistic method for replacing all Bytes in a List(Of Byte) when I have the indexes that need to be replaced and the bytes to replace
    them with.
       Even if I just used AddRange on a new List(Of Byte) to add ranges of bytes from the original "Bmp1Bytes" and the changes from the Dictionary(Of Integer, Byte) I think this would be rather slow. Although I don't know how to do that
    by getting contiguous ranges of indexes from the Dictionaries keys.
       So I was wondering if there is some method perhaps using Linq or IEnumerable which I've been unable to figure anything out which could do this.
       I do have some copy and pasted code which I don't understand how it works that I am using which I would guess could be altered for doing something like this but I can't find information that provides how the code works.  Or even if I did
    maybe I can't understand it. Like the code below which is extremely fast.
       Dim strArray() As String = Array.ConvertAll(Of Integer, String)(BmpComparisonDict.Keys.ToArray, Function(x) x.ToString())
    La vida loca

    Monkeyboy,
    That was quite a bit to read, but still a bit unclear. Could you put a specific list of goals/questions, asked in the smallest possible form?
    It seems like either you're making a program that monitors activity on your computer, or you're writing some kind of remote pc app.
    When you do get your bytes from using lockbits, keep in mind all the files header info would be lost. I think retaining the header info is worth the extra bytes.
    The other, thing: I'm not sure if you're taking 32bpp screen shots, but also keep in mind that the "whole desktop" is the final destination for blended graphics, if that makes sense. What I mean is that there is no need to capture an "alpha"
    channel for a desktop screenshot, as alpha would always be 255, this could save you 1 byte per pixel captured... Theres nothing "behind" the desktop, therefore no alpha, and every window shown above the desktop is already blended. I suggest using
    24Bpp for a full screen capture.
    Your X,Y information for the mouse could be stored as UINT16, this would save you a measly 2 bytes per location update/save.
    When you update your byte arrays, maybe you can turn the array into a stream and write to whatever index, however many bytes, that should prevent a "Shift" of bytes, and instead overwrite any bytes that "get in the way".
    ex
    Dim example As String = "This is an example."
    Dim insertString As String = "was"
    Dim insertBytes As Byte() = System.Text.Encoding.ASCII.GetBytes(insertString)
    Dim bytes As Byte() = System.Text.Encoding.ASCII.GetBytes(example)
    Dim modifiedBytes As Byte() = {}
    Using ms As New System.IO.MemoryStream(bytes)
    ms.Position = 5
    ms.Write(insertBytes, 0, 3)
    modifiedBytes = ms.ToArray
    End Using
    Dim newString As String = System.Text.Encoding.ASCII.GetString(modifiedBytes)
    'Notice how below there isn't the word "is" anymore, and that there isn't a
    'space.
    'This demonstrates that you overwrite existing data, versus shifting everything to
    'the right.
    'Returns: This wasan example.
    MsgBox(newString)
    “If you want something you've never had, you need to do something you've never done.”
    Don't forget to mark
    helpful posts and answers
    ! Answer an interesting question? Write a
    new article
    about it! My Articles
    *This post does not reflect the opinion of Microsoft, or its employees.
    Well it's too much to read. I was really tired when I wrote it. Even the below is too much to read but perhaps gets the point across of what I would like to do which I think
    Joel Engineer may have answered but I'm not sure. As I'm still too tired to understand that yet and research what he said in order to figure it out yet.
    But maybe the code below can provide the concept of the operation with the comments in it. But seeing as how I'm still tired it may be confused.
    Option Strict On
    Imports System.Windows.Forms
    Imports System.IO
    Imports System.IO.Compression
    Imports System.Drawing.Imaging
    Imports System.Runtime.InteropServices
    Public Class Form1
    Dim Bmp1Bytes As New List(Of Byte)
    Dim Bmp1BytesCompressed As New List(Of Byte)
    Dim Bmp2Bytes As New List(Of Byte)
    Dim BmpComparisonDict As New Dictionary(Of Integer, Byte)
    Dim BmpDifferenceIndexesCompressed As New List(Of Byte)
    Dim BmpDifferenceBytesCompressed As New List(Of Byte)
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    SomeSub()
    End Sub
    Private Sub SomeSub()
    ' Pretend this code is in UDP Client app. A screen capture is performed of the desktop. Takes about 90 milliseconds.
    Bmp1Bytes.Clear()
    Using BMP1 As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height)
    Using g1 As Graphics = Graphics.FromImage(BMP1)
    g1.CopyFromScreen(0, 0, 0, 0, BMP1.Size)
    Cursor.Draw(g1, New Rectangle(Cursor.Position.X, Cursor.Position.Y, Cursor.Size.Width, Cursor.Size.Height))
    Using MS As New MemoryStream
    BMP1.Save(MS, System.Drawing.Imaging.ImageFormat.Bmp)
    Bmp1Bytes.AddRange(MS.ToArray)
    End Using
    End Using
    End Using
    Bmp1BytesCompressed.AddRange(Compress(Bmp1Bytes.ToArray))
    ' UDP Client app sends Bmp1BytesCompressed.ToArray to UDP Server which is the entire image of the desktop that the UDP
    ' Client is on. This image takes awhile to send since compressed it is about 177000 bytes from over 4000000 bytes.
    ' I will be using different code just to get the bytes from the actual Bitmap in the future. That is not important for now.
    ' Pretend the UDP Server has received the bytes, decompressed the array received into a List(Of Byte) and is displaying
    ' the image of the UDP Clients desktop in a PictureBox.
    ' Now the image on the UDP Clients desktop changes due to the mouse cursor moving as an example. Therefore a new Bitmap
    ' is created from a screen capture. This takes about 90 milliseconds.
    Bmp2Bytes.Clear()
    Using BMP2 As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height)
    Using g1 As Graphics = Graphics.FromImage(BMP2)
    g1.CopyFromScreen(0, 0, 0, 0, BMP2.Size)
    Cursor.Draw(g1, New Rectangle(Cursor.Position.X, Cursor.Position.Y, Cursor.Size.Width, Cursor.Size.Height))
    Using MS As New MemoryStream
    BMP2.Save(MS, System.Drawing.Imaging.ImageFormat.Bmp)
    Bmp2Bytes.AddRange(MS.ToArray)
    End Using
    End Using
    End Using
    ' Now I have the original images bytes in Bmp1Bytes and the new images bytes in Bmp2Bytes on the UDP Client. But I don't
    ' want to send all of the bytes in Bmp2Bytes to the UDP Server. Just the indexes of and the bytes that are different in
    ' Bmp2Bytes from Bmp1Bytes.
    ' This takes less than 100 milliseconds for what I've tested so far where over 500000 bytes in Bmp2Bytes are different
    ' than the bytes in Bmp1Bytes. Usually that amount would be much less. But during testing I was displaying the image
    ' from Bmp1 bytes in a PictureBox so a large amount of data would change between the first screen shot, the PictureBox
    ' then displaying an image on the same PC and then the second screen shot.
    BmpComparisonDict.Clear()
    For i = 0 To Bmp1Bytes.Count - 1
    If Bmp1Bytes(i) <> Bmp2Bytes(i) Then
    BmpComparisonDict.Add(i, Bmp2Bytes(i))
    End If
    Next
    ' So now I have all the difference bytes and their indexes from Bmp2Bytes in the BmpComparisonDict. So I compress
    ' the indexes into on List and the Bytes into another List.
    BmpDifferenceIndexesCompressed.Clear()
    BmpDifferenceBytesCompressed.Clear()
    BmpDifferenceIndexesCompressed.AddRange(Compress(BmpComparisonDict.Keys.SelectMany(Function(d) BitConverter.GetBytes(d)).ToArray()))
    BmpDifferenceBytesCompressed.AddRange(Compress(BmpComparisonDict.Values.ToArray))
    ' Now pretend the UDP Client has sent both those arrays to the UDP Server which has added both decompressed arrays
    ' to a Dictionary(Of Integer, Byte). And the server has the original image decompressed bytes received in a List
    ' called Bmp1Bytes also.
    ' This is where I am stuck. The UDP Server has the Dictionary. That part was fast. However there is no
    ' fast method I have found for creating a new List(Of Byte) where bytes in the originally received List(Of Byte) that
    ' do not have to be altered are placed into a new List(Of Byte) except for the indexes listed in the
    ' Dictionary(Of Integer, Byte) that need to be placed into the appropriate index locations of the new List(Of Byte).
    ' The below example for doing so is exceptionally slow. Pretend UpdateDictionary has all of the decompressed indexes
    ' and bytes received by the UDP Server for the update contained within it.
    Dim UpdateDictionary As New Dictionary(Of Integer, Byte)
    Dim UpdatedBytes As New List(Of Byte)
    Dim Counter As Integer = 0
    For i = 0 To Bmp1Bytes.Count - 1
    If i = UpdateDictionary.Keys(Counter) Then ' Provides the index contained in the Keys for the Dictionary
    UpdatedBytes.Add(UpdateDictionary.Values(Counter))
    Counter += 1
    If Counter > UpdateDictionary.Count - 1 Then Counter = 0
    Else
    UpdatedBytes.Add(Bmp1Bytes(i))
    End If
    Next
    ' So what I'm trying to do is find an extremely fast method for performing something similar to what the
    ' above operation performs.
    End Sub
    Private Function Compress(BytesToCompress() As Byte) As List(Of Byte)
    Dim BytesCompressed As New List(Of Byte)
    Using compressedStream = New MemoryStream()
    Using zipStream = New GZipStream(compressedStream, CompressionMode.Compress)
    zipStream.Write(BytesToCompress, 0, BytesToCompress.Count)
    zipStream.Close()
    BytesCompressed.AddRange(compressedStream.ToArray)
    End Using
    End Using
    Return BytesCompressed
    End Function
    Private Function Decompress(BytesToDecompress() As Byte) As List(Of Byte)
    Dim BytesDecompressed As New List(Of Byte)
    Using DecompressedStream = New MemoryStream()
    Using zipStream = New GZipStream(DecompressedStream, CompressionMode.Decompress)
    zipStream.Write(BytesToDecompress, 0, BytesToDecompress.Count)
    zipStream.Close()
    BytesDecompressed.AddRange(DecompressedStream.ToArray)
    End Using
    End Using
    Return BytesDecompressed
    End Function
    End Class
    La vida loca

  • Changing the default view for Line Items in an Auction.

    Hello All,
    We have a version 5 client who is asking for us to change the default view for line items in an auction.
    Currently, if you have an auction setup, and you go to the Line Items tab, the default view is the "Basic View". The client would like to change the Default from "basic view" to "price view".
    Is there a way to change this default in the system? Can this be configured using query groups? Any information would be helpful.

    Hi wood cloud,
    This is not possible, bcz there is no VLV for that drop down and we cant set it  to the price view.
    Thanks,
    Ankur Goyal

  • How can I change an NC Code for a scrapped SFC

    Is it possible to change the NC COde for a scrapped sfc without changing anything else?

    Hans,
    The only place where you can edit NC data is Edit tab of NC Client if the tab is enabled. However, I doubt that it allows you to change NC Code ID but leave the rest of the collected NC data.
    Regards,
    Sergiy

  • How to change the default langauge for logon-Urgent

    Hi All,
    I need to set the default language for the web-UI login (say english). Could you please help me how can I do it?
    My scenario is:
    Lets say if the end user is launching Web-UI from Germany (His browser default langauage will have German most of the time), Web-UI is picking German as default language while my client wants to show everything in English to everyone despite of any langauge in the browser.
    I have already set logon language to english in SU01/ in the service login data via SICF but still Web-UI is picking langauge from the browser, while If I am launching web-UI from my favourite list (in which i have set two paramater sy-langu = 'E' and sap-langauge = 'EN') then web-UI is not picking langaue from the browser.
    But in the ideal scenario user will launch Web-UI from the portal (Which can have diffrent diffrent application coming from diffrent-diffrent system  and I want to change the language only for web-UI application which is coming from CRM) not from the favourite list.
    Kindly provide me your input.
    Thanks and regards,
    Sandeep

    hi,
        Please check the link.
    http://help.sap.com/saphelp_crm60/helpdata/en/43/26ad4c34b30b18e10000000a1553f6/frameset.htm
    Regards
    Srinu

  • Urgent Help need - How to capture client change event

    Dear Gurus,
    I am not able to track whether user has changed any field in the table or not. I am using IWDNodeElement.isChangedByClient  to capture , but it is always returning me false.
    PLEASE HELP.
    Sample code
    wdContext.nodeTravelTable().moveFirst();
              try
                   for(int i = 1; i <= tblSize; i++)
                        wdComponentAPI.getMessageManager().reportSuccess("Currency is " + wdContext.currentCurrency_travelTableElement().getCElement());
                        wdComponentAPI.getMessageManager().reportSuccess("Is client changed" + wdContext.currentTravelModeElement().isChangedByClient());
                        if(wdContext.currentTravelModeElement().isChangedByClient())
    Thanks in Advance.
    Best Regards,
    Prasad PMV
    PS:Max points will be awarded for any kind of help

    Reply by Thomas Chadzelek 
    I would not recommend to use the changed()/isChanged() methods. They represents "dirty flags" used by our framework in certain situations ("delta handling"). I don't think that applications need access to it, except in certain situations. Anyway, these flags are set whenever an attribute is changed and reset at the end of the roundtrip.
    isChangedByClient() represents a different set of "dirty flags" whose reset is under the application's control. They are set whenever a user changes an attribute (through the Web Dynpro client), but not when server-side code does such a change.
    In NW04, these flags are quite coars-grained. A node element is marked as changed when any of its attributes has been changed.

  • Change of 'Totals table' for a Ledger.

    Hi,
    1. We are planning to do a prototype scenario on new GL by using SAP standard totals table FAGLFLEXT
    2. The same client will be used for final development by using custom developed totals table ex... ZZABCT
    Question: Is it possible to change the 'Totals table' for the Ledger while doing final development?
    Thanks in advance for help
    Purna

    Hi,
    ZZABCT seems to be a Special Ledger summary table, while FAGLFLEXT is obviously the new totals table for the (new) General Ledger, replacing the good old GLT0.
    Although newGL and FI-SL have something common in their concepts, there are enormous differences. You cannot do something in NewGL for prototyping and realize the same in FI-SL later, neither the opposite will work. NewGL and FI-SL may be run in parallel (for sure not a very common approach), for instance, if you have been used FI-SL and you do not want to give up your database not even after having migrated to newGL. But you cannot just switch between newGL and FI-SL.
    Perhaps I did not understand your exact requirement, but changing the totals table (ZZABCT) is not possible unless you delete and recreate the whole SL environment (table group) again.
    Hope that helps, points welcome
    Csaba

  • Pushing Port Descriptions based on Client changes using PI2.0

    Is it possible to write a template or job in PI to catch a trap for a client change on a wired network and push an interface description to the related interface based on that change ? For example, 802.1x client authenticates to port fa0/13 on switch1, trap is sent to prime (assuming one can be sent) prime runs a configuration template to update the description on that port with the 802.1x name of the client that authenticated ?
    I can think of a few ways to do this using perl and snmp but am hoping that there is a way to do this with PI.
    Thank you in advance for any assistance.
    Dave

    Hi Chris,
    Prime can sense the TRAP but based on traps prime automatically create or push configuration template is not possible as far as I know.
    Thanks-
    Afroz
    [Do rate the useful post]
    ****Ratings Encourages Contributors ****

  • Changes to be done for migration of SAPScript to pdf forms

    Hi,
    we are using a customized SAPScript, which is copied form a standard one, and implemented some conditions on a field.
    Now our client wants to migrate to pdf forms. We created the custom form and interface from the standard form. The interface is activated. We gave the new Custom interface while creating the form. But while activating the form, its giving an error saying u201C SOAP Framework error: SOAP Runtime Exception: CSoapExceptionTransport : HTTP send returned with status code(100,101). u201D
    I could not find anything from the error.
    After the activation of the form, i need to implement some conditions using the 'formCalc' code on a field in the layout of the form.
    I am novice in pdf forms.
    Thanks in advance,
    teja.

    Thanks for the response Sankar.
    I have one more query. I created a new Tax code by copying the existing tax codes (and just changing the CST %). So i believe the linkages to GL account is intact.
    Now how do i check if this old tax code (now not to be used) is automatically linked with other modules (i.e. SD and MM). Do i need to make anymore changes in the configurations for this ?
    Please advise.
    Thanks in Advance,
    Safi

  • Regarding changing the application settings for Financial management (BPM)

    Hi,
    I have built the sample Comma application in HFM 9.3.1 using the BPM functionality from workspace as outlined in the documentation. The consolidation rules are set to "N" for this application when I open the XML using the window client. Can anyone tell me how I can change this to "Y" through workspace and load the application again. Since its a BPM application it does not allow me to load from window client. How to modify the application properties of a Financial manegement application through workspace (BPM). Any help will be appreciated.
    Thanks in Advance......

    If you extract your application from the web using the extract tasks, check on the Financial Management Application format, this should provide you with a file with an app extension something like this:
    hfmmetada.app
    When you hit extract and then click on 1 Click here to download, then save, on the save as file type button, make sure is .app; then open your app file with a text editor, change the application settings for ConsolidationRules=N to Y.

  • R3 Client Change in BW

    Source System Client for R3 needs to be changed (from Clent X to Y)  in BW. We are planning to use BDLS for that. We are concerned about the datasources that were activated in Client X (in RSA 5). when we do a client change does it automatically reflect. if not is there any standard program which does it.
    Regards,
    Krishna.

    Hi ,
    check this..
    /thread/255792 [original link is broken]
    Regards,
    Raghu

  • Change default communication port for BITS

    We are currently using ConfigMgr2007 (native mode).  We currently have a global GPO wihich is throttling BITS to 56kpbs during current business hours (8am-5pm).  It has been suggest to use QoS to controll the amount of traffic used by SCCM distributions
    to clients.  Seeing the BITS uses HTTP (80) and HTTPS (443) by default, is there a way to change the default ports used by BITS.
    I did find the following article (About Configuration Manager Client Installation Properties)
    that there are two setting which can change the default ports. 
    CCMHTTPPORT=
    CCMHTTPSPORT=
    Is there any other methods to change the Default port for BITS communication as a whole.

    Thanks Kent and Jason.  I know I posted in the ConfigMgr forum and you pointed my to the proper documentation.  We have non-Microsoft email archiving product which utilizes BITS which is the reason for the general question regarding BITS. 
    I did not see a dedicated forum for BITS so I posted here. 
    The documentation as suggested by Kent will assist with making changes for ConfigMgr if necessary.

  • Changing my Apple ID for Apple I-Tunes!

    Somehow I changed my Apple I.D. to my Comcast email address.  "I feel like an idiot, as I worked in Computers for many years as a VAR.  Value Added Reseller, I sold service contracts to client base.  But fortunately for me the Service Dept.  all I/T employees got a bonus based upon how many Service Contracts I sold to clients.  So if I dropped a cigarette into my keyboard or messed up my HP LaserJet.  A new one would appear as if by magic!!! I am not an I/T person.  But I am currently relearning Apple as my sister downloaded a Virus onto my HP TouchSmart Server.  She took down my whole home network and I lost approximately 7000 photographs, which I am currently hopefully downloading from the Cloud.  How do I reset my Apple I.D., not the Password the I.D.???
    Also if anyone has any tips, I have Apple I-tunes, Apple TV, and I just bought the new Apple I-phone 6, and also the MacBook Pro with Retina Display.  If anyone has any great tips please let me know.
    I feel like I  am an imbecile!
    ***********@gmail.com or **********@Hotmail.com
    <Email Edited by Host>

    What makes you think you changed your Apple ID? Where are you seeing the one that has the Comcast email address? Are you certain that you never set up an Apple ID with that email address?
    The only place (and way) that you can change your Apple ID is via Manage your Apple ID: Apple - My Apple ID
    You would need to sign in with your Apple ID and password, answer your Security Questions, and then EDIT the Apple ID to a new address. If you did not go to that site and do those steps, then you probably have two Apple IDs.
    Cheers,
    GB

Maybe you are looking for