LSMW-Uploading G/l master Data

Hello,
we are migrating Data from R/3 4.6 to ECC 6.0.We need all the G/l from 4.6  exactly same way in ECC 6.0 without new G/l features.
Please let me which table I should use to extract  g/l master  data (SKA1or SKB1) from 4.6.I am going to do recording with  Tcode FS00 at the time of uploading.
If any one is having document on G/l uploading please share with me.share the useful points relating to this.
Many Many Thanks
Moderator: Please, search SDN

Hi,
You will neet to extract data from both SKA1 and SKB1 and need to compile (via lookup etc.) to make a single file for uploding in LSMW.
Regards,
Gaurav

Similar Messages

  • Lsmw Uploading cost center master data fields ERFNM,ERFDT at History tab

    Hi Gurus,
    I done uploading of cost center master data through LSMW.everything is fine but I have one issue.
    I done Uploading from 4.6 now in 4.6 the cost center was created by some one else when I am doing in ECC 6.0 system automatically taking my name as default it means I can not enter in ECC 6.o that who originally created  it  and what was that date. Is there any way to solve it or system will take only mine name in Fields( ERFNM,ERFDT )at cost center History Data while creating Master data.
    Many Many Thanks

    Yes, system will take the creator name from the person who actually creates the cost center in SAP.
    It will be filled automatically and you can not change the creator name.
    This is to ensure better audit trail and tracability.
    Regards,
    Gaurav

  • 'Create' Push button is not working in BDC and LSMW while uploading G/L master data

    Hello Experts:
    I am facing the following problem:
    While uploading G/L master data with the BDC program, 'create' push button is not working  even after executing following lines.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=ACC_CRE'.
    Create G/L account  screen is not coming in BDC. Please suggest me what to do.
    Thanks !!

    Re: 'Create' Push button is not working in BDC and LSMW while uploading G/L master data
    Re: 'Create' Push button is not working in BDC and LSMW while uploading G/L master data
    Hi Glen Anthony
    Thank you for the reply Glen Anthony please take a look at the following code.
    REPORT  ZFI_BDC_FS00
            NO STANDARD PAGE HEADING LINE-SIZE 255.
    *INCLUDE BDCRECX1.
    TYPES : BEGIN OF STR,
       BUKRS TYPE GLACCOUNT_SCREEN_KEY-BUKRS,        "Company Code
       SAKNR TYPE GLACCOUNT_SCREEN_KEY-SAKNR,        "G/L Account Number
       KTOKS TYPE GLACCOUNT_SCREEN_COA-KTOKS,        "G/L Account Group
       XPLACCT TYPE GLACCOUNT_SCREEN_COA-XPLACCT,    "P&L statement account
       XBILK TYPE GLACCOUNT_SCREEN_COA-XBILK,        "Indicator: Account is a balance sheet account?
       TXT20_ML TYPE GLACCOUNT_SCREEN_COA-TXT20_ML,  "G/L account short text
       TXT50_ML TYPE GLACCOUNT_SCREEN_COA-TXT50_ML,  "G/L account short text
       WAERS TYPE GLACCOUNT_SCREEN_CCODE-WAERS,      "Account currency
       XSALH TYPE GLACCOUNT_SCREEN_CCODE-XSALH,      "Indicator: Only Manage Balances in Local Currency
       MWSKZ TYPE GLACCOUNT_SCREEN_CCODE-MWSKZ,      "Tax Category in Account Master Record
       XMWNO TYPE GLACCOUNT_SCREEN_CCODE-XMWNO,      "Indicator: Tax code is not a required field
       MITKZ TYPE GLACCOUNT_SCREEN_CCODE-MITKZ,      "Account is reconciliation account
       XOPVW TYPE GLACCOUNT_SCREEN_CCODE-XOPVW,      "Indicator: Open item management?
       XKRES TYPE GLACCOUNT_SCREEN_CCODE-XKRES,      "Indicator: Can Line Items Be Displayed by Account?
       ZUAWA TYPE GLACCOUNT_SCREEN_CCODE-ZUAWA,      "Key for sorting according to assignment numbers
       FSTAG TYPE GLACCOUNT_SCREEN_CCODE-FSTAG,      "Field status group
       XINTB TYPE GLACCOUNT_SCREEN_CCODE-XINTB,      "Indicator: Is account only posted to automatically?
       END OF STR.
    DATA : ITAB TYPE TABLE OF STR WITH HEADER LINE,
            IT_BDCDATA TYPE TABLE OF BDCDATA WITH HEADER LINE,
            TXT(4096) TYPE C OCCURS 0,
            MSG TYPE STRING,
            COUNT(5) TYPE N.
    SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
       PARAMETERS : MY_FILE TYPE RLGRAP-FILENAME.
    SELECTION-SCREEN : END OF BLOCK B1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR MY_FILE.
    CALL FUNCTION 'F4_FILENAME'
      EXPORTING
        PROGRAM_NAME        = SYST-CPROG
        DYNPRO_NUMBER       = SYST-DYNNR
    *   FIELD_NAME          = ' '
      IMPORTING
        FILE_NAME           = MY_FILE
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
       EXPORTING
    *   I_FIELD_SEPERATOR          =
    *   I_LINE_HEADER              =
         I_TAB_RAW_DATA             = TXT
         I_FILENAME                 = MY_FILE
       TABLES
         I_TAB_CONVERTED_DATA       = ITAB[]
      EXCEPTIONS
        CONVERSION_FAILED          = 1
        OTHERS                     = 2
    IF SY-SUBRC <> 0.
    * IMPLEMENT SUITABLE ERROR HANDLING HERE
    ENDIF.
    START-OF-SELECTION.
    COUNT = 0.
    LOOP AT ITAB.
    *PERFORM OPEN_GROUP.
    REFRESH  IT_BDCDATA.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_KEY-BUKRS'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=ACC_CRE'.
    *PERFORM BDC_FIELD       USING 'BDC_CURSOR'
    *                              'GLACCOUNT_SCREEN_KEY-BUKRS'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_KEY-SAKNR'
                                   ITAB-SAKNR. "'5'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_KEY-BUKRS'
                                   ITAB-BUKRS. "'TATA'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=2102_GROUP'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_COA-KTOKS'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   ITAB-KTOKS. "'GL'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   ITAB-XPLACCT. "'X'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=2102_BS_PL'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_COA-XBILK'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   ITAB-KTOKS. "'GL'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   ITAB-XPLACCT. "''.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                   ITAB-XBILK. "'X'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=TAB02'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   ITAB-KTOKS. "'GL'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                   ITAB-XBILK. "'X'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_COA-TXT50_ML'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                   ITAB-TXT20_ML. "'G/L ACCOUNT'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                   ITAB-TXT50_ML. "'G/L ACCOUNT'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=TAB03'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-WAERS'
                                   ITAB-WAERS. "'INR'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XSALH'
                                   ITAB-XSALH. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                                   ITAB-MWSKZ. "'*'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XMWNO'
                                   ITAB-XMWNO. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                                   ITAB-MITKZ. "''.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_CCODE-ZUAWA'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                                   ITAB-XOPVW. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XKRES'
                                   ITAB-XKRES. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                                   ITAB-ZUAWA. "'1'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=SAVE'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_CCODE-XINTB'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                                   ITAB-FSTAG. "'G019'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XINTB'
                                   ITAB-XINTB. "'X'.
    *PERFORM BDC_TRANSACTION USING 'FS00'.
    CALL TRANSACTION 'FS00' USING IT_BDCDATA MODE 'E' UPDATE 'S'.
    COUNT = COUNT + 1.
    *PERFORM CLOSE_GROUP.
    ENDLOOP.
    CONCATENATE COUNT ' RECORDS UPDATED SUCCESSFULLY' INTO MSG.
    MESSAGE MSG TYPE 'I'.
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
       CLEAR IT_BDCDATA.
       IT_BDCDATA-PROGRAM  = PROGRAM.
       IT_BDCDATA-DYNPRO   = DYNPRO.
       IT_BDCDATA-DYNBEGIN = 'X'.
       APPEND IT_BDCDATA.
    ENDFORM.
    *        INSERT FIELD                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
    *  IF FVAL <> NODATA.
         CLEAR IT_BDCDATA.
         IT_BDCDATA-FNAM = FNAM.
         IT_BDCDATA-FVAL = FVAL.
         APPEND IT_BDCDATA.
    *  ENDIF.
    ENDFORM.

  • LSMW used only for master data upload?

    Hi
    Can you please let me know if LSMW is used only for master data upload or we can also use it for transaction data ?

    Hi Christino.
    I have come across a standard SDN thread which deals with the uploading master data, refer it:
    [SDN Reference for uploading master data using LSMW|how can we upload master data by using LSMW;
    [SDN reference for which uploading is preferred (Master data or Transaction data)|Which one is better for uploading data LSMW or ECATT ?;
    Good Luck & Regards.
    HARSH

  • Lsmw for uploading GL Accounts Master data

    Hi SAP Gurus
    I am Uploading GL Accts Master data using LSMW in the following procedure:
    1) Upload GL Accounts only, COA Level - B/S : FSP0
    2) Upload GL Accounts only, COA Level - P&L : FSP0
    Successfull in above 2.
    How should I;
    Upload GL Accounts on Company Code Level: FSS0
    - While recording, should I include the GL Account No. field.
    I tried it but the cc segment is not updated for GL accounts already created in FSP0.
    Please help.
    Points Guaranteed.
    Regards
    Jamil

    [Legacy System Migration Workbench]
    LSMW Version Number : 4.0.0
    LSMW Version Date : 31.08.2004
    R/3 Installation Number : 0020263291
    R/3 System Id : PRO
    R/3 Release : 700
    R/3 Client : 300
    R/3 Operating System : HP-UX
    R/3 Database System : ORACLE
    R/3 Hostname : sapukpn1
    User Id : ATKACHENKO
    Date : 25.12.2008
    Time : 16:45:09
    Local Date : 25.12.2008
    Local Time : 16:45:09
    Local Timezone : EET
    [Project Information]
    [Project Name     ] : Z_MOE
    [Project Text     ] : Z_MOE
    /SAPDMC/LSGPRO                Z_MOE          ATKACHENKO  20070620
    /SAPDMC/LSGPROT               8Z_MOE          Z_MOE
    [Recordings]
    [Recording        ] : ACCOUNTS
    [Recording Text   ] : Accouunt_CREAT
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0001                                        0000TFS00                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0002SAPLGL_ACCOUNT_MASTER_MAINTAIN          2001X                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0003                                        0000 BDC_OKCODE                                                                                =ACC_CRE                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0004                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2011HEADER                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0005                                        0000 BDC_CURSOR                                                                                GLACCOUNT_SCREEN_KEY-SAKNR                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0006                                        0000 GLACCOUNT_SCREEN_KEY-SAKNR                                                                                /                                                                                SAKNR                         account                                                     SAKNR                         SAKNR                          GLACCOUNT_SCREEN_KEY          SAKNR                         0000000000                              000010000020000010CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0007                                        0000 GLACCOUNT_SCREEN_KEY-BUKRS                                                                                9999                                                                                BUKRS                         BUKRS                          GLACCOUNT_SCREEN_KEY          BUKRS                         0000000000                              000004000008000004CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0008                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0100TABSTRIP                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0009                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0200SUBSC                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0010                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2102AREA1                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0011                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2101AREA2                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0012                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2103AREA3                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0013                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA4                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0014                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA5                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0015                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA6                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0016                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA7                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0017SAPLGL_ACCOUNT_MASTER_MAINTAIN          2001X                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0018                                        0000 BDC_OKCODE                                                                                =TAB02                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0019                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2011HEADER                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0020                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0100TABSTRIP                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0021                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0200SUBSC                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0022                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2102AREA1                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0023                                        0000 GLACCOUNT_SCREEN_COA-KTOKS                                                                                UFRO                                                                                KTOKS                         KTOKS                          GLACCOUNT_SCREEN_COA          KTOKS                         0000000000T077S                         000004000008000004CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0024                                        0000 GLACCOUNT_SCREEN_COA-XBILK                                                                                X                                                                                XFELD                         XBILK                          GLACCOUNT_SCREEN_COA          XBILK                         0000000000                              000001000002000001CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0025                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2101AREA2                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0026                                        0000 BDC_CURSOR                                                                                GLACCOUNT_SCREEN_COA-TXT50_ML                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0027                                        0000 GLACCOUNT_SCREEN_COA-TXT20_ML                                                                                /                                                                                TXT20_ML                      TXT20_ML                                                    TEXT20                        TXT20_SKAT                     GLACCOUNT_SCREEN_COA          TXT20_ML                      0000000000                              000020000040000020CHARCX
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0028                                        0000 GLACCOUNT_SCREEN_COA-TXT50_ML                                                                                /                                                                                TXT50_ML                      TXT50_ML                                                    TEXT50                        TXT50_SKAT                     GLACCOUNT_SCREEN_COA          TXT50_ML                      0000000000                              000050000100000050CHARCX
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0029                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2103AREA3                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0030                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA4                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0031                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA5                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0032                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA6                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0033                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA7                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0034SAPLGL_ACCOUNT_MASTER_MAINTAIN          2001X                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0035                                        0000 BDC_OKCODE                                                                                =TAB03                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0036                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2011HEADER                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0037                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0100TABSTRIP                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0038                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0200SUBSC                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0039                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2201AREA1                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0040                                        0000 GLACCOUNT_SCREEN_CCODE-WAERS                                                                                UAH                                                                                WAERS                         WAERS_SKB1                     GLACCOUNT_SCREEN_CCODE        WAERS                         0000000000TCURC                         000005000010000005CUKYC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0041                                        0000 GLACCOUNT_SCREEN_CCODE-XMWNO                                                                                X                                                                                XFELD                         XMWNO                          GLACCOUNT_SCREEN_CCODE        XMWNO                         0000000000                              000001000002000001CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0042                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2202AREA2                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0043                                        0000 BDC_CURSOR                                                                                GLACCOUNT_SCREEN_CCODE-BEGRU                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0044                                        0000 GLACCOUNT_SCREEN_CCODE-XKRES                                                                                X                                                                                XFELD                         XKRES                          GLACCOUNT_SCREEN_CCODE        XKRES                         0000000000                              000001000002000001CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0045                                        0000 GLACCOUNT_SCREEN_CCODE-ZUAWA                                                                                000                                                                                ZUAWA                         DZUAWA                         GLACCOUNT_SCREEN_CCODE        ZUAWA                         0000000000TZUN                          000003000006000003CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0046                                        0000 GLACCOUNT_SCREEN_CCODE-BEGRU                                                                                /                                                                                BEGRU                         BEGRU                                                       BRGRU                         BRGRU                          GLACCOUNT_SCREEN_CCODE        BEGRU                         0000000000                              000004000008000004CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0047                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2206AREA3                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0048                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA4                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0049                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA5                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0050                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA6                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0051                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA7                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0052SAPLGL_ACCOUNT_MASTER_MAINTAIN          2001X                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0053                                        0000 BDC_OKCODE                                                                                =SAVE                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0054                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2011HEADER                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0055                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0100TABSTRIP                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0056                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0200SUBSC                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0057                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2203AREA1                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0058                                        0000 BDC_CURSOR                                                                                GLACCOUNT_SCREEN_CCODE-FSTAG                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0059                                        0000 GLACCOUNT_SCREEN_CCODE-FSTAG                                                                                G001                                                                                FSTAG                         FSTAG                          GLACCOUNT_SCREEN_CCODE        FSTAG                         0000000000T004F                         000004000008000004CHARC
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0060                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2204AREA2                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0061                                        0000 BDC_SUBSCR                                                                                SAPLGL_ACCOUNT_MASTER_MAINTAIN          2205AREA3                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0062                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA4                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0063                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA5                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0064                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA6                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDC                Z_MOE          ACCOUNTS       0065                                        0000 BDC_SUBSCR                                                                                SAPLATAB                                0300AREA7                                                                                0000000000                              000000000000000000
    /SAPDMC/LSGBDCA               Z_MOE          ACCOUNTS       FS00                ATKACHENKO  ATKACHENKO  20070806
    /SAPDMC/LSGBDCS               Z_MOE          ACCOUNTS       01
    /SAPDMC/LSGBDCT               8Z_MOE          ACCOUNTS       Accouunt_CREAT
    [Subproject Information]
    [Subproject       ] : Z_ADM
    [Subproject Text  ] : ADMinistration
    /SAPDMC/LSGSUB                Z_MOE          Z_ADM          ATKACHENKO  20081029
    /SAPDMC/LSGSUBT               8Z_MOE          Z_ADM          ADMinistration
    [Subproject Information]
    [Subproject       ] : Z_FM
    [Subproject Text  ] : Z_FM
    /SAPDMC/LSGSUB                Z_MOE          Z_FM           ATKACHENKO  20071030
    /SAPDMC/LSGSUBT               8Z_MOE          Z_FM           Z_FM
    [Subproject Information]
    [Subproject       ] : Z_LOC
    [Subproject Text  ] : Location
    /SAPDMC/LSGSUB                Z_MOE          Z_LOC          ATKACHENKO  20081030
    /SAPDMC/LSGSUBT               8Z_MOE          Z_LOC          Location
    [Subproject Information]
    [Subproject       ] : Z_MOE
    [Subproject Text  ] : Z_MOE
    /SAPDMC/LSGSUB                Z_MOE          Z_MOE          ATKACHENKO  20070620
    /SAPDMC/LSGSUBT               8Z_MOE          Z_MOE          Z_MOE
    [Object Information]
    [Object           ] : ACCOUUNT_CREAT
    [Object Text      ] : Accouunt_CREAT
    /SAPDMC/LSOTXT                8Z_MOE          Z_MOE          ACCOUUNT_CREAT Accouunt_CREAT
    /SAPDMC/LSOATT                Z_MOE          Z_MOE          ACCOUUNT_CREAT 02                                                                                00000010ATKACHENKO  X ATKACHENKO  20070803
    /SAPDMC/LSOSTR                Z_MOE          Z_MOE          ACCOUUNT_CREAT CRAC                          creation                                                                                000101 00000000000000000000
    /SAPDMC/LSOFLD                Z_MOE          Z_MOE          ACCOUUNT_CREAT CRAC                          BEGRU                         0004C   004begru
    /SAPDMC/LSOFLD                Z_MOE          Z_MOE          ACCOUUNT_CREAT CRAC                          SAKNR                         0001C   010account
    /SAPDMC/LSOFLD                Z_MOE          Z_MOE          ACCOUUNT_CREAT CRAC                          TXT20_ML                      0002C   020text
    /SAPDMC/LSOFLD                Z_MOE          Z_MOE          ACCOUUNT_CREAT CRAC                          TXT50_ML                      0003C   040textlong
    /SAPDMC/LSOREL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      CRAC                          00000000
    /SAPDMC/LSOMAP                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      BEGRU                         0001CRAC                          BEGRU                         ATKACHENKO  20070806
    /SAPDMC/LSOMAP                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      SAKNR                         0001CRAC                          SAKNR                         ATKACHENKO  20070806
    /SAPDMC/LSOMAP                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TXT20_ML                      0001CRAC                          TXT20_ML                      ATKACHENKO  20070806
    /SAPDMC/LSOMAP                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TXT50_ML                      0001CRAC                          TXT50_ML                      ATKACHENKO  20070806
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0000__END_OF_TRANSACTION__                                      DFATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      BEGRU                         MVATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      SAKNR                         MVATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TABNAME                       DFATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TCODE                         DFATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TXT20_ML                      MVATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TXT50_ML                      MVATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      __BEGIN_OF_RECORD__           DFATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSORUL                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      __END_OF_RECORD__             DFATKACHENKO  20070806                                                                                00000000
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0000__END_OF_TRANSACTION__                                      0001transfer_transaction.                                                   ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      BEGRU                         0001ACCOUNTS-BEGRU = CRAC-BEGRU.                                            ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      SAKNR                         0001ACCOUNTS-SAKNR = CRAC-SAKNR.                                            ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TABNAME                       0001ACCOUNTS-TABNAME = 'ACCOUNTS'.                                          ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TCODE                         0001ACCOUNTS-TCODE = 'FS00'.                                                ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TXT20_ML                      0001ACCOUNTS-TXT20_ML = CRAC-TXT20_ML.                                      ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      TXT50_ML                      0001ACCOUNTS-TXT50_ML = CRAC-TXT50_ML.                                      ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      __BEGIN_OF_RECORD__           0001ACCOUNTS = INIT_ACCOUNTS.                                               ATKACHENKO  20070806
    /SAPDMC/LSOCOD                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS                      __END_OF_RECORD__             0001transfer_record.                                                        ATKACHENKO  20070806
    /SAPDMC/LSOFIL                Z_MOE          Z_MOE          ACCOUUNT_CREAT Z_MOE_Z_MOE_ACCOUUNT_CREAT.lsmw.read                                                                                Z_MOE_Z_MOE_ACCOUUNT_CREAT.lsmw.conv
    /SAPDMC/LSOINP                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001FEC:\Documents and Settings\alexey.tkachenko\Desktop\1.txt                                                                test                          0000X 000000                                 X      X  X
    /SAPDMC/LSOINS                Z_MOE          Z_MOE          ACCOUUNT_CREAT CRAC                          0001
    /SAPDMC/LSOPAR                Z_MOE          Z_MOE          ACCOUUNT_CREAT             FROMLINE_CONV                 0000000001
    /SAPDMC/LSOPAR                Z_MOE          Z_MOE          ACCOUUNT_CREAT             FROMLINE_READ                 0000000001
    /SAPDMC/LSOPAR                Z_MOE          Z_MOE          ACCOUUNT_CREAT             TOLINE_CONV                   0000000001
    /SAPDMC/LSOPAR                Z_MOE          Z_MOE          ACCOUUNT_CREAT             TOLINE_READ                   0000000002
    /SAPDMC/LSOPAR                Z_MOE          Z_MOE          ACCOUUNT_CREAT ATKACHENKO  WILDCARDVALUE
    /SAPDMC/LSOREC                Z_MOE          Z_MOE          ACCOUUNT_CREAT 0001ACCOUNTS
    [Documentation    ]

  • *Journal Entries while uploading the vendor master data from legacy system*

    hi SAP Folks,
    can any one of you tell me the journal entries while uploading the vendor master data from legacy system to SAP system.
    Eg: legacy system is having 10000 vendors list, 1 reconciliation account and $ 1000000. while uploading all these data from legacy system to SAP what are the journal entries we get.
    thanks in advance.
    Edited by: ravindranath manikonda on Nov 24, 2008 1:12 PM

    Hi
    you will be having  only one entry logically
    i.e. Opening Bal. clrng A/c Dr.
           To Vendor A/c Cr.
    regards

  • Upload GL accont master data from legasy to SAP R/3

    Hello Gurus,
                        I have a requirement to write a BDC program for uploading GL account master data from legacy system to SAP R/3 database using FS00 transaction.Please can you help me with this?
    Regards,
    Kalpana.

    Hello,
    Goto Transaction SHDB, then create one new recording then do the simple recording and save that recording in one program and use as per your requirement.
    you can also use existing program suggested by Rob.
    Regards,
    Sujeet

  • I am unable to upload the customer master data using BAPI.?

    Hi Guru's,
    i am unable to upload the customer master data using BAPI.(BAPI_CUSTOMER_CREATEFROMDATA1)
    Please guide me how upload the data...
    Thanks in iadvance
    Srinivas...

    Hello Srinivas
    This BAPI does not allow to create a new customer from scratch but only to copy an existing customer to a new one and change its address data.
    The reference customer has to be provided using IMPORTING parameter PI_COPYREFERENCE. See also the BAPI documentation for more details.
    The BAPI does the same like transaction XD01 with Reference.
    Regards
      Uwe

  • HR - Idocs to upload the HR Master data

    Hi,
    Can any one pls tell which are the std Idocs we use to Mass upload the HR master data
    HRMASTER01/02 , HRMD_A06 etc
    Regards
    Hemant V. Mahale

    http://www.scribd.com/doc/5884984/Idoc-Quick-Reference-Sheet

  • ERROR WHILE UPLOADING FUNCTIONAL LOCATION MASTER DATA THROUGH LSMW?????

    Dear Experts,
    I am uploading the master data of functional location through LSMW .I had completed all the steps except "Run Batch Input Session".
    In that step it is showing as functional location already exists, after this error the remaining functional locations are updated in sap or it will stop total transaction by  this error???
    how can u upload the remaining in to sap by skipping already existed one????
    here I am uploading the error screen shot.
    Thanks & Regards,
    Sunil Boya

    Hi Jogeswara Rao Kavala,
    When I am pressing back or NO option  it is showing error like this
    What is this OK- Code means?
    how can I resume this process, even it was not going to back screen also and only one option is available for exit from this is by going into MENU-SYSTEM-SERVICES-BATCH INPUT-CANCEL.
    Sunil Boya

  • LSMW procedure for PP master data

    Hi
    i have some doubts regarding LSMW .... can we upload  PP master data BOM,Resource,MasterRecipe and Production versios through LSMW. could u pls guide me in this issue.
    Regards
    hgvd

    Hgvd,
    You will create the procedures.  I have never seen detailed procedures published for all possible LSMW scenarios, probably because, they are always different for each project..  
    Every Data requirement is different, based upon the business requirements.  The LSMW project concept is pretty intuitive, so even without much training, a novice can create data upload functionality.  Read the docs previously quoted in this thread, and if you want more detail, try the old online word doc at
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000455036&_SCENARIO=01100035870000000112&_OBJECT=011000358700000728862003E
    Although this doc is for an old version of LSMW, it is particularly useful for a novice, since it contains so much detail.  There is some added functionality is later versions of LSMW, but for the objects you have mentioned, this doc should suffice.
    Best Regards,
    DB49

  • Mass Upload Documents for Master Data in BI 7.0

    Can anyone confirm that the 'How To' document for uploading mass documents is still valid in BI 7.0 SP 15 (it was stated for 3.0B SP7) or suggest another way to do this?
    The business requirement is to upload numerous image files as BW: Physical Class Master Data documents for 0MATERIAL. It would need to also set the Log.Doc.Property of Document Type = value.

    This code does work in BI 7.0 SP 16, with a small alteration.

  • Data needed for upload of PP master data

    Hi,
    Can any one tell me what all the important things required to upload the PP masterdata for BOM,Routings,Workcenter and Prod Versions.??
    Tell me for each master data in detail.
    Regard's,
    Uday.

    Hi,
    Normally the data or fields required for the BOM, Routing and PV will be decided based on the Business process mapping.
    For ex if your business is having Nonstock, then the item category of the BOM will be N,
    So you need to do the business scenario mapping then you can define the BOM and Routing templates and make some field mandatory to be filled in.
    Standard SAP
    for BOM: Item, Item qty, headrer lot size, Item category etc are required
    for Routing: Item, Item base qty, lot sizes, Standard activity type values etc are required.
    Thanks,
    JK

  • Mobile number is not uploading for BP master data creation using BAPI ?

    Hi,
    I am creating Business Partner Master data in ISU/CCS using the BAPI "BAPI_ISUPARTNER_CREATEFROMDATA". Uploading data from Excel.
    Successfully uploading and creating new Business Partners apart from Mobile number, nick name,middle name, and name of birth fields.
    There are 2 issues i am facing:
    1. There is no field name is called Mobile number (data element AD_MBNMBR1) in structures of that BAPI.
    2. Nick, middle and birth names fields are there, but they are under the Expand(+ symbol) in FPP2 (FPP1) Tcode. That's why these fields are not uploading.
    How to upload them?
    Please help me out.
    Thanks
    Sarayu Parvathaneni.

    Hello Roopesh,
    Ususally, to make the BAPI update the database, you have to run BAPI
    BAPI_TRANSACTION_COMMIT after BAPI_PRDSRVAPS_SAVEMULTI2 is executed.
    In se37-> You may insert
    BAPI_PRDSRVAPS_SAVEMULTI2
    BAPI_TRANSACTION_COMMIT
    in the Menu-->function module >test>test sequences.
    Also as Mani said, if the update is successful the return parameter will be '0'.
    Regards,
    Ademola

  • Uploading Photo in Master data

    Hi,
    I need a help on uploading a photo in HR master data.
    How can we put a photo of employee with his details in master data?
    thanks in advance

    Hi Neha,
    Plz follow the following steps...
    1. Create a number range for SAP Archive Link : 
    IMG->Basis Components->Basis Services->SAP Archive Link->Basic Settings->Maintain number ranges. 
    Tcode OANR. Create range 01 from 0000000001 to 9999999999 without the external number flag. 
    2. Document type HRICOLFOTO must exist with document class JPG. 
    IMG->Basis Components->Basis Services->SAP Archive Link->System Settings->Maintain document types. 
    Table TOAVE, Tcode OAC2. 
    3. Document type HRICOLFOTO must be linked to object type PREL and IT0002. 
    IMG->Personnel Management->Personnel Administration->Tools->Optical Archiving->Set up Optical Archiving in HR. 
    View V_T585O, no Tcode. In all three columns there ara minuses, donu2019t put a flag in the check box. 
    4. Check which content repository (Archive) is linked to document type HRICOLFOTO and object type PREL. 
    IMG->Basis Components->Basis Services->SAP Archive Link->Basic Settings->Maintain Links. 
    Table TOAOM_C, Tcode OAC3 
    5. Create this content repository with storage type FILE archive. 
    IMG->Basis Components->Basis Services->SAP Archive Link->Basic Settings->Maintain content repositories. 
    Tcode OAC0 
    Storage type FILE archive can be attained by clicking on the field Storage type and clicking somewhere else in the screen with the right mouse button. Choose Possible entries and only then you get a list of all values. FILE Archive is entry number 08. Choose Version no. 0031 and Archive path something (e.g. C:\). 
    6. Link photo to personnel number. 
    Menu->Tools->Business Documents->Miscellaneous->Stored Documents. Tcode OAAD. 
    Click on the Create button. Business object PREL and Docyment type HRICOLFOTO. Click on create (fill in the right personnel number in the pop up and click Continue). Choose the photo (as a JPG file) from the place where it is saved (e.g. hard disk). SAP will notify that the Stored Document was created succesfully. Photo is visible via PA10, PA20, PA30, PA40. Double-click to magnify photo. 
    If still not getting plz feel free to call me @ 09833346985 19:00 to 23:00 IST
    Regards,
    Kapil Kaushal

