New filed adding in BI (new enhancement)

Dear friends,
i got new requrement today i.e  adding a new filed in crm side and BI side that is
CRM SIDE -
>
1.Enhance Data Source 0CRM_JMD_ACCT_H with the new field (LK description)
-     Append new field in the structure of data source of 0CRM_JMD_ACCT_H.
-     Adding routine in BADI to populate value for LK description.
You can follow the ABAP pattern how we get LKnumber.  You can get description from field DESCRIPTION on structure LT_orderadm_h
BI side -
>
1.     Replicate datasource 0CRM_SRV_REQ_INCI_H
2.     Create new infoobject that represent LK description
3.     Add infoobject LK description on cube: A,  DSO : B, C.
4.     Mapping related transformation with new field from 0CRM_SRV_REQ_INCI_H
5.     Add new infoobject KIV description on multiprovider ZMC_SRH1.
6.     Add LK description in related query via query designer.
My question is if want to get the new filed in above mentioned data source  , once if we repllicate the datasource FROM CRM TO BI whther the field is also availble in that particular datasoruce in BI? so that i can start edit the availabe CUBES and DSO ? or  else again i need to add that filed in datasorce? i measn in RSA6 ?
please confimr me the doubts and thank you.
regards
anand

Hi....
Please check the below link, it will help you to understand the use of BWA1 :
Re: Need some info regarding BWA1 transaction in CRM
Also check :
http://www.sapfans.com/forums/viewtopic.php?f=16&t=142812
Regards,
Debjani..

