Substitution call up point 3 - add fields

HI Experts
I have a requirement that SAP should propose BKPF-XBLNR filed automatically when user clicks on save. I am planning to use substitution call u point 3 to get this requirement done. I have done the configuration but then I came to that for call up point 3 this field is not avilable for substituion. Is there a way to add this field to to the substituion field list . (this field is available for call up point 2)
Thanks
Kiran

Hi, it's not unusual that you donu2019t have all the information in a substitution u2013 at the time of the call-up point!
By that I mean you could have the information of the screen of the posting u2013 but itu2019s not passed on as information to be used in substitutions u2026
If that is the case do you have to write a few ABAP lines in order to read the content of the screen and pass in on in to the substitution.
You can find out by using transaction GGB0 u2013 look here for the debugging instruction 
regards
René
Edited by: René Vestergaard Nielsen on Aug 26, 2008 3:09 PM - wrong link

Similar Messages

  • OSS Note 386896 (Substitution for call-up point 3) implementation in ECC 6

    Hello Everyone,
    We had implemented OSS Note 386896 (Substitution for call-up point 3 ('Complete document')) in our SAP system (Release 470).
    Now weu2019ve upgraded to ECC 6 and are looking for an alternate solution as OSS 386896 is not valid in ECC 6.
    Suggestions on any solution would be highly appreciated.
    Warm Regards,
    Sushil.

    Hi,
    Please do the below.
    Check the SAP Service market website and search for the OSS note, check the validity for the OSS note, if it is being already applied as a support pack or not,
    Check if the release of the OSS note is valid for your ECC 6. If not then Raise a message with SAP and ask if there is any alternative note for this in the new release. SAP will respond to the query or can extend the validity  of the note.
    Regards
    Shiva

  • "File Browse" type item: at what point the fields mime_type, file_name, last_update_date get their values?

    Hi there,
    I have an issue with "File Browse" type item, my question is: at what point the fields mime_type, file_name, last_update_date get their values? I want to add them to the collection but if I try to do it in Process "On Submit - After Computations and Validations" the values in those fields are still null (that's for the insert, and for the update they have old values). Also I don't seem to be able to add blob to the collection ("File Browse" type item (which has the source as blob database column) can't be assigned as parameter p_blob001 of APEX_COLLECTION.ADD_MEMBER, error is: PLS-00306: wrong number or types of arguments in call to 'ADD_MEMBER').
    What I am trying to do is this: I have parent table (TABLE1), and child table (TABLE2).  In TABLE2 I store documents. I have a main page that is form on TABLE1, and on it I have button "Add documents" that opens popup window with form on TABLE2. On submit of popup page I want to avoid inserting document into TABLE2, instead I want to send data to the main page (using collection) and insert in only once the main page is submitted.
    I would appreciate any advice on this...
    Thanks,
    Tanya

    Hello Tanya,
    Can you post your PL/SQL code which you are trying?
    Regards,
    Hari

  • Add field to MSS General Information

    Hi experts,
    I'm trying to customize the iviews in MSS > General Information to add fields to the iViews. Thus, I need to identify what are the function modules they are calling. However, when I open sap.com/mss~eepro/ Web Dynpro component in NDWI, I could not see any model! Can anyone explain to me how does this application work then if it has no model to store function modules?
    THanks,
    Zm

    Hi,
    if you have access to ECC System go to transaction ST05 and run the trace with the user who is having access to run the iView. after it is on go to portal and run the General Information iView. after executing that go back to ECC system and switch off the analysis and see the RFC trace.
    it will show all the Function Modules that are called when executing the iView.
    and it is better if we don't make any changes to the standard FM and instead use the custom FM to add the fields, since we did the same sought of development using custom fm.
    creating a model and making changes to the application.
    Hope this helps.
    Cheers-
    Pramod
    reward points if helpful.

  • Use of enhancement to add field in screen

    please explain me how to add fields in standard transaction screen by using enhancement 6 in version 6.0 ?

    SAP provides standard transactions to enter data into database. But a client may want to maintain some additional information in SAP other than what is provided.
    To make provisions for this, additional screens have to be provided and additional fields must be added into appropriate database table.
    To pave way for this, SAP has provided the option for screen exits. Usually, SAP provides the following:
    An append structure in the database table with the new fields.
    A subscreen area into the standard screen u2013 where the programmer can attach his subscreen of his own program with the new fields.
    A function group under which the new subscreen has to be created with the new fields.
    Function exits to synchronize the PBO and PAI of the standard SAP program with the PBO and PAI of the subscreen u2013 so that data can flow back and forth between the standard SAP program and the program written by the developer for the subscreen. These function modules also exist in the same function group under which the subscreen will have to be developed.
    Finally, a linkage has to be done between the subscreen area of standard SAP screen with the custom subscreen constructed by the developer.
    Typically, SAP provides an enhancement in which the developer can create an append structure, use the function exits to synchronize the PBO and PAI of the standard SAP program and the custom subscreen program, and make the necessary linking( as mentioned above in step 4. But, again, this is not a hard and fast rule. Linking in some case, is also done by configurations.) SAP also usually provides the name of the function group under which the subscreen has to be developed.
    Necessary guidance about implementing a screen exit development is usually available in the Documentation section of the enhancement ( can be availed by transaction SMOD).
    Pre-Requisites
    The developer to work on screen exit should have essential knowledge on the following:
    DDIC concepts, including the knowledge of append structure.
    Concept of SAP Enhancements and implementing them using Projects.
    Concept of function exits.
    Knowledge on Module Pool u2013 including subscreens, Tabstrip controls etc.
    Steps
    Guidelines
    So, a developer can follow the guidelines mentioned below to implement a screen exit to a standard SAP transaction, as and when required:
    Find out the Required Enhancements
    Go to SMOD. Press F4 in the Enhancement field. In the next popup window, click pushbutton u2018SAP Applicationsu2019. A list will appear that contains information on all the enhancements, categorized under functional areas. Developer must search for the enhancements relevant to his functional area of interest u2013 for e.g., Purchasing, Asset Accounting, etc.
    Note down the enhancements. Then, come to the initial screen of SMOD and view the documentation of each enhancement to find out which one is required for your development.
    Utilize the Enhancement in a Project
    After you have found one, do as directed in the documentation. Generally, the steps are as follows:
    Create a project using CMOD including your enhancement.
    Create the append structure with new fields.
    Go to the desired function group and create a subscreen with the new fields. Write PBO and PAI for the subscreen, if required.
    Use the function exits in the enhancement to link the PBO and PAI of the subscreen with that of the main SAP program supporting the SAP transaction.
    Maintain necessary linkage between the subscreen area of standard SAP program with the custom subscreen developed along with the custom program name. This can be done in the project (developed by CMOD including the enhancement) or outside as a part of configuration.
    Activate the project.
    Test to ensure that required functionality are met.
    Case Study 1
    Add three new custom fields for Asset master and maintain information for them
    Requirement
    Three fields in the legacy system have to be maintained in Asset master. These fields are:
    Original Asset number u2013 20 characters
    Location 2 u2013 15 Characters.
    Model no u2013 20 characters
    Location 2 should start with u2018Lu2019.
    Pre-Analysis
    Finding out the Enhancement
    As described above, the enhancement is determined. It was found, that enhancement AIST0002 will serve the purpose. It contains the following components (can be viewed by transaction SMOD):
    Exit Type Description EXIT_SAPL1022_001 Function Exit Check of User-Defined Fields when Using Create and Change BAPI EXIT_SAPLAIST_002 Function Exit Transfer Data for User Subscreens in PBO. EXIT_SAPLAIST_003 Function Exit Transfer of User-Defined Fields to SAP Master Data Transactions CI_ANLU Customizing Include Include structure to add new fields
    Studying the Function Exits
    The function module level documentation for the function exits are then viewed from transaction SE37. The documentation clearly laid out for the purpose for their use:
    EXIT_SAPLAIST_002
    Function module Level Documentation
    This function module is called by asset master data maintenance at the start of the dialog. (When changing, it is called after reading of the data from the database; when creating it is called after the transfer of the default values from the asset class and reference asset.) The purpose of the function module is to enable this function group to recognize the master data. For interpreting or controlling master data fields that are important for user fields, it is possible to transfer to global variables at this point, so that they can be recognized when the user subscreens are processed.
    Import Parameters
    Understanding
    This function module is called at the PBO to pass the information retrieved from the database to pass them to the custom subscreen and its underlying program. Import parameter : I_ANLU will be populated with the values for user-defined fields which will be passed to the subscreen program. So, there must be some sort of variable assignment from I_ANLU.
    EXIT_SAPLAIST_003
    Function module Documentation: This function module is called by SAP asset master data maintenance after the screens are processed, but before saving. The purpose of the function module is to transfer fields entered on user sub-screens of SAP asset data maintenance to the database for updating. The export parameter for this function module is:
    Understanding
    This function module will be used to transfer the user entered data in the subscreen fields to the main SAP program, which will then be saved into the database.
    Studying the Documentation of the Enhancement
    The enhancement documentation (as is viewed from the initial screen of SMOD] also supports the idea. Moreover, it informs that we need to develop a subscreen under function group XAIS. This is the function group under which the two function exit modules also exist. So, if the custom subscreen refers to the global data of the function group XAIS, then those values will also be available to these function exits as well.
    Going to SE80 and viewing the function group XAIS helps us to inform that there are three DDIC tables declared for it:
    Deciding the Final course of Action
    After making all the investigations, the final course of action was determined.
    SrlNo Step Justification
    A project has to be created using transaction CMOD where the enhancement AIST0002 will be included.
    Customizing include CI_ANLU has to be created with the custom fields demanded When CI_ANLU will be developed, the custom fields will get appended to the database table ANLU. Also, these fields will be used to create screen fields in the new subscreen.
    A custom subscreen, say, 9000 will be developed under function group XAIS. The screen group for the screen will be u2018CUSTu2019 (or any name). The three custom fields added to table ANLU (by creating CI_ANLU) will be used to create new fields in the screen.
    In the PAI of the subscreen, validation for Location to start with u2018Lu2019 will be added. The subscreen with three new fields has to be developed so that it can be attached to a subscreen area of the asset master screens.
    In the custom include of the function exit module u2018EXIT_SAPLAIST_002u2019, the following code will be written:-
    ANLU = I_ANLU. I_ANLU is the import parameter of this FM. The value is assigned to the global variable ANLU, referring which the three new subscreen fields are developed. So, data retrieved from database table ANLU will be passed to this FM as I_ANLU by the standard SAP main program. The value will be taken and passed to the global variable of the function group XAIS, so that the three custom fields (referring to ANLU of XAIS) get populated.
    In the custom include of the function exit module u2018EXIT_SAPLAIST_003u2019, the following code will be written:-
    E_ANLU = ANLU. The changed values in the subscreen fields exist in global variable ANLU for the function group XAIS. This function exit module will pass the data back to the SAP main program as E_ANLU.
    Proper linkage/configuration has to be done so that the new subscreens get linked to the appropriate subscreen area of the Asset master screen. This has to be done u2013 otherwise, the new custom subscreen will not be displayed in the Asset master screens.
    Development
    Creating a Project to include the enhancement
    Go to transaction CMOD and create a project.
    Enter a description for the project. Then, click on the pushbutton u2018Enhancement Assignmentsu2019 in the Application Toolbar.
    Enter the name of the enhancement and Save.
    Go to u2018Componentsu2019.
    Creating Custom Include for ANLU
    The screen shown below will appear, showing all the enhancement components under the assignment AIST0002. Double-click on the name of the Include Structure to create it.
    Create the include structure with three new fields, as required. Then, save and activate it.
    Develop the subscreen and the program
    Go to transaction SE80. For the function group XAIS, create a new subscreen 9000.
    Create it as subscreen.
    Then, go to the Layout of the screen and create three new fields from Database table ANLU.
    Drag the fields in the screen body and place them.
    Then, save and activate the screen and come back to screen flow editor.
    Create the PAI module to add validation for field u201CLocation 2u201D, as required .
    Activate the whole function group and come out.
    Write code in the Function Exits to synchronize the programs
    Now, code has to be written in the function modules EXIT_SAPLAIST_002 and EXIT_SAPLAIST_003 so that data flows to and fro between the main SAP program and custom subscreen program. For that, go back to transaction CMOD and change the function exits.
    Write code in the function module EXIT_SAPLAIST_002 called once at the beginning of the transaction:
    Write code in EXIT_SAPLAIST_003 to pass the data from the subscreen to SAP main program.
    Then, activate everything u2013 the whole project and come out.
    Complete the configuration to link the subscreen
    The development portion is complete. Now, linking of the subscreen has to be done with the subscreen area of the main program. In most of the cases, this linking can be done in the enhancement itself. But, here, requirement is a bit different. It is done by configuration using SPRO.
    Assets are created under Asset class. And for each asset class, there is a layout assigned to it. For a layout, there are multiple tab pages assigned to it. And, for each tab page, there are multiple screen groups/field groups assigned.
    Here, the requirement is to create these three custom fields in the tab page u2018Generalu2019 of asset master screen ( AS01/AS02/AS03/AS91).
    Determine the Layout
    To achieve this, first of all, we need to find out which layout is assigned to asset class 1000.For that, go to transaction AOLK( information has to be obtained from functional consultant).Select the Asset Class u20181000u2019 and click on folder u2018General Assignment of Layoutu2019.
    Here, for Asset class 1000, for all the user groups, tab layout SAP is assigned. Since layout u2018SAPu2019 cannot be changed, it has to be copied and manipulated to include our screen group. Later, the new layout has to be assigned over here.
    Create new tab layout
    Go to transaction AOLA. Copy the tab layout u2018SAPu2019 to create another layout, say, YSUB.
    System will copy all the settings and will inform you about that.
    Select your newly created layout and double-click on the folder u2018Tab page titlesu2019.
    You want to put your custom fields in the tab page u201CGeneralu201D. So, select this tab page entry and double-click on the folder "Position of Groups".
    Here, all the field groups currently residing in the tab-page u201CGeneralu201D are shown. Add an entry for your newly created fields.
    Select the group box from the list. An entry will come with u201CUu201D padded with the custom subscreen prepared by you.
    Then, save and come out.
    Assign the new Layout to Asset Class
    Now, go to tcode AOLK and assign tab layout YSUB for asset class 1000.
    Save and come out.
    Test the Exit
    Everything is over. Now, go to transaction code AS01/02/03 or AS91 to deal with an asset of asset class 1000. You will see your new fields added to the screen. Add values to themu2026save. Then, enter into the tcodes again to see whether the values entered by you are being displayed or not.
    I hope you read it all
    Thanks and Regards
    Santosh K.

  • How  to add field( VBAK-SUBMI) as a Selection Criteria - VL10

    Hi friends,
    Could u please help in sort out the below issues,
    1. Add field VBAK-SUBMI as a Selection Criteria to the Selection Screen for the VL10 - Program V50RINCL, user exit V50R_SELECT_OPTION_ADD
    2.Transfer the VBAK-SUBMI field to the report created during the VL10 transaction. – Program V50RINCL, user exit V50R_USEREXIT_TRANSF.
    I am bit new to enahancements, please provide some information to achieve the above objects.
    Poits will be rewarded.
    Thanks.
    Regards. VKRAO.

    Hi,
    <b>Plz find the explanation abt user-exit below</b>
    User exits :
    1. Introduction
    2. How to find user exits
    3. Using Project management of SAP Enhancements
    1. Introduction:
    User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a functionmodule. The code for the function module is writeen by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.
    The naming standard of function modules for functionmodule exits is:
    EXIT_<program name><3 digit suffix>
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    Example:
    The program for transaction VA01 Create salesorder is SAPMV45A
    If you search for CALL CUSTOMER-FUNCTION i program
    SAPMV45A you will find ( Among other user exits):
    CALL CUSTOMER-FUNCTION '003'
    exporting
    xvbak = vbak
    xvbuk = vbuk
    xkomk = tkomk
    importing
    lvf_subrc = lvf_subrc
    tables
    xvbfa = xvbfa
    xvbap = xvbap
    xvbup = xvbup.
    The exit calls function module EXIT_SAPMV45A_003
    2. How to find user exits?
    Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT
    If you know the Exit name, go to transaction CMOD.
    Choose menu Utillities->SAP Enhancements. Enter the exit name and press enter.
    You will now come to a screen that shows the function module exits for the exit.
    3. Using Project management of SAP Enhancements, we want to create a project to enahance trasnaction VA01 .
    - Go to transaction CMOD
    - Create a project called ZVA01
    - Choose the Enhancement assign radio button and press the Change button
    In the first column enter V45A0002 Predefine sold-to party in sales document.
    Note that an enhancement can only be used in 1 project. If the enhancement is already in use, and error message will be displayed
    Press Save
    Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002. Double click on the exit.
    Now the function module is displayed. Double click on include ZXVVAU04 in the function module
    Insert the following code into the include: E_KUNNR = '2155'.
    Activate the include program. Go back to CMOD and activate the project.
    Goto transaction VA01 and craete a salesorder.
    Note that Sold-to-party now automatically is "2155"
    <b>
    Reward points if it solves ur query or answer is helpful</b>
    Thanks
    Chinmay

  • Add fields to Existing DSO and DS in R/3

    Hi Friends,
    I have got to change my LO datasource which is running on production, 2lis_va_vatim, i need to add 2 fields to the exisitng DS from Comm Stru, so could anyone point me inthe right direction, Hoow to Add the fields with out disturbing the production,
    and the same way i need to cgane my DSO aswell for new fields, please tell me how to meet this.
    Thanks,
    Kiran.

    Hi Kiran,
    Before applying your changes in Production do the below steps:
    1)run V3 job as immediate, which picks data to delta queue and delete the acive V3 job.
    2)run the IP which loads data to BW(Delta IP).
    3)Apply your changes to the 2lis_va_vatim and DSO.
      i)Do the changes(adding your fields to 2lis_va_vatim and DSO)in DEV and active the 2lis_va_vatim and DSO.(insert this in transports).
    ii)first apply the R3 transport and then BW side.
    4)from now on wards your 2 fileds will get populated in BW side.
    5)Maintain the V3 job for 2lis_va_vatim in R3.
    If you need any clarification how to add fields to 2lis_va_vatim and create transport req pelase check the below article.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2050db8b-9d90-2c10-2980-b13a4b0938f6
    Hope this helps.
    Regards,
    Venkatesh.

  • Add fields in KOB2 & KSB2 report in selection screen as well as output

    Dear All,
    I have an issue in which i have to add fields in KOB2 & KSB2 report.
    i need to add below fields to KSB2 report.
    1) Internal order
    2) Vendor
    3) Purchasing group
    I also need to add profit centre in selection screen for KSB2
    Similarly for KOB2 i need to add below fields
    1) Cost centre
    2) Vendor
    3) Purchasing group
    I also need to add cost centre as input for KOB2 report.
    I have gone through note 325546 "CO line item reports: Creating a user-defined field" which can be helpful.
    However i am not sure as to how do i add fields in input screen as required.
    Other alternative is to create a Z report however when i try and copy the report both KOB2 & KSB2 call same report "RKAEP000".
    I am not able to get as to how do i differentiate the call of different screens when ZKOB2 is called or when ZKSB2 is called.
    I could identify " c_item_group" field having different values however i couldnot get a proper logic as to how correct screen can be called based on input
    Please suggest .
    Thanks,
    Ronak

    Hi Raymond,
    The note 747588 is good as soon as you are adding fields from the same table only.
    When I have added additional table into KAEP_SCOVP selection view below COVP (just because the extra fields I need are not in COVP) they will show up in KOB1 as selection criteria, but not getting saved.
    Any idea if any ABAP should be regenerated or what extra steps are required when adding more tables into Selection View?
    Thank you!

  • How to add field to the header for FBL5N ALV report

    Hi,
       I need to add fields to the customer line item display ALV report(FBL5N) header part.Right now there are four fields in the header like customer, company code, name and city, after that I need to add first name last name and phone no. Can any one tell me where exactly I need to add and populate there fields to be appear in ALV output list.
    Thanks in Advance
    Swapna

    Yes I have tried, I have place a break point in that perform but it does not stop. I think that is not the correct place to added and populate fields. That routine is for populate selection screen ranges single and multiple values and parameters only.
    Thanks
    Swapna

  • Add fields so clients can sign electronically and send back

    I've read a bunch of discussions about how to add fields to forms but none of them answered all my questions.
    What I'd like to do is add a signature and text field (for date) to a PDF so that my clients can send them back signed electronically. I do not want to use EchoSign.
    I have Acrobat Pro v9.5.2. I added a signature field and text field per http://www.adobe.com/accessibility/products/acrobat/pdf/A9-creating-accessible-pdf-forms.p df. I read on an Adobe forum that I was supposed to go to Save as > Reader Extended to allow the user to sign the document and send back to me signed. However, all I have as save options are Save or Save As. There's no Save As > Reader Extended option and when I choose Save As the "Save as type" does not include Reader Extended either.
    Please post step by step instructions for how to do this (add 2 fields, save doc, send to client, have them sign and fill in fields and send back to me completed). Surely we can do this with 9 yes?
    Thanks so much in advance!

    Here are full instructions for version 9.5.2 in case they're helpful to anyone:
    How to add digital signature field to PDF using Adobe Acrobat Pro 9.5.2:
    1. Open PDF in Acrobat (Right click > Open with > Acrobat)
    2. Go to Forms > Add or Edit Fields
    3. Pop up box > select NO
    4. Click "Add New Field" button on top left > select Digital Signature
    5. Guideline-type things will appear > drag to where you want field.
    6. Click on the signature field and change name if you'd like.
    7. Click "Close From Editing" button on top left.
    8. Go to Advanced > Extend Features in Adobe Reader > Save Now
    9. Save it where you'd like
    How to Digitally Sign a Document with Adobe Reader
    1. Double click the signature field on the bottom right of the contract. A pop up box will appear.
    2. If it's the first time you'll be signing anything in Adobe Reader, select bottom option, "A new digital ID I want to create now" > click Next
    3. Fill in your name and email (required) > click Next
    4. Enter a password and then again in "Confirm password" and write down your password somewhere so you'll remember
    5. Click Finish. You're now ready to sign doc
    6. Enter the password you just created into "Password" field
    (To import graphic of your signature, from "appearance" field, select "Create New Appearance" > Enter title like "signature" > click "Imported graphic" option > click "File" (not sure but file might need to be a PDF) > click Okay and click okay again.
    7. Click "Sign"
    8. Save document - give it a name > Save.
    9. You should see signature in the signature field
    At any point in future you can come back to signature and right click (or ctrl click if mac):
    You can clear, validate, etc.
    If doc has been modified, you can "view signed version" or "show signed properties".
    Edit > Protection > Security Settings
    You can see any digital IDs you've set up, remove, add new ones, look at usage options,
    For more help, you can watch this video on "How to Digitally Sign a Document with Adobe Reader"
    http://tv.adobe.com/watch/acrobat-x/how-to-digitally-sign-a-document-with-adobe-reader/

  • Need to Add Field Name to the Downloaded XLS file

    Im using the function SAP_CONVERT_TO_TXT_FORMAT
    and downloading the contents by sending them as attachements in email.
    I need to add field names(column name) to excel fields.
    So that when fields are displayed in excel file they are displayed by their column names..
    How do I do this.? Any ideas.
    Answers will be rewarded with points..

    Hi
    You can manually insert the column names as the first row in your internal table to have them in .xls file as headers.
    Regards,
    Raj

  • Unable to create the validation at Call up point 3

    Dear Friends,
    I am trying to create the validation rule for call up point 3..
    while doing the prerequisite is system is not througing any error message, But while doing Check step I am getting the message like " Formula composed upto first systax error"
    This is the full length message i am getting the error..
    The formula was composed up to the first syntax error.
    Message no. GB 506
    Diagnosis
    You tried to exit insert mode, which is only possible if the formula has no syntax errors from beginning to end. If it is not, a new insertion session is opened ahead of the first syntax error. You can then correct the syntax error at the new position through making new entries or by deleting the formula symbols that follow.
    You can then try exiting the insertion session again.
    Validation is
    BKPF-TCODE = 'MIRO' and BKPF-BUKRS = '2005'
    check
    BSEG-BVTYP not equal to null
    in this point i am getting the above mentioned message
    Please let me know in this regard.
    Regards,
    Anand

    Dear,
    Callup point 3 will not be allowed in this validation because in CHECK you are just calling the BSEG (line item) so just select callup point 2 will be accurate one and it will be successful....
    Callup point 3 is used when you want system to perform check for both BSEG and BKPF table fields....
    To conclude use callup point 2 in this validation .
    REgards,
    Chintan Joshi

  • BSEG-VBUND Updation using Call up point 3 while posting from VF01

    Hi,
    I have a requirement to update BSEG-UPDATE during the Invoice posting VF01.
    I tried to use Substitution at CALL UP POINT 3. but it is not updating the value.
    Please help.
    Thanks,
    Leela Krishna

    Hi,
    Create the substitution at call up point 2 (Line Item) as below:-
    Pre-requisit:-
    BSEG-KOART = 'D'
    AND
    BSEG-TCODE = 'VF01'
    Substitution:-
    BSEG-VBUND = your trading partner
    Regards,
    SDNer

  • Add fields to report ME55

    Hello,
    I need to add some fields in reports from transaction ME55
    Can anyone give some details to solve this
    Thanks

    Hello,
    I´ve check program  RM06BF00  but i don´t see any point in this program to add fields.
    i´ve debug  RM06BF00 program, it select all data but it display data using this perform:
    "PERFORM submit(sapfm06b) USING sucomm."
    any idea?

  • Add field and Display future dated data in OrgChart

    Configuration
    SAP Talent Visualization by Nakisa 2.1 under LIVE connection.
    Questions
    1) Add fields to Details(for Position/OrgUnit/Employee) window in OrgChart
                We have a few requirements to display additional data in Details window.
                Do we need any developments to add the following items to Details window ?
    Position's General Description data (stored in IT1002)
    OrgUnit General Description data (stored in IT1002)
    Name, Phone No., Gender(and other personal information coming from various infotype) of employees, who belong to position
    2) Display future dated Organizational Structure in OrgChart
                We also have requirement to display future dated OrganizationalStructure.
                The future dated Organizational Structure should ONLY availablefor people from HR and executives.
                How can we do this?
    3) Security Setting
                Regarding to the question above, how can we create the security roles (in Nakisa) for therequiremets listed below?
    The security setting in SAP allows managers only can see employee's data, who belongs to the managers organization.
    The security setting in Nakisa OrgChart allows every employee can see all organizations and other related objects.

    Hi Ogawa,<br/><br/>
    Please see my responses in bold.<br/><br/>
    I hope that helps!<br/><br/>
    Luke<br/><br/><br/>
    1) Add fields to Details(for Position/OrgUnit/Employee) window in OrgChart<br/>
    We have a few requirements to display additional data in Details window.<br/>
    Do we need any developments to add the following items to Details window ?<br/>
    - Position's General Description data (stored in IT1002)<br/>
    - OrgUnit General Description data (stored in IT1002)<br/>
    - Name, Phone No., Gender(and other personal information coming from various infotype) of employees, who belong to position<br/>
    <br/>
    <b>You need to configure the integration schema to "extract" these fields in order for them to be available to OrgChart. I believe the file is called downloadSchema.xml and is found in your build folder. It is <i>not</i> the one in the SAPExtractor folder (that is for Staged).</b><br/><br/>
    2) Display future dated Organizational Structure in OrgChart<br/>
    We also have requirement to display future dated OrganizationalStructure.<br/>
    The future dated Organizational Structure should ONLY availablefor people from HR and executives.<br/>
    How can we do this?<br/>
    <br/>
    <b>This is not possible as OrgChart only displays one version of the OrgChart (the present dated structure).</b>
    <br/><br/>
    3) Security Setting<br/>
    Regarding to the question above, how can we create the security roles (in Nakisa) for therequiremets listed below?<br/>
    - The security setting in SAP allows managers only can see employee's data, who belongs to the managers organization.<br/>
    - The security setting in Nakisa OrgChart allows every employee can see all organizations and other related objects.
    <br/><br/>
    <b>Your bottom requirement is standard - unless you secure an item then every employee will be able to see all data.</b>
    <br/><br/>
    <b>In order to configure manager security you will need to undertake some XML configuration. This is not advisable unless you have experience of configuring the XML files, particularly with security as it is highly complex configuration. There are a couple of consultancies with specialist skills (Emeritis, ROC, Nakisa) that have the expertise to perform this type of configuration.</b>
    <br/><br/>
    <b>In order to do this you need to configure an authentication source and populate the user population and rolemapping sections of the LoginConfiguration_<type>.xml in the Authentication folder of your build. <type> refers to the type of authentication you are using (SAP logon forms, Portal integration with Logon Tickets etc). You will then need to map the roles in RoleMapping.xml in the Security folder of your build and then configure each role in Roles.xml. You need to create a hierarchyscope for each dataelement you are restricting data for and then add the security keyword to the sections in AppResources.xml that you are restricting with this particular scope.</b>

