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

Similar Messages

  • *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

  • 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

  • Error in uploading the material master data

    HI friends,
    I have trasferred the material master data through idocs from one server to another server(with in SAP only).
    Outbound side the status of idoc is 3 which is OK.But inbound side ,the status is 51 and the error is 'Function module not allowed  IDOC_INPUT_MATMAS01'.I debugged the function module in which the control records , data records are getting transferred correctly and also the segments data is also fine.But , i am not able to rectify  the error.
    Can anybody give the solut

    Hi mahesh,
    check the proces code may be having the FM module 'IDOC_INPUT_MATMAS01'. change with some other FM for processing the IDOC. you need check with different ways what is the problem. better dont stick on one thought.
    ~linganna

  • Can we use idoc technique to change or delete the vendor master data?

    Hi,gurus,
    Can we use idoc technique to change or delete the vendor master data?You know we can create vendor data using idoc CREMAS03 as the receiver adapter,but when change or delete the specified vendor data,must we use RFC adapter technique?
    Another question:I found the bapi which creates a vendor master data doesn't have the parameter account group,then we turned to idoc technique.But which adapter should I use when change or delete the vendor data?
    Thanks in advance.

    Hi,
    >>>I found the field of the segment of deletion flag at different level,and very appreaciate your help.
    yes - LOEVM  - but remember this will not delete the record but only mark it for deletion
    >>>It's a long time to wait for your new blog,what new and interesting things do you find?
    at least 4 new in my head - 2 simple but important and 2 new + I'd also like to write something for XI guys about
    BO data integrator which can also work as EAI tool (BTW I know it's ETL) but how knows when they will appear
    Regards,
    Michal Krawczyk

  • 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

  • '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.

  • How to Send the material master data from sap4.6c to ECC6.0

    Hi
        Friends this is shalini Shah, i got one requirement that is
    how to send the materail master data  from SAP 4.6C to ECC6.0 using XI.
    i  know the file to idoc and idoc to file scenarios but i don't know this one.
    please help me friends, Thanks in advance.
    Regards
    Shalini Shah

    Hi Shalini,
    To trigger IDoc these configurations should be done in the SAP 4.6, XI and ECC 6.0.
    SAP XI
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (IDX1)
    a) Select create new button
    b) Enter the port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Load Meta Data for IDOC (IDX2)
    a) Create new
    b) IDOC Message Type
    c) Enter port created in IDX1.
    SAP R/3 (4.6 and ECC 6.0)
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (We21)
    a) First Select Transactional RFC and then click create button
    b) Enter the destination port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Create Partner Profile (WE20)
    a) Create New
    b) Create the Partner no. name as same the logical system name of the destination system.
    c) Select Partner type LS
    d) Enter details for Type: US/USER, Agent, and Lang.
    e) Click on the + button to select the message type.
    f) Select Partner no. and LS which ever create above.
    g) Select Message type
    h) Select Process code related to the Message type.
    I) save.
    Also go ther the Blog <a href="/people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi Configuration for Pushing IDOC's from SAP to XI</a> By Swaroopa Vishwanath
    U need to import the IDoc types both inbound and outbound to XI.
    1. Create Inbound and Outbound Message interface.
    2. Do one to one message mapping.
    3. Define an Interface mapping.
    ID:
    1. Create 1 Sender aggrement.
    2. Create 1 Receiver aggrement.
    3. Define 1 RD and ID.
    4. Only create an receiver IDoc CC.
    Regards
    San
    <a href="Remember to set the thread to solved when you have received a solution to set the thread to solved when you have received a solution</a>
    Where There is a <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/weblogs?blog=/weblogs/topic/16">blog</a> there is a Way.

  • Upload the material master

    Hi all,
             can u pls give the global structure for Upload the material master (All Views Should Be Covered).
    Regards,
    ravi.

    hi,
    Please go to TCODE SHDB.
    Create a new recording with any zname and enter the tcode in the tcode field.
    Now it will record all the screens which you encounter during a record creation.
    Once it is done, it will take you to the recorded data. Save and come back.
    Now select the recording and click on program which creates a program for your recording.
    you have 2 options one for transfering from file and one for transfer from recording.
    if you use the file options then it will create the internal table with the fields .
    incase of tranfer from the recording then it will directly puts the recorded valus which are to be replaced by creating an internal table and replacing the recorded values with the workareas.
    Make necessary changes in the code which was generated automaticallly.
    hope this is clear.
    Thanks and regards.

  • Upload the "Equipment" related data

    Hi all,
    I need to Upload the "Equipment" related data into the SAP syatem.
    Am having the data for the following fields,
    1.Equipment(EQUNR)
    2.Maintenance Plant(SWERK)
    3.Technical Object Type(EQART)
    4.Material Actual(MATNR)
    5.Serial Number from the Tag(SERNR)
    6.Barcode No.used to scan the Equipment(TIDNR)
    7.Plant(B_WERK)
    8.Storage Location(B_LAGER)
    9.Batch (B_CHARGE)
    10.Master Batch(CHARGE)
    Could you please tel me the T-code/Any Information to upload the data through the LSMW.
    Thanks in Advance.
    Regards,
    Kalam A.

    Hi Kalam,
    The Tcode is IE01 and the master table is EQUI, EQBS etc.
    You can also use Bapi to create the equipment.
    BAPI_EQUI_CREATE
    BAPI_EQUI_CREATE_BY_REFERENCE
    <b><REMOVED BY MODERATOR></b>
    Lokesh
    Message was edited by:
            Lokesh Aggarwal
    Message was edited by:
            Alvaro Tejada Galindo

  • 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    ]

  • Downloding the SAP master data and transaction data to a flat file

    Hello All,
    Is there any SAP standard method or transaction to download the SAP master data and transaction data to flat file.
    With out using ABAP development, SAP had provided any tool or method to download the SAP system master and transaction data to flat file.
    Thanks,
    Feroz.

    hi
    as of now up to my knowledge no.

  • How to maintain the material master data in plant

    Hi all,
    while creating BOM I am getting an error "no material master data in plant' can some one help me how to maintain the material master data in plant
    Regards,
    Balu

    Check the material available in MARC table in SE11 transaction against your plant.If it is not available please maintain through MM01 transaction.

  • Error while assigning infoobject to the read master data in rule type

    Hi sdns,
    I want to read the zwostd info object data from zemployee master infoobject attribute list. For that i have selected  rule details of zwostd infoobject in transformation of info cube, then i am tring to select the read master data rule type. It is taking more time and then it displayed error like permitted time was  exceeded. Could any one please give me  the solution for this problem.
    thanks
    karun

    Sometimes directly typing the infoobject name in the field helps - otherwise it tries to fetch all the infoobjects available which is possibly why the time out occurs..?
    Enter the Master Data infoobject directly and then you will get the fields assigned.
    However my experience with read master data has been that whenever you change the master data IOBJ by way of adding / removing Nav Attributes / attributes etc - all the transformations using the read master data for the IOBJ that is being changed will get deactivated and it is a pain reactivating and transporting them again - particularly so when you are developing something on them and the changes are stuck across multiple requests ...
    IMHO use a routine instead to do the same - it involves lesser maintenance. SAP is anyway going to run a similar SQL...

  • FM to upload the Internal table data into application server.

    Hi,
      Could you please give me Function module to Upload the Internal table data into Application server ie., in Tcode AL11.
    I know for downloading the Application server file into itab is "SUBST_GET_FILE_LIST" FM and using open dtaa set we get the data.
    Regards,
    deepthi.

    Hi Deepthi
    Incase you are looking to upload data in the AL11 through a program , then you can make use of OPEN DATASET...CLOSE DATASET statements.
    Here's the code snippet:
    IF tb_alvdisplay[] IS INITIAL.
        MESSAGE e999(/dcsea/zais_msg) WITH text-e01.
      ELSE.
        IF  NOT cb_ufile IS INITIAL  "Download to file
         AND sy-pagno = 0.            "Only down page headers for first page
          PERFORM fm_concatenate_path_name USING    p_path
                                                    p_file
                                           CHANGING v_file.
    *Open file for download.
          PERFORM fm_open_file USING v_file .
        ENDIF.
        LOOP AT tb_alvdisplay.
          IF  NOT cb_ufile IS INITIAL.
    *Passing the values of the respective headings to the structure.
            ws_rec-vend_no     = tb_alvdisplay-vendno.
            ws_rec-vend_nm     = tb_alvdisplay-vendnm.
            ws_rec-title       = tb_alvdisplay-vendtl.
            ws_rec-add         = tb_alvdisplay-add.
            ws_rec-city1       = tb_alvdisplay-city1.
            ws_rec-region      = tb_alvdisplay-region.
            ws_rec-country     = tb_alvdisplay-country.
            ws_rec-pobox       = tb_alvdisplay-po.
            ws_rec-phone       = tb_alvdisplay-telf1.
            ws_rec-extn        = tb_alvdisplay-extn.
            ws_rec-fax         = tb_alvdisplay-telfx.
            ws_rec-zterm       = tb_alvdisplay-zterm.
            ws_rec-remark      = tb_alvdisplay-remark.
            ws_rec-email       = tb_alvdisplay-email.
    *Passing the separator 'PIPE' to the structure.
              ws_rec-sep01  = co_sep.
              ws_rec-sep02  = co_sep.
              ws_rec-sep03  = co_sep.
              ws_rec-sep04  = co_sep.
              ws_rec-sep05  = co_sep.
              ws_rec-sep06  = co_sep.
              ws_rec-sep07  = co_sep.
              ws_rec-sep08  = co_sep.
              ws_rec-sep09  = co_sep.
              ws_rec-sep10  = co_sep.
              ws_rec-sep11  = co_sep.
              ws_rec-sep12  = co_sep.
              ws_rec-sep13  = co_sep.
            TRANSFER ws_rec TO v_file.
          ENDIF.
          AT LAST.
            IF NOT cb_ufile IS INITIAL.
    *Closing the DATASET file.
              CLOSE DATASET v_file.
              IF sy-subrc <> 0.
    *Failure Message.
                MESSAGE e999(/dcsea/zais_msg) WITH text-t04 text-t06.
              ELSE.
    *Success message.
                MESSAGE s999(/dcsea/zais_msg) WITH text-t05.
              ENDIF.
            ENDIF.
          ENDAT.
        ENDLOOP.
      ENDIF.
    Also as Gautham suggested you can use tcode CG3Z or CG3Y incase you are looking to upload the data directly.
    FInally, you can search SCN using the keywords, "Upload to AL11" and you'll get loads of results.
    Hope this helps.
    Harsh