Similar Messages

  • New alarm added when a new event is created in calendar

    Why a new alarm is automatically added when i create a new event in calendar? is it a bug?

    thank you for your answer
    i talk about reminder (sorry i'm a french user..)
    the default for events is "nothing" but i always have a reminder when i create a new event (10min before) .. i don't understand why..

  • ME21N - new field added and same value posted to it for all line items

    hi all
    i have added new field under item  level in me21n screen.
    data for new filed fetched from tables with values entered in header level material number.
    For one record, it is ok
    but for multiple records, same value is fetched for all line items
    i have written coding in screen exit for 0111
    and function exits EXIT_SAPMM06E_016 and EXIT_SAPMM06E_018
    how to solve
    pl help
    regards
    senthil

    MODULE STATUS_0111 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
      if sy-tcode eq 'ME23N' or sy-tcode eq 'ME23'.
        LOOP at SCREEN.
          if screen-group1 ne 'PCS'.
            screen-input = 0.
            MODIFY SCREEN.
          endif.
        ENDLOOP.
      ENDIF.
      TYPES : BEGIN OF ty_cabn1,
             atnam TYPE cabn-atnam,
           end of ty_cabn1.
      DATA : itab_cabn1 TYPE STANDARD TABLE OF ty_cabn1 INITIAL SIZE 0,
             wa_cabn1 TYPE ty_cabn1.
      TYPES : BEGIN OF ty_cawn1,
        atinn TYPE cawn-atinn,
        atzhl TYPE cawn-atzhl,
        atwrt TYPE cawn-atwrt,
        end of ty_cawn1.
      DATA : itab_cawn1 TYPE STANDARD TABLE OF ty_cawn1 INITIAL SIZE 0,
             wa_cawn1 TYPE ty_cawn1.
      TYPES : BEGIN OF ty_cawnt1,
       pcs TYPE cawnt-atwtb,
        atinn TYPE cawnt-atinn,
        atzhl TYPE cawnt-atzhl,
        atwtb TYPE cawnt-atwtb,
          end of ty_cawnt1.
      DATA : itab_cawnt1 TYPE TABLE OF ty_cawnt1,
             wa_cawnt1 TYPE ty_cawnt1.
      TYPES : BEGIN OF ty_pcs1,
    pcs TYPE cawnt-atwtb,
      atwrt TYPE cawn-atwrt,
      atwtb TYPE cawnt-atwtb,
        end of ty_pcs1.
      DATA : itab_pcs3 TYPE TABLE OF ty_pcs1,
             itab_pcs4 TYPE TABLE OF ty_pcs1,
             wa_pcs1 TYPE ty_pcs1.
      TYPES : BEGIN OF ty_pcsn,
      matnr TYPE ausp-objek,
      ebelp TYPE dynpread-stepl,
      atwrt TYPE cawn-atwrt,
      atwtb TYPE cawnt-atwtb,
      END OF ty_pcsn.
      DATA : itab_pcsn TYPE TABLE OF ty_pcsn,
             wa_pcsn TYPE ty_pcsn.
      TYPES : BEGIN OF ty_ausp1,
         objek TYPE ausp-objek,
         atinn TYPE ausp-atinn,
         atwrt TYPE ausp-atwrt,
       END OF ty_ausp1.
      DATA : itab_ausp1 TYPE STANDARD TABLE OF ty_ausp1 INITIAL SIZE 0,
             wa_ausp1   TYPE ty_ausp1.
      DATA : param_name1(35) TYPE  c.
      DATA: progname1      TYPE sy-repid,
            dynnum1        TYPE sy-dynnr,
            dynpro_values1 TYPE TABLE OF dynpread,
            dynpro_values2 TYPE TABLE OF dynpread,
            field_value1   LIKE LINE OF dynpro_values1,
            ematn1         TYPE mara-matnr.
      if sy-tcode ne 'ME23N' and sy-tcode ne 'ME23'.  "psk
        clear : itab_cabn1,itab_cawn1,itab_cawnt1,itab_pcs3,itab_pcs4,itab_pcsn,itab_ausp1.
        clear : wa_cawn1,wa_cawnt1,wa_pcs1,wa_ausp1.
        if sy-uname eq 'IBM_ABAP'.
          param_name1 = '000000001'.
        else.
          param_name1 = '000000013'.
        endif.
        SELECT atnam
        FROM cabn
        INTO CORRESPONDING FIELDS OF TABLE itab_cabn1
        WHERE atinn  = param_name1.
        select *
        FROM cawn
        into CORRESPONDING FIELDS OF TABLE itab_cawn1
        WHERE atinn = param_name1.
        if itab_cawn1[] is NOT INITIAL.
          SELECT atinn atzhl atwtb
          FROM cawnt
          INTo CORRESPONDING FIELDS OF TABLE itab_cawnt1
          FOR ALL ENTRIES IN itab_cawn1
          WHERE atinn = itab_cawn1-atinn
          AND atzhl = itab_cawn1-atzhl.
        endif.
        if itab_cawnt1[] is NOT INITIAL.
          sort itab_cawnt1 by atinn atzhl.
          loop at itab_cawnt1 INTO wa_cawnt1.
            READ TABLE itab_cawn1 INTO wa_cawn1 with key atinn = wa_cawnt1-atinn
                                                         atzhl = wa_cawnt1-atzhl BINARY SEARCH.
            if sy-subrc eq 0.
           CONCATENATE wa_cawn-atwrt '->' wa_cawnt-atwtb INTO wa_cawnt-pcs.
           MODIFY itab_cawnt FROM wa_cawnt TRANSPORTING pcs.
           wa_pcs-pcs = wa_cawnt-pcs.
              wa_pcs1-atwrt = wa_cawn1-atwrt.
              wa_pcs1-atwtb = wa_cawnt1-atwtb.
              append wa_pcs1 to itab_pcs3.
            ENDIF.
            CLEAR : wa_cawnt1,wa_cawn1, wa_pcs1.
          ENDLOOP.
        ENDIF.
        CLEAR: dynpro_values1, field_value1.
    dynpro_values-FIELDNAME = 'MEPO1211-EMATN'.
    APPEND dynpro_values.
        field_value1-fieldname = 'MEPO1211-ematn'.
        APPEND field_value1 TO dynpro_values1.
        progname1 = 'SAPLMEGUI'.
        dynnum1 = '1211'.
        CALL FUNCTION 'DYNP_VALUES_READ'
          EXPORTING
            DYNAME                               = progname1
            DYNUMB                               = dynnum1
      TRANSLATE_TO_UPPER                   = ' '
         REQUEST                                = 'A'
      PERFORM_CONVERSION_EXITS             = ' '
      PERFORM_INPUT_CONVERSION             = ' '
      DETERMINE_LOOP_INDEX                 = ' '
      START_SEARCH_IN_CURRENT_SCREEN       = ' '
      START_SEARCH_IN_MAIN_SCREEN          = ' '
      START_SEARCH_IN_STACKED_SCREEN       = ' '
      START_SEARCH_ON_SCR_STACKPOS         = ' '
      SEARCH_OWN_SUBSCREENS_FIRST          = ' '
      SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '
          TABLES
            DYNPFIELDS                           = dynpro_values1
       EXCEPTIONS
         INVALID_ABAPWORKAREA                 = 1
         INVALID_DYNPROFIELD                  = 2
         INVALID_DYNPRONAME                   = 3
         INVALID_DYNPRONUMMER                 = 4
         INVALID_REQUEST                      = 5
         NO_FIELDDESCRIPTION                  = 6
         INVALID_PARAMETER                    = 7
         UNDEFIND_ERROR                       = 8
         DOUBLE_CONVERSION                    = 9
         STEPL_NOT_FOUND                      = 10
         OTHERS                               = 11
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    READ TABLE dynpro_values1 INTO field_value1 with KEY fieldname = 'MEPO1211-EMATN'.
        LOOP at dynpro_values1 INTO field_value1 WHERE fieldname = 'MEPO1211-EMATN'.
          clear ematn1.
          if sy-subrc eq 0.
            ematn1 = field_value1-fieldvalue.
          endif.
          if ematn1 is not INITIAL.
            clear : wa_cawn1,wa_cawnt1,wa_pcs1,wa_ausp1.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                INPUT  = ematn1
              IMPORTING
                OUTPUT = ematn1.
            select *
            FROM ausp
            INTO CORRESPONDING FIELDS OF TABLE itab_ausp1
            WHERE objek = ematn1
            and atinn = param_name1.
            CLEAR itab_pcs4.
            if itab_ausp1[] is not INITIAL.
              sort itab_ausp1 by atinn atwrt.
              sort itab_cawn1 by atinn.
              READ TABLE itab_ausp1 INTO wa_ausp1 INDEX 1.
              loop at itab_cawn1 INTO wa_cawn1 WHERE atinn = wa_ausp1-atinn AND atwrt = wa_ausp1-atwrt.
                READ TABLE itab_cawnt1 INTO wa_cawnt1 WITH KEY atinn = wa_cawn1-atinn
                                                                atzhl = wa_cawn1-atzhl.
                if sy-subrc eq 0.
                  wa_pcs1-atwrt = wa_cawn1-atwrt.
                  wa_pcs1-atwtb = wa_cawnt1-atwtb.
                  append wa_pcs1 to itab_pcs4.
                  wa_pcsn-matnr = wa_ausp1-objek.
                  wa_pcsn-ebelp = field_value1-stepl.
                  wa_pcsn-atwrt = wa_cawn1-atwrt.
                  wa_pcsn-atwtb = wa_cawnt1-atwtb.
                  APPEND wa_pcsn to itab_pcsn.
                ENDIF.
                clear : wa_ausp1,wa_cawn1,wa_cawnt1.
              ENDLOOP.
            ENDIF.
           clear wa_pcs1.
           read TABLE itab_pcs4 into wa_pcs1 index 1.
           if sy-subrc eq 0.
             EKPO_CI-ZPCS = wa_pcs1-atwrt.
           endif.
          ENDIF.
        ENDLOOP.
        CLEAR: field_value1.
        LOOP at dynpro_values1 INTO field_value1 WHERE fieldname = 'MEPO1211-EMATN'.
          clear wa_pcsn.
          if field_value1-fieldvalue is not INITIAL.
            read TABLE itab_pcsn INTO wa_pcsn with key  matnr = field_value1-fieldvalue
                                                        ebelp = field_value1-stepl.
            if sy-subrc eq 0.
              clear  EKPO_CI-ZPCS.
    *EKPO_CI-ZPCS = wa_pcs1-atwrt.
              EKPO_CI-ZPCS = wa_pcsn-atwrt.
            endif.
          endif.
        ENDLOOP.
       CLEAR: field_value1, dynpro_values1.
       progname1 = 'SAPLXM06'.
       dynnum1   = '0111'.
       field_value1-fieldname = 'EKPO_CI-ZPCS'.
       APPEND field_value1 TO dynpro_values1.
       if ematn1 is not INITIAL.
         clear wa_pcs1.
         read TABLE itab_pcs4 into wa_pcs1 index 1.
         if sy-subrc eq 0.
           EKPO_CI-ZPCS = wa_pcs1-atwrt.
         endif.
       ENDIF.
      endif.
    ENDMODULE.                 " STATUS_0111  OUTPUT
    Function exits:
    ^^^^^^^^^^^^^^^^^
    EXIT_SAPMM06E_016
    ^^^^^^^^^^^^^^^^^
    INCLUDE ZXM06U41 .
    DATA XFISTL LIKE EKPO-FISTL.
    TABLES: ADRC, T001W.
    DATA: PLANT LIKE T001W-WERKS.
    SELECT SINGLE * FROM T001W WHERE WERKS = I_EKPO-WERKS.
    SELECT SINGLE * FROM ADRC WHERE ADDRNUMBER = T001W-ADRNR.
    XFISTL = ADRC-SORT2.
    SET PARAMETER ID 'FIS' FIELD XFISTL.
    * Added For PCS 12.11.2010
    DATA : fs_ekpo type EKPO_CI.
    if sy-tcode = 'ME22N' or sy-tcode = 'ME23N'.
    *  if tekpo-zpcs is INITIAL.
    *    message e000(zmm) with 'PCS Type should be chosen'.
    *  endif.
      loop at tekpo.
        if ( tekpo-ebeln eq i_ekpo-ebeln and tekpo-ebelp eq i_ekpo-ebelp ).
          ekpo_ci-zpcs = tekpo-zpcs.
        endif.
      ENDLOOP.
    endif.
    ^^^^^^^^^^^^^^^^^
    EXIT_SAPMM06E_018
    ^^^^^^^^^^^^^^^^^
    INCLUDE ZXM06U40 .
    E_CI_EKPO-ZPCS = EKPO_CI-ZPCS.
    E_CI_UPDATE = 'X'.

  • Permissions in a folder are not applied to new files added by users over shared network

    New files added to a shared folder do not inherit the permissions of the folder but rather retain the permissions of the user. Because the purpose of the folder on the network is to allow multiple users access to all the files (read and write), these new files cannot be accessed and editd by others.Is there a way to have the new files automatically inherit the folder permissons? I am aware of the "Apply to enclosed items " drop-down in the Get Info window but this is not practical given the number of new files that are produced and filed.
    THanks,
    JD

    If it's the folder is on the boot drive then the only way to accomplish this is with a combination of groups and ACL's as far as I know. There may be other ways but this is the one I know.
    You say the folder is on the network but is on the boot disk, how are you setting this up and are the users accessing this all from Mac's? And they all have accounts on this Mac?
    In a nutshell you would setup a group that all the users needing to access the folder belong to and then setup the ACL on the fodder so that all member's of that group will have full permission to whatever is in the folder.
    So first in Users&Groups create a group for this and add all the users who need access.
    The do to the folder and change its group to the group you created and change its mode to 775 (or 770 if you don't want anyone else having even read access on the folder)
    Then enter this
    sudo chmod -R +a "GroupNameCreated  allow delete,chown,list,search,add_file,\
    add_subdirectory,delete_child,file_inherit,directory_inherit"  folderToChange
    Now the weird thing is if you look at files in the folder they will appear to have the normal Unix mode of 644 but anyone in the group will have read, write and delete permission on the items in the folder.
    I suggest you play with this on a test folder and seeing if it meets your needs before changing the working folder.
    Also this will not change anything already in the folder it only applies to newly created files/folders
    regards

  • New filed for F4 hit list for IB component - PCUI

    Hi All,
    I have a requirement,
    A new filed "street" has to be added for the F4 hit list when searched on I Base component.
    The BSP application is CRM_BSP_FRAME
    Application     COMM_IBASE_M_F4
    Appl.Set             COMM_IBASE
    Structure Name       CRMT_BSP_IBASE_CS_F4
    Field Group         IBA_TREE_NF_F4
    Structure Name  CRMT_BSP_IBASE_TREE_NF
    I have added the field in CRMT_BSP_IBASE_TREE_NF and then to the field group IBA_TREE_NF_F4. Created a new field label name too.
    When I execute the application, the field data is blank.
    Can you please let me know how to fetch data and assign it to the field. I am new to CRM. Please explain in details
    Thank you in advance
    Sree

    Hi
    I have solved it.
    Thanks
    Edited by: Sree on May 5, 2010 8:23 AM

  • Adding New Data To Line Chart: New Data Does Not Inherit Previous Color Scheme

    This has me very confused. Here's what's being done:
    Right-click on existing chart
    Select "Data..."
    Add additional data in the dialog that pops up
    Click check-mark
    The chart appends more data to the existing lines on the line chart, as it should, however the newly created portion of one of the lines (new data) is not the same color as the line up to that point. The line color is #0084A9, but when the new data is entered the new data on that same line is represented in an ever so slightly darker blue.
    Any guesses as to why that would be happening? I can manually chage it, but that's a hassle and shouldn't necessary - I wouldn't think, anyway. Any help would be appreciated.
    Thanks!
    Very Best,
    Tanner Campbell

    OK looked at this closer, and seen your problem  as  acolor shift from PMS to a CMYK that was slightly off.
    If you want to work with Hexadecimal colors, then you need to File>> Document Color Mode >> RGB, otherwise your colors won't stick but convert to cmyk and be off.
    Your graph went through some editing and got corrupted. I copied and pasted your date into a new graph, and then used the testube to apply samples to get your colors back. Will send you an email with fixed file.
    That’s the strangest thing.  The color you’re seeing is #4e46ff, the color it should be is the color reflected in the legend: #0083a9
    What’s extra interesting is that when I open it I see the legend color for the entire line. Then, when I add data, the section of the line that depicts the newly added data is #4e46ff …. So I have this two tone line.  It’s intriguing that you opened this on a mac and this difference was presence, I wonder if that is in anyway a clue. Maybe the original document was created in RGB and the new data is on CMYK? Thoughts?

  • How can I add a new filed to standart SAP Screen

    Hi eveybody,
    I am using ima11 t-code and I need to add A new screen field to standart SAP screen(program No SAPLAIA1 Screen:1001 ).I have found five user-exits(AAIR0001,AAIR0002A,AIR0003,AAIR0004,AAIR0006) but there is no screen-exit. How can I add a new filed to standart SAP Screen.Is it possible? If it is possible, how can I do that?

    hi
    yes you can add a search help for a filed on the screen
    but you need to find out for the USER EXIT available for that T-CODE
    because it is a standard T-CODE we can't add code directly to the standard T-code
    1st we need to find out for a user exit and then add code in that user exit
    reward if usefull

  • I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info in apps) and reverted back to all my old data.  How can I retrieve all the lost data??

    I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info added to apps) and reverted back to all my old data (literally uploaded all of my old texts and 1400 old pics and deleted anything new).  How can I retrieve all the lost data?? Please help!!

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

  • New MovieClips added to existing SWC library not available in Flash Builder

    To be as brief as possible with this...
    I have 2 swc libraries in my Flash Builder Project. One is in a "Common" project and the other one is in a MobilePlayer project. Obviously the "common" project contains UI assets that apply across the board, while the MobilePlayer version contains assets specific to that version of the application.
    Both swc files are in the respective libraries for each project we are referencing. Up until yesterday I could add new MovieClips to the "common.swc" and they would be available across the board instantly.
    Sometime yesterday I could not get new MCs added to my "common.swc" to show up in the intellisense, or become avaialble whatsoever.
    For troubleshooting I am creating a Square, turning it into a MC symbol, exported for AS with a classname of "Fubar"
    whenever I try and create a new instance of :Fubar() to anything anywhere in my applicatioin I get the Call to possibly undefined method Fubar error message. It does not show up in intellisense menus and it is NON EXISTENT.
    HOWEVER — Named movieclips within my .swc library I have already been using such as "CompanyLogo()" etc etc are STILL fully available and can be referenced from anywhere in my application. I can add a new CompanyLogo()  anywhere I want with no problem.
    As ANOTHER test, I REMOVED the movieclips CompanyLogo (and others) from my Library and re-saved the SWC.
    All of a sudden Flash Buider generates a compiler error (undefined method) for each missing referenced MC in the swc file (obviously, because they are no longer there).
    However, those named MCs still show up in intellisense menus etc etc.
    Basically what I can determine is that Flash Builder is not updating and picking up any changes to this SWC library whenever anything is added or removed from it. At some point it became "locked" in memory (for lack of a better term) and it refuses to recognize that the file has been changed.
    When I extract the catalog.xml from the SWC and read through it, I can find nodes for every single NEW mc I've created yet I cannot get them to show up in Flash Builder. I refresh, close and restart Flash Builder and have done everything I can possibly think of to get my updates to register and they refuse.
    On the other hand my "mobile.swc" updates just fine as I make changes to it. If I add a new MC to it, it is instantly available. If I take away a MC it FB instantly recognizes that it is gone.
    Am I doing something wrong here or am I correct in my assumption that for some reason FB refuses to update the contents of my "common.swc" library into memory?
    Any insight would be appreciated as I cannot find a single relevant answer in 3 hours of Google searching.

    OK,
    Now I see what is really going on. I am trying to reference MCs from my "common.swc" lib which is in a different project, and the reason they are showing up and available is because I used them in MXML files within the "common" project that are called upon and loaded before the mobile specific login screen MXML is loaded.
    I just did a quick test to see if the new button I created would be available within the "common" project and it is there, and shows up with intellisense etc etc as expected.
    When I add an instance of my new button to a MXML file being loaded before the mobile specific stuff I can then drop it into my mobile specific screens and it shows up.
    I either need to figure out how to reference MCs within a swc inside of a different project directly, or just declare them when the application first loads.

  • Create New Filed in Line Item Text Tab

    Hi Experts,
    How Can I create a new filed in Quotation > Line Item > Text Tab ?
    Tks. & Brgds.
    Ripon

    Hi,
    Hope your requirement is to add one u2018Text typeu2019 in the line item of the sales order.  Say you want to add u2018ITEM DETAILS_SOURCEu2019 in the line item text of sales order. Follow the steps given below.
    1.     SPRO >> SD >> Basic function >> Text Control. Click u2018Text Controlu2019
    2.     Click on u2018Define Text Typeu2019
    3.     Select u2018Sales Documentu2019 and then u2018Itemu2019
    4.     Click on u2018Changeu2019; select the Text procedure u2018Sales itemu2019 and click on u2018Text IDu2019
    5.     The text object is VBBP; Create a new u2018Text  IDu2019; Go for a  new entry and enter the sequence number (higher than the existing one); enter TEXT id as u2018ITEM DETAILS_SOURCEu2019; save
    6.     Now the new text id will be displayed at item text if you create a sales document that includes inquiry, quotation and sales order.
    Hope this will be useful to you.
    Regards,     
    K Bharathi

  • New bookmarks added don't appear anymore when Firefox is restarted

    Hello everybody,
    I have a Mac OS X Lion server which runs an OpenDirectory as master.
    About 50 clients connect to this server, also with Mac OS X Lion installed on each client.
    Each User has his Homedir on the server, and Firefox is installed on each client.
    The problem is : if a client adds a bookmark in Firefox, when Firefox is restarted, the new bookmark is not there anymore.
    Firefox can retreive its bookmarks when the client logs in with a local user on the client.
    So, I thought it was a problem with rights on Homedir, but they are the same on the local user as on the Opendirectory user.
    So I looked farther in fireFox sqlite databases, and I saw this after installing Sqlite Manager Firefox extension :
    I opened Firefox and Sqlite Manager and saw that :
    when a bookmark is added, moz_bookmarks table from places.sqlite database receives a new record ; but when Firefox is stopped, either modification are not committed, or table reverts in its preceeding state, because, when Firefox is restarted, the new bookmark is not there.
    So, I retried to add a new bookmark, and from Sqlite Manager, i forced changes committing through 'commit;' command ; and yet, when I stopped and restarted Firefox, The new bookmark was here !

    Hi cor-el,
    I already tried your two links from Mozilla support without success ;
    I also to tried to delete places.sqlite and even entire profile : in these cases, curiously, it is possible to add a new bookmark, restart Firefox and retrieve the new bookmark, but only once !
    If we try yet to add another bookmark, it is not here when Firefox is restarted.
    Here is a copy of 'ls -l' in profile during the process of adding a new bookmark. (excuse me for editing format, but I guess you already know what file to look at)
    '''After adding a new bookmark :'''
    -rw-r--r--@ 1 test2 staff 425984 3 mai 15:28 addons.sqlite
    -rw-r--r--@ 1 test2 staff 21182 3 mai 15:30 blocklist.xml
    drwx------@ 6 test2 staff 264 4 mai 09:17 bookmarkbackups
    -rw-------@ 1 test2 staff 98304 4 mai 09:32 cert8.db
    -rw-r--r--@ 1 test2 staff 98304 3 mai 15:22 chromeappsstore.sqlite
    -rw-------@ 1 test2 staff 201 2 mai 11:51 compatibility.ini
    -rw-r--r--@ 1 test2 staff 229376 30 avr 15:29 content-prefs.sqlite
    -rw-r--r--@ 1 test2 staff 524288 4 mai 09:33 cookies.sqlite
    -rw-r--r--@ 1 test2 staff 65536 30 avr 15:30 downloads.sqlite
    drwxr-xr-x@ 4 test2 staff 264 2 mai 11:36 extensions
    -rw-r--r--@ 1 test2 staff 335 2 mai 11:47 extensions.ini
    -rw-r--r--@ 1 test2 staff 425984 3 mai 15:28 extensions.sqlite
    -rw-r--r--@ 1 test2 staff 163840 4 mai 09:33 formhistory.sqlite
    -rw-------@ 1 test2 staff 32768 4 mai 09:32 key3.db
    -rw-r--r--@ 1 test2 staff 452 2 mai 11:22 localstore-safe.rdf
    -rw-r--r--@ 1 test2 staff 2391 4 mai 09:32 localstore.rdf
    -rw-r--r--@ 1 test2 staff 3225 30 avr 15:38 mimeTypes.rdf
    drwx------@ 2 test2 staff 264 30 avr 15:29 minidumps
    -rw-r--r--@ 1 test2 staff 65536 3 mai 15:37 permissions.sqlite
    -rw-r--r--@ 1 test2 staff 10485760 4 mai 09:33 places.sqlite
    -rw-r--r--@ 1 test2 staff 623256 4 mai 09:33 places.sqlite-journal
    -rw-------@ 1 test2 staff 6271 2 mai 14:09 pluginreg.dat
    -rw-------@ 1 test2 staff 4652 4 mai 09:33 prefs.js
    -rw-r--r--@ 1 test2 staff 12063 30 avr 16:33 search.json
    -rw-r--r--@ 1 test2 staff 65536 30 avr 16:33 search.sqlite
    -rw-------@ 1 test2 staff 32768 30 avr 15:29 secmod.db
    -rw-------@ 1 test2 staff 757 4 mai 09:33 sessionstore.bak
    -rw-------@ 1 test2 staff 9829 4 mai 09:33 sessionstore.js
    -rw-r--r--@ 1 test2 staff 294912 2 mai 16:36 signons.sqlite
    -rw-r--r--@ 1 test2 staff 154 4 mai 09:33 urlclassifierkey3.txt
    drwxr-xr-x@ 5 test2 staff 264 30 avr 16:41 weave
    -rw-r--r--@ 1 test2 staff 98304 3 mai 15:57 webappsstore.sqlite
    '''After stopping FireFox :'''
    -rw-r--r--@ 1 test2 staff 425984 3 mai 15:28 addons.sqlite
    -rw-r--r--@ 1 test2 staff 21182 3 mai 15:30 blocklist.xml
    drwx------@ 6 test2 staff 264 4 mai 09:17 bookmarkbackups
    -rw-------@ 1 test2 staff 98304 4 mai 09:34 cert8.db
    -rw-r--r--@ 1 test2 staff 98304 3 mai 15:22 chromeappsstore.sqlite
    -rw-------@ 1 test2 staff 201 2 mai 11:51 compatibility.ini
    -rw-r--r--@ 1 test2 staff 229376 30 avr 15:29 content-prefs.sqlite
    -rw-r--r--@ 1 test2 staff 524288 4 mai 09:33 cookies.sqlite
    -rw-r--r--@ 1 test2 staff 65536 30 avr 15:30 downloads.sqlite
    drwxr-xr-x@ 4 test2 staff 264 2 mai 11:36 extensions
    -rw-r--r--@ 1 test2 staff 335 2 mai 11:47 extensions.ini
    -rw-r--r--@ 1 test2 staff 425984 3 mai 15:28 extensions.sqlite
    -rw-r--r--@ 1 test2 staff 163840 4 mai 09:33 formhistory.sqlite
    -rw-------@ 1 test2 staff 32768 4 mai 09:34 key3.db
    -rw-r--r--@ 1 test2 staff 452 2 mai 11:22 localstore-safe.rdf
    -rw-r--r--@ 1 test2 staff 2217 4 mai 09:34 localstore.rdf
    -rw-r--r--@ 1 test2 staff 3225 30 avr 15:38 mimeTypes.rdf
    drwx------@ 2 test2 staff 264 30 avr 15:29 minidumps
    -rw-r--r--@ 1 test2 staff 65536 3 mai 15:37 permissions.sqlite
    -rw-r--r--@ 1 test2 staff 10485760 4 mai 09:33 places.sqlite
    -rw-------@ 1 test2 staff 6271 2 mai 14:09 pluginreg.dat
    -rw-------@ 1 test2 staff 4652 4 mai 09:34 prefs.js
    -rw-r--r--@ 1 test2 staff 12063 30 avr 16:33 search.json
    -rw-r--r--@ 1 test2 staff 65536 30 avr 16:33 search.sqlite
    -rw-------@ 1 test2 staff 32768 30 avr 15:29 secmod.db
    -rw-------@ 1 test2 staff 757 4 mai 09:33 sessionstore.bak
    -rw-------@ 1 test2 staff 2222 4 mai 09:34 sessionstore.js
    -rw-r--r--@ 1 test2 staff 294912 2 mai 16:36 signons.sqlite
    -rw-r--r--@ 1 test2 staff 154 4 mai 09:33 urlclassifierkey3.txt
    drwxr-xr-x@ 5 test2 staff 264 30 avr 16:41 weave
    -rw-r--r--@ 1 test2 staff 98304 3 mai 15:57 webappsstore.sqlite
    '''After starting Firefox again (new bookmark added above is not here anymore) :'''
    -rw-r--r--@ 1 test2 staff 425984 3 mai 15:28 addons.sqlite
    -rw-r--r--@ 1 test2 staff 21182 3 mai 15:30 blocklist.xml
    drwx------@ 6 test2 staff 264 4 mai 09:17 bookmarkbackups
    -rw-------@ 1 test2 staff 98304 4 mai 09:34 cert8.db
    -rw-r--r--@ 1 test2 staff 98304 3 mai 15:22 chromeappsstore.sqlite
    -rw-------@ 1 test2 staff 201 2 mai 11:51 compatibility.ini
    -rw-r--r--@ 1 test2 staff 229376 30 avr 15:29 content-prefs.sqlite
    -rw-r--r--@ 1 test2 staff 524288 4 mai 09:33 cookies.sqlite
    -rw-r--r--@ 1 test2 staff 65536 30 avr 15:30 downloads.sqlite
    drwxr-xr-x@ 4 test2 staff 264 2 mai 11:36 extensions
    -rw-r--r--@ 1 test2 staff 335 2 mai 11:47 extensions.ini
    -rw-r--r--@ 1 test2 staff 425984 3 mai 15:28 extensions.sqlite
    -rw-r--r--@ 1 test2 staff 163840 4 mai 09:33 formhistory.sqlite
    -rw-------@ 1 test2 staff 32768 4 mai 09:34 key3.db
    -rw-r--r--@ 1 test2 staff 452 2 mai 11:22 localstore-safe.rdf
    -rw-r--r--@ 1 test2 staff 2217 4 mai 09:34 localstore.rdf
    -rw-r--r--@ 1 test2 staff 3225 30 avr 15:38 mimeTypes.rdf
    drwx------@ 2 test2 staff 264 30 avr 15:29 minidumps
    -rw-r--r--@ 1 test2 staff 65536 3 mai 15:37 permissions.sqlite
    -rw-r--r--@ 1 test2 staff 10485760 4 mai 09:33 places.sqlite
    -rw-------@ 1 test2 staff 6271 2 mai 14:09 pluginreg.dat
    -rw-------@ 1 test2 staff 4652 4 mai 09:34 prefs.js
    -rw-r--r--@ 1 test2 staff 12063 30 avr 16:33 search.json
    -rw-r--r--@ 1 test2 staff 65536 30 avr 16:33 search.sqlite
    -rw-------@ 1 test2 staff 32768 30 avr 15:29 secmod.db
    -rw-------@ 1 test2 staff 2222 4 mai 09:34 sessionstore.bak
    -rw-------@ 1 test2 staff 2999 4 mai 09:34 sessionstore.js
    -rw-r--r--@ 1 test2 staff 294912 2 mai 16:36 signons.sqlite
    -rw-r--r--@ 1 test2 staff 154 4 mai 09:34 urlclassifierkey3.txt
    drwxr-xr-x@ 5 test2 staff 264 30 avr 16:41 weave
    -rw-r--r--@ 1 test2 staff 98304 3 mai 15:57 webappsstore.sqlite

  • Trouble adding files with new 7.0

    Ever since I downloaded iTunes 7.0 and the updated 7.01 and I try to add files to my iTunes library from my hard drive it will only allow me to add up to 5 files which is a real pain in the neck. If I am adding a new cd I have to keep going back to "add file to library" and repeating the steps. I never had this problem until the recent update of iTunes. I could add 100 files and they would all make it to my iTunes library. Any ideas?
    Homemade   Windows XP  
    Homemade   Windows XP  

    No, my hard drive is not full. I am not an idiot. I am far from full. That is not the problem anyway, if you read my post. I do not use iTunes to upload my cds. I use another program because I don't like the way iTunes does it. I add the files from my hard drive to iTunes using "add new files to library" from the file menu. However it will only allow me to add 5 at a time. Very annoying. From the sounds of things they really screwed up with this new 7.0 version. They will never get another dime of my money since my iPod gets a sad face often, won't play, and the only advice I got was "well, you will have to buy a new one, we have a new one coming out in September." Thanks Apple, for making crap products that need to be replaced every 15 months.

  • Can't get new photos added to existing iPhoto albums to sync with iPhone

    I tried talking about this in the iTunes area, but there was no response:
    https://discussions.apple.com/message/20660036#20660036
    I thought I'd drop by the iPhone discussion area next.
    The problem in a nutshell is that I can't get new photos added to iPhoto albums to sync with my iPhone 5. I can even unselect the albums, sync, see the albums deleted on the iPhone, select the albums again, sync, see the albums recreated - but the recreated albums don't include the photos I added yesterday.
    I don't know if this is an iTunes 11 bug, an iPhoto bug or an iPhone bug.
    Any suggestions?
    Thanks,
    doug

    Yes, but which album will be empty?
    Anyway, as soon as I saw how creating albums locally on the iPhone actually worked I said to myself, "This is not reasonable" and as much as I dislike iPhoto decided to keep doing it there until that feature is improved.
    It seems like an obvious thing to improve. Then the albums can sync between the iPhone, iPhoto and other iOS devices more like "it just works" (which it doesn't do now).
    doug

  • ALV Grid default values for new rows added with Add/Insert buttons

    Hi!
    Help, please,  to find a way how to set default values for new rows added with Add/Insert buttons in
    ALV Grid.

    I have found salution:
    ALV Grid u2013 Insert row function
    Sometimes we need to assign some default values when we create a new row in a grid using standard ALV Append row button. In our scenario we will see how to assign default values to Airline Code (CARRID), Flight Connection Number (CONNID) and Flight date (FLDATE) when a new row is created. To do that we need to handle DATA_CHANGED event in the program like mentioned below.
    Definition of a class:
    Code:
          CLASS lcl_event_receiver DEFINITION
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
    METHODS:
         handle_data_changed
         FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed
                           e_ucomm.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    Implementation of a class:
    Code:
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_DATA_CHANGED.
        DATA: dl_ins_row TYPE lvc_s_moce.   " Insert Row
          FIELD-SYMBOLS: <fs> TYPE table.    " Output table
    Loop at the inserted rows table and assign default values
        LOOP AT er_data_changed->mt_inserted_rows INTO dl_ins_row.
          ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
          loop at <fs> into ls_outtab.
            ls_outtab-carrid  = 'LH'.
            ls_outtab-connid  = '400'.
            ls_outtab-fldate  = sy-datum.
            MODIFY <fs> FROM ls_outtab INDEX sy-tabix.
          endloop.
        endloop.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    Register the events to trigger DATA_CHANGED event when a new row is created.
    Code:
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.

  • New contact added without Permission

    Today I had a new person added to my contacts list, (not recent conversations), that I did not approve. I have had people I don't know randomly request to be added but this is the first time where someone was added without my consent. 
    First off, I would like to report this individual since he has obviously circumvented Skype security features. He is soliciting his S. African business through his profile. How do I go about reporting this because aside from this forum on security I can't find a way to report on your website. I have read several other users post similar stories dating back a few years and I am surprised this is still an issue although I am grateful I have never had this happen before.  
    Here is the information on the unsolicited contact:
    *edited for privacy*
    Please advise,
    Chrystal

    ambitiouswhiteg wrote:
    Today I had a new person added to my contacts list, (not recent conversations), that I did not approve. I have had people I don't know randomly request to be added but this is the first time where someone was added without my consent. 
    First off, I would like to report this individual since he has obviously circumvented Skype security features. He is soliciting his S. African business through his profile. How do I go about reporting this because aside from this forum on security I can't find a way to report on your website. I have read several other users post similar stories dating back a few years and I am surprised this is still an issue although I am grateful I have never had this happen before.  
    Here is the information on the unsolicited contact:
    *edited for privacy*
    Please advise,
    Chrystal
    you can send this information to the department specifically handling cases of abuse of Skype services - [email protected]
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

Maybe you are looking for

  • Ipad 1 no longer connects to itunes

    Updated both my iTunes to the most current and my iPad 1 to 5.1.1. Now it no longer connects to iTunes and gets an error message.

  • Implementing 2-way ssl

    Hi i have configured the keystore as "Custom Identity and Custom Trust", given the key store names for both given the Identity alisa name under the 'SSL' tab, in 'Advanced' i am enforcing for client certificate. But when i start to access the applica

  • Field level Validation in SAP PI

    Hi All, I am integrating with a 3rd Party system (File to Proxy scenario). Source file contains around 30 fields. I was asked to do field level validations for each of this field in PI. Is this a good practice. Do we do field validation in PI Integra

  • Release date for F30-123?

    Sorry if this question has already been asked - I was in a hurry and could not look through all the replies I got from my search. Does anybody know the release date for the Qosmio F30-123, and whether it is worthwhile waiting for as opposed to buying

  • Creating a PDF in Adobe Indesign problem

    I have a 12 page spread in adobe indesign. When i create a pdf out of the spread it becomes 7 pages. This is very annoying as it's supposed to be 12 pages... Am I not checking something correctly when I create my pdf? Why would it say 12 pages on my