Maybe you are looking for

  • Is there a tutorial on how to make a long press menu appear on a table item with storyboard?

    Hi there! I'm very new to app development and i've been playing around with designing a few. I wanted to know, how can you create a long press menu appear when pressing and holding on a table item. Id like it to pull up a menu with 3 options, each le

  • Column wise output for different date range

    I m having a query which gives the output like DISTRIBUTOR_CODE APR MAY JUN JUL AUG R127 01/04/2005 R127 02/04/2005 R127 03/04/2005 R127 01/05/2005 R127 02/05/2005 R127 03/05/2005 R127                     01/06/2005 while the output needed by me is D

  • Software error in Adobe Reader when printing

    When printing a scan from a book (A3 format horisontal) the Print dialog offers a preview where I can see the selection to be printed. Left side of the horisontal A3 (which is a vertical A4). When rotating the page 180º I can turn the right side of t

  • TRIGGER a view for keeping automatically ip connection

    Hi to all, i've founded that this query give you the ip of current machine: select sys_context('userenv','ip_address') from dual; But this is not my purpose or better: the best solution i see for my need would be to trigger an internal table insertin

  • Could both of my USB ports have stopped working at once?

    Before today, I have repeatedly connected my printer and camera to my MacBook Pro. But today nothing has worked through either USB port: not a Seagate external hard drive, not the printer, and not my camera. Could something have gone wrong with the p