Screen for  'Additional Data B' of  VA01

Hi folks,
i want to add one field cusomer no  in 'Additional Data B' tab of VA01.
can anyone tell me the screen number for 'Additional Data B' of VA01 & the complete process of creating the field & validating the VBAP table?
Points will be awarded.
Regards
pabi

Hi Pabitra,
If you want to add fields in the item, create append structure for VBAP to add fields to standard table
In the screen mentioned , using graphic painter -> "import data from dictionary" from VBAP ->use the table and bring to the element to the screen
In PBO write logic for the field mainly to inactivate the screen for VA03 ...write the logic
if sy-tcode is 'VA03'.
Loop at screen.
screen-input= 0.
Modify screen.
endloop.
endif.
In the PAI write validations for the field if required
Pls check and revert
Reward if useful
Regards
Byju

Similar Messages

  • Do We need access key for Additional Data B in VA01

    Hi all,I have to add fields in Additional Data B,I have searched SDN about it and came to know that it is screen '8459' of program 'SAPMV45A',but it is asking key for that,is it safe applying access key for this screen?
    Thanks in advance.

    >is it safe applying access key for this screen?
    yes it is safe. SAP provided the screen 8459 only for adding our own custom fields to it. For this you need access key for the first time. along with that you need access key for
    PBO include, PAI include
    MV45AOZZ ,MV45AIZZ .
    check it once.

  • Manage "Additional data B" in VA01 and BAPI_SALESORDER_SIMULATE

    Hi all ,
    I'm implementing a new field in VA01 custom screen named "Additional data B" in this field in the user exit "userexit_pricing_prepare_tkomk(sapmv45a)" a value in table KOMK .
    This works well , but now i have to pass this custom value to BAPI_SALESORDER_SIMULATE , but i can't find any userexit or Extensionin custom Structure for make it working equal than VA01 .
    Any Idea ? Dario

    Hello, hello.
    It is very important that your VBAKKOZX append have the same fieldname as your VBAK extension ZZ fields !!
    -VBAK extension for VBAK-ZZTYPE and VBAK-ZZSTATUS -
    - (count field length in BAPE_VBAK)               -
      clear: extensionin.
      extensionin-structure        = 'BAPE_VBAK'.
      extensionin-valuepart1(10)   = quotation_doc.
      extensionin-valuepart1+10(4) = change_header-quot_status.
      extensionin-valuepart1+14(4) = change_header-quot_type.
      APPEND extensionin.
      clear: extensionin.
      extensionin-structure        = 'BAPE_VBAKX'.
      extensionin-valuepart1(10)   = quotation_doc.
      extensionin-valuepart1+10(1) = 'X'.
      extensionin-valuepart1+11(1) = 'X'.
      APPEND extensionin.
    Erik
    Edited by: Erik Hoven on May 22, 2008 9:17 AM

  • Can i buy a smaller macbook air (64gb) but use the time capsule for additional data ?

    can i buy a smaller macbook air (64gb) but use the time capsule for additional data ?

    If you plan to store important "original" or "master" files and documents on the Time Capsule, then you might want to think about a way to back up those files to another hard drive.
    Why? If the Time Capsule has a problem...and you have no backups....you lose everything.

  • How to add Fields in Additional Data B in VA01/VA02.PLease help me out.

    HI All,
    My requirement to add a Custom Screen in Va01/VA02 .Kindly suggest if any screen exists are there.
    How to Add extra fields in Additional Data B in header of VA01/VA02.is access key is neccessary for that.
    Thanks in  Advance.

    Hi
    Check the link
    http://techbays.com/2008/04/17/implicit-enhancement-in-sap-ecc-60/
    There is a BADI BADI_SD_V46H0001 and Method EXIT_SAPLV46H_003.
    You should be able to it without access keys.Consult your SD Functional Guy also
    Regards
    Sanil Bhandari

  • User exit for additional data B for sale order item .

    Hi., all
    my client requirement is
    (  This business requirement will make the Last Price for a given item be visible during order entry.  )
    u2022Retrieve & display during order entry, the most recent unit price given to a customer for a specific item, from the Billing data.
    . Display the Last Price under Additional Data B Screen
    add new field (last extended price) in additional data b screen.
    after that 1.     Using the Sales Order Material Number (VBAP-MATNR), Sales Order Sales Organization (VBAK-VKORG), Sales Order Distribution Channel (VBAK-VTWEG), Sales Order Division (VBAK-SPART), Sales Order Sold-to Number (VBPA-KUNNR for VBPA-PARVW=u2019AGu2019) to access the Billing Items By Material Index Table (VRPMA) and specify a billing date (VRPMA-FKDAT) of less than 60 days from current Sales Order requested delivery date (if specified at header VBAK-VDATU or at the schedule line level (VBEP-EDATU).  This will result in all the billing documents where the Sold-to bought the item but isnu2019t completely refined as of yet.  Retain the billing document (VRPMA-VBELN), item (VBPMA-POSNR), and billing date (VRPMA-FKDAT) in a temporary table to pass to number 2 as the input.
    2.     Use the billing document (VRPMA-VBELN) and item (VRPMA-POSNR) to read the Sales Document Partners Table (VBPA) where the partner function (VBPA-PARVW = u201CSHu201D) and the Sales Order Ship-To (VBPA-KUNNR for VBPA-PARVW=u2019WEu2019) to select ONLY billing documents that are for that given ship-to location.  This filters out only billing documents relevant for that ship-to location. 
    3.     From the resulting list of billing documents, select the most recent date (VRPMA-FKDAT) which will refine the search for the last Billing Document (VRPMA-VBELN) and item (VRPMA-POSNR).
    4.     Using the most recent Billing Document (VBPA-VBELN), access the Billing Document Item Table (VBRP). To result in the Last Extended Price as VBRP-KZWI1.
    5.     This price will be an extended price which needs to be calculated as a u2018unit priceu2019.  For this billing item, select the sales unit (VBRP-VRKME) to determine if the sales unit is in cases or eaches. 
    a.     If the unit of measure is in cases, then simple math is required to divide the Last Extended Price (VBRP-KZWI1) by the billing quantity (VBRP-FKIMG).  Standard rounding should apply when .005 results in a .01.
    how to achive this ?

    Hi Chakravarthy,
    use the Exits provided in SAPMV45A -includes MV45*ZZ and screen exits as well 8309 8310 8459, 8460. Just be sure to
    use zznnnnnn include in the SAP provided forms instead of coding directly in the forms.
    You can check below user exits:
    MV45ATZZ :For entering metadata for sales document processing. User-specific metadata must start with "ZZ".
    MV45AOZZ:
    For entering additional installation-specific modules for sales document processing which are called up by the screen and run under PBO (Process Before Output) prior to output of the screen. The modules must start with "ZZ".
    MV45AIZZ:
    For entering additional installation-specific modules for sales document processing. These are called up by the screen and run under PAI (Process After Input) after data input (for example, data validation). The modules must start with "ZZ".
    MV45AFZZ and MV45EFZ1:
    For entering installation-specific FORM routines and for using user exits, which may be required and can be used if necessary. These program components are called up by the modules in MV45AOZZ or MV45AIZZ.
    Reddy

  • Authorization object for additional data of material

    Hi,
    in our Authorization there some user they can use MM01/MM02 only for specific
    Maintenance Statuses - object M_MATE_STA (say L - Storage, X - Plant stocks, Z - Storage location stocks).
    We also want, that this user are not allowed to change some additional data, but i don't know, if there
    is some Authorization object.
    Has anyone an idiea?
    thanks.
    Regards, Dieter

    Have a look at M_MATE_MAN. Help text below:
    Definition
    This object determines whether a user is authorized to maintain material master data at client level.
    Data at client level includes fields that cannot be maintained for each organizational unit (for example, for each plant or sales organization). It includes the following data in particular:
    Material descriptions
    Long texts (except sales texts and the material memo)
    Units of measure
    EANs
    However, it does not include the objects of other applications that you can assign to a material when maintaining the material master record (for example, document assignment or classification) since separate authorizations can be given for objects of this kind.
    Note
    Even if a user does not have the authorization to display data at client level, the following data is still displayed for the material nevertheless:
    Material descriptions and base unit of measure
    Deletion flag on the initial Flag Material for Deletion screen
    Defined fields
    Fields Possible values Meaning
    ACTVT 01 User may create data.
    02 User may change data.
    03 User may display data.
    06 User may change deletion flags.
    Edited by: Nick WW on May 27, 2011 9:27 AM

  • System table for Additional Data - Basic data text (MM03)

    Hi
    How can I get the system table for stroring data in MM03 in "Additional Data" the "basic data text" ?
    Thanks in advance.

    Hi,
    CALL FUNCTION 'READ_TEXT'
             EXPORTING
                CLIENT                  = SY-MANDT
                ID                      = 'Z610'
                LANGUAGE                = SY-LANGU
                NAME                    = V_TDNAME
                OBJECT                  = 'VBBK'
                ARCHIVE_HANDLE          = 0
             IMPORTING
                HEADER                  = I_TEXT_HEAD
             TABLES
                LINES                   = I_TEXT_LINE
             EXCEPTIONS
                ID                      = 1
                LANGUAGE                = 2
                NAME                    = 3
                NOT_FOUND               = 4
                OBJECT                  = 5
                REFERENCE_CHECK         = 6
                WRONG_ACCESS_TO_ARCHIVE = 7
                OTHERS                  = 8.
    Regards,
    Bharani

  • F4 help for PO date field in VA01 transaction during upgrade

    Hi All,
    We are working on upgrade project 4.6c to ECC 6.
    We came across one scenario.
    F4 help for PO date field is not coming in newer version in VA01 transaction but i checked in older version it is coming F4 help for PO date(calender).
    May i know the reason regarding this.
    Any clues
    Regards
    Jai
    Edited by: Jayanth16 on Nov 12, 2009 6:14 PM
    Edited by: Jayanth16 on Nov 12, 2009 6:22 PM

    Hi,
    User did some changes in include LSDSDF05 due to that F4 help is not coming.
    So i correct that one.
    Regards
    Jai

  • How to build customized screens for Master Data Users

    Hi all,
    I need to build screens on top of centrally managed master data hub (Data Manager). I want to confirm following
    1) Should I go with Guided procedure (CAF) and pre defined Portal contains provided by SAP for MDM?
    2) Should I use Java API's provided with SAP MDM.
    License is not al all the issue. We have the entire NW components in place. But not sure what to use and what are the advantages/disadv???
    Please share your views....
    Thx,
    R.n

    Hi,
    I would suggest GP would be easier and in this you can integrate with ur customised objects also.
    Vinay

  • Sizing of the database for additional data and users

    We have been running Oracle Financials for a number of divisions for about seven years now. Currently we are planning migration of another few divisions into the system. This involves migrating existing data from the legacy systems as well as nearly doubling the number of users and activity in the database.
    Could anyone provide any kind of advice / guidelines on how to pre-size Oracle Financials database in such scenario? Maybe there are tools out there to assist with the task? Any advice / pointers to articles and other resources will be greatly appreciated.

    I'm curious as to how much CPU power you have in the iSeries box? If you let me know the value of DSPSYSVAL QPRCFEAT, I can find it out for you.  Did you also use Graph History tool in iSeries Navigator to monitor CPU utilization over an exteneded period of days to conclude that you do have consistently high CPU utilization?
    Since you are at V5R4, you should find a skilled person to help use DB2 System-wide index advisor in iSeries Navigator to identify and create frequently needed indexes (that are not created yet) as the advisor indicates. This is a new tool in V5R4 that I have been using for may local SAP on iSeries customers (and those who use SQL-based applications) and it provides improved system performance in varying degrees. 
    Satid S.
    IBM Thailand

  • Screen Exit for VA01/02 Additional data tab B

    Hi
    i am working on screen exit for Additional Data Tab B to add custom fields.I have included the fields in VBAK table using append structure(is there a way to include fields using Include Structure?).
    Also i have seen in many threads that SAPMV45A program and 8309 is the screen number to do the changes.
    I am new to this Screen exits can someone tell me how to add these fields in that tab?i dont understand what to do from here.
    give me step by step process or any link to do this.

    hi
    but does it ask me for ACCESSKEY?
    i must not change the standard thing. i need to implement in Exits only.i have seen in SAPMV45A there are 2 exits exit_**_002 and 003 which can be used for PBO and PAI.
    but i am confused on how to bring the fields into ADDITIONAL DATA TAB B  without changing standard directly?

  • Customer master - Group Code in Additional Data screen

    Hi,
    In customer master, in the 'Additional Customer Data' pop up screen  (Extras -> Additional Data), you can find a field for group code (KNA1-KATR6).   Where in IMG do I maintain the values for this field?
    Appreciate your advise.  thanks!

    Hi,
    You can maintain this values in the below path
    IMG->LOGISTICS GENERAL->BUSINESS PARTNER>CUSTOMERS->CONTROL->DEFINE ATTRIBUTES->CUSTOMER ATTRIBUTES 6
    In the above path you can define the required entry and it will appear in the Customer master configuration.
    regards,
    santosh

  • How to enhance IT 1001 additional data screen.

    Hi Folks,
    I want to enhance IT1001 additional data screen, (I want to add two fields on the screen), the table of it is HRPAD34 and it also contains CI include, But When i try to enhance it through PPCI T-code, I'm unable to do it, Can any buddy suggest how to enhance screen  of additional data of IT1001.
    Thanks
    Teja.

    try this link u will get enhancing infotype....
    <link to blocked site removed by moderator>
    Thanks,
    Amol
    Edited by: Thomas Zloch on Feb 6, 2012

  • Additional Data ta fields

    Hello Gurus,
    I am working on version ECC 6.0. The Additional data tab on the header level of the PO does not contain any fields. The fields are missing on this tab eg. Validity start date, end date , warranty etc. I require these fields on my PO as it is in the earlier versions. Any help will be greatly appreciated.
    Thanks in advance
    MV

    Hi,
    please check the field selection for PO in SPRO make it optional for additional data
    SPROMaterial Management Purchasingdefine screen layoutat document level
    Select ME21N and click on details you will get all the field selection group then double click on administrative data, header here you can make the required field as optional/required or display
    regards
    Vikrama

