How do you edit a field in the Substitution Table GB01?

I have a field in GB01 called BEXCLUDE and it is set to X.  I need to change it to space.
There isn't a view for the table and the maintenance is set for restricted - which is worthless - SE54 will not all a table maintenance generator used without an access code for a repair - I do not want to do any repairs.
HELP!!!!
Thanks and as always - rewards for help.
Scott

Hi,
I think you cannot change from table GB01 If a field is excluded in table GB01 and you include the excluded field in GB01C, the field will not be included.
Please check this link
http://help.sap.com/saphelp_pserv463/helpdata/EN/5b/d233e843c611d182b30000e829fbfe/content.htm
May be this will be useful
PS : I am not 100% sure about this.

Similar Messages

  • How do you edit a field to either be HH:MM or the word 'All'

    I have a form field where the user can either enter the time (HH:MM) in 24 hour format or the word All (case insensitive).
    I have the HH:MM validation working fine, but don't see how to also add in the user to be able to enter the word 'All'.
    Here's what I have:
    <span id="theTime">
        <stripes:text name="filterSelectedProcessTime" id="filterSelectedProcessTime" maxlength="5" />
        <span class="textfieldInvalidFormatMsg">invalid format: must be HH:MM or ALL</span>
    </span>
    <script type="text/javascript">
        var datex = new Spry.Widget.ValidationTextField("theTime", "time", {format:"HH:mm", isRequired:false, validateOn:["blur", "change"], useCharacterMasking:true});
    </script>
    Any help will be greatly appreciated.

    It's an internal app so I can't get you access thru our firewall.
    Wish I could, but can't.
    Thanks for all your help so far.
    I can see all kind of uses for this in our forms, so its just curious why it matters where it's placed.
    If I put the form JavaScript before the form, it doesn't even recognize the custom_validation and doesn't do any Spry processing.
    Without the custom_validation function involved, it works fine.
    Here's what I have in the form:

    span id="theTime">  
    <stripes:text name="filterSelectedProcessTime" id="filterSelectedProcessTime" maxlength="5" />  
    <span class="textfieldInvalidFormatMsg">invalid format: use HH:MM or ALL</span>  
    </span>
    After the ending form tag, I have:
    < script type="text/javascript">
     function custom_validation(value, options) {var 
    theLength = value.length; 
    if(/^all$/i.test(value)) {return true 
    }else if 
    (theLength != 5) {return false 
    }else 
    {return 
    Spry.Widget.ValidationTextField.ValidationDescriptors.time.validation(value, options); 
    var 
    datex = new Spry.Widget.ValidationTextField("theTime", "custom", {format:"HH:mm", isRequired:true, validateOn:["blur", "change"], validation: custom_validation});
    </ script>

  • How do you add a field to the address of a contact?

    YYou used to be able to add an extra line to an address. I cannot now do that. How can you with iOS 8?

    Go to Contacts>Preferences>Templates, where can

  • How do you add an image to the Light Table more that once

    The Long/Luna book says this is possible. In the browser there is a red number in the corner of my images showing "1". Both of these things suggest that adding an image more that once is possible but I can't figure out how to do it.

    I checked this further. Long/Luna say that you can add an image to a Light Table more than once on p266 of that book. Although they don't say how to do so.
    Bagleturf's tutorial about the Light Table say's that's not possible.
    "Two men say they're Jesus, one of them must be wrong" - Dire Straits

  • HT201317 How do you edit photo's that are in the icloud. They all have a lock on them

    How do you edit photo's in the icloud. There is a lock on every photo there.

    Your Mac will only show you the images in the Photo Streams. To see your iCloud Photo Library (Beta) use the Photos.app on the iCloud webpage.
    https://www.icloud.com
    or,if you want to upload to iCloud Photo Library (Beta), use
    https://beta.icloud.com
    When the Photos.app for Mac will have been released early next year, you will be able to browse iCloud Photo Library (Beta) from the Photos.app on your Mac.
    See:  iCloud Photo Library beta FAQ

  • Coloring a field in the internal table

    Hi all,
    How can I color a field in the internal table knowing that I'm developing a classic report.
    Thanks in advance.

    hi,,,
    check this code.
    *-----TABLES DECLARATION
    tables : kna1,                     "Customer Master
           vbak,                     "Sales Document Header
             vbap,                     "Sales Document Item
             sscrfields.               "Screen Field Table
    &               D A T A   D E C L A R A T I O N                       &
    data : begin of it_kna1 occurs 0,
            kunnr type kna1-kunnr,      "Customer Number
            land1 type kna1-land1,      "Country Key
            name1 type kna1-name1,      "Name
            ort01 type kna1-ort01,      "City
           end of it_kna1.
    data : begin of it_kna2 occurs 0,
            kunnr type kna1-kunnr,      "Customer Number
            land1 type kna1-land1,      "Country Key
            name1 type kna1-name1,      "Name
            ort01 type kna1-ort01,      "City
           end of it_kna2.
    data:  begin of it_vbak occurs 0,
            vbeln type vbak-vbeln,      "Sales Document
            erdat type vbak-erdat,      "Date
            ernam type vbak-ernam,      "Name of Person
            auart type vbak-auart,      "Sales Document Type
           end of it_vbak.
    data:  begin of it_vbap occurs 0,
            vbeln type vbap-vbeln,      "Sales Document
            posnr type vbap-posnr,      "Sales Document Item
            matnr type vbap-matnr,      "Material Number
            matkl type vbap-matkl,      "Material group
           end of it_vbap.
    data: v_count type int4,           "Current Row Index
           v_line like sy-lisel,        "Contents of selected line
           v_kunnr like kna1-kunnr.
    &                S E L E C T I O N  S C R E E N                       &
    selection-screen begin of block b1 with frame title text-001.
    selection-screen begin of line.
    parameters : rb1 radiobutton group g1 default 'X'.
    selection-screen comment 5(20) text-002 for field rb1.
    selection-screen end of line.
    select-options : so_kunnr for kna1-kunnr obligatory.
    parameters : p_hits(3) type c.
    selection-screen begin of line.
    parameters : rb2 radiobutton group g1.
    selection-screen comment 5(20) text-003 for field rb2.
    selection-screen end of line.
    parameters : p_file like rlgrap-filename default 'c:\test'.
    selection-screen pushbutton /33(10) custl user-command push1.
    selection-screen pushbutton 58(10) custd user-command push2.
    selection-screen end of block b1.
    &                  I N I T I A L I Z A T I O N                        &
    initialization.
      move 'LOAD' to custl.
      move 'DISP' to custd.
    &                  A T  L I N E  S E L E C T I O N                    &
    at selection-screen.
      perform validate_kunnr.
    &  A T  S E L E C T I O N  S C R E E N  O N  V A L U E-R E Q U E S T  &
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
        exporting
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
          field_name    = ' '
        importing
          file_name     = p_file.
    &              S T A R T  O F  S E L E C T I O N                      &
    start-of-selection.
      perform cust_details.
    &              S T A R T  O F  S E L E C T I O N                      &
    top-of-page.
      format color 3 intensified off.
      write :/02(25) sy-repid.
      write : 39(15) 'Page'(010), sy-pagno.
      format color off.
      format color 6 intensified off.
      format color col_heading.
      uline at :/1(60).
      write: /1 sy-vline,
              2 'Cust Number'(000),
              14 sy-vline,
              16 'Country'(007),
              25 sy-vline,
              26 'City'(008),
              42 sy-vline,
              43 'Region'(009),
              60 sy-vline.
      uline at :/1(60).
      format color col_heading off.
    &   T O P  O F  P A G E  D U R I N G  L I N E  S E L E C T I O N      &
    top-of-page during line-selection.
      if sy-lsind eq 1 or sy-ucomm eq 'VBAK'.
        format color col_heading.
        uline at :/1(60).
        write : /1 sy-vline,
                     2 'Docu No.'(011),
                     14 sy-vline,
                     16 'Date'(012),
                     26 sy-vline,
                     27 'Name'(013),
                     42 sy-vline,
                     43 'DType'(014),
                     60 sy-vline.
        uline at :/1(60).
      elseif sy-lsind eq 2 or sy-ucomm eq 'VBAK'.
        set pf-status space.
        uline at :/1(60).
        write : /1 sy-vline,
                     2 'Docu No.'(015),
                     14 sy-vline,
                     16 'Sales Item'(016),
                     25 sy-vline,
                     26 'Mat No'(017),
                     42 sy-vline,
                     43 vbap-matkl,
                     50 'Mat Grp'(018),
                     60 sy-vline.
        uline at :/1(60).
      endif.
    &  AT USER-COMMAND                                                    &
    at user-command.
      case sy-ucomm.
        when 'VBAK'.
          perform sales_item.
        when 'DELIVERY'.
          clear it_vbak-vbeln.
          get cursor value it_vbak-vbeln.
          set parameter id 'AUN' field it_vbak-vbeln.
          call transaction 'VA03' and skip first screen.
        when 'DISP'.
          perform display_basic.
      endcase.
    &      AT LINE SELECTION                                              &
    at line-selection.
      if sy-lsind = 1.
        set pf-status 'DDDD'.
        perform sales_header.
      elseif  sy-lsind = 2.
      case sy-ucomm.
        when 'PICK'.
        set pf-status space.
        perform sales_item.
        when 'DELIVERY'.
          clear it_vbak-vbeln.
          get cursor value it_vbak-vbeln.
          set parameter id 'AUN' field it_vbak-vbeln.
          call transaction 'VA03' and skip first screen.
        when 'DISP'.
          perform display_basic.
      endcase.
       PERFORM sales_item.
      endif.
    &  AT USER-COMMAND                                                    &
    at user-command.
      case sy-ucomm.
        when 'VBAK'.
          perform sales_item.
        when 'DELIVERY'.
          clear it_vbak-vbeln.
          get cursor value it_vbak-vbeln.
          set parameter id 'AUN' field it_vbak-vbeln.
          call transaction 'VA03' and skip first screen.
        when 'DISP'.
          perform display_basic.
      endcase.
    &      Form  CUST_DETAILS                                             &
    form cust_details .
      select kunnr
             land1
             name1
             ort01
             from kna1
             into table it_kna1
             where kunnr in so_kunnr.
      if sy-subrc <> 0.
        message 'SELECT VALID CUST NO' type 'I'.
      else.
        loop at it_kna1.
         v_count = v_count + 1.
          if sy-tabix < p_hits.
         IF v_count <= p_hits.
            move it_kna1 to it_kna2.
            append it_kna2.
          else.
            exit.
          endif.
        endloop.
      endif.
      if not it_kna2[] is initial.
        loop at it_kna2.
          write : /1 sy-vline,
                   2 it_kna2-kunnr,
                   14 sy-vline,
                   16 it_kna2-land1,
                   25 sy-vline,
                   26 it_kna2-name1,
                   42 sy-vline,
                   43 it_kna2-ort01,
                   60 sy-vline.
          uline at :/1(60).
        endloop.
      endif.
    endform.                    " CUST_DETAILS
    **&      Form  load_file
    *form load_file .
    *endform.                    " load_file
    **&      Form  disp_file
    *form disp_file .
    *endform.                    " disp_file
    *&      Form  VALIDATE_KUNNR
    form validate_kunnr .
      select single kunnr
                    from kna1
                    into kna1
                    where kunnr = so_kunnr.
    endform.                    " VALIDATE_KUNNR
    *&      Form  SALES_HEADER
    form sales_header .
    data : v_kna1(13).
    v_kna1 = 'IT_KNA2-KUNNR'.
    *get cursor line sy-lilli value v_line
    clear v_kunnr.
      get cursor  field v_kna1 value v_kunnr.
    v_kunnr = v_line+1(10).
      call function 'CONVERSION_EXIT_ALPHA_INPUT'
        exporting
          input  = v_kunnr
        importing
          output = v_kunnr.
      select vbeln
             erdat
             ernam
             auart
             from vbak
             into table it_vbak
             where  kunnr = v_kunnr.
      if sy-subrc = 0.
        loop at it_vbak.
          write : /1 sy-vline,
                   2 it_vbak-vbeln,
                   14 sy-vline,
                   16 it_vbak-erdat,
                   26 sy-vline,
                   27 it_vbak-ernam,
                   42 sy-vline,
                   43 it_vbak-auart,
                   60 sy-vline.
          uline at :/1(60).
        endloop.
      endif.
    endform.                    " SALES_HEADER
    *&      Form  SALES_ITEM
    form sales_item .
    data : v_vbeln(13).
    v_vbeln = 'IT_VBAK-VBELN'.
    clear it_vbak-vbeln.
    get cursor  field v_vbeln value it_vbak-vbeln.
      call function 'CONVERSION_EXIT_ALPHA_INPUT'
        exporting
          input  = it_vbak-vbeln
        importing
          output = it_vbak-vbeln.
      select vbeln
             posnr
             matnr
             matkl
      from vbap
      into table it_vbap
      where vbeln = it_vbak-vbeln.
      loop at it_vbap .
        write : /1 sy-vline,
                   2 it_vbap-vbeln,
                   14 sy-vline,
                   16 it_vbap-posnr,
                   25 sy-vline,
                   26 it_vbap-matnr,
                   42 sy-vline,
                   43 it_vbap-matkl,
                   60 sy-vline.
        uline at :/1(60).
      endloop.
    endform.                    " SALES_ITEM
    *&      Form  DISP_DOCU
    form display_basic .
      loop at it_kna1 into it_kna1.
        format hotspot on.
        write : /03 it_kna1-kunnr,
                 24  it_kna1-name1.
        hide it_kna1-kunnr.
      endloop.
    endform.                    " display_basic
    pls reward if useful
    regards,
    rekha

  • How do you edit out the date and time stamp from a photo

    How do you edit out the date and time stamp from a photo

    You can blur it out with retouch
    The built-in "Retouch" brush in "Edit" mode should suffice, if the background is mostly uniform, and if you set the size of the brush to slightly wider than the bar width of the letters. For example, in this picture I removed the year from the date (in the lower right corner) by using the "retouch" brush and following the contours of the letters. (the screen shot is from iPhoto '11, but iPhoto 9 should give similar results).
    Regards
    Léonie

  • How do you enlarge a picture in the edit workspace?

    how do you enlarge a picture in the edit workspace?

    ok I figured that out by incre
    asing the % on the lower left
    of picture

  • HT1438 How do you edit the content of i cloud?

    How do you edit the content of i cloud?

    The feature is not supported in Pages.
    See these earlier discussions of similar questions:
    Re: Compare documents in Pages as you do in MS Word
    Re: can you do document compare in pages, can you do document compare in pages
    Re: App to compare two pages files?
    Dale Gillard offers some useful comments in the last linked discussion.
    Requests for feature enhamcements or additions should be made via the Feedback channel. You'll find Provide Pages Feedback in the Pages menu in Pages '09.
    Regards,
    Barry

  • How do you edit the style and fonts of the twitter feed in MuseCC

    After you embed a twitter feed into your MuseCC website how do you edit the style and fonts of the feed to match the design and copy of the site to keep the branding consistent

    Thats not really easy..  maybe you find some informatione here: https://dev.twitter.com/discussions/11386

  • How do you edit photos with photoshop from the new  Photos app?  The edit in external editor menu item seems to be gone.

    How do you edit photos with photoshop from the new  Photos app?  The edit in external editor menu item seems to be gone.

    Tell Apple what additional features you want in Photos via both http://www.apple.com/feedback/macosx.html and http://www.apple.com/feedback/iphoto.html  since they don't have a feedback page for Photos as yet.

  • How do you erase your history on the search field?

    How do you erase your history on the search field ( the first page you swipe to, on the left)?

    Ah, I understand now. You don't want to erase the search history. You want to prevent search from accessing old data. The only way to do that is to restore the phone as new.

  • How do you make report selection variant the default selection varaint?

    Hello all,
    I know how to create a Selection Variant for reoprts and I know how to create a User Variable that defaullts field values for a specific user.  But can anyone tell me how do you have a specific Report Selection Variant Default for everyone?  I know this one is probably staring right at me but I'm not seeing it.  Your help would be greatly apreciated.
    Thanks,
    Dan

    Bhatia,
    That will only hold the data for that specific user.  You can also do that via "user variables".  What I would like to know is how do you get it to be the default for All users.
    I am investigating the possibility of using t-code SE38 and changing the Values on the existing variants to contain the default data we'd like to see.  I'd much rather create just one Variant per report and have that be the default variant. 
    Anyone have any ideas?
    Thanks,
    Dan
    Edited by: Daniel Goodhart1 on Oct 7, 2009 11:03 PM

  • How can we add additional fields to the BP Search RESULT screen?

    Dear Experts,
    How can we add additional fields to the BP Search RESULT screen so that the BP's being displayed in a search result show maintained values for the particular column/field?
    Thanks!!!

    Hi Laxman,
                           I got same requirement for ibase hierarchy.I want to add new fields in Ibase hierarchy AB.Do you have any idea regarding this.My requirement is that ,i want to dispaly a fields as a check box which display that this component is in under warranty or not by checking the box.Plz tell ,how can i add a new field in tree type context node.I add a new fields using AET ,but that is not available in that AB.
    Thanks
    Vishwas Sahu
    Edited by: vishwas sahu on Nov 17, 2009 1:51 PM
    Edited by: vishwas sahu on Nov 18, 2009 5:22 AM

  • How do I bring form fields to the front or back?

    I have a document with many form fields/push-buttons in order to create pup-up effects in an info graphic.
    So I use fields to create a mouse-over hot spot, and others that pop up. Now, of course, the hot spot must be in front (or on top), otherwise it gets distracted in it's mouse-over function by the popped-up object (image) that lays over it. (The result would look like a flashing effect, as you roll over the hot spot.)
    Now how do I arrange the fields?? Ich can arrange images and texts to come to the front or hide behind other objects. But in the form field editing mode there is no such option. Also it doesn't work to just cut and paste them, they re-appear in their former position, often behind the other fields.
    Please, help! Thanks, Peder

    Thanks, I will give it a try. To "recieve the focus" means being activated / hovered?
    Am 22.04.2015 um 18:49 schrieb George_Johnson:
    How do I bring form fields to the front or back?
    created by George_Johnson in PDF Forms - View the full discussion
    The tab order effectively sets the z-order, but if a field is not read-only it will be set to the front if it receives the focus.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7465780#7465780 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7465780#7465780
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in PDF Forms by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.
    ···)····•  Blixen
    werbliche Kommunikation
    Peder Iblher  .  Wichertstraße 16/17  .  10439 Berlin
    Telefon 030 - 250 400 401  .  Fax -409  .  Mobil 0160 - 93 81 58 60
    [email protected]  .  www.blixen.eu  .  www.facebook.com/blixen.eu

Maybe you are looking for

  • Suggestion for a new lenovo laptop

    sir ,      I live in Patna , Bihar . I want to buy a new lenovo laptop ranging under 35000 rupees. my requirments are as followes 500 GB  hard disk 4 GB RAM i3 4th generation processor DOS / windows but preferably DOS screen size 15.6'' strong and co

  • Changing Name in Finder & I lost  all of my photographs...sort of.

    Sequence of events 1.In my Finder my home folder is called Matthew (my real name) 2. This morning I renamed it to Matthew & Vanessa (my partners name) 3. This afternoon I opend Safari and noticed all of my bookmarks had gone and my homepage had rever

  • How can I install on mac?

    have contacted apple but they cannot get adobe flash an my computer.  Keep trying to download but although it finishes as downloaded it does not

  • LiveCycle Workbench ES2 crashing on Win 7

    I have installed LiveCycle workbench on my Win 7 PC. Every time I try to open a process in process designer, it crashes with messae 'Java(TM) Platform SE binary has stopped working'

  • Not able to enable Wiki etc. for Groups

    In the work group manager, I cannot select Wiki and Blog, etc. options for old and new groups. The drop down that says: "Enable the following services for this group on:" says only: "(None)" What do I need to do to get this to work. Every time I acce