Screen number in t code

hi friends i am facing problem in creating transaction code for a program. its asking screen number. which number i have to give and from where i can and how i can find that screen number.
                                            kumar.

Hi,
If you are creating a Tcode for an Executable report, select the second Radiobutton (report Transaction) in SE93 and give the Descripton, Program Name and Selection Screen Number (default 1000 for all executable reports).
If it is a Module pool program, use the first radiobutton, and the respective screen number and program name to create the transaction.
reward points if useful
regards,
ANJI

Similar Messages

  • In Support Message T-Code Details and Screen Number details missing

    Hi,
    We have configured Service Desk in our landscape. When any message is raised through Service Desk we can track the message through CRM_DNO_MONITOR but when we double click the message to see the message details we go to Transaction Tab but here in the Overview Tab we could not see the details regarding Transaction Code details and Screen Number Details for the Support Message. 
    Kindly help in the case.

    One thing I have had trouble with is the authorizations for the user in the RFC destination in BCOS_CUST of your satellite system; give that user SAP_ALL temporarily in your SolMan system and try to send again. Also, just to be sure make sure the user on the satellite system creating the ticket as SAP_ALL on that system. Then of course remove SAP_ALL.
    I still strongly recommend biting the bullet and installing 7.1 now if you are just starting to use Service Desk. Good luck,
    David

  • Field symbols - specifying screen number for screen field.

    Hi Experts,
    I am working on a field exit for T-Code FBD1. I am using the following code
    field-symbols : <fs>.
    assign ('(SAPMF05A)BKPF-BUKRS') to <fs>.
    My field exit works on screen 300 where as company code is on screen 106. This works fine as there is only one occurance of company code in the program SAPMF05A. There is another data element RF05A-NEWKO which is on both the screens. I want the value in the field on screen 0106. How do I specify the screen number?
    Regards,
    Abdullah

    Hi!
    You cannot specify the screen number in this case. The field symbol will be assigned with the current value in the field (SAPMF05A)RF05A-NEWKO, i.e. the value at runtime when the exit is triggered. Make sure your exit is trigerred when you move from one screen to the next.
    Cheers!

  • Screen Number of main SAP Window

    Hello All
    How can I find the screen number of SAP main screen where we could enter the T-Codes? I need to set this screen to back button. Please help me in finding the solution.
    Thanks & Regards
    Tharani

    we have created a Tcode called z8me22, in which users are restricted to only some of the access that normal me22 provides.
    1.In this Z8ME22, as per the standards users should not able to chnage the PO.
    2.so, if we give a PO number and press enter, an error message will come,saying that you are not allowed to use this transaction
    3.But after this error message, if user clicks the back button, it leads to the PO where they are able to change that PO and Save it.
    4.This is not the desired behaviour.
    I have pasted the code for that back button in my prevous message
    Please provide me a solution
    Thanks & Regards
    Tharani

  • Screen variants--screen number and program

    Hi,
    I am a functional consultant and not familiar with coding/development.I needed some help with regards to creating a screen variant.
    -->In which scenarios can one use a screen variant?
    -->How do we find the screen number and program?I checked the' source' info too...all it gives me is the template details.But,i haven't been able to find the screen number and program.
    Any inputs!
    Trey

    Hi,
       The transaction code for screen variants is SHD0.
    Generall screen varaints are used to chnage the screen display i.e. to add a new field/make the fields editable etc...
       In SRM,for screen enhancements genrally some BADI's are provided but if not then screen variants  is the next option to implement the same.Finally if screen varaint is not possible then you can do the changes in the relevant ITS templates.
      The foll screen varaints are available in SRM:
    Determine Screen Variants
    Use
    · Item data overview in the invoice without purchase order reference: Screen variant BBP_IV_NON_PO
    Method GET_SCREENVARIANT_INV
    · Item data overview in the invoice with purchase order reference: Screen variant BBP_IV
    Method GET_SCREENVARIANT_INV
    · Item data overview in the confirmation: Screen variant BBP_CF
    Method GET_SCREENVARIANT_CONF
    · Item data overview in the confirmation for time recording: Screen variant BBP_CF_TIMEREC
    Method GET_SCREENVARIANT_CONF
    · Item data overview in the purchase order: Screen variant BBP_PO
    Method GET_SCREENVARIANT_PO
    · Item overview for contracts: Screen variant BBP_CTR_ITEMLIST
    Method GET_SCREENVARIANT_CTR
    · Item overview for contract selection: Screen variant BBP_CTR_ITEM_SELLIST
    Method GET_SCREENVARIANT_CTR
    · Search results for creating an invoice and/or confirmation: Screen variant BBP_SEARCH_PO
    Method GET_SCREENVARIANT_SEARCH
    · Search results for creating a purchase order: Screen variant BBP_SEARCH_SC
    Method GET_SCREENVARIANT_SEARCH
    · Search results for displaying/changing an invoice: Screen variant BBP_CHANGE_IV
    Method GET_SCREENVARIANT_SEARCH
    · Search results for displaying/changing a confirmation: Screen variant BBP_CHANGE_CF
    Method GET_SCREENVARIANT_SEARCH
    · Item overview for creating/displaying/processing/status of a shopping cart: Screen variant BBP_SC
    Method GET_SCREENVARIANT_SC
    · Worklist for Sourcing: Screen variant BBP_SOCO_WL
    Method GET_SCREENVARIANT_SOCO
    · Work area in Sourcing: Screen variant BBP_SOCO_GA
    Method GET_SCREENVARIANT_SOCO
    HTH.
    BR,
    Disha.
    Pls reward points for useful answers.

  • Finding Screen Number for a Popup Window using ABAP debug

    Hi Guys
    IPlease could you tell me how to find the screen number of a pop-up window using debug as opposed to F1 Help?
    Thanks
    Edited by: Brett Cunliffe on Sep 14, 2011 9:37 PM

    Hi,
    You can create a short cut for debugging on desktop and drag n drop the debugging icon from desktop to pop up screen, then it will be available for debugging.
    or copy the below code in a notepad and save it. If you want to debug pop ups then drag and drop this file.
    The code is
    [FUNCTION]
    Command=/H
    Title=Debugger
    Type=SystemCommand
    [more info wiki|http://wiki.sdn.sap.com/wiki/display/ABAP/SAPGUI+shortcuts]
    Shiva

  • Screen number error while using tcode se93....

    Hi Abapers,
               I m converting a report program into a t-code using se93.
    after giving program name,description, screen number should be given, here the screen number should be given as per the system>status>screen number or v should be write call screen in the program.
      i m confused wit it, i had checked the forum also.
    REPORT  ZWHILE1.
    data: length type i value 0,
           strl type i value 0,
           string(30) type c value 'test string'.
    strl = strlen(string).
    while string NE space.
      write string(1).
      length = sy-index.
      shift string.
    endwhile.
    write:/ 'strlen:',strl.
    write:/ 'length of abcd:', length.
    the above s my my program,i want to convert t into a tcode.
    Advanced thanks....

    hi,
    here are the steps to create
    Creating transaction code for the table:
    1) Go to SE93 and Create a Tcode.
    2) Click on the u2018Transaction with parametersu2019 radio button and continue.
    3) Enter the Transaction as SM30.
    4) Select u2018Skip initial screenu2019.
    5) Enter VIEWNAME value as Table name (here Z*) and UPDATE value as X in the u2018Name of screen fieldu2019 and save.
    VIEWNAME ZTABLE
    UPDATE X
    Note : The VIEWNAME,UPDATE and their respective values should be Capital.
    If u want to create table maintenance generator then,
    1) Choose Delivery and Maintainence tab..
    2) Select Delivery class as u2018Cu2019.
    3) Select Data browser/Table view Maint as DISPLAY/MAINTAINENCE ALLOWED.
    4) Create a Function Group from SE80.
    5) Select TABLE MAINTAINENCE GENERATOR from Utilities of menu bar.
    6) Fill the Authorization Group as u2018&NC&u2019 and give the created Function Group.
    7) Give a screen number not used as Maint Screen no (eg: 9999) and click u2018CREATEu2019(F8).
    regards
    rahul

  • HT1933 I bought a song for my wife in Mexico and she couldn't download the song i sent because it reads on her screen ... Code only valid for US customers.... How can i retrieve the song if i live in the US? Thanks

    I bought a song for my wife in Mexico and she couldn't download the song because it reads on her screen... Code only valid for US Customers... How can i retrive the song i bought? Thank You Guys

    you have a ps cs4 license for mac and you have some way of finding your serial number.
    if yes, download an install the installation file.  if you already have the installation file, what is its name and file extension?  (eg, if it's one file, it should be a dmg file.)
    if you need the installation file,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Bank Key, Bank Number and SWIFT code

    Hi expert,
    I would like to consult your expertise on the following issues: Bank Key, Bank Number and SWIFT code.
    In Country Field Check, OY17, If I select the bank key (section key for bank directory) options 4, assigned externally; then in FI01 bank key data creation, my bank number (in control data section) can be freely defined.
    If in OY17, my bank key option is 1, bank number.  Then, during FI01 bank data creation, my bank number must be same with bank key.
    My question is that:  I would like, in OY17, selection option 4, but I would like to have some clarifications on FI01 bank creation as well as electronic bank statement ( section of: Assign bank account accounts to transactions types):  In the section of Assign bank account accounts to transactions types, I need to fill in bank key+bank account and transaction type.
    My Questions: during MT940, electronic bank statement (EBS), since I set bank key + bank account, what control data (in FI01 screen) that SAP will use for automatic EBS?  Bank number or SWIFT code?
    Besides that, I am not quite understand statement by SAPPress book, Quick Reference Guide Financial Accounting with SAP - Chapter 7 Banking, as follows:
    If you use the SWIFT code as bank key in a specific country, we strongly recommend that you set the bank data flag on the further checks section in OY17.  This ensures that the system automatically performs the formal control on the SWIFT code entered in the SWIFT code field (BNKA-SWIFT), and not on the SWIFT code entered in bank key.
    Thanks in advance
    sbmel

    Hi,
    House bank is the bank through which your company is dealing all their financial transaction.
    Bank key is a country unique number in the US it is called the ABA routing number.
    The account ID is a user definable field that allows you to "name" your bank accounts at your bank using any convention you prefer.
    Bank master data means all the data related to a particular BANK .examole HDFC all the information related this particular bank.
    House bank master data  it is related all your bank master data.Example,Hdfc,ICICI,Axis ,BOB  etc.
    The S.W.I.F.T. code is used for identifying banks in international  payment transactions.Uniquely identifies a bank throughout the world.
    Bank number is a code given to a particular Bank.
    regards,
    Santosh kumar

  • How to generate new perner number using Abap Code in pa0002. what is the fu

    how to generate new perner number using Abap Code in pa0002. what is the function Module used.

    hi
    define internal number ranges for ur implementation then when u run PA 40  do not input any employee number , system will generate the employee number automatically.
    Regards
    sameer

  • How to Create Business Partner with  fix number in t-code :BP

    Dear SIr,
    Normally I will set number range for auto  to create Business Partner. In case , If we would like to crea How to Create Business Partner with  fix number in t-code :BP , howe to do?
    Please kindly advise.
    THnak you and best regards,
    Vimol

    Dear Shobhit,
    How to put the thread as you mentioned.
    Best regards,

  • WHTax Data in Accounting Information Screen of the Co Code View in FK01

    Hi Experts
    Is there any configuration other than the field status for Vendor Account Group, field status at company code level and field status per vendor creation activity for displaying fields in FK01/FK02.
    The With Holding Tax Data field group is missing in Accounting Information Screen of the Co Code View in FK01 in some systems in the Landscape for few company codes. I have checked the field status settings are alright and also checked the authorizations, but still the complete field group is missing from Screen 210 of FK01/FK02. We are trying to upload Vendor Master Records using LSMW.
    Any help would be highly appreciated.
    Thanks & Regards
    KIM Khan

    Hi Atif
    I have checked the field status as already written in my post, also there is no screen variant maintained. I guess there is some setting related to Classic with holding tax and not sure what exactly it would be.
    Regards
    KIM Khan

  • FROM WHICH TABLE I CAN FIND  GL ACCOUNT NUMBER AND COMPANY CODE OF A PARTI

    FROM WHICH TABLE I CAN FIND  GL ACCOUNT NUMBER AND COMPANY CODE OF A PARTICULAR CUSTOMER?..I AM TRYING TO POST AN IDOC ..SO DATA HAS TO BE PROPER.JUST TELL THE SOLUTION

    Hi rendeep,
    1. LFB1
       this is the required table.
    2. field is AKONT
    3. The account number can be different
       for different companies.,
       hence it depnds upon combination of
       LIFNR
       BUKRS
    regards,
    amit m.

  • How to get the screen number in the change/display FI Document screen?

    Hi guys,
    I was just wondering if there is a way, in the abap dictionary or otherwise, for me to detect the assigned screen number in the FI Change/Display Document screen (FB02/FB03)?
    I ask this because the screen number changes depending on the line item's posting key and G/L Account from my observation.
    Hope to hear from all of you soon.
    Thank you all and good day.

    Yes you can get by the SHDB transaction
    GO to SHDB. click on the new recording... give the name of the recording as ZFB02.. enter the tcode FI02 and press start recording..
    Put the Document and open all required screens.. you need to put the values in the required fields to be caputred in the recording.
    Come back and save.
    Now, if you are planning to make a BDC to change the FI document than you can use the BAPI BAPI_ACC_DOCUMENT_CHANGE.
    Regards,
    Naimesh Patel

  • How i can find out number of transaction code created in last 6 month

    Dear Friends,
    How i can find out number of transaction code created in last 6 month and last used date for each transaction code.
    System - ECC 5.0
    Plz help.
    Thanks,
    Regards,
    Sachin

    Hi,
    As per your query you can find out the list of t-code not to use in last time details in suim t-code.
    Anil

Maybe you are looking for