In MM03, can you configure the display layout of the "document data" tab?

In MM03 on the document data tab, we would like to shorten the length of the "document" column so that the Status field can be viewed on initial screen without scrolling to the right.  Is it possible to reconfigure this view?

Hi Heidi,
to change the layout of the linked documents in transaction MM03 please go to the additional data tab and then please use the small configurations button (small table icon on the right side) and follow the below instructions:
1.  Configure the table control as you want it.
2. Click the settings button at the top of the table control.
3. Enter a name and chhose "Create".
4. If you want this variant to appear whenever the table control appears, set the "Use as default setting" option.
5. Choose "Copy" to close the dialog box.
If you want to change how existing variants are used, or want to reactivate the basic setting, choose the corresponding settings from the list boxes and choose 'Copy' to close the dialog box.
Best regards,
Christoph
P.S.: Please reward points for useful information.

Similar Messages

  • HT3382 With a MacbookAir (mid-2012) using a mini DisplayPort to VGA adapter plugged into the Thunderbolt port, can you configure the external monitor to FULLY display in portrait mode yet keep the built-in display in landscape mode?

    With an 11"-inch Macbook Air (mid-2012) using a mini DisplayPort-to-VGA adapter plugged into the Thunderbolt port:
    Can you configure an extended desktop with an external monitor (20") displaying full portrait mode (1200 x 1600 resolution) and keep the built-in display in landscape?
    I'd like to see something like
    External monitor / Built-in display

    Yes, I can't see why not.
    Just give it a try and report back if you have a problem.

  • Can you run windows via bootcamp on the macbook pro retina display 2.5GHz dual-core Intel Core i5 512GB flash storage1

    Can you run windows via bootcamp on the macbook pro retina display 2.5GHz dual-core Intel Core i5 512GB flash storage1

    http://www.apple.com/support/bootcamp/

  • If i dont use the display when using the GPS and only listen to the voice instructions can that also makes the iphone overheat even if you dont use the display

    because when i use the gps app in my iphone 4s in the car my iphone gets overheat so
    if i dont use the display when using the GPS and only listen to the voice instructions can that also makes the iphone overheat even if you dont use the display
    will that help?

    When you use your GPS does your iPhone get hot enough to shutdown?  The reason I ask is that I have run my GPS app with the screen brightness set to near max connected to power for hours.  My iPhone got hot, but didn't shutdown.

  • How can you change the display size on the task bar

    how do you change the display size on the task bar

    If, however, you want to change the size of the display of the menubar, meaning make the icons and text larger, there is no way to do that directly other than to change the resolution of the screen.
    You can change the as-viewed size of that temporarily by using either -
    • Mouse zoom - if you have a Magic Mouse (Apple wireless mouse), hold down the Control key and use the scroll up and scroll down finger gestures on the mouse.
    • Zoom - go to System Preferences > Universal Access > Seeing and turn on Zoom. You can also use the noted keyboard shortcut to enable/disable this Zoom feature.

  • Can you have a PDF fit on the viewer's screen automatically when exporting from InDesign CS4?

    Can you have a PDF fit on the viewer's screen automatically when exporting from InDesign CS4?

    If you were to upgrade to InDesign CS5 or CS5.5 and if you exported as Adobe PDF (Interactive), you could set the View settings for Page Layout and Zoom.
    While, as Jongware points out, its possible for individual users to override that option (Preferences > Page Display > Default Layout and Zoom), the number who will actually do that is actually very tiny.

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_error = 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.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • Can you post Notes (Display Note) at a higher level of aggregation than CVC

    I am only able to post Notes with the Display Note at the CVC level.  ALL PRODUCTS ALL CUSTOMERS and I receive the error message "No Notes can be processed in the current selection".  ONE PRODUCT ALL CUSTOMERS OR ALL PRODUCTS ONE CUSTOMER and I get display only no input (greyed out).  I can post notes at the CVC level.  Is this the only level you can post notes.

    HI Kevin ,
    Yes there are restrictions on the levels you put the note and the level you can edit the notes.and hence those will be greyed out at certain levels .
    For more details please refer my earlier post [No notes can be processed in the current selection - Error Msg|Re: No notes can be processed in the current selection - Error Msg.]
    Regards,
    Digambar

  • Can you get your photos back after the iphone does a restore

    Can you get your photos back after the iphone does a restore?

    Actually, wrong.
    The tech support people can help with Playbook purchased apps. If you've called and they said they cannot, you were lied to.
    Even in the link you posted, in #10, it states clearly "App Refund related matters are handled by BlackBerry Customer Care." That, my friend is accessed by the support number. Again, if you were told otherwise, you should inform them of such or ask for a manage/supervisor.
    And, you don't have a "Partner ID" because you are not a "Partner". The section you're referring to applies to mobile providers, which are the Partners.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can you configure mail settings in process chains?

    HI Experts,
    please let me know how can you configure mail settings in process chains?

    Dear Suman,
    To initiate the mails we first need to have SMTP connection. To check the same go to so00 and try sending mails to ur ID. If is successful it states that u have the SMTP access.
    To create mails to Process chains:
    Right Click on the Process varient select the Create Message in the context menu.
    Select the type of mail i.e for successful, Error, Anyways.
    Then follow the screens.
    Note: The recipient type should be Via Internet.
    Hope this helps u.
    Regards,
    Kishore.Pulla

  • Problem with iOS7 : I have a message on my screen "This phone is not registred as a developper phone..." or something like that, can you help me because I download the iOS7 Beta even if I was not a developper. Thank you very much if you help me.

    Problem with iOS7 : I have a message on my screen "This phone is not registred as a developper phone..." or something like that, can you help me because I download the iOS7 Beta even if I was not a developper. Thank you very much if you help me.

    JaillotJb wrote:
    I download the iOS7 Beta even if I was not a developper.
    if you downloaded it and are not a developer, then we are not allowed to help you here.  sorry.

  • Text editing  - can you add text editing options on the 'in-browser editing'

    Text editing  - can you add text editing options on the 'in-browser editing' tool?

    You can only replace existing content, not edit the page structure. Refer to the respective help sections.
    Mylenium

  • Hey, I'm fixing up a Power Mac G5 for a friend, he gave me a Cinema HD 30' display to use with it. My problem is, the Power Mac G5 doesn't have a place where I can plug in one of the display's cords. the cord is called a "DC power (24.5 V)"

    So the Cinema HD's DVI goes in fine, I don't remember what video card is in the computer, all I know is it's Nvideo, it's old, only like 256MB, but does have two DVI ports. Anyway, then the display's firewire and USB can go in. But there's this weird thing, had to do some research to figure out what the connector/cord is called. it's the size of a USB, rectangular with oval sides. It's called a "DC power (24.5 V)" I'm like, what the heck is this thing? it won't go into the computer anywhere, I'm assuming I need some sort of adapter?? Help please, if I need an adapter or video card, links would be extremely helpful.
    Best regards,
    Poly

    I don't believe so, I have a DVI to ADC adapter I was messing with, my DVI from the display plugs into the adapter, then i grap the adapter's ADC connector, and it does not go into my Power mac G5's video card. So that confirms that the display is DVI, and works with my DVI video card perfectly. It's just the one wire/connector that apple calls the "DC power (24.5 V)" that won't go in anywhere. Basically the display has a DVI connector, firewire connector, and USB, which all go into my Power mac G5 fine. However, it has another wire with a connector that won't go in anywhere, from what I've read off the teach specs of my Cinema HD 30' that final connector/wire is listed as "DC power (24.5 V)"
    So my problem is with that. I have NO idea what it does, or goes into. When I google "DC power (24.5 V) Apple" it comes up with weird images none of which have that connector. So I'm just so. Confused.

  • Can you have two itunes accounts on the same computer?

    Can you have two itunes accounts on the same computer and if so how do you access them without syncing each others music?

    Yes. Use separate iTunes libraries(launch iTunes with the Shift(Windows) or Option(Mac OS X) key held down as needed), or different user accounts on the computer.
    (100648)

  • Can you have 2 itunes accounts on the same computer?

    can you have 2 itunes account on the same computer?

    Yes, go to your Windows Control Panel and create another user,log into it, run iTunes and it's ready to rock and roll.
    Transfer your content over via USB Key, Dropbox or external drive.
    Heck the best thing would be to File > Backup library to disk with a bunch of DVD-R's, therefore you get a backup in the process!
    Good Luck

Maybe you are looking for

  • DNS inconsistency when switching from corporate to external network

    I have a problem I've been tracking for months, and just can't seem to figure out. I'm trying to access my corporate website, www.company.com (for instance). From inside of my corporate network, this resolves to an internal IP address, and works fine

  • Error in BW Report

    Experts,    I am executing BW report in Bex ,When i execute After entering in the parameters ,it is giving Application error messages  . Error an exception with typeCX_SY_DYN_CALL_ILLEGAL_TYPE Occured ,                                                

  • Invalid security code on new card

    New credit card keeps coming up invalid security code

  • New mail with no content received in year 1969????

    Recently ive gotten maybe 20 or so emails with no subject, content or sender that have a received date as some day in 1969 which clearly didn't happen. I can't delete these and they won't go away. Any advice or suggestions if what they might be? I us

  • I-Cal help

    I am turning in my MacBook to my school district (retiring!). Have Mobile Me and Mac at home as well as i-phones all synced to my i-cal. How do I remove my calendar from my work computer but keep it on my home Mac and my i-phone and my husband's i-ph