Sap mm - heading

hi
what is header data?
  what is material doc?
what is account doc?
what is material with or without material master recorder?
ali

hi ali,
Header Condition is one which is inserted on the header of the Document. Header item is one which would then get distributed among the items. There can be more than one conditions to distribute. Say freight would be distributed WRT Weight, where as header discount would distribute wrt net price. The same would apply to sche line condtion data
Accounting docs are nothing but the FI documents which has details for price, currency etc....
Material document : has all the details abt the quantity, and all details abt the material..
A Material with all its information like functions, principles etc are stored in a single area , which is called material master.
Regards,
Nani

Similar Messages

  • SAP SCRIPT Header text and Item text not printing in customized PO

    Hello Experts,
                          I have copied the standard MEDRUCK to ZMEDRUCK and customized the form according to the requirement.
    I want to print the header text and Item text in my form.
    For Header text I have used :
    /: INCLUDE &EKKO-EBELN& OBJECT EKKO ID F01
    Problem 1: The text what I enter in header text is flowing only when I hit on print preview without saving the form. Once I save the SAP SCRIPT  and click on print preview the field is appearing blank. I also tried to print the form, but the field is appearing blank even on the print out.
    Problem 2: For item text the field is concatenation of  EBELN & EBELP. Can anyone suggest me how to concatenate and fetch the text in item text.

    Hi,
        Im getting an error in my subroutine pool for i_xtline which is to fetch ITEM TEXT., It says its not a in any internal table nor defined as data. How can I proceed further. I have pasted my code below. Please check and revert ASAP
    PROGRAM  ZMEDRUCK_SUBP1.
    TABLES: EKPO, EKKO.
    FORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
    data xname like THEAD-TDNAME.
    data i_xtline like xtline.
    clear i_xtline.
    refresh i_xtline.
    CONCATENATE EKPO-ebeln EKPO-ebelp INTO v_item_text.
    MOVE v_item_text to ITEMTXT.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = F01
        language                      = EN
        name                          = ITEMTXT
        object                        = EKPO
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         = i_xtline
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
      WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.

  • SAP SCRIPT: Header text not printing - Custom Purchase Order.

    Hello Experts,
    I have used the standard MEDRUCK and copied to ZMEDRUCK. I want the PO header text to print in my form.
    I have used subroutine-pool and called it in the form.
    Here is my subroutine
    FORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
    *  HTEXT = EKKO-EBELN.
      READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    TNAME = EKKO-EBELN.
    *CONCATENATE EKPO-ebeln EKPO-ebelp INTO v_item_text.
    *MOVE v_head_text to HNAME.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
    *   CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        = TNAME
      tables
        lines                         = li_lines
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CLEAR out_tab.
    out_tab-VALUE = TNAME.
    CONDENSE out_tab-VALUE.
    MODIFY out_tab TRANSPORTING VALUE WHERE NAME = 'TNAME'.
    ENDFORM.
    And my script in the form is
    PERFORM FETCH_TABLE_DATA IN PROGRAM ZMEDRUCK_SUBP2
    USING &EKKO-EBELN&
    CHANGING &TNAME&
    ENDPERFORMpar RECEIVED FROM M/S     &TNAME&
    The header text is still not flowing in my form.
    What mistake i'm I doing here ?
    How can I resolve this ?
    Pls help !

    Hi,
    Data is li_lines internal table. 1st you have to read the text form the internal table line by sy-tabix.
    At last you have to concatenate these variable into the out tab value.
    you can use the following code
    ORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
    READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    ALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         = li_lines
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
      WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8
    IF sy-subrc  0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    data : f_lines TYPE i,
    DESCRIBE TABLE li_lines LINES f_lines.
    data: lstr type String,
          lstr1 type string,
          lstr2 type string,
          lstr3 type string,
          lstr4 type string.
    read table li_lines index 1.
    lstr = li_lines
    condense lstr.
    clear li_lines
    read table li_lines index 2.
    lstr1 = li_lines
    condense lstr.
    clear li_lines
    read table li_lines index 3.
    lstr2 = li_lines
    condense lstr.
    clear li_lines
    if f_lines GT 3.
    ead table li_lines index 4.
    lstr3 = li_lines
    condense lstr.
    clear li_lines
    ead table li_lines index 5.
    lstr4 = li_lines
    condense lstr.
    clear li_lines
    endif.
    data : v_text type text.
    concatenate  lstr1 lstr2 lstr3 lstr4 into v_text separate by ' '.
    CLEAR out_tab.
    READ TABLE out_tab WITH KEY name = 'TNAME'.
    out_tab-value = v_text
    MODIFY out_tab INDEX sy-tabix.
    Regards
    Nayan Kumar

  • Enable Websearch button in SAP portal header

    Hi,
    We are running on Portal 7.0 SP 15.
    In the Masthead , we have a search button which will search the Portal using the Trex indexes.
    Along with that , we would also like to have Websearch button which will search the web and give the results

    1. There are plenty of documents, how-to and forum posts available that give all the information needed to customize the masthead. (maybe SCN should create a forum only for masthead related questions)
    2. We are not here to do you work.
    br,
    Tobias

  • SAP R/3 4.7 Fax Header settings.

    SAP R/3 4.7 Fax Header settings. Sending fax from SAP Office, Workplace SBWP goes thru SCOT to faxserver and shows status in SOST in SAP which doesn't show this header page. When the fax gets sent it has a first page of an SAP fax header page that just has SAP Aktiengesellschaft, Systems, Applications, Products in Data Processing on it. Where is this at in SAP to change it or stop it from being sent.

    SAP Note 553113.

  • Creating Header and Footer in ALV

    hi,
    can anyone please tell how will you create Header and Footer in ALv and Classical Report.

    Hi,
    In classical report use events 'top-of-page' for header and 'end-of-page' for footer.
    in ALV
    follow this link
    http://www.sap-img.com/abap/test-alv-display-with-header-footer.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/header-footer-display-in-alv-grid-for-layout-description-344391
    Regards and Best wishes.

  • Regarding purchase order header deletion flag indicator

    hi all,
    Right now in SAP PO header deletion flag has been set to X.
    so what i need is the PO should be flagged only at item level .
    how can i proceed?where can i find the deletion flag in the transaction screen?

    You can find in item overview (RM06E-LOEKZ)

  • How to set ApplIndentityData header field in JMS adapter

    Hi Guys ,
        I have one requirement for update the field in SAP JMS header. I am using transport protocol for IBM Websphere MQ in JMS adapter.
    While sending data to IBM Websphere MQ Queue via JMS Adapter, need to set the field called ApplIndentityData with the appropriate value which is populate to a MQHRF2 header of a message.
    So, regarding that where will do it? Means JMS receiver adapter or IBM MQ level. If JMS receiver adapter, I think using ASMA, So please guide me how to set this filed value in JMS adapter or share any document you have.
    Thanks & regards
    Vijaykumar S

    Hi RejaSekar,
           I reffered your blog and did the below settings in JMS module and ASMA settings. 
    1) Changed the mode for u201CJMS-Complaintu201D instead of u201CWebsphere MQ(non JMS)u201D
    2) Additional JMS message properties tab created below property name and java type.
           LocalName    --> String
           Partname      -->  String
    3) In module parameter tab added the below module name and key
        AF_Modules/DynamicConfigurationBean   -->  LocalEnterpriseBean  -->  RFH2HEADER
    4) Under parameter Tab
         RFH2HEADER       -->   key.0      -->     insert http://sap.com/XI/System/JMS  DCJMSMessageProperty0
         RFH2HEADER       -->   key.1      -->     insert http://sap.com/XI/System/JMS  DCJMSMessageProperty0
         RFH2HEADER      -->  value.0    -->    LocalName
         RFH2HEADER      -->  value.1    -->    PartnerName
    Kindly check the above settings whether this is correct or wrong. If anything wrong please let me know what we need to change JMS receiver adapter.
    Actually my requirement is need to set these parameters and set the value to that parameters and pass in to /usr folder of a WebsphereMQ message.
    Kindly check and help me out.
    Thanks & regards
    Vijayakumar S

  • SAP Script Box Width Vs Font Size

    Hi All,
    I have a SAP Script where Boxes Width are based on CH for ex..
    BOX YPOS 1 LN WIDTH 3 CH HEIGHT 1 LN FRAME 1 TW'
    BOX YPOS 1 LN  XPOS 3 CH WIDTH 18 CH HEIGHT 1 LN FRAME 1 TW
    Now i have to populate the value in that 2 box with some values say mandt and matnr which are 3 and 18 char in length (Keeping those length in mind i desined the boxes)
    When i use Courier Font Size 12 , it fits fine in box boxes but when i use font size 8 then everything is messed up...
    It start up properly then the first character of matnr is displayed in the first box...
    How do i determine the box size width based on the font size ...
    In SAP Script header setting i have char/inch set up as 10 --Would that make any difference
    Please the client needs in SAP Script only...
    Thanks

    Any suggestions will be appreciated

  • Reg:purchase order header deletion flag

    hi all,
    right now in SAP PO header deletion flag has been set to X.
    so what i need is the PO should be flagged only at item level .
    how can i proceed?where can i find the deletion flag in the transaction screen?

    Hi,
    To set deletion flag at PO item, select the item and click on delete icon (a garbage bin).
    Cheers.
    ...Reward if useful.

  • Future of SAP CRM

    Hello Friends,
    I need a very sincere advice with the help of this forum and would really appreciate the SAP folks to open-up and provide your best futuristic and honest suggestion 
    My Background
    I have a total of 7.5 years of experience that includes 6 years of SAP presales support activity. Now when I say presales as you all know it stars from LEAD QUALIFICATION and ends to LEAD CONVERSION  and the capacity of work that is involved between these two word is enormous. So far my professional career got totally engrossed into RFPs, RFIs, RFQs proposal preparation, SOW preparation, estimation, client presentation, case study, defining GTM strategy, coordination between different teams (Infra, COE, Sales, Legal.....). Though this role has given me lots of knowledge on the domain (manufacturing, retail, utility, consumer goods...) as well as SAP (ECC, SRM, SCM, CRM, BI/BW.....) but what I think if I can combine my current experience (I call it as domain) with real time project experience in some module of SAP; then it will add more value and wattage to my CV as well as my future career path. 
    My Thoughts
    I am sure there are many professionals like me who have chosen this kind of path for his/her career, but the biggest question comes WHERE ARE WE HEADING TO!!!!!!! --a sales professional, or Bid manager or an account manager there on to practice heads and so on. The answers is yes these could be an option but to be a good solution architect or AM/BM in SAP space i think it is important to be well versed with one of the modules in combination with domain.   
    Future of SAP
    We all know the future of SAP is heading from CAPEX to OPEX market which mean CLOUD is / going to be HOT CAKE for its customer, then comes some of the emerging technology like CLOUD COMPUTING, HANA, Mobility SucessFactors, HADOOP etc. I am sure people will agree that in every human the wisdom teeth comes only after certain age but that doesn't conclude with the downfall of all other 32 teeth and in my opinion so is SAP. With these emerging technologies the backbone of SAP R/3 will continue to exist.         
    My Questions
    The next important aspect comes what combination of modules should a professional like me choose to gain project experience and what is its future/milestone because these days we have been hearing a lot of new technology within SAP space. Please suggest from the below list which I thought could be the probable options
    SAP CRM Functional
    SAP SD
    SAP SD+CRM
    SAP SCM (APO, DP, SNP, GATP, PPDS)
    SAP IS Retail 
    Please share your thoughts and suggestion and I am sure it will definitely add value in my decision. I appreciate your thoughts in anticipation 
    Regards
    Shekar

    Hi Sridhar,
    I don't this is the right place to discuss these doubts. Please find below link to get detail info to get your query. I would request please close the thread afterwards:-) as it is showning in highlighted list. You please inroll below courses then defintily will find out your answer. have a good day.
    https://open.sap.com/courses/s4h1http://  SAP HANA
    https://open.sap.com/courses/hana3  SAP HANA development
    Thanks,
    Prem

  • Header and item level

    Hi all,
    Can u please explain about header level and item level in purchasing document.
    Thnks & Regards
    SAP Beginner

    Hi
    Header level--
    Consider a PO with 2 items.
    Example: Freight 1000 inr is entered at header and the system will divide this value for the 2 items proportionately.
    Item level--
    Consider a PO with 2 items.
    Example: Freight 1000 inr is entered for each item level and it is applicable only for that item.
    Text, delivery costs all these follow the above rules.
    Thx
    Raja

  • More interesting news (SAP & Microsoft)

    Certified on Azure?
    SAP apps heading to Microsoft Azure cloud | PCWorld

    Thanks Chris,
    Allowing PowerBulider as an Azure hosted option and billed per actual usage would be a revolutionary breakthrough
    I actually meant hosting the PowerBuilder (Classic and I guess .net) Development Environment. 
    A bit like so: Visual Studio Online Pricing Details | Microsoft Azure
    The goal would be to be charged only for usage as developers use PB on a VM. No more installing and more importantly farting about with licensing.
    In my opinion and without prejudice, licensing has always been difficult; until now when it appears all but impossible...
    Just a thought.
    Lars
    (PS I like the Appeon plug)

  • SAP TECHED-2010 in Bangalore

    Hi All,
    This is the First Teched I attended in Banagalore .
    I thought of sharing my experiences OF FIRST DAY here
    Wow what a session's fantastic lectures.
    Initially My day started with rush to catch the public transport in Bangalore to reach the Far Far SAP. But I thought a huge crowd to collect the passes to enter inside. But luckily SAP has Manage so well that  for each alphabet one special counter.
    We just entered and it started with some traditional Song later followed lecture by SAP BG HEADS.
    and The INDIAN SAP BIG head announced some Special  (tool or module )has been launched by SAP I thought a boring sesson started
    But when the Live demo placed for the same..amazing tool 'SAP HANA'  launched which works Super sonic speed which is going to change all SAP architecture...even.
    I meet Craig , maryln, Raja and few other mentors...:) (Although Criag Doenst know whom I am )
    and after the session we have couple of useful hands on and lectures followed by DEMO JAM anchored by our SCN SAP STAR Craig.....
    This Demo Jam is something special that  6 participants will give 6 minutes of time. Each participant need to present their Demo on special tool developed by them in 6 mintues and Who ever recieves the best compliments wins that night...
    All 6 are super unfortunately they can select only one
    and Followed by SAP Special Party....
    Unlimited Drinks , Varities of food and Music campgain...Just like the College days...
    Wonderful atmosphere, Great People combination...Amazing Experience only I can say....
    Defintely atleast once in life we need to attend.Stay Tuned.
    Regards
    sas

    Hi sas,
    Nice to hear from you. I am not at TechEd Bangalore, so thanks for telling your stories and first impressions. I've been following tweets mostly since the event started, but maybe you'll become my "official reporter" now?
    As I was reading your post, I was thinking... Wow, this is a passionate description (food... yummy!), this belongs in a blog. I see you've never blogged on SCN but isn't it the right time to start? Tell us your impressions as a first time attendee in Bangalore, say who you met with (Craig, Marilyn, etc), what sessions you attended and what you learned. If you can, snap a few pictures and put them in your blog, etc. etc. That could be fun.
    If you want to know what others wrote about their TechEd experience, go search for the [blog category "SAP TechEd"|http://www.sdn.sap.com/irj/scn/sdnweblogs/topics].
    If you don't know how to get started, go to the [How to Contribute page|ABAP Frequently Asked Questions] or even easier, go visit the Community Clubhouse on the show floor. Marilyn and others (Rashmi Manda is another contact) will be there and can show you how to blog. You can also start with a wiki entry and participate in our daily drawing at the event.
    Looking forward to hearing how it goes Keep us tuned!
    Laure

  • Freight Header with Access sequence only to apply on the header.

    Hi Colleagues,
    I have a requirment to make Freight to be maintained as the Header condition.
    This should not apply in the item at all.
    In the standard SAP, the Header condition is always to be maintained manullay and can not be controlled through the access sequence(condition records)
    What are the other ways that we can have this working.
    Thankyou.

    Hi,
    There is no way in SAP to have the pricing only at header but not distributed to line item, even the pricing entered at the header gets distributed to each line item. Any price mentioned at the header has to be distributed to line item to calculate profitiability at the line item and in case of billing of the documents, unless the amount is appropriated to each line item, system cannot calculate correct billing amount in case of split of order into multiple billing document.
    I am not sure of your exact requirement but if you are looking to charge the flat amount on each document, you could do so by using group condition.
    Create a condition type with the following parameters:
    Calculation type = B
    Group  Condition = Active
    Group Condition Routine = 01.
    Assign an access sequence which contain the access fields from the header of the doucmnet so that condition type is captured at each line item with the same condition record number. Since all the line item will belong to common group and will have same condition record number whcih is fetched at each line item, system will apply only the amount mentioned in the condition record in the document. i.e. If condition record specificies 50$ as the amount, a total of 50$ will be applied on the doucment and will be distributed to each line item based on the value of each line item.
    In case the above solution does not meet your criteria or fits your situation.. please elaborate on the exact business scenario / requirement.
    Regards,
    Naveen Aggarwal

Maybe you are looking for