Program   SAPLLMOB Screen number   2889

Hi experts,
  In this dynpro there is a field called LOGON_DATA-DEVTY  which is an input/output field I want this  Input : Not Possible  , i was checking the program everything here is standard and i dont want to modify the standard , Do you know how to achive this ?  thank you guys .

Hi José,
if you have an ECC Release, you may use implicit enhancement in FORM able_field in LLMOBF01 (2 places avaliable). Then you can create your own loop, if you are on the right screen, e.g..
IF sy-dynnr = '2889'.
  LOOP AT screen.
     IF screen-name = 'LOGON_DATA-DEVTY '.
       screen-input  = '0'.
       MODIFY screen.
    ENDIF.
  ENDLOOP.
ENDIF.
In older releases I see no way to change the input option of this field without modification.
Regards,
Klaus

Similar Messages

  • Translation table for Program name/screen number for ECC 6.0

    Hello Experts,
    Do you know if there is a translation table and/or document that would list the Program Name / Screen Number for the transactions in SAP 5.0 and the equivalent Program Name / Screen Number for those same transactions in SAP 6.0?
    The reason that I ask is that we our encountering errors within the TxShuttle macros we are testing that are telling us that the current screen name listed in the macro in no longer valid in the 6.0 environment.
    Regards,
    Atul

    I thnk we dont have any such program .Try searching for a SAP Note if its a standard program.
    Can u tell me the program name and screen number which is not available in ur system.

  • SAPMV50A screen number 3302 not activating

    Hi All,
    I'm unable to activating standard module pool program SAPMV50A screen number-3302, The purpose why i changed is ,added one customized field to this screen and now i want to activate Module pool SAPMV50A 3302 but its still not activating.
    Not evening showing the syntax error also,status message showing activated but,screen number is Modified/Active only. Because of this problem stopped all standard transaction please advise ASAP.
    Thank you,
    Pranitha.

    thankx resolved my self.

  • 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.

  • Purchase order screen exit SAPMM06E,screen number 0111

    Hi
    I am working on purchase order screen exit SAPMM06E and screen number 0111
    i am able to see customer screen in transaction but program control is not going to flow logic
    due to that i couldn't able to fetch data into custom fields.pls suggest me wat to do.
    Thanks & Regards
    Vinay

    Hi Vinay ,
    I think you are implementing the screen exit with the enhancement component 'MM06E005'.
    if thats the case you add your fiels in the screen area provided
    in the screen 'SAPMM06E' 0111 by creating the subscreen in the SE51 with the name space 'SAPLXM06' 0111 with then will be reflected (fields added) in the ME21n transaction .
    You have to write your logic in the EXITS provided in that enhancement component
    You have to write your logic in the exit 'EXIT_SAPMM06E_008'
    as it imports data from screen field which you placed in the tcode.
    Revert back to me for any queries.
    Reward points if useful.
    Thanks ,
    Surya Pydikondala.

  • 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

  • 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!

  • Dialog Programing: Output screen layout is different from actaul layout

    Hi,
    I have developed screen layout in SE51 and same is used in my program.Program is working fine but the problem is in column order.I designed layout in SE51 by copying structure from ABAP dictionary and same has been used in my program but output layout column order is completely different from SE51 screen layout.When i check this on Se51,everything is in order.
    My program is referring the same screen number and program.there is only one screen i.e 100.
    How do we fix this problem.
    Regards,

    Looks like, your table settings got changed for the table control on the screen.
    Run your program.
    Now, on the screen you can find out the "Table Settings" in the Top Right corner of the Table control as ICON.
    Press the Icon and it will bring the Table Settings screen.
    In the Current Settings, choose the Basic Settings ... save and close.
    Regards,
    Naimesh Patel

  • 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

  • How call a program wihout screen with a transaction ?

    Hi every body
    I created a very small program wich saves in memory some value and call another existing transaction.
    I need to create a new transaction for call this program, but when i create the transaction this ask me for a screen number for the program, but a don't have any screen, my program is only for save the memory value and call another tcode. I created the program with type 1 Executable.
    Wich type must i create the transaction for this program so this tcode does not ask for any screen ?
    Thanks
    Frank

    Hi frank,
    1. While creating tcode thru se93,
       choose the radio button (2nd radio button)
       "Program and selection screen (report transaction)"
    2. A new screen will come,
       in which 1000 will be the defalt screen number
       (which is perfectly ok)
    3. Just give your program name, text.
    4. Tick all the check boxes.
    5. Thats all !
    regards,
    amit m.

  • How to find a custom screen number

    Hi friends,
    I have to assign table maintenance generator for one of my custom table.
    I need to give a screen number in the Table maintenance generator.
    when i try to give screen 1011, it says it already exists and can not be used.
    Probably i might have used 1011 as local object earlier.
    Where can I see the screen 1011. (mostly custom screen)
    I tried SE51, But it is asking program name as well.
    Please let me know where to see the screen?
    If i have created it as local object, i need to delete it.

    Hi reddy,
    Thanks for your response.
    I know the table generator process, But I want to use 1011, because I have only assigned it to one custom table and saved as local object.
    Even though, i deleted those custom table, SAP not allowing me to use the screen number.
    I have to use the same Screen number 1011, and can't use other.
    I checked in Local objects folder in SE80, But nothing is there(as deleted custom table).
    It looks simple, But taking more time to find it.

  • 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

  • Find screen number for enhancement.

    How to identify screen number for a particular standard SAP transaction for enhancement. Suppose I want to enhance any screen of any transaction how to search/identify customer screen number and enhance them, I want to add some fields or tab or anything else.

    Hi Avirat,
    You can get the screen number for screen enhancement using the following methods:
    1) Googling  on the Tcode or by reading OSS notes .
    2) Go to SPRO transaction . Navigate to the application component and see whether any section on Enhancement exists.
    3) Other ways of finding it are -
        i) CMOD based screen exits -
    Here the 4 digits 0101,0111,0201,0211,0301,0311  are the screen numbers where enhancement can be done .
    In case project is already implemented, get the project name from MODACT table.
    ii) For BADI based screen exit - Do a look up on SXS_SCRN table
    Regards,
    DPM

  • Adding fiels in XD01 subscreen-program  SAPLV02Z screen no. 0200

    Hi All,
    I need to create custom fields in XD01 (Sales area-Extras-Additional Data) subscreen.
    Program - SAPLV02Z screen no. 0200
    I added fields in structure KNVV using append structure.
    Now how to add these fields in the screen? I did not find any exist to add fields in this screen.
    I think using BADI CUSTOMER_ADD_DATA_CS  I canu2019t add fields in  SAPLV02Z screen no. 0200
    Do I have any option with out using modification?
    What are the options I have to add the fields in that subscreen?
    Any ideas please? I appreciate your help on this.
    Thanks.

    Hi,
    Can u give some more details.like how many fields you are trying to add.
    SAP has given 5 fields cutomer grp1 to customer grp5. which we can use anyway.
    KNVV-KVGR1 TO KNVV-KVGR5
    you can use these 5 fields and descriptions anyway can be changed using CMOD project implementation
    Tcode : CMOD
    GOTO---Text Enhancements--Data elements----New DE cust desc
    Create a modification and change the description.
    this will work if you need upto 5 fields.
    Regards
    Anil
    Edited by: Anil Kumar Palle on Mar 5, 2010 7:50 AM

  • Screen exit in SAPMF02D screen number 7000 (xd01) customer master

    Hi friends,
             i need to add one custom field in customer master(xd01) screen number 7000. is there any screen exits for that? or how can we add a custom field in screen?. plz tell me the steps for that. The additional field which i have to add is, comes under sales area data Tab - billing document tab - billing document.
    Message was edited by:
            venkata kumar

    with in same condition i m facing the same problem if you already have any sollution plz suggest me.
    waiting for your kind reply

Maybe you are looking for

  • Error at Payment Run

    Hi All I am faced with an issue where two users performing the payment run are not able to see payments for a vendor because the reason for Exception is:  Vendor is contained in proposal However, on the free selections tab of the first proposal to pi

  • Videos doesn't have sound on iPod Nano

    Ok, well whenever I convert my videos in iTunes using Advanced > Created iPod or iPhone version. The video converts, I play the video, and it doesn't work. It's like a mixure of colors, let's just say a black screen. And the sound doesn't work. But w

  • Android Beam?

    I have 2 LG spectrum 2s that I am trying to get the contact list transfered from one to another using the beam feature but Its not working. On each phone I have NFC and Android beam on, open contact list on the phone i want to transfer from, place th

  • When Requested for a Grand Total the column values changes to zeroes

    Hi, I have a report with 2 dimensions and 4 facts. The report is showing the correct data when compared with EBS, but when we are applying grand total in Table View then for fact values are displaying zeroes. However the grand total is correct but fo

  • Ok, if I owe iTunes due to downloads

    Where can I find out the balances?