Maybe you are looking for

  • How do you transfer iTunes music from one account to another on the same computer??

    i am having issues trying to copy some of my music from my itunes library to my wife's. we each have seperate accounts on the same computer(mac mini, os X). i am new to using the mac's, and have no idea of how to go about this. i have seen some stuff

  • How to import a dmp file in OWB process?

    Hi Expert. We'd like to import a dmp file into the database using OWB before doing some data cleasing. Is it possible to call "imp" in the OWB process flow, or if there's other alternatives? Thank you! Jeff

  • Toshiba Satellite C55D-B5310 running SLOW

    I purchased this laptop 3 months ago.  When I first login with password, and try to open any programs, including Word, Excel, or my Quicken program, they're VERY slow to load.  Even after I get one of those programs loaded, Word for instance, opening

  • Change Text on Tab of Tabbed Panel When it's Open.

    I posted this on the DW board but it was suggested I try here. I am using a tabbed panel to hide and reveal a page of text on this page: www.imagesandwords.org.uk/Don/pages/essay.php The reason I am using the tabbed panel to reveal the page is to try

  • Text Buttons

    What I want to do is take changing the color of text buttons a step further. I have read may book and nothing touches on this topic.  Well one did but told me what I already know, which I will point out below. If you have a button that is titled Phot