FIELD LAYOUT IN FB70

hello,
  can anyone let me know how to arrange and move the order of the field column in FB70 t- code in the line item section . I want to be able to see the fields in the certain order from left to right.
Thanks very m

Hi
For this you have a small tab on the RHS of the line item headings called configuration.
just makeinvisioble the fields you don't want and do the required
Regards

Similar Messages

  • Importing form field layout from one form to another ?

    I often create forms in both English and French. Many are long and complicated and I have to create them all individually. Is there any way I could use the form field layout from one form, for another form? That would be fantastic.

    Sure. To replace the underlying page contents and retain any fields, document-level code, links, etc., select: Document > Replace Pages
    you will likely have some tweaking to do to some field positions.

  • Input Field Layout - Documementation For Various Address Cleanse Engine

    Hi All,
    Where I can get a documentation for input field layout for various address cleanse engine available in Global Address Cleanse transformation:
    1. Australia
    2. Canada
    3. EMEA
    4. Global Address
    5. Japan
    6.USA
    Thnaks,
    Amit

    Hi,
    Thanks for the reply.
    I meant that both usa and germany address has only street and country information and without other information.
    And of cos without sufficient information, global address cleanse would not be able to correct it.
    The difference i am having is that, after global address cleanse, the PRIMARY_NAME1 field of the output field of the germany record is filled up as what we gave for the input However, the PRIMARY_NAME1 field of the output field of the USA record is blank.
    Both records are of status info code 2000 (Unable to identify locality, region, and/or postcode information on input. )
    So the question is that, if the USA engine is not able to cleanse the data, would it map the input street field onto the output PRIMARY_NAME1 field? Or would it give a blank PRIMARY_NAME1 field?

  • Header Fields Layout- Hierarchy of Fields is not proper in Order Proposal

    I have used the BADI  /FRE/IF_EX_UI_RWB_BADI_004~GET_OPTIONAL_HEADER_FIELDS to set the visibility and hierarchy of fields .
    Currently the layout I am getting is as follows
    1
    2
    3
    4
    The desired layout is as follows
    1  2
    3  4

    You can get Top-of-page easily by using the following code.
    DATA: it_list_top_of_page TYPE slis_t_listheader,
              it_events TYPE slis_t_event,
              gs_layout TYPE slis_layout_alv,
              lwa_line TYPE slis_listheader.
    FORM list_header USING lt_top_of_page TYPE slis_t_listheader.
      lwa_line-typ  = 'S'.
      lwa_line-key  = text-105.
      CONCATENATE sy-datum+6(2) '.'
                  sy-datum+4(2) '.'
                  sy-datum(4) INTO lwa_line-info.
      APPEND lwa_line TO  lt_top_of_page.
      CLEAR lwa_line.
      lwa_line-typ  = 'S'.
      lwa_line-key  = text-107.
      lwa_line-info = sy-uname.
      APPEND lwa_line TO  lt_top_of_page.
      CLEAR lwa_line.
      IF gt_merge_01 IS INITIAL.
        ld_linesc = 0.
      ENDIF.
      lwa_line-typ = 'S'.
      lwa_line-key = text-108.
      lwa_line-info = ld_linesc.
      APPEND lwa_line TO  lt_top_of_page.
    ENDFORM.                    "list_header
    *&      Form  top_of_page
          text
    FORM top_of_page.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = it_list_top_of_page
    ENDFORM.                    "top_of_page
    PLZ REWARD POINTS IF HELPFUL.....

  • Form Field Layout-Group Not Working

    I have LiveCycle 8.0 and when I select multiple text field to group them the group menu item in the layout menu is grayed out.  I've selected items by CTRL-click, lasso and no method works.  Please help.  Thanks, Roy

    you want to email it and I'll look and/or group the fields?
    [email protected]

  • Text Field layout/size issues

    Has anyone else noticed that when you add a text field component onto a layout, the view of it inside of JSC2 is not how it appears in browser? For example, I am staring at a JSC2 screen where the bottom of the line of text(label) aligns with the bottom of the text-field. However, once in the browser, the text field is a good amount larger (reader below) the label's bottom. From exploring, it seems like the text-field gains an extra grid size when translated from JSC2 to web. (My grid is set to 5 px, and the text-field only aligns once I make it 1 grid space too small). Is this the case? Possibly known bug, and is there any solution other then just make all of the text fields too small?
    Thanks

    I have a similar problem, and I think it is a bug to. The IDE display of a text field is about two times the size of the actual size of the text field displayed in the browser. I tried both IE 6.0 and Firefox and the result is the same, so it is not a browser specific issue.
    I have to set the columns attribute of the text field almost twice as big big in the IDE display to get half as much in the browser. Overall it is irritating since my design view looks like my text fields are over lapping other components when that is actually not the case when I deploy it.

  • Can 'Available section' in Field layout for account page layout renamed ?

    I have created custom page layout for 'Account ' where in I have added some custom fields for capturing more specific data of account.
    I would like create 'Account installed data' simillar headers available as 'Key Account Information:','Account Sales Information' in account page layout.Is there any possibility of renaming 'Available section'?

    santoshpatil, click on Account Layout, then just to the right of Edit you see a down arrow click on it then choose "Edit Sections".

  • Dynamic screen field layout - ABAP webdynpro

    Hi,
    I am rather quite new to ABAP webdynpro - one of my requirements is that based on a Custom table (so to say a custom built customizing table) I need to display fields - the Customizing table could say that for region America - we need the following fields to be supressed, the same set of fields for Japan could be Mandatory, and for Latin America could just be display only.
    Is there anyway this could be acheived in Webdynpro (ABAP) - I presume that the supressed fields for America region will not be displayed but instead the common fields for America and Japan would be out of sync as far as screen layout is concerned. An ideas or guidance on how to accomplish this would be greatly appreciated.
    Regards....

    Hi,
    you can loop on your table which gathers all the fields in it, add an attribute to your
    table stating the required or not parameter and adding it to the 'state' parameter in
    the new_inputfield method.
    In the Wiki I added a page for dynamic UIelement creation based on DDIC properties
    (wiki is down, so i don't have a link to it)
    or you can visit these logs by Thomas Szues:
    <a href="/people/thomas.szcs/blog/2005/12/28/dynamic-programming-in-web-dynpro-abap--introduction-and-part-i-understanding-ui-elements:///people/thomas.szcs/blog/2005/12/28/dynamic-programming-in-web-dynpro-abap--introduction-and-part-i-understanding-ui-elements
    <a href="/people/thomas.szcs/blog/2006/01/03/dynamic-programming-in-web-dynpro-abap--part-ii-handling-viewelements:///people/thomas.szcs/blog/2006/01/03/dynamic-programming-in-web-dynpro-abap--part-ii-handling-viewelements
    grtz
    Koen

  • Sales Order: Item Field Layout

    I would like to change the order in which fields of Sales Order Item display in. Basically move some fields forward so client does not need to scroll so far to right to maintain for example Order number. Is there a place in config where you can control the sequencing of fields for the Order line items?

    You can create the screen variant as mentioned , using SHD0. Activate the variant.
    If you do not want to display the changes for all transactions , then without activating the variant, assign it to the order type which you want these changes to be displayed. For example for OR order type. Assign the variant in Order type configuration (VOV8 T Code) > Transaction flow > Variant .
    Regards
    Sai

  • Modify screen field layout in MIRO - Item level

    Dear All,
    I would like to know if I can change the field sequence in MIRO transaction at the item level. I want to move the Purchase Order number field next to the item field in MIRO and this needs to be premanent whenever I create a new invoice in MIRO.
    This sort of a change is possible in ME21N by creating a new variant through the configuration icon in ME21/22 or 23n at the line item level. I want to know if a similar setting is possible in MIRO, if so please guide me.
    Thanks and Best Regards
    Badrinath Murali

    Hi,
    Have you tried to carry out the following steps?                                                
    1- Transaction OLMRLIST                                                                         
    2- Screenvariant        7_6310                                                                  
       Programm             SAPLMR1M                                                                
       Dynpro               6310                                                                    
    3- Click button 'With Processing'You get transaction MIRO                                                                               
    4- Enter the invoice date and click Enter-Button.                                               
    5- In screen 'Confirm Screen Entries' check the 'Adopt column reference'                        
    and 'Adopt column width'. Click 'Exit and Save'                                                 
    6- Enter 'Save'.                                                                               
    7- Check and activate the screen variants: Click the button 'Check' on                          
    the main screen of Transaction 'OLMRLIST'. Select the screen variants                           
    on coming screen and click 'Adjust and Save'                                                                               
    If after reviewing the above steps you are still having problems                                
    viewing both display variants in MIRO, please take a look at note                               
    372776.
    Best regards
    Erika

  • Alter screen field layout in MIRO - Item level

    Dear All,
    I would like to know whether I can change the field sequence in MIRO transaction at the item level. I want to move the Reference Doc field (GRN No)  next to the item field in MIRO and this needs to be premanent whenever I create a new invoice in MIRO.
    This sort of a change is possible in ME21N at the line item level. I want to know if a similar setting is possible in MIRO, if so please guide me.
    Regards
    Karthikeyan G

    Can anyone kindly updated on this pls........
    Karthik

  • Additional field layout for O7Z4

    Hello my fellow colleagues,
    My client requests fields which exist in the structure RFOPS (Open Item Data for Clearing Transactions) such as (WRBTR - Amount in doc curr).
    My problem is that I do not have the field available in transaction O7Z4, do you have any idea ? Is it possible to add fields which are not proposed in standard ?
    Thank you for your answer.

    Hi,
    You can add the fields for which the data type is C and N (Example: Document header text). For data type P (WRBTR) you need enter manually in screen, for this take help from ABAPer.
    We have done for BKTXT (Document header text).
    For this added in 3 tables T021K (with str. RFOPS), BSIS and RFOPS.
    After adding above tables you need to ensure that field is added/visible mode in the administrator settings of F-03. This you can see a "configuration" button left side of open item processing screen of F-03.
    Please refer below notes.
    647773/1228601/493238/300929/209774/48814.
    Regards
    SM

  • Address field configuration for one-time customer FB70

    Hi,
    I understand there is more address field entered (street2, street3, street4) during the sales order creation VA01 for one-time customer. However, i hardly find the configuration to open more address field for one-time customer if user raise FI-invoice via FB70. Do you have any idea?
    Thanks.

    Thanks Mauri.
    I understand that address field of FB70 are linked to BSEC table whereas address field of sales order creation (va01) for one-time customer, the latter linked to ADDR1_data and having the Street2, 3, 4 provided in the pop-up screen.
    I am wondering is there anyway to have more address field for the FB70 since my client will have longer 'street' name so that the dunning will take place properly for one-time customer.
    Thank you so much

  • Unable to move POWL Universal View/Layout  by Transport Request

    Hi Experts,
    We have SRM7.0 ....This is a extenstion/refence to below thread.
    Is SRM 7.0 POWL setting possible at Client or global level ?
    In Config Client 610 I created some Layout in the POWL_QUERY ..so that it will be accessable to all users... and give name "Global" ( 6 Char) to the layout or View in webbrowser..given there TR  ( Customization) Number..... and same name given in the GUI srceen POWL_QUERY  in field "Layout".
    Thne I moved ths  TR from 610 ( Config Client) to 612 ( DEV Client)......and executed report POWL_D01 for relevant APPL ID in 612...but this  created Universal View/Layout is not appareing in the SRM web browser... I saw some reports ...POWL_D08...but it does not exist in system.... I also executed report POWL_D08 in Config Client with TR and moved...but no use...
    http://wiki.sdn.sap.com/wiki/display/WDABAP/POWL
    ( I saw relevant report POWL_D08 - Delete Admin Layouts  on above link , but that is not exists in SRM system )
    Can any one please suggest me on this ?
    Thanks
    NAP
    Edited by: NarendraPatil on Dec 13, 2011 6:15 PM

    Solved

  • Field width in Crystal Reports 10 Standard Edition

    I have a text field in an Access table of 50 chars. When I place that field on a report the default width in design view is less than 50, showing a given number of "X"s. I widen the field beyond the "X"s but still the full content of the field is not displayed in preview mode. For instance I have loaded the field with 50 chars and the 50 chars are not displayed in preview. Is there a way to tell Crystal Reports to default the width of the field in design view to the length of the field in Access? I am a former DOS programmer, where we would specify in the code the width of the display in a form or report. I have always been bothered by the GUI interface because the design interface does not default to the field width and therefore data can be hidden. Professionally, I missed the switch from the DOS interface to the GUI interface. This issue with field layout has always troubled me.  Also in the Dummies book (and in CR Help) there is a statement to the effect that CR 10 "automatically adjusts the fields displayed to match the field sizes you chose, and spaces them out proportionally". I see no indication of this. Thanks.

    Just to clarify, if I widen the field quite a bit, way beyond the "X"s I do eventually see the 50 chars in preview mode. But for some reason CR puts down 40 "X"s for a field of length 50. And then I have to just play around with the width until I can see the 50 chars on the report. Am I doing something wrong or is there a setting that needs to be adjusted? I guess I am hoping to see the number of "X"s be equal to the length of the text string.
    I did learn about "can grow". When I connect to Excel CR puts down 40 "X"s and I have to fudge with the width until I see the full 50 chars.
    With the GUI interface is the developer thinking more in terms of inches vs. number of characters? Like I said I am a dinosaur and I struggle with detail.

Maybe you are looking for

  • Sharing a stereo track in Mono

    Hi - I just upgraded to 10.0.2. In the previous version of Garageband, I was able to specify that when I wanted to share my track to iTunes, I could have it export in mono. I have to play my track on speakers that aren't reliably set up to support go

  • Can you help? -- Server don't sends messages.

    I have this program, a server to transmit text files (I mean: it's suppose to that, that doesen't means that it does it!), but when the server should send messages nothing happens! I cannot understand why, can you? Thanks. Here is the program: import

  • Alert for AS2 Error on send

    Hi, We would like to setup some alerts for SAP outbound messages via AS2. When the Message is not able to be delivered to the customer we do get an "error on send" message in Seeburger Message Monitor. and the channel fails in the comm channel monito

  • To make different colours for the columns of ALV report in Grid display.

    Hai Friends,                    I have created an ALV report in grid display method by using the call function reuse_alv_grid_display. I have obtained the report.In that report i want to change the colour of each column.Plz provide the answer with a

  • Error 200302 in DAQ-mx global virtual channels when reading 0Hz

    Hello, I am attempting to calculate flowrate via frequency (by counting the pulses for a given time). The frequency read seems fine when the operation is running. However, when there is no flow (only tested by reading the channel with the operation o