Can we change the selection screen of f.27

actually i want to have  print the account statement at sales area level instead of company code as in standard transaction F.27. so can we use exits to solve this
and can any guru suggest the appropriate exit.

Hi Prakash,
I think user exit is not  available in f.27.
I suggest you first try this in SD Module.
If u r not able to get this there, go for a Zprogram copying old one and adding other changes req..
I think this will solve ur problem.
Assign points if useful.
Thank You,
Purnachandra RM

Similar Messages

  • User exists for changing the selection screen of the transaction CS11

    Hi,
    I want to change the selection screen of the transaction cs11 and modify the ALV output.
    I searched the old forums but not got satisfactry results.
    I want to change the plant and material from the parameter to the select option.
    i dont want to copy the transaction for the zcs11.
    any suggestion on this ?
    Regards,
    udupi

    one more requirement i have is that, i need to remove all the header fields such as material , plant etc and place that field in the item level. i can use the user exists PCSD0002 for the adding the customer field in the item. but how can i removed the header level field such as plant and material. whether we have any user exits for that?

  • Can we translate in captivate 7? I Have tried and changed the Caption and Notes. Can we change the on screen text of te normal slides, interactive call out boxes, screen recording slides and quizzes? If yes, please let me know the process.

    Can we translate in captivate 7? I Have tried and changed the Caption and Notes. Can we change the on screen text of te normal slides, interactive call out boxes, screen recording slides and quizzes? If yes, please let me know the process.

    Of course! Here ya go
    For the record, I did create a new project with only two slides to try and duplicate the issue. I had the same problem. I unchecked the Mouse Click Sound check box, republished and the slide auto advanced. I'm wondering if a default sound file was somehow moved or deleted? I discussed uninstalling and reinstalling C7 onto my laptop, but that's a frustrating solution haha

  • Can we change the Home screen Background for iPhone 5C

    Can we change the Home screen Background for iPhone 5C

    I would assume that the home screen image and the lock screen image would be changed 100% the same way all other iphones change them in the settings

  • Can we change the home screen.

    Can we change the home screen and view it like a PDA screen, where we can view appointments,reminders and it should stay on the home screen.

    If app Calendar is running when you click the lock button on the top of the iPhone, then app Calendar will be again open the next time you "Slide to Unlock".
    But of course you won't see your private appointments unless you unlock!

  • Can I change the select option text for pnp ldb ?

    hi Akll,
    I am using a pnp logical database in my report and I have created my own hr category because i wanted to use field ename from the ldb in the selection screen. Now the problem with ename is I cant do a case sensitive search.
    So I have replaced it with sname, so now my screen has sname instead of ename, however I want to change the selection text for select option ( at present it is 'EE name can be sorted' )
    Kindly advise,
    thanks,
    GV

    I guess the text cannot be changed.. anyways you can add the field as an additional field by normal coding in your report

  • Changing the selection screen based on the option in list box option

    Hi Experts,
    I have a list box parameter in my selection screen,
    i have four options and i am changing my selection screen based the option selected.
    see my code below,
    at selection-screen output.
      GS_VRM_VALUES-KEY = '1'.
      GS_VRM_VALUES-TEXT = TEXT-S02.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '2'.
      GS_VRM_VALUES-TEXT = TEXT-S03.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '3'.
      GS_VRM_VALUES-TEXT = TEXT-S04.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '4'.
      GS_VRM_VALUES-TEXT = TEXT-S05.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      CLEAR: GS_VRM_VALUES.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          ID                    = 'P_DROP'
          VALUES                = GT_VRM_VALUES
      EXCEPTIONS
        ID_ILLEGAL_NAME       = 1
        OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT SCREEN .
        CASE P_DROP .
          WHEN '1'.
            IF SCREEN-GROUP1 = 'M2' OR
              SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '2'.
            IF SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '3'.
            IF SCREEN-GROUP1 = 'M2' OR
                SCREEN-GROUP1 = 'M4' .
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '4'.
            IF SCREEN-GROUP1 = 'M2' OR
            SCREEN-GROUP1 = 'M3'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN OTHERS.
            IF SCREEN-GROUP1 = 'M2' OR
               SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
          screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
        ENDCASE.
      ENDLOOP.
    my problem is when i change the option in the list box, the particular modify group ie, the screen is getting changed only after i press enter, So please suggest me how i can change the screen without pressing enter.

    Hi,
    without using VRM_SET_VALUES...you just create one data element by going se11....create one domain for it...now give the values in the "value range" tab....and at the time of declaration just write ..
    PARAMETERS var1 TYPE <your created data element>
                        AS LISTBOX VISIBLE LENGTH 20
                        USER-COMMAND onli
                        DEFAULT <one value>.
    You will get the same effect as list box....and make it mandatory..
    Arunima

  • How can I change the 'selected' color of one JToggleButton only.

    Hi,
    This seems like a simple / trivial question, but I just can't figure it out. Is there a way that I can create a JToggleButton and change the selected color of only that JToggleButton.
    I'm trying to create a simple sidebar like component for navigation within my app. A group of JToggleButton[s] added to a ButtonGroup (with the proper layout / sizing) works great, but the default JToggleButton colors don't suit my needs. I know that I can change the colors using the UIManager / UIDefaults, but I don't want to change the defaults for every JToggleButton in my app. I only want to change the defaults for a few select JToggleButton[s].
    For example, I can do this:
    UIManager.put("ToggleButton.select", UIManager.getColor("Table.selectionBackground"));
    UIManager.put("ToggleButton.background", UIManager.getColor("Table.background"));but I'd rather do something like this:
    JToggleButton jtb = new JToggleButton("Toggle Button Text");
    jtb.setSelectedColor(UIManager.getColor("Table.selectionBackground"));
    jtb.setBackground(UIManager.getColor("Table.background"));The only thing is, I can't find any method that is the equivilant of 'setSelectedColor(Color)' for JToggleButton.
    I know I could do it by adding some listeners to the JToggleButton[s], but that seems a little complicated for something like changing a color.
    I'd also seen a solution in the forums where someone had extended the ButtonUI of the pluggable look and feel they were using. I'm not interested in modifying the look and feel I'm using. As far as I'm concerned, that would defeat the purpose of having a pluggable look and feel as I would have to duplicate my efforts for every look and feel I want to use.
    Any help would be appreciated,
    Ryan

    try this
    import javax.swing.*;
    import java.awt.*;
    class Testing extends JFrame
      public Testing()
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(250,75);
        setLocation(400,300);
        JPanel jp = new JPanel();
        JToggleButton jtb = new JToggleButton("Toggle me");
        jtb.setUI(new MyUI());
        jp.add(jtb);
        getContentPane().add(jp);
      public static void main(String args[]){new Testing().setVisible(true);}
    class MyUI extends javax.swing.plaf.metal.MetalToggleButtonUI
      public Color getSelectColor(){return Color.BLACK;}
    }

  • Can I change the home screen to the UK

    I purchased my apple TV in the USA and was wondering in you can change the main screen to the uk setting so I don't have all the US sports program's on it?

    We get those in the UK too, they can't be turned off.

  • Help pls can't change the welcome screen on my ZEN Mi

    Hi, someone could tell me why I still can't change my welcome screen in the micro media explorer's settings?
    I read some post about this before asking you but I've upgraded my Zen Micro firmware and the "explorer" as well ( LB__02_05 & LB_4_00_8) and the button in the pop-up's window is still fade so I can't change the picture....
    Any body wants to help me to find out this problem ?
    Thanks in advance!!!
    ZEN MICRO 5Go
    WinXP

    Not sure, but the feature also doesn't work on the Touch I even downgraded to the older firmware where the screen is supposted to work

  • Changing the Selection Screen on the selection of a radio button

    Hi experts,
    I am stuck with a situation here.
    I have a selection screen with 2 blocks.
    The first block contains 5 radio buttons.
    The second block contains 7 select options fields.
    Now i want to show different select options when the user selects different radio buttons.
    For example, when the user selects radio button 1, select options 1, 2, 3, 4,  and 5 should be shown.
    When the user selects radio button2,  select options 3, 4, 5, 6, and 7 should be shown.
    How do i go about implementing this????
    I guess i need to do the coding in event "AT SELECTION-SCREEN OUTPUT".
    Should i use MODIF ID????
    Please help.
    Points will be awarded.
    Thanks and Regards
    Gaurav Kumar Raghav

    Use AT SELECTION-SCREEN  
    not AT SELECTION-SCREEN OUTPUT.
    cause output addition makes it a PBO not PAI
    check ur requirement & use the events accordingly
    group all select options under one group which you want to show on selection of radio button
    under AT SELECTION-SCREEN   
    loop at screen and change the property "ACTIVE (0/1)" for the group you want
    & don't forget to modify screen table in the end.
    one more thing u should do is use addition USER-COMMAND with your radio buttons.
    PARAMETERS : r1 RADIOBUTTON GROUP r1 USER-COMMAND f1,
                 r2 RADIOBUTTON GROUP r1.
    PARAMETERS : p1 TYPE c MODIF ID a,
                 p2 TYPE c MODIF ID b.
    AT SELECTION-SCREEN . " output
      LOOP AT SCREEN .
        IF r2 = 'X' AND screen-name = 'P1'.
          screen-active = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Edited by: mrugesh phatak on Oct 8, 2008 11:00 AM

  • I would like to change the project page layouts, but setup option in Project Superuser are not available. How can I change the selected page layouts?

    Hi
    I updated the page layouts for a project in Project Management. Now I woujld like to change those chosen page layouts, but the setup options for the project are no longer available for me to change. How can I update the original chosen page layouts (for performance management) to different layouts or change the chosen layouts to the default (blank) layouts?
    Thanks
    Chris van de Graaf

    AppleMan,
    It all began inside the settings of my Sanyo VPC-HD2000A when somehow the selection got switched from 1280 x 720 to that other setting with so-called 25fps. Also, I don't know whether the mishap occurred before or after I took my new footage.
    I edited the clips last night and now they are on my blog and channel and they seem ok but slightly fuzzy.
    I used a Sanyo VPC-HD2000A .7x wide angle lens with macro and I notice that when I zoomed in to the little sun conure, the picture blurred. I think that might be something that happens when one zooms the focus.
    Also, I was born and raised to a teenager in Hawaii, but now Southern California has me in its grip.
    -L

  • How can i change the cracked screen of iphone6 in a country which has no apple store?

    Just one time fallen... Totally craked, but the touch function is still available.
    I bought this IPHONE6 from online store of the apple official website, and this country Im living in which has no real APPLE store, so where should I go to replace the broke screen.
    By the way, I'm in UAE.
    Thank you if anyone can help me~

    Lotam wrote:
    Thank you !
    I've contacted the apple service provider by the site you gave me in your reply.
    But now the problem is that they don't offer any repair services for the screen cracked iphone6, they just provide the service of replace a new device with extra 1300+ AED I need to pay because I don't have the APPLECARE SERVICE.
    I thought the price is not very reasonable in consideration of I just payed 2599 AED to buy it.
    Is there any way to buy the APPLECARE SERVICE right now?
    You're being offered a replacement device for half the price of the original, even though it was totally your fault, and no one else's, that it got damaged... and you think this is unfair?
    Most companies don't even offer that.  If you have a non-functioning device that isn't covered under some form of warranty or protection plan, you normal buy a mother device, at full price.
    You're getting a 50% discount.  What, exactly, is unreasonable about this?

  • How can I Change the On Screen Keyboard Layout?

    Hi everybody...
    I've searched on the support and I didn't find anything on that.
    I Don't know if it's something on the initial Start of my Palm TX, i don't remember!
    Right now my on-screen keyboard have a AZERTY layout, the french on... I've setted the language in french, but I want to have the QWERTY layout like US and Canadian.
    How can i do that??? with a hard reset to restart the initial setup??
    BTW I don't mind if I must have my device en English, but I want a QWERTY keyboard!!! hehe
    Thanks A LOT!!!!
    Post relates to: Palm TX

    Believe you will have to change to English to get qwerty. Alternatively, you might want to take a look at pruss' MyKbd, which you can rearrange to your heart's content.
    Post relates to: Palm TX

  • Can we change the selection criteria for RV60SBAT Background Job for Billin

    We have a requirement to add a new selection criteria for RV60SBAT Background Job for Billing. We want to process back order invoices first. So we want a specific background job to select these. So we want to select any orders that are eligible to be invoiced where order date < the date of background job(r sy-datum ). Any ideas where we can introduce this logic for selection criteria?
    Thanks,
       Matt

    Hi Matt
    For your requirement , copy the standard  RV60SBAT program to Z program and in that copied RV60SBAT program , maintain the logic that the backorder invoices should be first processed.Then after that regular background job for billing should take happen .Then your requirement can be fulfilled
    Regards
    Srinath

