Screen resolution with Mode in BDC

Hi All,
In call transaction statement I am using mode as well as options from statement but 1 error is coming that i can't use mode and update with options from statement. But I want to run in background as mode 'N' as well as I want the default screen resolution.
Please tell me some way to solve this issue.
Regards,
Sivaram

Hi ,
You need not use mode. You can set the values in OPTIONS itself.
Eg :
Declare a structure of type ctu_params.
Data :gs_params type ctu_params.
     gs_params-dismode  = 'N'.
     gs_params-defsize  = 'X'.
Call transaction 'MM01' using gt_bdccat
                                     messages into gt_bdcmsg
                                     options from gs_parms.
Try this .
Best Regards,
Hari

Similar Messages

  • Changing screen resolution with a button

    Hi,
    I would like to ask if there is a way for an interface to change the screen resolution of the computer? I am wanting to build an interface that loads an interactive camera that works with processing however I am needing it to be at the resolution 800*900 as the webcam screen is too small on a full 1680x1050 resolution.
    Is there a way for the flash application to change the screen resolution with a button click? Are  there any alternatives to this?
    Thank you
    Jess

    It is to display a portfolio at my design school for assessment, they will accomodate any necessary things that i may need for assessment viewing so it is very important to me.
    Do you know what programs will work with this? What program would i have to install?
    I only need to do this for my assessment so it is almost a desperate search for something that would work.

  • Screen Resolution in table control bdc

    Hi ,
    Im working on bdc table control using call transaction method for vk11 and mek1.While uploading data for vk11 for the first time it is taking all the records of the input file and if i do the same for the second time by changing the amount value it is taking only 24 records .(i.e if the input file contains only 24 records it wil update else if it has 25 records or more it not updating even single record and it is showing error " No batch input data for screen sapmv13A ..)...this issue is with the production server......................whereas in development and quality servers there is no problem....................
    what migh be the problem and how to solve it?
    can anyone plz help me on this

    if its a problem in screen resolution then while recording through SHDB mark the check box default size
    or
    to make the bdc execute in standard screen size check the code below
    data x_ctuparams type ctu_params.
    x_ctuparams-defsize = 'X'. " This would freeze the resolution in any system
    x_ctuparams-dismode = 'N'.
    x_ctuparams-updmode = 'S'.
    call transaction <TCODE> using it_bdcdata options from x_ctuparams.
    So whatever is the screen size of the users front-end, the BDC will execute in standard screen size

  • Help!..Urgentfixed Screen Resolution with Graphics Configuration

    Hello, i am try to make our swing application resolution fixed.
    whatever is system resolution does't matter.
    my application always running on 1024 *768 mode.
    But i face some problem when i run the project with is feature and open any dialog by clicking on button and move that dialog box that dialog box is not visible(transparent) to me.
    I am try most of thing but my problem was not solve.
    Please give me any suggestion as soon as possible
    It's very very urgent....
    my code is : -
    GraphicsDevice graphicsDevice = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
    GraphicsConfiguration graphConfig = graphicsDevice.getDefaultConfiguration();
    DisplayMode displayMode = new DisplayMode(1024, 768, 32,DisplayMode.REFRESH_RATE_UNKNOWN);
    mainframe = new JFrame("",graphConfig);
                             graphicsDevice.setFullScreenWindow(mainframe);
    if(graphicsDevice.isDisplayChangeSupported()){
                                  graphicsDevice.setDisplayMode(displayMode);
         }

    I am using Images in my swing project if i used make
    my project screen resolution free than my image
    module in great trouble so that's the reason i could
    not made my swing application resolution free (run on
    any resolution).
    Bullshit. I have used Photoshop (various versions) and Illustrator (various versions) for 5 years now and not once have they forced resolution changes on me.
    This is a dumb idea and unneeded. Please give it up.
    Now here is what you should do. Post a question in the Swing forum about how you are having problems with LayoutManagers when you use images and blah blah. Be prepared to post a concise, compilable and executable program that demonstrates your problem.
    Best of luck.

  • Screen Resolution with hwd [solved]

    I am having trouble getting the right screen resolution for xorg with hwd...
    I used...
    pacman -Sy xorg hwd
    hwd -xa
    My monitor and video card are optimally at 1280x1024 but when I use hwd, the maximum screen resolution seems to be set at 1024x768. Any ideas on how to get 1280x1024 without xorgconf?

    In the Display SUBSECTION(s) for the Screen SECTION in xorg.conf you must put something like this :
            Modes "1280x1024" "1024x768" "800x600" "640x480"
    The first mode listed is the mode that is used by default.

  • [SOLVED] Changing screen resolution with xrandr.

    Been googling around after a way to change my screen resolution.
    I'm on a Acer Aspire Timeline 3810t with the resolution 1366x768.
    I wanted to change my resolution to something like 1900x1200 and found a guide explaining how to do this with xrandr.
    This is what I did:
    jorgen ~ $ xrandr
    Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
    LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 293mm x 165mm
       1366x768       60.0*+
       1024x768       60.0 
       800x600        60.3     56.2 
       640x480        59.9 
    VGA1 disconnected (normal left inverted right x axis y axis)
    HDMI1 disconnected (normal left inverted right x axis y axis)
    DP1 disconnected (normal left inverted right x axis y axis)
    DP2 disconnected (normal left inverted right x axis y axis)
    TV1 disconnected (normal left inverted right x axis y axis)
    jorgen ~ $ cvt 1900 1200
    # 1904x1200 59.93 Hz (CVT) hsync: 74.61 kHz; pclk: 191.00 MHz
    Modeline "1904x1200_60.00"  191.00  1904 2032 2232 2560  1200 1203 1213 1245 -hsync +vsync
    jorgen ~ $ xrandr --newmode "1904x1200_60.00"  191.00  1904 2032 2232 2560  1200 1203 1213 1245 -hsync +vsync
    jorgen ~ $ xrandr --addmode LVDS1 1904x1200_60.00
    X Error of failed request:  BadMatch (invalid parameter attributes)
      Major opcode of failed request:  150 (RANDR)
      Minor opcode of failed request:  18 (RRAddOutputMode)
      Serial number of failed request:  33
      Current serial number in output stream:  34
    Does anybody have an idea about what I am doing wrong, or why I get this error?
    Last edited by jorg1 (2011-03-12 04:20:39)

    jorg1 wrote:
    Ok, I found some good documentation - the wiki. (Been in ubuntu so long that I forgot to check the official documentation before going to the forums :S)
    Made myself a 10-monitor.conf file:
    Section "Monitor"
        Identifier    "Monitor0"
    EndSection
    Section "Device"
        Identifier    "Device0"
        Driver        "intel"
    EndSection
    Section "Screen"
        Identifier    "Screen0" 
        Device        "Device0"
        Monitor       "Monitor0"
        DefaultDepth  24
        SubSection "Display"
            Depth     16
            Modes     "1900x1200_60.00" #Choose the resolution
        EndSubSection
    EndSection
    But it still won't switch to any other resolution than 1366x768. Anybody see anything wrong with this?
    Good, you've learnt to use the wiki, please do that first from now on (google as well). Also, please use code-tags, makes it easier to read code/conf-files.
    It looks like you're trying to set your laptop screen to a resolution higher than it can go. Hint: not possible. If you had an external screen with a higher res then you could use that, but the resolution is limited both by the screen and the graphics card, and I haven't heard of any laptop screen with such a high resolution.

  • Screen resolution with 2 monitors

    I have an MIS G4MX460-VTP video card instaled on Windows 2000 and two monitors connected to the card. I would like to know how to ajust the screen resolution on each monitor seperately. Presently, when I am openning the display properties of Windows I am seeing only one monitor even if the two monitors are connected. Thanks for your help.
    syllab

    I have a g-force 4200 128 meg card.
    Windows 2000. I have a 21" and a 17" monitor and it spreads the entire desktop across 2 monitors but the resolution stays the same on both. Obviously a 17 to a 21, either the 17 wont carry the resolution i want for the 21 and shut down or everything is very large on the 21.
    I also cant get it to behave correctly with monitor placement. My 17 is on the left and 21 on the right , but no matter what i do, software settings or physically switching the vga ports it treats the 17 as if it was on the right. these issues are regardless which is set as the primary or secondary, and my 17 is never listed by name anywhere as the 21 is . it seems to be considering that i have to have the same size and type monitor.  :O

  • Kde screen resolution with nvidia driver

    Hi,
    I am completely new to ArchLinux.  I really enjoyed installing it and its a hoot to play around with!
    I am having a problem getting the screen resolution to work well with the monitor and the resolution with KDE 4.3.  I found that by changing the resolution to 1024x768 and changing the refresh rate to 53 or 54hz, the fonts that otherwise display horribly with the nvidia driver and installed nvidia card will suddenly become beautiful.  I went to Kmenu, Settings, then display settings, and changed the configuration, and everything worked great.
    But on next boot up after I have shut down the computer, X doesn't remember these settings and the fonts look terrible again.  If I open the kmenu again and look at the display settings, they are still set at 1024x768 and 54 hz.  Once I have looked at them, the screen on the monitor goes dark for a second.  Then the computer knows that I want those settings without me changing anything, and adjusts to them without having to hit the apply button.  Then the fonts look great again.
    How can I get the display to start with those settings?  I have tried several configurations of the /etc/X11/xorg.conf file without success, so I need some help.
    Thanks
    Last edited by munguanaweza (2009-11-13 17:06:17)

    I know some time back using nvidia driver with my particular monitor, i had to tell it what resolution/refresh rate to use by default or else X would make a poor choice as to what it wanted the default to be (put me in 800x600 or something like that  by default).  I was able to tell X to default to what I wanted by adding in a Metamode line in my xorg.conf, i think under the screen section. I'm out right now and won't be back to my box to look up exactly what I did, but hopefully this might give a starting point if you havent tried it already.  Metamodes in xorg.conf under the Display section if i remember right.  I specified a resolution there and it now uses that as the default.

  • Find client Screen Resolution with PL/SQL.

    Hi,
    Is it possible to find the client current screen rsoultion using PL/SQL within Oracle Portal?
    Thanks.
    Best Regards.

    Web technologies in general do not provide this functionality.
    However, there are best practices available on the Internet that you can follow to best serve your users.
    Search for something like: "HTML tips screen resolution".
    Peter

  • Changing screen resolutions with apps

    Does anyone know if it's possible to force different Apps to change the screen resolution when launched?
    For instance:  On my iMac, when using the Finder, Mail or Safari, I like the screen set to 1920x1080, but when I am in Photoshop or FCPX, I would like it to change to 2560x1440, then back to 1920x1080 when I quit without me needing to manually change it each time.. Any ideas?
    Thank You..

    Nobody????

  • Low and bad screen resolution with radeonhd [SOLVED]

    Hi Archers,
    I just setted up a brand new PC with an ATI HD4550 GPU and a 22'' 1680x1050 monitor.
    I can run Xorg and even Gnome using the radeonhd drivers, but the max resolution I can get is 1280x1024 (which isn't even the correct ratio).
    The lower suggested resolutions' ratios are bad as well.
    I didn't write an xorg.conf file.
    When I try to run X with a configuration file generated by X -configure, the monitor displays an error message like "Unsupported video signal".
    What can I do?
    Last edited by monsieur moche (2009-10-15 13:44:01)

    monsieur moche wrote:Here is the xorg.conf of my last test: (...)
    As you can see, I uncommented some lines and I added Option "PreferredMode" "1680x1050" to the monitor section.
    After a lot of gasping, moaning and countless tries, this xorg.conf works here, with an analogue monitor. Look at the bottom for how I set the mode choices. Good luck!
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "evdev"
    Load "glx"
    Load "extmod"
    Load "record"
    Load "dri2"
    Load "dbe"
    Load "dri"
    Load "drm"
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbOptions" "terminate:cntrl_alt_bksp"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "IMPS/2"
    Option "Device" "/dev/input/mice"
    # Option "ZAxisMapping" "4 5 6 7" # Xorg's oppsett
    Option "Buttons" "5"
    Option "ZAxisMapping" "4 5"
    Option "ButtonMapping" "1 2 3 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    HorizSync 30.0 - 100.0
    VertRefresh 50.0 - 100.0
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    Option "AccelMethod" "exa" # [<str>]
    #Option "offscreensize" # [<str>]
    #Option "SWcursor" # [<bool>]
    #Option "ignoreconnector" # [<str>]
    #Option "forcereduced" # [<bool>]
    #Option "forcedpi" # <i>
    #Option "useconfiguredmonitor" # [<bool>]
    #Option "HPD" # <str>
    #Option "NoRandr" # [<bool>]
    #Option "RROutputOrder" # [<str>]
    Option "DRI" "on" # [<bool>]
    #Option "TVMode" # [<str>]
    #Option "ScaleType" # [<str>]
    #Option "UseAtomBIOS" # [<bool>]
    #Option "AtomBIOS" # [<str>]
    #Option "UnverifiedFeatures" # [<bool>]
    #Option "Audio" # [<bool>]
    #Option "HDMI" # [<str>]
    #Option "COHERENT" # [<str>]
    Identifier "Card0"
    Driver "radeonhd"
    VendorName "ATI Technologies Inc"
    BoardName "RV770 [Radeon HD 4850]"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection

  • 16:10 screen resolutions with MacOS 9?

    I've just connected a PowerMac G4 (AGP 400) with MacOS 9.0.4 to a new LG wide screen LCD display, a 20.1" display that supports natively the 1680x1050 pixel resolution through the VGA connector.
    The Monitor control panel lists only regular 4:3 or 5:4 resolutions, like 800x600, 1024x768, 1152x870, 1280x1024, but no chance to see the native resolution. I would connect the display to the computer thru the DVI-ADC connector, but I lack the DVI-ADC adaptor.
    Is it a constraint of the graphic chipset? The G4 is equipped with the built-in ATI Rage Pro 128 with 16 MB RAM, with dual display connectors, a standard VGA and a ADC one.
    Is there a way to see 1680x1050 with OS 9? I haven't tried the MacOS 9.1 or the MacOS 9.2.2 yet: I really hope such upgrades fix my issue, because I can't afford a 4:3 resolution stretched to 1680 pixels and a 16:10 screen ratio.
    PowerMac G4 AGP 400 MHz   Mac OS 9.0.x  

    Hi, Marco and welcome to Apple Discussions. I can't
    find any useful information on LG's website about how
    much VRAM is necessary to support your monitor's
    native 1680 x 1050 resolution in millions of colors,
    but I suspect it's more than 16MB. If you reduce the
    number of colors in the Monitors control panel to
    thousands, are you offered any higher resolutions or
    different aspect ratios? If not, your video card may
    be too old and inflexible to support your new
    monitor. I would call LG's tech support and ask.
    I don't believe there is any limitation in OS 9
    itself that would cause your problem.
    Well, I didn't try to downgrade the color depth, but I will try soon. In past times it was fairly easy to calculate the V-RAM needed to support some pixel resolution, but with all those gigabyted graphic boards, it seems hardly there's still a strict dependency.
    1680x1050 million colors needs theoretically only 6,7 MB...

  • Sun Ray 2 Screen Resolution with 16:9 Monitor

    Dear All,
    I'm afraid I haven't done anything with the Sun Ray servers for a while and am a little rusty. We're running SRSS 4.2 with SRWC 2.2.
    A user has purchased a 23-inch 16:9 monitor whose native resolution is 1280x720, however, this is not listed as an option when I run utresdef. What is the best way to go about making this available please?
    Many thanks.
    Chris

    user13047448 wrote:
    ... now if i moved to Sun Ray 3i. it is not automatically adjusting. i am getting small screen.It would have been better to start a new forum thread for this topic.
    Anyway, what you're seeing is the expected behaviour. The Sun Ray 3i has only one, fixed resolution. That's 1920x1080. If you hotdesk an existing, smaller desktop to a Sun Ray 3i then that desktop will occupy only a portion of the 3i's screen.
    If you're using the latest Sun Ray software you can use the 'xrandr' command to resize the desktop. If you want to do this then you must make sure that the desktop is initially created with the largest dimensions that you will need during the lifetime of the desktop. In this case it sounds like that will be 1920x1080. Use 'utxconfig' to set the desktop to start with these dimensions. Then when the desktop is displayed on a smaller monitor you can 'xrandr' its size down to fit the monitor -- or you can leave the desktop at its full size and let the Sun Ray automatically pan to show the region where the mouse pointer is.
    The "Resize and Rotate" X extension (which is what 'xrandr' uses) is relatively new and some applications don't understand it, so depending on what applications you're running you might see some strange behaviour when you use it.
    OttoM.
    Disclaimer: I work for Oracle, but I do not speak for Oracle.

  • Locking Screen Resolution with KVM

    I have a MacBook Pro 15" running 10.4.8. I have a Iogear DVI KVM attached to the DVI port. The monitor attached to the KVM is a Gateway FPD2485W 24" LCD with optimal resolution of 1920x1200. The Mac performs wonderfully at this resolution.
    The problem I have is that when I switch away from the Mac with the KVM for more than a moment and then switch back, the Mac reverts to 1024x768 with a "KVM Monitor" profile in the Display Prefs. If I press "Detect Displays" after switching back, it once again properly recognizes my Gateway and then switches to the correct 1920x1200 resolution.
    Is there any fix for this? Is there any way to "lock" the DVI port resolution somehow, or maybe to modify the "KVM Monitor" profile so it allows 1920x1200 resolution as well? Any other options to fix this? It is annoying to have to have the Mac detect the monitor and maximize my windows every time I switch back to it.
    Any help is appreciated!
    T.

    I'm sorry, I've been investigating this as well. I use an ioGear KVM with VGA, the one that's shaped like the Mac mini I use it with. It has gotten worse. I find that I simply have to turn off sleep altogether, or else I find I'm switching to a blank screen on the mini. Sometimes I solved the problem by touching the sleep button and then waking it up. It seems to be in a forgetful coma.
    Other irritations: if I'm away from the mini for a while, when I go back, there is the Bluetooth "wizard," looking for the USB keyboard and mouse. When I'm running Windows in Parallels, the problem is worse, freezing up Windows.
    By turning off sleep, I've ameliorated the problem greatly. But I still will return to, in my case, not a 1280x1024 screen, but 640 x 480. Then it blacks out, and when it returns with my default setting, windows are only half as high: the desktop may be 1280x1024, but Safari looks like 1280x512. Grr.
    PowerMac G5 Dual 2.0   Mac OS X (10.4)  

  • Poor external screen resolution with macbook pro retina

    Hi guys, pretty frustrated but i hop you can help
    i have a mid 2013 macbook pro retina 15inch. i've downgraded in screen size from my imac 24inch. i purchased a 32inch lg smart tv to use as an external monitor but the resolution is horrific. i thought i could get myself a lot of screen retail space but it only seems to run in 1080p and everything is far to large and blurry. i'm connecting using HDMI. i've tried different colour profiles, i have tried using this script in terminal that i found to turn on font smoothing for all monitors but it doesn't work
    defaults -currentHost write -globalDomain AppleFontSmoothing -int 3
    any one know what i can do? i'm truly gutted atm

    Something that's running on your machine (or something that's connected to it) is preventing it from sleeping when you close its built-in display. It should sleep and stay asleep as soon as that display is closed, unless you are running it in clamshell mode:
    http://support.apple.com/kb/HT3131
    Does the computer sleep properly when you close its display if the external monitor is not connected to it? Does the monitor have a USB cable that connects to the computer, in addition to its video cable?

Maybe you are looking for

  • Job Close

    Hi, Does anyone know what do the params "PRED_JOBNAME" & "PRED_JOBCOUNT" in FM JOB_CLOSE do when supplied with a job name &  count in the respective field values of the job whcich is executed before the former. Is the FM JOB_CLOSE specific to some au

  • How can I transfer a movie I downloaded from my iphone to my computer

    How can I transfer a movie I downloaded from y iphone 4 to my computer

  • Home Sharing - Internet Usage

    Will Home Sharing have any effect on my internet usage (data) at all? If so, how much will it use?

  • Error Blank spaces smartforms

    Hello, I have an smartform who recibes a table of char255 lines. The only thing I do is a loop over it and show each line. My problem is I have some lines with a lot of blank spaces (for example"01                    7,50     10,30") and on the scree

  • Error in 0ic_c03 report

    Hi experts, We are using cube 0ic_c03 for materials movement. today after loading requests we found that some of the materials are having differnet stock quantity compared to r3. we find that there is a huge diffence.. HAVE ANYONE COME ACCROSS THE SA