Maybe you are looking for

  • HP 530 notebook PC - hard drive and RAM upgrade

    Hello, I'm using HP 530 and I want to upgrade it's hard drive. In documentation specified that my notebook supports only 80/120Gb hard drives and up to 2Gb RAM. Is it true? Can't i use more capacious HDD or RAM. And what type of HDD i should by? Is i

  • N95 Firmware update (v13, v20... whatever it's sup...

    Seriously don't hold your breath for too long... Nokia are truly awful at this, they treat the customers who buy their most expensive handsets with such apparent contempt it is nothing short of disgusting. I bought an N93 which was quickly superceded

  • Assigning interface to interface

    Hi All, I have a question in interface. It may be a silly doubt, but I am not sure what I am missing out. I have 2 interfaces I1 and I2, totally unrelated. I create variables for these 2 interfaces i1 and i2 respectively. Can I do like this? i1 = (I1

  • Issue:EDI: Syntax error in IDoc (mandatory segment missing):Idoc extention

    Hi all, I have extended the the standard IDOC MATMAS05  classification view with structure as below- E1MARAM                        Master material general data (MARA)--->Mandatory segment      Z1KLART                        KLART --->Extended chaild

  • Screen Recording Problems

    I love the feature, but there are some minor problems I would prefer solved. When I play my recorded video, the screen looks rather smaller. Heres a screenshot http://i58.tinypic.com/2iag9bt.jpg My second problem is with the sound. It looks like its