Error in Excise Data subscreen in Material Master:Foreign Trade-Import Data

SAP Net Weaver ECC6.0
I have added the 'Excise data' subscreen in Material master 'Foreign trade IMport' and 'Foreign Trade Export' tab. But facing the following problem. please help.
There are two buttons called 'More' and 'PreVals' in that subscreen. If I click either of them, it gives an error message as below
"Record 21 MORE does not exist in table T133E
Message no. M3748"
and
"Record 21 J1PR does not exist in table T133E
Message no. M3748"
Kindly help what to do

OK
Lets starts from first step.
Go to OMT3B
1.  Copy 21 and make it 91
2. Then from left hand side select Data screens no 15 copy it and make it 91 - Z1
3. Then again go to left hand side   Subscreens and copy 6 and make it 91 - 71 - z and assign screen no 2205 and add prograne as SAPLJ1I_MATERIAL_MASTER
save it
Then go to OMBt3E and copy 01 -* HERS * 12 and mahe it 01 -* ROHor FERT * 91 and save it and then check and revert back
regards

Similar Messages

  • Control Code field in Material master- Foreign Trade imports tab

    Hello Experts,
    I am trying to understand the purpose of Control Code(MARC-STEUC) field in Material master- Foreign Trade imports tab. I am also interested in knowing where does this field appear in our PO.
    Please help..
    Manish

    Normally control code specifies the norm to follow by the supply plant for a sale of exposrts. each contry will have a set of rules to get follow as a stuatory . this code specifies the rules or certificates.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/93/7443a5546011d1a7020000e829fd11/frameset.htm
    may be comes in a sale order.
    Regards

  • Legal Control data for a Material in Foreign Trade View.

    Hi All
    We are facing the  problem for updating the Legal Control data for a Material in Foreign Trade View.
    Is there any BAPI for doing that ?
    Please guide me.
    Thanks in Advance
    Regards
    Kiran K Vadrevu

    We figured this out.  We used SM30 to find table / view V_T604F  and add a value for country US.
    Edited by: MacaryD on Feb 4, 2010 5:13 PM

  • Control Code in Material Master Foreign Trade Export view

    Hi All,
    In material master Foreign Trade Export view we have a field Control Code (MARC - STEUC) i would like to know where do we configure these control codes in SPRO?
    I need to know the path to configure them
    Regard s
    Pavan

    spro@Logistics - General@Material Master@Material IDs@Maintain PKWiUs
    Regards,
    Indranil

  • Foreign trade import/export data is getting copied when creating MMR

    Hi,
    When trying to create material master record with reference material ,the" Foreign trade import/export data " is not available in selection but the material is getting created with the "foreign data".
    When to restrict so that the material master record gets created without "foreign trade data"
    Thank you.

    HI,
    When u enter the new material,matl type & industry u enter the reference material and press enter then it shows the select views screen in this deselect the foreign trade tab and press enter then create material.The foreign data tab will not be copied in the new material.
    murugan

  • Label Data View in Material Master

    Dear Team,
    Despite of performing all below standerd steps, i am not able to view Label Data view in Material Master.
    pls guide
    steps performed.
    1. Check whether the screen sequence SP exists in Customizing for the Material Master under Define Structure of Data Screens for Each Screen Sequence.
    2. Check whether screen 92 has been assigned to screen sequence SP and has the screen type 1 (main screen).
    3. Check under Subscreens whether the subscreens were assigned to screen 92 of the screen sequence SP.
    4. In the Assign Screen Sequences to User/ Material Type/Transaction/Industry Sector IMG activity, set up the users who are allowed to edit the screen sequence and when it appears.
    also I have SAP_ALL Authorization.
    Regards,
    Amol Joshi

    Hello Amol,
    For IMG activity: Define Structure of Data Screens for Each Screen Sequence, for screen sequence 21, with logical screen 92, in subscreen, please see below settings:
    Program: SAPLMGD1 , screen no. is 1002
    Program: SAPLCBGL_LD00 , screen no. is 8020
    Program: SAPLCBGL_LD01, screen no. is 1010
    Regards,
    Niraj

  • Automatic creation of  Warehouse No. data in the material master

    Hi all,
    I want the automatic creation of  Warehouse No. data in the material master record at the time of the first goods receipt is allowed.
    Similar to the way where we can do the same for Storage Location by clicking on Create SLoc. automatically in the plant parameters settings.
    can it be done..plz guide.
    Regards,
    Sandeep

    Hi Deepak ,
    Such facility is not available for Warehouse .
    Regards
    Ramesh Ch

  • How to Update the Basic Data text in Material Master.

    Hi Abapers,
    I have more than 5000 materials for update basic Data text inside Material Master.
    how to update basic data text using abap programe? is there any bapi or normal program?.
    anybody give me sample of this.
    Thanks
    S.Muthu.
    IT Dept.

    Hi
    You can do by using the FM SAVE_TEXT.
    Just populate text into table i_tline.
    Local data declaration
      DATA: l_wa_thead  TYPE thead, " Header
            l_wa_tline  TYPE tline. " Work area for tline
    Populate header
      l_wa_thead-tdobject = c_obj_material.
      l_wa_thead-tdname   = wa_data-matnr.
      l_wa_thead-tdid     = c_id_best.
      l_wa_thead-tdspras  = sy-langu.
      l_wa_thead-tdluser  = sy-uname.
      l_wa_thead-tdfdate  = sy-datum.
      l_wa_thead-tdtxtlines = '1'.
    IF i_tline[] IS NOT INITIAL.
       l_wa_tline-tdformat = c_slash.
       APPEND l_wa_tline TO i_tline.
    ENDIF.
    Text shd start from next line
      l_wa_tline-tdformat = c_slash.
      CONCATENATE c_text wa_data-text
      INTO l_wa_tline-tdline SEPARATED BY space.
    Append the new text to the int table
      APPEND l_wa_tline TO i_tline and l_wa_thead
      C* Local data declaration
      DATA: l_wa_thead  TYPE thead, " Header
            l_wa_tline  TYPE tline. " Work area for tline
    Populate header
      l_wa_thead-tdobject = c_obj_material.
      l_wa_thead-tdname   = wa_data-matnr.
      l_wa_thead-tdid     = c_id_best.
      l_wa_thead-tdspras  = sy-langu.
      l_wa_thead-tdluser  = sy-uname.
      l_wa_thead-tdfdate  = sy-datum.
      l_wa_thead-tdtxtlines = '1'.
    IF i_tline[] IS NOT INITIAL.
       l_wa_tline-tdformat = c_slash.
       APPEND l_wa_tline TO i_tline.
    ENDIF.
    Text shd start from next line
      l_wa_tline-tdformat = c_slash.
      CONCATENATE c_text wa_data-text
      INTO l_wa_tline-tdline SEPARATED BY space.
    Append the new text to the int table
      APPEND l_wa_tline TO i_tline.
      CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
          client          = sy-mandt
          header          = l_wa_thead
          savemode_direct = c_check
        TABLES
          lines           = i_tline
        EXCEPTIONS
          id              = 1
          language        = 2
          name            = 3
          object          = 4
          OTHERS          = 5.
      IF sy-subrc = 0.
        COMMIT WORK.
    endif.

  • Consumption data in the material master

    Dear All,
    Can anyone explain me about consumption data in the material master?
    1.     How the consumption datau2019s are automatically updated in the material master?
    2.     List of movement types, that creates consumption data in the material master
    Thanks in advance
    Regards,
    Krishna samy

    Krishna Samy wrote:
    Dear All,
    >
    >
    > Can anyone explain me about consumption data in the material master?
    >
    >
    > 1.     How the consumption datau2019s are automatically updated in the material master?
    >
    > 2.     List of movement types, that creates consumption data in the material master
    >
    >
    > Thanks in advance
    >
    >
    > Regards,
    >
    > Krishna samy
    Hi,
    When a PO is created (say for Cost Center(s)), and if the material has a Material Master record, after the goods are received the same goes directly into Consumption account and not in stock account since it is meant for direct consumption by Cost Center(s). (Ex`s. of consumables are Office supplies).
    Please go thru this document to understand how automatic postings works: [CLICK HERE|http://help.sap.com/saphelp_46c/helpdata/en/12/1a39516e36d1118b3f0060b03ca329/content.htm]
    Reetesh
    Edited by: Reetesh on Nov 27, 2011 7:47 PM

  • Can anyone Explain about Data conversion for Material master In SAP MM

    Can anyone Explain about Data conversion for Material master, Vendor  In SAP MM
    Thanks

    Hi,
    Refer following link;
    [Data Migration Methodology|http://christian.bergeron.voila.net/DC_Guide/Data_Migration_Methodology_for_SAP_V01a.doc]

  • Error when I create the New material Master (MM01) for New Plant.

    Dear experts,
    I got the error when I create the New material Master (MM01) for New Plant.
    Error:  Valuation Area 2800 Not yet productive with Material Ledger.
    So Pl send me the solution asap.
    Venkata Raju Khottari

    Hi,
    Have u assinged Plant to Company code?
    If u say no, use T.code OX18.
    Regards,
    Murali
    Assign points if it is useful.

  • How to add  basic data text into material master?

    Hi anybody,
    I want update only basic data text into material master. how to update basic data text ?
    is it any bapi or functional module is there in abap?
    anybody please tell me.
    tks
    s.muthu

    Hi Subramanyan,
    Check this function module:
             CREATE_TEXT
    Check out this sample program:
    REPORT ZMM_INSERT_LONGTEXT.*Internal table to hold long text...
    DATA:
      BEGIN OF T_UPLOAD OCCURS 0,
        MATNR LIKE MARA-MATNR,             " Material number
        ID(2) TYPE C,                      " Identification
        LTEXT LIKE TLINE-TDLINE,           " Long text
      END OF T_UPLOAD,*Internal table to hold long text....
      T_LINE LIKE TLINE OCCURS 0 WITH HEADER LINE.DATA:
       W_GRUN LIKE THEAD-TDID ,            " To hold id
       W_OBJECT LIKE THEAD-TDOBJECT VALUE 'MATERIAL',
                                           " To hold object id
       LV_VALUE(70).                       " Value to hold material number
    START-OF-SELECTION.* This perform is used to upload the file
      PERFORM UPLOAD_FILE.* This perform is used to place the text in MM02 transaction
      PERFORM PLACE_LONGTEXT.
    *&      Form  create_text
    This routine used to create text in MM02 transaction
    Passed the parameter w_grun to P_C_GRUN
                    and lv_value to P_LV_VALUE
    FORM CREATE_TEXT  USING    P_C_GRUN
                               P_LV_VALUE.  DATA:
        L_ID LIKE THEAD-TDID,
        L_NAME(70).  MOVE : P_C_GRUN TO L_ID,
             P_LV_VALUE TO L_NAME.  CALL FUNCTION 'CREATE_TEXT'
           EXPORTING
             FID               = L_ID
             FLANGUAGE         = SY-LANGU
             FNAME             = L_NAME
             FOBJECT           = W_OBJECT
         SAVE_DIRECT       = 'X'
         FFORMAT           = '*'
           TABLES
             FLINES            = T_LINE
          EXCEPTIONS
            NO_INIT           = 1
            NO_SAVE           = 2
            OTHERS            = 3
      IF SY-SUBRC <> 0.
        CLEAR LV_VALUE.
      ELSE.
        DELETE T_LINE INDEX 1.
      ENDIF.ENDFORM.                    " create_text&----
    *&      Form  upload_file
    This routine is used to upload file
    No interface parameters are passed
    FORM UPLOAD_FILE .  CALL FUNCTION 'UPLOAD'
       EXPORTING
        CODEPAGE                      = ' '
        FILENAME                      = ' '
          FILETYPE                      = 'DAT'
        ITEM                          = ' '
        FILEMASK_MASK                 = ' '
        FILEMASK_TEXT                 = ' '
        FILETYPE_NO_CHANGE            = ' '
        FILEMASK_ALL                  = ' '
        FILETYPE_NO_SHOW              = ' '
        LINE_EXIT                     = ' '
        USER_FORM                     = ' '
        USER_PROG                     = ' '
        SILENT                        = 'S'
      IMPORTING
        FILESIZE                      =
        CANCEL                        =
        ACT_FILENAME                  =
        ACT_FILETYPE                  =
        TABLES
          DATA_TAB                      = T_UPLOAD
         EXCEPTIONS
           CONVERSION_ERROR              = 1
           INVALID_TABLE_WIDTH           = 2
           INVALID_TYPE                  = 3
           NO_BATCH                      = 4
           UNKNOWN_ERROR                 = 5
           GUI_REFUSE_FILETRANSFER       = 6
           OTHERS                        = 7
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.  SORT T_UPLOAD BY MATNR ID.
    ENDFORM.                    " upload_file
    *&      Form  place_longtext
    This routine places the text in MM02 transaction
    No interface parameters are passed
    FORM PLACE_LONGTEXT .  LOOP AT T_UPLOAD.    T_LINE-TDFORMAT = 'ST'.
        T_LINE-TDLINE = T_UPLOAD-LTEXT.
        APPEND T_LINE.    IF T_UPLOAD-ID EQ 'BT'.
          MOVE T_UPLOAD-MATNR TO LV_VALUE.
          MOVE 'GRUN' TO W_GRUN.                   "Test ID for Basic data text
          PERFORM CREATE_TEXT USING W_GRUN LV_VALUE.
        ENDIF.    IF T_UPLOAD-ID EQ 'IT'.
          CLEAR W_GRUN.
          MOVE T_UPLOAD-MATNR TO LV_VALUE.
          MOVE 'PRUE' TO W_GRUN.                      "Test ID for Inspection text
          PERFORM CREATE_TEXT USING W_GRUN LV_VALUE.
        ENDIF.    IF T_UPLOAD-ID EQ 'IC'.
          CLEAR W_GRUN.
          MOVE : T_UPLOAD-MATNR TO LV_VALUE,
                 'IVER' TO W_GRUN.                    
                                                      "Test ID for Internal comment
          PERFORM CREATE_TEXT USING W_GRUN LV_VALUE.
        ENDIF.
      ENDLOOP.ENDFORM.                    " place_longtext
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • ADD subscreen for material master view

    dear all,
    kindly tell me from where i can add subscreen to material master view. also tell me from where i can see which industry material master is activated
    Regards,
    qsm sap
    Edited by: qsm sap on May 3, 2008 9:42 AM

    Hi,
    Follow the path below:
    SPRO --> Logistics - General --> Material Master --> Configuring the Material Master
    Here you can maintain the Mainscreens, Secondary screens etc..
    SPRO --> Logistics - General --> Material Master --> Basic Settings --> Material Types --> Define Attributes of Material Types.
    here you can activate the Material Tab Pages with refernce to your Material Type.
    Hope this helps..
    Regards,
    Siva

  • Foreign Trade Import/Export Tab in Material Master of SAP R/3

    Hi
    What is the use of Foreign Trade Import/Export Tab in material master of SAP R/3

    Hi Akhil ..
    Sounds like you need to enrol for the SAP Foreign Trade training course!
    The tab holds various attributes for determining Foreign Trade data - for example the Customs classification and Country of Origin.  Those data are used to determine and/or populate fields in the Foreign Trade data when processing MM and SD documents.
    Some, but not all, of the fields in that tab become redundant if GTS is in use.
    If you have more specific questions in this area, it might be easier to give better explanations.
    Regards,
    Dave

  • InterCompany Billing Scenario-Foreign Trade Missing Data

    Hi Friends,
    My scenario:
    Company code:1000(US), ReceivingPlant:1000,Sales Area:1000/10/00
    Company Code:2000(UK),Supplying Plant:2000,Sales Area:2000/10/00
    Endcustomer 100010 in US has given the order to company code 1000(US) ,created deliveryfrom supplying company code 2000(UK)-Plant 2000.
    Now when i am creating billing F2 from company code 1000 to end customer 100010 in US, i am getting the foreign trade data missing error
    As per my knowledge it should not give this error as the customer is in US. its local only.
    I have checked in incompletion procedure maintained in foreign trade data.
    IMG>Sales and Distribution>Foreign Trade/Customs>Control Foreign Trade Data in MM and SD Documents>
    Incompleteness Schemas for Foreign Trade Data
    Foreign Trade Data in MM and SD Documents
    Nothing is maintined for country US.
    I have even checked in copy controls between LF to F2 in the redermine export data field, it is blank.
    Kindly guide me where i went wrong..
    Thanks
    Azeez.Mohd

    Hi ,
    Please check the following :
    1. Mode of transport : in which you must have defined from country  and to country . If the mode of transport is defined as 1- sea  then we need to define office of exist . due to whih you are getting foreging trade data error . Use Tcode VF02 , enter the billing doc no and go header--> foregin trade data  and try to change mode of transport to "3" which is Road  and save the documnet . Now there will not be any error . If this is the issue then click F1  on the mode of transport , then click on the customisng icon then it will take you to the IMG where the configuration need to be done
    If this is the case then need to main the Mode of Transport as  "3"  for all the values . At present i am in front of the system . Shall post the IMG settings tomorrow .
    Please try above and post your findings .
    Thanks and regards
    Veera
    Edited by: veera PV on Sep 29, 2009 3:24 PM
    The configuration path is as given below :
    1. IMG>Sales and Distribution>Foreign Trade/Customs>Transportation Data>Define Modes Of Transport
    In define modes of transports- you define mode of Tranports based on the country.
    2.IMG>Sales and Distribution>Foreign Trade/Customs>Transportation Data>Default Values For Foreign Trade Header Data
    In this node , we need to define / maintain as given below for  -
    Goods direction example for despatch it is 2 -Dispatch / Export,
    Geography tab :
    Departure country of export - CA
    Destination country of export - BR
    Transport tab:
    ModeOfTrnsprt-Border - 3
    DomestModeOfTransp - 3
    Like wise we need to do for all the Destintion countries .
    Try this and this should work out
    Thanks and regards
    Shiva

Maybe you are looking for

  • HT201250 external hard drive Mac to Windows

    I have had a mac of which I just killed the hard drive. I was backing it up with an external hard drive using I believe time machine. I have brought a new computer which is a windows 8 operating system but I can not open the external hard drive. How

  • Want to know how the GPS works on nokia 5800?

    Hi, are there any documentation explaining the working principle of how gps on nokia 5800 actually works? I want a kind of in-depth understanding...Thanx in advance.

  • I need to install 3.6 Firefox to work with SiteBuilder, how can I get a Download for MAC?

    Please send me a link to download the MAC 3.6 version of Firefox. Register.com told me it is the only way to solve a compatibility issue with their ancient SiteBuilder software. I'm stuck until I get it. Thank you

  • Features in SAP Cloud for Customer

    Hi All,   We have the possibility of enabling transaction launcher within SAP CRM on premise to kind of embed the backend SAP ERP screen within CRM UI. Can those options be configured/developed within SAP Cloud for Customer? If so, what are the optio

  • LOV Display Issue

    Hi,       We are using jDeveloper 11.1.1.7.0 .       We had a very long LOV displayed in the page. Under the resolution 1280*768, it goes out to the right of the page, and becomes really ugly.       We have 6 fields as the LOV's display attributes. I