Saplogon.custom.ini not updating.

We run this shortcut:
"C:\Program Files\SAP\FrontEnd\SAPgui\saplogon.exe" /ini_file="%systemroot%\saplogon.custom.ini"
When making changes to systems with SAPLOGON, the ini file does not get updated.  (nor does any file in %systemroot%)
However, when restarting SAPLOGON, the changes persist.
Any ides where the changes are stored?
Nick

What OS and GUI version/patch are you running?
I believe Windows 7 uses the INI which is stored under C:\Users\<username>\AppData\Local\VirtualStore\Windows
Regards,
Zecher

Similar Messages

  • Regarding customer account not updated properly

    Hi gurus
    My customer account is not updated plz solve my issue.
    one material is sold to customer for rs 9/- insted of rs 10/- the difference amount is posted in sd side, all  taxes are updated in background processing. How we will update in customer.
    Plz suggest
    Edited by: Ravi Kanth on Jan 6, 2009 6:02 PM

    Hi there,
    According to == the FAQ ==
    "The recurring payment is taken three days in advance of your subscription expiring, to ensure prompt delivery of your subscription."
    Hth
    On ne regarde pas l'avenir dans un rétroviseur !
    IMac Intel Core i3 3.2 GHz - RAM 12 GB - OS 10.10.3
    Skype 7.8.391
    Logitech usb headset or Jabra 250 bt

  • Customer Master not updated when creating BP- BAPIBUSISM007_CREATEFROMDATA

    Hi All
    When I creating BP with TCODE BP-with BP role ISM020 , BP is created and all the tables are updated.
    But when I create BP programmatically with the BAPI -BAPIBUSISM007_CREATEFROMDATA
    Though the BP is created ,But The customer master tables are not updated(KNVV,KNB1,KNA1)
    Only table jjtvm is updated.
    Hence when we create SALES order , the msg appers that the  'ROLE MEDIA CUSTOMER DOES NOT EXIST FOR BP(BPNO)
    Need some help.
    regards

    HI
    Thanks for the reply.
    It is indeed very  helpful .
    I created the BP with my program and then run MDS_ppo2  TCODE
    Where I saw the missing field knvv-vkgrp,  KNVV-VKGRP: Required field check failed
    I am using the BAPI  BAPIBUSISM007_CREATEFROMDATA for creating BP, in this in none of importing parameters can i send this value to the table,
    Infact I tried with the update  statement  to send this value to the database for the BP no craeted , but failed as there is no line in KNVV for the BP created ..
    Now What should I check for.? pl do tell
    Thanks & Regards

  • Custom field not updating in screen of Purchase Order

    Hi,
    We have customer field in header and item of purchase order. If we enter value in Header, this should automatically update in item also. We have made the changes, but issue is "If i enter the value in Header and save the purcahse Order with out enter any enter button, it is not showing the value in item. the value updated the table EKPO, but in the screen it is not showing. If come back to Purcahse Order, the value is updated in screens.  "
    Is that any way to solve this issue?

    HI
    you could try BADI ME_PROCESS_PO_CUST Method Process_Header.
    you can get_data and set_data
    read header data
      gs_header   = im_header->get_data( ).
          CALL METHOD im_header->get_items
            RECEIVING
              re_items = l_items.
          LOOP AT l_items INTO l_single.
            CALL METHOD l_single-item->get_data
              RECEIVING
                re_data = gs_lines.
    After that you should use Method set_data.
    regards
    Alex

  • Custom field not updating in MARC table by mm01/mm02/mm03

    Hi,
    I have created a sub screen in Plant storage 2 of MM01 tcode with a custom field.  The field is visible in the screen but the value is not getting updated in the MARC table.  We can update the MARA table through the exit of MPA00001 but there is no option for updating the MARC table.  Please let me know if there are any options.

    HI Geeta,
    Chek this
    DATA: H_ZE1MARCM LIKE ZE1MARCM.
    IF F_CUST_SEGMENT-SEGNAM EQ 'ZE1MARCM'.
      H_ZE1MARCM = F_CUST_SEGMENT-SDATA.
      IF H_ZE1MARCM-ZMYFIELD = C_NODATA.
        CLEAR H_ZE1MARCM-ZMYFIELD.
      ELSE.
        IF H_ZE1MARCM-ZMYFIELD IS INITIAL.
          RES_FIELDS-FELDNAME = 'MARC-ZMYFIELD'.
          APPEND RES_FIELDS.
        ENDIF.
      ENDIF.
      F_MARC_UEB-ZMYFIELD = H_ZE1MARCM-ZMYFIELD.
    ENDIF.
    Given By Lars,
    Regards,
    Madhu.

  • Custom Component Not Updating Display List

    Hi all... I've created a component which is basically a meter (extends skinnable container). The skin to the component contains two rectangles (background and the actual meter).  This component receives an arraycollection with the following fields value, max and min(the arraycollection I am passing is Bindable). When I initialize and pass the data to be used to draw It works great (keep in mind - only works the first time).  I've created a button that changes the data array and shows the current meter value.  Apparently the meter's value is changing everytime I modify the ArrayCollection I've set to be used for rendering.(dont want to say "dataProvider" because it is not a Flex dataprovider, just a variable )... here is the code...
       public class meter extends SkinnableContainer {
            [SkinPart( required = "true" )]
            public var meter:spark.primitives.Rect;
            [SkinPart( required = "true" )]
            public var meterBackground:spark.primitives.Rect;
            private var _dataProvider:ArrayCollection;
            private var _renderDirty:Boolean = false;
            public function Meter() {
                super();
            public function set dataProvider( value:Object ):void {
                if ( value )
                    if(value is ArrayCollection)
                           _renderDirty = true;
                        _dataProvider = value as ArrayCollection;
                    if(_dataProvider)
                        _dataProvider.addEventListener(PropertyChangeEvent.PROPERTY_CHANGE, propertyChanged);//used both eventlisteners but none actually ever fire off
                        _dataProvider.addEventListener(CollectionEvent.COLLECTION_CHANGE,collectionChanged);
                    invalidateDisplayList();//only happens the first time
            private function collectionChanged(event:CollectionEvent):void
                Alert.show("In collection Change");//this never goes off when I change the "dataProvider"
                _renderDirty = true;
                invalidateDisplayList();
            private function propertyChanged(event:PropertyChangeEvent):void
                Alert.show("In property Change");//this never goes off when I change the "dataProvider"
                _renderDirty=true;
                 invalidateDisplayList();
            public function get dataProvider():Object {
                return _dataProvider;
            override protected function updateDisplayList( unscaledWidth:Number, unscaledHeight:Number ):void {
                if(_dataProvider))
                var span:Number = unscaledWidth / _dataProvider[0].max;
                var meterWidth:Number = _dataProvider[0].value * span;
                meter.width = meterWidth;
                _renderDirty = false;
    And this is the mxml code where I change the "value" field....
    <fx:Script>
    <![CDATA[
    [Bindable]
                private var meterData:ArrayCollection = new ArrayCollection([               
                    {value:80, max:100, min:0}
                protected function mySlider_changeHandler(event:Event):void
                    meterData[0].value = Math.round(mySlider.value)*10;               
                protected function button1_clickHandler(event:MouseEvent):void
                    // TODO Auto-generated method stub
                    var array:ArrayCollection = testMeter.dataProvider as ArrayCollection;
                    var value:Number = array[0].value as Number;
                    Alert.show(value.toString());
                   // testMeter.meter.width= Math.random()*100;
            ]]>//initial value in "meterData" does get drawn...but when it's changed with the slider..nothing happens..
           <custom:Meter id="testMeter" dataProvider="{meterData}" />
            <s:HSlider id="mySlider"
                       liveDragging="true"
                       dataTipPrecision="0"
                       change="mySlider_changeHandler(event)"
                       value="3"/>
            <s:Button click="button1_clickHandler(event)"/>
    Can you help me figure out what's going on??Thanks guys!!!

    Hi.
    Now there are some serious bugs in your code:
    Put a call to super.updateDisplayList(unscaledWidth, unscaledHeight) in your overriden method (or some funky things will start happening or it won't work at all).
    Why don't you check your _renderDirty flag in the updateDisplayList() method? You should do that (personally I would go with commitProperties() instead but it's not much of a difference I guess)
    And now the reason why your events don't fire is that because you use plain objects (just generic istances of Object). Those are not IEventDispatchers and therefore do not fire any events when you change any of the properties (which are all dynamic by the way). You have to define a custom value object class which extends the EventDispatcher (or you can implement IEventDispatcher on your own). So instead of this:[Bindable]
    private var meterData:ArrayCollection = new ArrayCollection([
       {value:80, max:100, min:0}
    You should do something like this:[Bindable]
    private var meterData:ArrayCollection = new ArrayCollection([
       new MyValueObject(80, 100, 0)
    Where MyValueObject could look like this:// this instructs MXML compiler to automaticly implement IEventDispatcher
    // and make all public properties bindable
    [Bindable]
    public class MyValueObject
       public function MyValueObject(value:Number, max:Number, min:Number) {
          this.value = value;
          this.max = max;
          this.min = min;
       public var value:Number;
       public var max:Number;
       public var min:Number;

  • Ship-to address changes on customer master not updating orders

    We have recently noticed that ship-to address changes on the customer master made with XD02 no longer show up on existing standard orders.  Similar changes to the sold-to addresses do show up but no tthe ship-to addresses.  Does anyone know how we can resolve this problem?

    hi jeff,
    the adresses of a partner is
       - with reference to the master-data  ( if unchanges in the Order )
       - of copied in the order and then changed and saved onlyy for the order.
    in the first case, a change of the main data will effect a change in the order.
    in the second case, the change of the main data will not change the order, data - they are separate.
    you can see this in se16 / table vbpa.
    look at the adressnumber.
    Adressnumbers of 9++++ are of the 2nd - manual type.
    I guess, in the ship to partner, there is done a manual change in the order.
    in solt to data normally you don't need such a change. therfor the sold-to partner will get the changes of masterdata -- the ship to partner has manual adress of the orden.
    hans

  • Local GPT.ini not updating

    Hello Everyone,
    I am having some issues with the current project i am on.  I need to replicate local group policies to all local workstation (100+) so i can launch a specific script at startup.  
    I already have it working when i manually create the policy via
     gpedit.msc on the local machines but when i try to copy the files/folders within c:\Windows\System32\GroupPolicy to another workstation the policies do not apply! ( i am copying the folders, gpt.ini and Registry.pol
    files)
    Running gpupdate /f on the workstation and multiple reboots
    did not apply the policies.
    After the copy and reboots i can run gpedit.msc and it shows the correct policy setting i need, but it is still not taking effect.
    I am finding that i need to go back into gpedit.msc and undo then re-do the settings, then the GPO was saved and gpupdate /f applied, then all policies in the set
    would apply.
    The only thing i see differently is the gpt.ini files show different version numbers.  Could this be my problem?  Any suggestions on how to resolve this are welcome.  thanks

    > workstation the policies do not apply! ( i am copying the folders,
    > gpt.ini and Registry.pol files)
    if you copy gpt.ini to a different workstation that already HAS a
    gpt.ini, you MUST ensure that the new gpt.ini has higher version numbers
    (the version is a 32 bit number. the lower 16 bit are the computer
    version, the higher 16 bit are the user version). Otherwise the computer
    will recognize that in the past, he applied version 25 eg, and now you
    provided version 16 which is donwlevel and will not apply.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • PARTNERCHA custom field not updateing

    Hello,
    I am using the PARTNERCHA migObj to update some custom fields in the BUT000 table. If I change a standard field like 'FIRST_NAME' it is successfully updated, but when I try to change a custom field the change is ignored.
    Can someone please shed some light on this problem?!
    Thanks in advance, Igor.

    Hello Igor,
    custom fields have to be treated in own customer-specific events, such as, DINP2 event. You will need to check with the responsible functional team to see how the DINP2 event was specified and developed.
    Cheers,
    Fritz

  • Data not Updated in Custom Screen fields-Vendor Master

    Hello,
    I have created a custom screen in vendor master transaction and also implemented the two BADI's below.
    Business Add-In: Processing Master Data Enhancements
    (CUSTOMER_ADD_DATA/VENDOR_ADD_DATA)
    Passed the Custom Program and Screen No in the method GET_TAXI_SCREEN
    Business Add-In: Customer Subscreens
    (CUSTOMER_ADD_DATA_CS/VENDOR_ADD_DATA_CS)
    activate it with the BADI Processing Master Data Enhancements with method CHECK_ADD_ON_ACTIVE.
    I also created a new screen and used few fields from LFA1 (Append structure fields) such that the fields on the screen are : LFA1-ZZFIELD1 etc...
    Now the issue is the screen is displayed, but the data entered on the screen is not updated on the table LFA1 or data from the table is not displayed on the custom screen.
    Am i missing something?
    Regards,
    Shiva

    Solved this problem.
    I built the query against InfoCube and not the characteristic itself. That's why I can't see the update.
    Thanks.

  • Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service. 

    Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service.  I would prefer to talk to someone directly.

    Are you using any disk cleaner or optimization tools like CleanMymac or Mackeeper?
    Regards,
    Ashutosh

  • Not Updating Customized Table when System having Performance Issue

    Hi,
    This is actually the same topic as "Not Updating Customized Table when System having Performance Issue" which is posted last December by Leonard Tan regarding the user exit EXIT_SAPLMBMB_001.
    Recently we changed the program function module z_mm_save_hide_qty to update task. However this causes more data not updated. Hence we put back the old version (without the update task).  But now it is not working as it used to be (e.g. version 1 - 10 records not updated, version 2 with update task - 20 records not updated, back to version 1 - 20 records not updated).
    I tried debugging the program, however whenever I debugged, there is nothing wrong and the data is updated correctly.
    Please advise if anyone has any idea why is this happening. Many thanks.
    Regards,
    Janet

    Hi Janet,
    you are right. This is a basic rule not to do any COMMIT or RFC calls in a user exit.
    Have a look at SAP note 92550. Here they say that exit EXIT_SAPLMBMB_001 is called in the update routine MB_POST_DOCUMENT. And this routine is already called in UPDATE TASK from  FUNCTION 'MB_UPDATE_TASKS' IN UPDATE TASK.
    SAP also tells us not to do any updates on SAP system tables like MBEW, MARD, MSEG.
    Before the exit is called, now they call 'MB_DOCUMENT_BADI' with methods MB_DOCUMENT_BEFORE_UPDATE and MB_DOCUMENT_UPDATE. Possibly you have more success implementing the BADI.
    I don't know your situation and goal so this is all I can tell you now.
    Good luck!
    Regards,
    Clemens

  • OOTB Approval Workflow on Custom List does not Update Approval Status

    I have a custom list on which I've required content approval.  I then created a workflow instance from the "Approval - SharePoint 2010" template.  For this workflow I have selected "Update the approval status after the workflow
    is completed (use this workflow to control content approval".  When I approve the list item via the workflow task item the status of the item is not updated but stays at pending even though the
    workflow shows "Completed" with the Outcome of "approved".  Is this the expected behavior, i.e. does "Update the approval status after the workflow is completed (use this workflow to control content approval"
    not work for custom lists?  Does it work on any of the lists?

    Hi Kalos1840,
    If you check "Require Content Approval" setting, only the way above can update the approval status due to the approval status is for this approval workflow. As this approval workflow cannot achieve your demand, I recommend you un-check "Require Content Approval"
    setting and create a custom workflow such as the OOTB Approval Workflow or SharePoint Designer workflow.
    Here is the steps of a SharePoint Designer workflow:
    1.Go to your custom list , click Create a Workflow in SharePoint Designer.
    2.Add a “Start a task process” action in your workflow.
    3.Click “these users” and Start a Task Process edit page will pop up.
    4.In the Participants field, input your  approvers based on the order of approval.
    5.In the right of Participants field, select “Serial (one at a time)”.
    Best  Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to update a customer's notes by email?

    Does anyone know a way of updating a customer's notes by email? My client is unable to easily update a customer's notes through the CMS. Is there an alternative or a work around? TIA

    Hi,
    find the RichPageTemplate instance on the page and call getFacets to get all facets or getFacet(java.lang.String facetName)
    http://docs.oracle.com/cd/E16162_01/apirefs.1112/e17488/oracle/adf/view/rich/component/rich/fragment/RichPageTemplate.html
    One you have the handle (UIComponent) you can manipulate it
    Frank

  • Customer name is not updating in Organization model

    Hi All,
    One employee  is created with the name "test customer" in ECC and it is assigned to organization model in CRM. After that the the employee name is changed fom test customer to __customer test. Now same changes is updating in CRM but not updating in Organization model?
                                  can you plz tell me why the employee is not updating in Organization model?
    Edited by: prajesh24 on Jun 16, 2011 11:08 AM
    Edited by: prajesh24 on Jun 16, 2011 11:32 AM

    Hi
    The changes to the business partner data flows through the middleware in run time.
    But if you assigned the user with some initial name as XYZ. Then change the name of the business partner to X1Y1Z1, then you need to remove the earlier entry in the name of XYZ and assign the new entry X1Y1Z1 manually.
    As a standard, it will not update the name in the organisational data in CRM.
    Hope this will be helpful.
    Regards

Maybe you are looking for

  • MSI GE60 2PE Apache Pro Unlocked BIOS

    Heya, i need a fully unlocked BIOS for OC my MSI 2PE Apache Pro. Fan Controll would be also nice. Computer Information: GE60 2PE MS-16GF de.msi.com/support/nb/GE60-2PE-Apache-Pro.html#down-bios&Win8.1%2064 BIOS Information: BIOS Version: E16GFIMS.526

  • Need more than 4GB of RAM Macbook

    I have an early Macbook Pro 13" (2011) w/ a 2.7Ghtz Processor and 4GB 1333 of DDR3  Ram and I'm wanting to upgrade to 8GB of ram or more if possible.  It's showing it's not available for my machine when I looked on the apple site.  Does this mean I'm

  • Problems with oracle8.1.6 installation on HP UNIX 11

    hi iam trying to install oracle on HP,but iam getting an error like "There was an error during loading library areasQueries". If i click at "stop installation of this component only" then iam getting "There was an error during loading library cluster

  • How to make hard reset on laserjet pro mfp m125rnw

    Hi, All I need some help. Cause of my ugly hands I install chineese language on my printer How can i make the hard reset to reset the language settings?  Thanks This question was solved. View Solution.

  • Device sync to another itunes library- how do I find that library

    When I go to sync either my ipod or ipad it comes up with"this device is syncd to another itunes library"- but it was working a week ago, altho my computer has had a few restores. I don't want to lose all my apps and music and resync to this library