Screen sequence control

Hi to all...
   i have read about screen sequence control but iam unable to figure out the exact meaning of it...can any one give an example of it and explain me the concept of screen sequence controll...
regards,
sanjana

Hmm.. Hi Sanjana,
Screen Sequencing, consider a scenario.. SAP standard transactions has hundreds of fields, many different tabs.. but if a cleint wants to use the functionality of the system, u definitely need to identify the required content, but again what abt the useless content for client,
Thus we come to screen sequencing, here in using transaction varient we customize, what fields we want to see and what not, then using the screen sequencing we would decide the sequence of screen tabs, ie first should be general data, next tab should be organization, then it must be partner, next products and so on..
Thus this feature helps as to meet the UI requirement for client on SAP GUI.
Best Regards,
Pratik Patel
<b>Reward with Points!</b>

Similar Messages

  • Screen sequence control  cook book

    hi friends,
    can any one send document on screen sequence control document plzz.
    regards,
    siddartha

    Hi Siddartha,
    Have a look at the following blog :
    /people/rajagopal.vemuri/blog/2006/10/18/crm-maintenance-of-screen-sequence-control-crmvssc
    <b>Reward points if it helps.</b>

  • Screen Sequence Groups

    Does anyone have a reference to the different screen sequence groups for Sales Document Types and how they are different from each other?  I want to set my Text Determination for my Quantity Contracts to allow the Text in overview screen, but I get message no. VC249 which tells me that my ZCQ order type is assigned to screen sequence group LP and LP cannot be used with text edit control.  This message suggests that I reset the text ID (what does this mean?) or assign order type ZCQ to a different screen sequence group in Customizing for order types.  I hesitate to switch my order type ZCQ from LP to AU without knowing just what changes this will cause.  Any help is appreciated.

    "Reset" in this case probably means that you should blank out the text ID because it is not allowed.
    As for changing the screen sequence group from LP to AU, that'd probably mean some significant difference since AU is for orders while LP is for outline agreements, like contracts. I'm not sure if changing that is a good idea or not, but you could try it and see if it works for you.
    Generally speaking, screen sequence control is a pretty complicated process and unfortunately I don't have good documentation about how it all works so that it would explain to you what such a change means.
    I've seen quite a few posts and blog entries (mainly in the CRM area) here on SDN about this topic, so those may help you in understanding the whole thing. Search for screensequencecontrol as the search term.

  • How to do a screen sequence for a standard transaction?

    Hi experts -
    I have a requirement that the business wants a field on transaction VL02N to be grayed out based on specific delivery types.  I have been told that that would require a custom screen sequence to be developed.
    (1) What is the best solution to accomplish this?
    (2) If the solution is a custom screen sequence for the standard transaction code VL02N, then how is that done?
    Many thanks!
    Mark

    When one says "custom screen sequence"  an Industry Solution that utilizes BDT, like Insurance or Gas/Oil comes to mind.  Are you working with one of the BDT-based Industry Solutions in SAP?   If so, customization by field-group or screen or view could be considered, but I think you'd find a much simpler way to do.
    If not, one usually does this with an exit that allows control of screen elements, as does SD Order processing, a Badi implementation or enhancement in a PBO module for the screen to set the screen-input value to '0' for that field name. 
    You should, though, search the forums, since these kinds of questions are often asked....and answered....such as:
    [VL0xN exits|VL01N / VL02N Exit;

  • Screen sequence processing when using modal dialog box

    I have been struggling with a dialog program which I have written.  I have a screen which has 2 radiobuttons and a check box (screen 100).  If the checkbox is marked, a modal dialog screen pops up (screen  150).  If I complete both input fields on  screen 150, I can go through to screen 200, then back out of screen 200 to screen 100, and then I can back out 100 to screen 0.
    The problem I have is the validation I have put in screen 150 if one or both input fields have no values or if I want to exit screen 150.  If I exit screen 150, in order to get back to screen 100 in the main screen I need to do CALL SCREEN 100 as if I use SET SCREEN 100, 100 then appears in my modal dialog box screen.
    If I try to back out of screen 100 to screen 0, the program then brings up screen 150 in the PAI part of the module and then go to screen 0 when I close screen 150 even though I have coded SET SCREEN 0. LEAVE SCREEN. in the user command module of screen 100.  Here is my code:
    <u><b>screen 100</b></u>
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
    PROCESS AFTER INPUT.
      MODULE user_command_0100.
    <b>
    <u>Modules for 100</u></b>
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'ZL_PWB_GR1'.
      SET TITLEBAR  'ZL_PWB_GR1'.
      CLEAR: w_hse_stock, w_new_product, wa_sto, w_reverse,
             mara-matnr,  mkpf-mblnr.
      PERFORM release_lock.
      REFRESH CONTROL 'TC_GR' FROM SCREEN 0200.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT .
      CASE ok_code.
        WHEN 'ENTER'.
          IF w_reverse = space.
            CALL SCREEN 0200.
          ELSE.
            CALL SCREEN 0150 STARTING AT 30 2
                             ENDING AT   75 5.
          ENDIF.
        WHEN 'BACK' OR 'EXIT' OR 'CANC'.
          w_pai = c_yes.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    <u><b>screen 150</b></u>
    PROCESS BEFORE OUTPUT.
      MODULE status_0150.
    PROCESS AFTER INPUT.
      MODULE exit_command_0150 AT EXIT-COMMAND.
      FIELD  mara-matnr MODULE check_matnr.
      FIELD  mkpf-mblnr MODULE check_art_doc.
    <u><b>Modules for 150</b></u>
      MODULE user_command_0150.
    *&      Module  STATUS_0150  OUTPUT
    *       text
    MODULE status_0150 OUTPUT.
      SET PF-STATUS 'GR_REV'.
      SET TITLEBAR 'GR_REV'.
    ENDMODULE.                 " STATUS_0150  OUTPUT
    *&      Module  exit_COMMAND_0150  INPUT
    *       text
    MODULE exit_command_0150 INPUT.
      IF sy-ucomm = 'EXIT'.
        CALL SCREEN 100.
      ENDIF.
    ENDMODULE.                 " exit_COMMAND_0150  INPUT
    *&      Module  check_matnr  INPUT
    *  Check if issues has been filled and if issue is a valid article no.
    MODULE check_matnr INPUT.
      DATA: l_matnr TYPE matnr.
      IF mara-matnr IS INITIAL.
        MESSAGE i010(ad) WITH 'Issue no. required'.
        EXIT.
      ELSE.
        SELECT SINGLE matnr FROM mara INTO l_matnr
         WHERE matnr = mara-matnr.
        IF sy-subrc NE 0.
          CLEAR l_matnr.
          MESSAGE i010(ad) WITH 'Issue does not exist'.
        ENDIF.
      ENDIF.
    ENDMODULE.                 " check_matnr  INPUT
    *&      Module  check_art_doc  INPUT
    *       text
    MODULE check_art_doc INPUT.
      IF mkpf-mblnr IS INITIAL.
        MESSAGE i010(ad) WITH 'Article document no. required'.
        EXIT.
      ELSE.
        PERFORM get_art_doc USING mara-matnr
                                  mkpf-mblnr.
        IF sy-subrc NE 0.
          MESSAGE i010(ad) WITH 'No article document exists for this issue'.
        ENDIF.
      ENDIF.
    ENDMODULE.                 " check_art_doc  INPUT
    *&      Module  USER_COMMAND_0150  INPUT
    *       text
    MODULE user_command_0150 INPUT.
      CASE sy-ucomm.
        WHEN 'ENTE'.
          IF mara-matnr NE space AND mkpf-mblnr NE space.
            CALL SCREEN 200.
          ELSE.
    *        MESSAGE i010(ad) WITH 'Please fill in both fields'.
            SET SCREEN 150.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0150  INPUT
    Any suggestions or pointers would be greatly appreciated as I am going round in circles.
    Thanks
    Larissa

    Have got around this by removing the references to SET SCREEN 150.  This way, I can get around the screen sequencing.  It just means that I cannot keep my screen 150 in view if a validation message occurs but for now it will do for what I need.
    Thank you for your help anyway.
    Larissa

  • Screen Sequence Groups in SD for VA01 Transaction

    Hi Experts,
    Are these SD screen sequences configurable?  I need to copy Screen Sequence Group in SD to add additional field.  Is it possible?
    I've assigned 'AU' screen seq. group in Transaction Flow of VOV8 tcode for my Sales Ord Type.
    SM31 maintain V_TVHB_KPF and copied 'AU' to 'ZAU' successfully.
    Now I need to see where the fields are assigned to these Screen groups?  I need to add Target Quantity (VBAP-ZMENG) to my custom Screen Sequence Group.
    Note: Only place I see the fields under 'AU' are ... when I am in Sales Order (VA01/VA02) Item table control ... click (right top corner of items table) on config & click on Administrator tab.
    Any suggestions / thoughts to achieve this.
    Thanks in Advance.

    Hi Karsar,
    do you found a solution for this problem.
    My problem is nearly the same. I need the box for header texts in the screen.
    But I can set the flag "Text in overview screen"(V_TVAK_TXT) only for screen sequence group "AU".
    I my case I have to use the screen sequence group "GA".
    For this sequence group this function is not possible.
    Any idea how to solve?
    Thanks in advance.
    Kind regards
    Frank

  • Screen  Sequence group

    Can any one of u tell me how Screen sequence group is defined and assigned to Sales Document type.

    Hi,
    u can do this in IMG- sales and distribution- sales- sales document-difine display status in the overview screen.
    Define Display Status in the Overview Screen
    You can display and change the system and user statuses of all items that have an object status in the sales document overview screen. This means that you no longer need to go to the details screen to view the status. Instead, you can check, set, or re-set all the important statuses directly in the item overview. The same rules apply as before: you can change a user status at any time but you can only change a system status if this is permitted by the system. At the moment, you can change the following statuses: blocked, completed, finally billed, technically completed.
    In this IMG activity, you can determine which status, from which item status profile, should be displayed for each document type. You can also determine whether the status can be changed or is for display only. If an item does not have a user status, for example, because a status profile has not been saved for the item category, the display fields for the system status are empty in the overview screen.
    You can also combine user statuses from several status profiles for the display. Use the Display field to control whether the status should only be displayed in the overview screen, or whether it can also be changed by the user.
    If you select this field, the status is only displayed and cannot be changed by the user.
    If you do not select the field, the system determines the changeability of the status, whereby a user status can always be changed.
    You can use the sd_status_info report to check which system statuses may be changed. The report shows all the system statuses contained in the SAP system. In the standard system, all the system statuses relevant to Sales and Distribution are highlighted in light green, while all changeable SD statuses are highlighted in dark green ("Modifiable" column).
    Reward if it helpfull
    Reegards
    Sasikanth.Ch

  • Cotrols of Screen sequence group

    Hi all,
    where we can defined screen sequence group & what is basic control of this.
    it is assigned to sales document types but i am not able to find out where it is defined how its control to sales document type.
    Regards
    ajit

    Screen sequence group is a standard one and we cannot create that.
    Use tcode VOV8, then select your sales document type and under Transaction Flow, there you will find Screen Sequence group.
    Check table TVHB-Sales Document: Screen Sequence Group
    Refer following link for further understanding:
    [Screen sequences|http://help.sap.com/saphelp_47x200/helpdata/en/eb/e8dbaee53d11d4b36c0050da429303/frameset.htm]
    Thanks & Regards
    JP

  • Text Behaviour Sequence Controls

    I'm animating paragraphs of text in Motion2, which I want to slide in line-by-line from the left of screen.
    The "Slide In From Left" behaviour in the "Text-Move" category work well, EXCEPT, when I change the select sequence control from "All" to "Line" it animates out before animating in.
    I thought about offsetting the behaviour so you only see the second half of the animation, but I want the spread sequence control greater than 1, so the out animation is not finished before the in animation starts.
    Is there a way of getting it to animate in one direction only, a line at a time?
    I don't really want to have to do the whole lot by hand (motion paths) as I have LOADS of text to animate.
    Thanks for any suggestions

    This is one of the annoying aspects of the text sequence behavior - if you don't us "all" for the Select parameter, it goes to the value you specific and then back again - I really wish it worked like the Replicator, which gives you several options for how to move through the animation: to, from, through, through inverted - much better.
    You can set the Traversal parameter to Custom and then keyframe the Location parameter that appears - from 0% at the beginning of the behavior to 100% at the end - but you then need to add a mask to hide the lower lines that show up briefly due to the Spread being at 1 or greater. Pain in the neck. Would love it if someone found at way around this.
    Mark

  • I upgraded my iMac to 10.9.4.  Now the feature where you can go to 4 diff. screens (Command+Control) doesn't work.  How do I fix this?

    I upgraded my iMac to 10.9.4.  Now the feature where you can go to 4 diff. screens (Command+Control) doesn't work. 
    How do I fix this?

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Screen sequence error while creating material.

    Respected Gurus,
    While creating material, i am getting the following error:
    The data screen descriptions are missing for screen sequence EH
    (Message no. MM329)
    Looks like screen set up issue.
    How do I solve this??
    Please help.
    Jaideep

    Jaideep,
    Check in other logon language like EN or DE.
    You might want to check with basis consultant if all text's are migrated into your logon language.
    If the screens are not standard, texts might only exist in developer logon language.
    Close message if solved.
    regards,
    Edgar

  • Windows 8.1 kills screen brightness control

    I have a touch smart 23 computer that came with windows 8.0. An auto upgrade to 8.1 caused the screen brightness control to stop working and the screen stays on super bright. I could not get a response on how to fix so I had to re-install 8.0 which fixed the problem. I set the system to not upgrade without my approval and yet it did it again last week (about 4 or 5 months later). When I have to reinstall 8.0, I have to re-install several primary programs as there are no restore points left except back to factory settings. Question one is - has there been a fix installed on windows 8.1 that will again let me control the brightness on my screen? If not, question 2 is how did the update override my setting to not allow updates to install without my approval. I have a full day of re-installs that I don't want to have to do a third time.

    Hi:
    You probably have to install the W8.1 graphics driver for your specific model.
    Normally when you can't control the screen brightness, that means the graphics driver isn't installed.
    As for your second question, that I do not know.

  • My screen brightness control buttons don't work windows 8

    my screen brightness control buttons don't work?
    the light in the mute button is always on when NOT on mute?
    Have set up Win8 3 TIMES but get always same bug agan 
    Hope someone can help 

    Hello smarisig. I understand you are not able to control screen brightness from the keyboard on Windows 8. By chance, did you upgrade to Windows 8 from Windows 7? I have located an online forum that contains troubleshooting on this issue: http://thedailybuggle.com/forum/unable-control-screen-brightness-windows-8-a-200.html
    The person who posted the issue on this forum had upgraded from Windows 7 to Windows 8, and then this issue occurred. That is the reason I asked if this Windows 8 was upgraded. Regardless, follow the troubleshooting presented and it could resolve the issue for you. If not, let me know and I will continue to research the issue in the meantime. I'm only here to help!
    Mario
    I worked on behalf of HP.

  • The volume controls will not show up in the music app or the lock screen music controls. What do I do?

    The volume controls will not show up in the music app or I the lock screen music controls. What do I do?

    OMG......THANK YOU THANK YOU......I been reading articles after articles and nothing was working......tryed the Crtl+S and there it was. I can not thank you enough......I appricate it    Can not believe it was that simple. I am one happy person again.....

  • Simulating a screen brightness control

    I am trying to simulate a screen brightness control on a training tool for locomotive driver console. This console has 8 function buttons, which are used to navigate to various screens depending on the scrren currently displayed. There is another button that is used to control the brightness of the display and I want to simulate this by pressing the button and displaying a semi transparent rectangle over the screen. I can do it for a single screen using the advanced actions but I don't know how to have this work on all screens without repeating the process for every slide. I tried to put this feature in the Master sldie but with no joy
    I have an image of the device front panel on a Master slide and I am have created moveable buttons on each subsequent slide to navigate to the relevant images I am navigating through.
    If anyone has any helpful hints on how to achieve this I would appreciate it.
    Cheers
    Greg

    Hi Greg,
    I felt sad when you mentioned the version 5, had hoped you were at least at 5.5. My idea was to create the 'dimming' rectangle on the first slide
      and time it for the rest of the project. The option 'always on top' should be checked. In 5.5 and 6 it is possible to show/hide that rectangle on all the slides, but in 5.0 you can only hide the rectangle on other slides than the first where it really is. This was a less known improvement on 5.5 due to my begging to the engineers. That way you could create one advanced action to be attached to all the buttons, without any editing because the rectangle always had the same ID. 
    In CP6 it would be even easier: a shape button has all the functionalities of a normal button but can be also be timed for the rest of the project: only one shape button with one advanced action would have been needed. Have a look at this blog post: http://lilybiri.posterous.com/why-i-like-shape-buttons-captivate-6
    The idea was to make that rectangle initially invisible, and show it when the button to dim was pressed with an (advanced) action. Now I can only offer some tips to make the cumbersome process of editing shorter, you'll need a rectangle on each slide, and will have to edit the advanced action for each button to point to the correct rectangle:
    create rectangle and button, with its advanced action for the first slide (and test it) before copying both at once to all the other slides
    label first the button and have the number of the slide in the label (like Bt_x where x=slide number)
    it is possible then to use the same name for the advanced action to be triggered by the button
    before copying: if those rectangles are the only ones, you can keep the default names for them
    the copied buttons will get their proper ID, I would relabel them on the slide, go then to the advanced action, duplicate and edit it
    So sorry,
    Lilybiri
    PS: I'm not paid by Adobe, not trying to push you to upgrade

Maybe you are looking for

  • How can I call a static function in another static function?

    /** = d, as a String, using exactly 5 characters. Precondition: 0 <= d <= 999. The truncated d will have one of the forms: ddd.d, dd.dd, and d.ddd. Examples are: 360.1, 29.50, 4.003, 0.001, and 0.000 public static String truncateTo5(double d) { // To

  • CUC Cluster not functioning correctly

    Saw a few posts and documents relating to this issue but they don't match up perfectly with my particular scenario.  Basically, the customer could no longer log into the Unity Pub so we had to do a rebuild as nothing was working.  The sub took over a

  • Airplay mirroring boxed

    ipad2 ios5 atv2 ios 4.4 airplay mirroring works to viera hdtv, however the display is not in widescreen, it is boxed. please assist thanks, Jeremy

  • Satellite P745 Audio Jack / Headphone jack not working

    Good day to all, I have recently performed a fresh install of Windows 7 Ultimate on my Toshiba Satellite P745, and manually installed only important drivers (NVDIA and Intel Graphics, Realtek HD Audio Manager, etc.). I do not prefer the built-in rest

  • Using textbox value in a spreadsheet formula

    Hi, I have added an Active-X textbox to my spreadsheet and would like to use the textbox value in a spreadsheet formula. Somehow, the formula does not accept the textbox name as a parameter. Textbox name: foo Formula: =foo + 1 Does Excel support usin