Maybe you are looking for

  • How it is possible that an internet user locks an order???

    Hi, I have a problem. Some of the orders, when transfered to R/3 has a mapping error in SMW01. When I check the details I see that it gives an error "Transaction 300615856 is being processed by user 7003788553" message number CRM_ORDER013. However he

  • Logic Pro X doesn't receive midi signals (Logic 9 does)

    Hi, When I updated to OSX Yosemite 10.10.2 Logic X stopped receiving midi signals from my keyboards and otther midi devices. My system is: Mac Pro (2010) 3,2 GHz Quad Core Intel Xeon Memory 8 GB 1066 MHz DDR3 ECC The funny thing is that it worked gre

  • Illustrator 10: Marks and Bleeds

    I'm using illustrator 10 to design some bumper stickers. To prepare for printing, the print company I'm using told me to expand the background at least 1/16 of an inch outside the setup box. Then when I'm saving the file to PDF format (save as), I wa

  • Convert VI Labview 5.1 to Labview 2011

    Hi. I've attached three VIs (within a zip file) I can no longer access due to version conflicts. I would really appreciate a conversion given I do not have the intermediate software. -Matt Solved! Go to Solution. Attachments: connectionstoolkitvis.zi

  • Failed to send the mail message error code: -49

    Hi, When sending mail outside the company (outside the domain), getting this error: Failed to send the mail message error code: -49 When sending mail internally (within the domain) successfully submitted. I was looking for notes relating to the subje