Maybe you are looking for

  • Installing Oracle 8.1.7 on Red Hat Linux Advanced Server 2.1

    Hello, how the subject says I'd like to install Oracle 8.1.7 on Red Hat Linux Advanced Server 2.1. Can anybody of you say me where to find a good HOWTO/Documentation?? It would be nice if you help me! Konstantin

  • PJC, Set_Custom_Property problem

    I'm trying to use a PJC in a multi-record block to set the colour of a field depending on the data, but have run into a problem. I can't find documentation for Set_Custom_Property but I always assumed that the second parameter referred to the record

  • Blocking data in sts

    Hi all, I have a question related to STS (Status and Tracking System) in SEM-BPS and hopefully there is somebody out there that can help me: I’m having problems in blocking data in web layouts: I’ve two planning levels and in each one of them, I’m no

  • Data of table control not saved in variant of report

    Hi ppl, I have created a report program with some selection parameters. Also, I have included a table control on the selection screen (using subscreen). The report works perfectly. But, when I press the SAVE button on the selection screen to save the

  • Table Maintaince ..issue to see all fields at once ??

    Dear All, I am working on a table maintaince. The problem I am facing is that, I have about 10 fields, I am unable to see all of them. I have to scroll left and right to see all fields. Is there any setting to see all at once. Thank you. Regards Madh