Screen 0 in TMG

hi,
we cannot assign the screen number '0' to the maintenance screen( overview or single) in table maintenance generator. while assigning screen 0, it gives an error stating ' screen is already assigned'. can any one tell me for which purpose screen 0 is assigned.
Also tell me what are the other screen numbers that we cant assign to the maintenance screen. i know that we can assign screen from 1000 to 1010 as it is reserved for selection screen.
thanks
tanmaya

Hi,
Based on my research, you can disable SSL 2.0 and force SSL 3.0 in IIS. For more detailed information, please refer to the link below:
SSL v3 on Windows 2008
How to disable SSL 2.0 and force SSL 3.0 and TLS 1.0 in IIS
In addition, it seems that Nokia E5 use
NetFront Browser v3.5 and NetFront Browser v3.5 supports SSL 2.0 and SSL 3.0. I am not sure of that, you’d better contact your phone vendor for further assistance.
Best regards,
Susie

Similar Messages

  • Disable DELETE Button for TMG

    Dear All,
    I have a TMG for one of the Custom DBT.
    In the maintenance screen, I want to delete the DELETE Button.
    Is this posible ?
    If yes, any help is appreciated !
    Regards,
    Deepu.k

    Hello Guy,
    Yes, I did the same.
    I used the following :
    a. Go to the TMG
    b. Go to the Maintenance Screen.
    c. Double click on the screen number.
    d. In the PBO write amodule : module disable_delete.
    e. module disable_delete output.
           excl_cua_funct-function = 'DELE'. "(function code for delete)
           append excl_cua_funct.
       endmodule.                 " disable_delete  OUTPUT
    It worked fine !
    Thanks,
    Deepu.K

  • SELECT-OPTIONS in table maintenance generator screen

    Hi
    Is it possible to create SELECT-OPTIONS in table maintenance screen?
    My requirement is to allow the user to enter single Company code and Range of G/L Accounts in the Table Maintenance input screen. Please let me know.
    Thanks
    Abdul Hakim

    Hello Tamas,
    As a matter of fact we can add a custom selection-screen to the TMG screen & without manually modifying the TMG
    You can do so by using the [Event AA: Instead of the Standard Data Read Routine|http://help.sap.com/saphelp_nw04s/helpdata/en/91/ca9f56a9d111d1a5690000e82deaaa/content.htm].
    Please check the code snippet:
    DATA: gv_fldate TYPE s_date.
    * User-defined selection-screen
    SELECTION-SCREEN: BEGIN OF SCREEN 9000.
    PARAMETERS:     p_carrid TYPE s_carr_id OBLIGATORY.
    SELECT-OPTIONS: s_fldate FOR gv_fldate OBLIGATORY.
    SELECTION-SCREEN: END OF SCREEN 9000.
    *&      Form  sub_yvsflight_event_aa
    *       text
    FORM sub_yvsflight_event_aa.
      DATA: ls_temp_data TYPE yvsflight,
            lt_temp_data TYPE STANDARD TABLE OF yvsflight.
    * Call the user-defined selection-screen
      CALL SELECTION-SCREEN 9000 STARTING AT 25 10.
    * Populate the int. table TOTAL
      PERFORM get_data_yvsflight.
    * Delete the records which are not required
      LOOP AT total.
        ls_temp_data = <vim_total_struc>. "Copy to local struct.
        IF ls_temp_data-carrid NE p_carrid OR
           ls_temp_data-fldate NOT IN s_fldate.
          DELETE total. "Remove the record from the TOTAL
        ENDIF.
      ENDLOOP.
    ENDFORM.                    "sub_yvsflight_event_aa
    BR,
    Suhas

  • Validation on Primary Key value in TMG

    Hi,
    I have a  custom table with field Outcome_id as primary key. I have to put some validation on this primary key value.
    For the above I hv used a TMG Event '01' and written the code for validating the values.
    On save when validation fails the primary key field gets disabled even though entry is prevented from being saved.Since the value of the primary key cannot be changed the validation fails recursively.
    How cn I keep the primary key fields enabled when the validation fail.
    Rgds,
    Swati.

    Hi,
    As per basic Module pool programming a screen field gets disabled after throwing an error.
    You will have to use Field statement in the module pool program generated for your tables TMG and modify it.
    But please note- any time TMG is regenerated all changes are lost.
    "refering sap help "
    Checking Single FieldsIf you send a warning or error message from a module mod  that you called using a FIELDstatement as follows:
    FIELD f MODULE mod.
    the corresponding input field on the current screen is made ready for input again, allowing the user to enter a new value. If the field is only checked once, the PAI processing continues directly after the FIELDstatement, and the preceding modules are not called again.
    refer this :
    [http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dbaa4735c111d1829f0000e829fbfe/content.htm]
    Edited by: sap_wiz on Jun 22, 2011 5:20 PM

  • How to change width of table maintenance screen in sm30

    Hi,
    I want to change the width of table maintenance screen in sm30 of a view. I am trying to change it through screen painter.
    But its giving me error - screen or window limit reached. I want to increase the widht to show all the fields at once.
    Is there any way for this?
    Also, earlier in table maintenance generator of view, there was one step selected. I changed it to two steps and re-generated the TMG. But again Its showing only one screen in sm30.
    Kindly tell me which step I have missed out.
    Regards,
    Seema Naharia

    I guess the links below should help in your problem ..
    http://www.saptechies.com/how-to-create-table-maintenance-generator/
    Window size on SM30
    If these do not please tell ..
    Regards,
    Manthan

  • Pbm in setting a record as modifed record through coding in TMG

    HI all,
    I have implemented Table Maintenance Generator for a Z table. And i want to perform some action whenever the current record is modified. The problem is that the user will not edit a particular field directly. Instead, on clicking a button (Clear button), the program will delete the value of a particular field in the screen. It means the value has been changed and the Modify event which i have written in TMG should get trigger.
    Since the user donot directly edit, the program does not consider this record as a modifgied record. SO i explicitely make the record as editable record by the following code. But still it is not considering this as modified record.  Can someone telll me how to solve this issue?
    loop at total.
      wa_total = <vim_total_struc>.
    if wa_total-unit_no = zhr_hop_home_un-unit_no.
      wa_total-vim_action = 'U'.
      <vim_total_struc> = wa_total.
      modify total.
    endif.
    clear : total.
    endloop.
    clear : extract, wa_extract.
    loop at extract.
      wa_extract = <vim_extract_struc>.
    if wa_extract-unit_no = zhr_hop_home_un-unit_no.
      wa_extract-vim_action = 'U'.
      <vim_extract_struc> = wa_extract.
      modify extract. " from wa_extract.
    endif.
    clear : extract.
    endloop.
    The 'vim_action' value 'U' is not getting set properly even though it gets assigned correctly when i debug.

    Jessica,
    You may need to put some code in a different event, possibly the following.
    09 After getting the original of an entry
    You will have to find a way to compare the original record to the changed record.  You may have to save some value in memory, and use that value in one of the other events.
    Perhaps you will have to change the <ACTION>  to 'U' in the event where you believe that it should be 'U'.
    Bruce

  • Call transaction & leave the current screen

    Hi
    I have created two Table maintanence Generator one for master table & second for transaction table. In my master table i have written code for calling the second TMG
    ie, call transaction 'zhdms'.
    but my problem is from my first TMG when im clicking on one button it calling the second TMG. & im making new entries over der & when i click on BACK button it will call the first TMG  & again if i am clicking on Next button it will move on to second screen. but it is showing one information like DEveloper is locked. we can only display it. how to avoid this.
    Can we avoid this using leave screen . How to write code for that.

    Hi ,
    Try this
    CALL TRANSACTION AND SKIP FIRST SCREEN.
    Effect
    Skips the first screen in the transaction (provided all the required fields have been assigned values by the SPA/GPA mechanism).
    or
    LEAVE TO { {TRANSACTION tcod} | {CURRENT TRANSACTION} } AND SKIP FIRST SCREEN.
    Effect
    Ends current processing and starts the (new) transaction tcod. All previous internal sessions are deleted from the stack and one new internal session is opened for the program of the transaction that was called. When this session has finished, the system returns to the next higher area menu.
    If you specify CURRENT TRANSACTION (as of Release 6.20), the current transaction is called with exactly the same transaction code it was called with using CALL TRANSACTION or LEAVE TO TRANSACTION. With the exception of parameter or variant transactions, this is the transaction code that is also in the system field sy-tcode.. In the case of parameter or variant transactions, it is their transaction code, while sy-tcode contains the name of the implicitly-called dialog transaction.
    Regards,
    Chitra.

  • Need to show messgae while pres 'ENTER' in TMG Events

    HI All,       Need to validate Table events when user put some wrong entry in table and press enter have to show error message.i have used 05 event and code also attached here plz correct me coz its not working. Thanks Sankil

    HI Sankil,
    There are two ways to deal with this:
    1.  Use events .. as you already saying you have used 05 try it with event 21 .
    Second easy way.
    2.
    a. Go to the function group you have defined in the TMG.
    b. Open Function group in SE80.
    c. Go to the screen
    d. Choose the SCreen PAI for the screen you want to make chenage in.
    e. Inside CHAIN ENDCHAIN right after all validation Module check_field\
    f. It will show a pop up to select include in which you want to save the module create your own Zinclude so that even if you delete the TMG for some reason you code will be intact there.
    g. writhe the validation inside the module and will work excellent for all teh cases.
    h. Define this procedure in You Detailed design specification so that if someone delete TMG in future he will be knowing what modification you have done in Function group.
    Let me know if you need any help on this.
    Thanks & Regards,
    Rahul.

  • TMG related logic - restricting the user entry fields

    I have created table and table maintenance generator using below  fields
    MANDT                     MANDT
    WERKS                     WERKS_D
    MTART                     MTART
    MATKL                     MATKL
    CREATED_BY     SYUNAME
    CHANGED_BY     SYUNAME
    I have to restrict the user with out entering wild card (*) in the mtart and matkl fields.
    In TMG, in screens how to build the logic ?
    THANKS.

    Hi ,
    I am not sure if I understand your requirements fully.
    Anyway , you can add a validation in TMG events and output a message accordingly when the user enters *.
    Regards,
    Deepthi

  • Publis a monitoring camera through TMG 2010

    Hi, I have a monitoring IP-camera inside my LAN what I want to publish through TMG 2010 to access from outside. The camera has a build in webserver running (currently) on port 80. Insuide the LAN (no restrictions) everybody who has a login to the cam can
    watch. So the cam is working pretty well. Now I created a web publishing rule in TMG 2010 for the Cam but it seems not to be enough. I easily can connect to the log-on screen of the cam, I can log in, but than I get an empty (black) picture(Cam healthy light
    on the screen is yellow instead of green, means the video is not working)! No stream is visible. The cam should not use any other (additional) ports, I checked that by using wireshark. What can be the problem that TMG blocks the stream?

    Hi,
    As this thread has been quiet for a while, we will mark it as ‘Answered’ as the information provided should be helpful. If you need further help, please feel free to reply this post directly so we will be notified to follow it up. You can also choose to unmark
    the answer as you wish.
    BTW, we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems. Thanks for your understanding and efforts.
    Best regards,
    Susie

  • TMG events and raising an error message

    I have written the code in TMG events and raising an error message for a certain condition.Whenever the error message is getting triggered it is making all the fields read only.So the user is not be able to change the value.
    Any Solutions Please.?

    Hi,
    It TMG events will be triggered after entering values in other field and -> press enter
    Follow the steps.
    Go to se11 check table maintanance check box under
    attributes tab
    utilities-table maintanance Generator->
    create function group and assign it under
    function group input box.
    also assign authorization group default &NC& .
    select standard recording routine radio in table
    table mainitainence generator to move table
    contents to quality and production by assigning
    it to request.
    select maintaience type as single step.
    maintainence screen as system generated numbers
    this dialog box appears when you click on create
    button
    save and activate table
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed2d446011d189700000e8322d00/content.htm
    One step, two step in Table Maintenance Generator
    Single step: Only overview screen is created i.e. the Table Maintenance Program will have only one screen where you can add, delete or edit records.
    Two step: Two screens namely the overview screen and Single screen are created. The user can see the key fields in the first screen and can further go on to edit further details.
    please check the link for getting information about table maintenance generator !
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=use%20of%20table%20maintenance%20generator&cat=sdn_all
    http://www.sapdevelopment.co.uk/tips/tips_tabmaint_tcode.htm
    http://www.sap-img.com/abap/create-a-table-maintance-program-for-a-z-table.htm
    Regards,
    Raj.

  • Please validate giving field names to the field (built in data type) in TMG

    I have added fields with built in types….And I added header text ( heading of each field ) in Table maintenance generator   by se11 -&#61664; table maintenance generator  &#61664; delete &#61664; create new one TMG &#61664; then go to se11 &#61664; utilities &#61664; create entries &#61664; status &#61664; Screen number  &#61664; layout &#61664; in screen painter &#61664; give desired field for that particular field

    I have added fields to ztable with built in types….And I added header text ( heading of each of my field ) in Table maintenance generator by following procedure
    go to se11 -> utilities->table maintenance generator  -> delete -> create new one TMG ->
    then go to se11 -> utilities -> create entries -> status -> Screen number  -> layout -> in screen painter -> give desired field for that particular field.
    Am I right ? Please validate my procedure of giving field names to appear in Table maintenance generator.

  • Adding extracolumn to TMG which is not there in the table

    Hi All,
    I have a requirement where i have to add one column to the table maintenence generator which i,which i have done in  backend screen programming but i am unable to handle that column because i am unable to get the same in EXTRACT or TOTAL structure.
    How to make this happen without adding the field to table.
    Thanks
    Viswa.

    Hi Suhas saha,
    Thanks for your reply below are answers to your questions.
    1. What is the purpose of this extra column?
    Ans: The reason is i am trying to hide the key column from the view the same i'll be replacing with extra column with long text,ID i'll be genarating in backgroung through events in TMG. so my exctra column is replica to ID.
    2.What is the data source for this column?
    Ans; The same text i'll be storing in the form of SAP text which we usually store through SO10.
    3. Where are you going to store its data?
    Ans: SAme as above..
    Regards
    Viswa

  • Publishing Exchange 2013 Outlook Web App with Forefront TMG 2010

    Hello guys,
    I have published Exchange 2013 via TMG 2010 with pre-authentication. Since this is the first time I am doing it- I want to ask experts for the explanations:).
    When I configure Active Sync on mobile, I just type the password and  it's starts syncing after 20 sec.
    When I use browser and trying to login using TMG logon screen, after I enter credentials (if they were not wrong), I get exchange 2013 logon screen ( because my password was checked by DC's).
    I have customized TMG tamplate to Exchange 2013 tamplate, but it did not help- I have two logon screens.
    Is it possible to configure TMG for showing only one logon screen ( without disabling pre-authentication) ? Does it work this way?
    Did I miss something?

    Hi,
    Please try to enable FBA for external and internal OWA 2010 users by the methods in the blog below.
     There are several ways to accomplish this:
    Have internal users pointed to the internal interface of the Forefront TMG and utilize the forms-based authentication logon page offered by Forefront TMG. 
    Deploy Forefront UAG instead of Forefront TMG. Forefront UAG allows you to have FBA enabled on both the Exchange 2010 Client Access Servers and on the Forefront UAG solution itself. 
    Publish Exchange 2010 to the Internet using Forefront TMG but do not configure pre-authentication. This way the users need to go through the Forefront TMG solution, but will authenticate directly against the Exchange 2010 Client Access servers. 
    Configure an additional OWA and ECP virtual directory on the Exchange 2010 Client Access Servers.
    Reference:http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/enabling-forms-based-authentication-external-internal-owa-2010-users-exchange-2010-published-using-forefront-tmg-2010-part1.html
    Then check the blog
    - Creating a custom Forefront TMG 2010 OWA FBA logon page
    Note:
    Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Dynamic serch help in TMG

    Hi All,
    I have creatred one table maintaince generator for the table with 2 fields.
    My equirement is to have dynamic F4 help on the second field.
    Dynamic means the values displayed in the F4 help should be depending on the values in the first field.
    for this in tmg modification/mainten screens i created on POV and module validate for second fiel. in
    that moudule  i call fn dynpro_value_read to get the value of first field. its geting empty value.
    can any body help me

    Hi Thirumala,
    Based on what you had created the TMG, means based on the table or a maintenance view. If you had created a maintenance view, then you should be calling the POV based on this field. For example if your table is ZTAB and your maintainence view is ZV_TAB the call from POV should be as follows:
    Case-1:
    FIELD ztab-field1 MODULE f4_field1.         "If TMG is based on table
    Case-2:
    FIELD zv_tab-field1 MODULE f4_field1.      "If TMG is based on maintenance view
    Then within the module f4_field1, you should be calling the DYNP_VALUES_READ as follows.
    Case-1:
    wa_dynpread-fieldname = 'ZTAB-FIELD1'.
    APPEND wa_dynpread TO gt_dynpread.
    Case-2:
    wa_dynpread-fieldname = 'ZV_TAB-FIELD1'.
    APPEND wa_dynpread TO gt_dynpread.
    CALL FUNCTION 'DYNP_VALUES_READ'
         EXPORTING
           dyname               = sy-repid
           dynumb               = sy-dynnr
         TABLES
           dynpfields           = gt_dynpread
         EXCEPTIONS
           invalid_abapworkarea = 1
           invalid_dynprofield  = 2
           invalid_dynproname   = 3
           invalid_dynpronummer = 4
           invalid_request      = 5
           no_fielddescription  = 6
           invalid_parameter    = 7
           undefind_error       = 8
           double_conversion    = 9
           stepl_not_found      = 10
           OTHERS               = 11.
    Now make your selection from the table based on the value that you got in gt_dynpread into table lt_f4_help which will contain value for field2.
    IF gt_dynpread IS NOT INITIAL.
         READ TABLE gt_dynpread INTO wa_dynpread INDEX 1.
         "Make your selection into lt_f4_help
          CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
                 EXPORTING
                   retfield        = 'FIELD2'
                   dynpprog        = sy-repid
                   dynpnr          = sy-dynnr
                   dynprofield     = 'ZV_TAB-FIELD2' "In case maintenance view
                   window_title    = text-004
                   value_org       = 'S'
                 TABLES
                   value_tab       = gt_versn_hlp
                 EXCEPTIONS
                   parameter_error = 1
                   no_values_found = 2
                   OTHERS          = 3.
               IF sy-subrc <> 0.
                 "Implement suitable error handling here
               ENDIF.
    ENDIF.
    Hope this will solve your issue.
    Regards,
    Abijith

Maybe you are looking for

  • Problems printing from PSE 11 on Windows 8

    I have not had a problem with printing until this week. I cropped an image 6 by 4, chose 6 by 4 paper, selected borderless and got a 1cm white border. The image did not fill the preview window, so it is not a border problem. I have to use the slider

  • Error during installation of a new SLD

    Hello people, During installation of a new SLD I got different kind of errors in the Log. Does anyone has a suggestion what to do? <b>#79</b> 09/10/2007 14:04:01.536 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ImportHandler: Finished full impor

  • Edits made in earlier Camera Raws are not displaying in CS6 Bridge for PC

    All the painstaking adjustments and croppings I've made over the years to my raw files in earlier versions of Camera Raw do not show up in CS6. It's as though I never did any adjustments. But if I open the files in CS6 Camera Raw and make a tiny twea

  • Com.adobe.processingException : Problem accessing data from destination

    hi guys, i have an ECC 6.0 server(db : sql) and i am getting the below error while testing the destination service (((com.adobe.processingException:Problem accessing data from destination dest: fp_icf_data_isp))) i checked rfc connection and it is wo

  • Compile with ant...

    Hi guys, i'm a newbie user of java... i'm a question for you. Can you explain me simply how configure apache ant and how build a web.xml in the directory prog? Thanks very much,i've read documentation but i'm bit confused...