I want VBELN field but this field isn't

Hai All,
I query is I am creating Generic DataSource for VBAK table . i want VBELN field but this field isn't
allowing to select, only hide field is allowing to select, how to select the VBELN field?
Thanks & Regards,
Suresh

Hi,
For your issue not seems the error correctly.
It may be because of system error not recognizing correctly.
You can edit this through Debugging also If you know how to edit the field VBELN and do.
OR
shutdown the system completely and rebuilt the Generic datasource once again on VBAK and see.
Already we have std. datasource, why don't you use the standard extractor 2LIS_11_VAHDR for VBAK.
Regards,
Anand Tej.

Similar Messages

  • When I try to convert my .pdf to Word, I get a sidebar that has fields for: the name of my pdf file, the type of file I want to convert to (In my case, Word), and a button that says "Convert".  My problem is that the "convert to" field isn't active.  I ca

    When I try to convert my .pdf to Word, I get a sidebar that has fields for: the name of my pdf file, the type of file I want to convert to (In my case, Word), and a button that says "Convert".  My problem is that the "convert to" field isn't active.  I can see the words "Microsoft Word" in pale gray, but when I click on the field, nothing happens.

    You have posted in the wrong forum.  Try posting in the forum for the product you are trying to use.
    Here is a link to a page that has links to all Adobe forums... use the drop down list to see all.
    Forum links page:
    https://forums.adobe.com/welcome

  • ALV List: extended field isn't filled

    Hi experts,
    I've made a alvlist and need one more field, all is working for the ALV-control but the additional field isn't filled with the values from GT_STXL_EXT (in debugger I can see the values)! I already searched in forum and looked into the ALV Grid Control reference but with no success to solve this problem.
    TABLES: stxl, stxh.
    TYPE-POOLS: slis.
    TYPES: BEGIN OF gs_stxl_ext.
             INCLUDE STRUCTURE stxl.
    TYPES:   tdline  TYPE stxitfd-tdline,
           END OF gs_stxl_ext.
    DATA: container01    TYPE REF TO cl_gui_docking_container,
          alv_list1      TYPE REF TO cl_gui_alv_grid,
          g_repid        TYPE sy-repid,
          g_find(20)     TYPE c,
          g_okcode       TYPE sy-ucomm
    DATA:
          gt_stxl_ext TYPE TABLE OF gs_stxl_ext,
          wa_stxl_ext TYPE          gs_stxl_ext,
          gt_text     TYPE TABLE OF tline,
          wa_text     TYPE tline
    FIELD-SYMBOLS: <fs_stxl>     TYPE stxl,
                   <fs_stxl_ext> TYPE gs_stxl_ext
      DATA: ls_layout    TYPE lvc_s_layo
            ,ls_fcat     TYPE lvc_s_fcat
            ,lt_fieldcatalog TYPE lvc_t_fcat
      SELECT tdid tdspras tdname tdobject
      FROM stxl
      INTO CORRESPONDING FIELDS OF TABLE gt_stxl_ext
      WHERE tdobject IN so_tdob
      AND   tdspras  IN so_tdsp
      AND   tdid     IN so_tdid
    LOOP AT gt_stxl_ext INTO wa_stxl_ext.
      CALL FUNCTION 'READ_TEXT'
      EXPORTING
        client           = sy-mandt
        id               = wa_stxl_ext-tdid
        language         = wa_stxl_ext-tdspras
        name             = wa_stxl_ext-tdname
        object           = wa_stxl_ext-tdobject
      TABLES    lines    = gt_text
      IF sy-subrc = 0.
        READ TABLE gt_text INTO wa_text INDEX 1.
        FIND g_find IN wa_text-tdline IGNORING CASE.
        IF sy-subrc = 0.
    *      <fs_stxl_ext>-tdline = wa_text-tdline.
          wa_stxl_ext-tdline = wa_text-tdline.
          MODIFY gt_stxl_ext FROM wa_stxl_ext.
        ELSE.
    *      wa_stxl_ext = <fs_stxl_ext>.
          DELETE TABLE gt_stxl_ext FROM wa_stxl_ext.
        ENDIF.
      ENDIF.
    ENDLOOP.
      g_repid = sy-repid.
      IF container01 IS INITIAL.
        CREATE OBJECT container01
          EXPORTING
            parent     = cl_gui_container=>screen0
            side       = cl_gui_docking_container=>dock_at_left
            ratio      = 90
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
            CALL FUNCTION 'POPUP_TO_INFORM'
               EXPORTING
                    titel = g_repid
                    txt2  = sy-subrc
                    txt1  = 'The control could not be created'.
        ENDIF.
        CALL METHOD container01->set_extension
          EXPORTING   extension  = 99999
          EXCEPTIONS  CNTL_ERROR = 1
                      others     = 2.
        IF sy-subrc <> 0.
          CALL FUNCTION 'POPUP_TO_INFORM'
               EXPORTING
                    titel = g_repid
                    txt2  = sy-subrc
                    txt1  = 'The extension of container_dock could not be set.'.
        ENDIF.
        CREATE OBJECT alv_list1  EXPORTING i_parent = container01.
      ENDIF.
      ls_layout-NO_ROWMARK = ' '.
      ls_layout-SEL_MODE   = 'A'.
      ls_layout-CWIDTH_OPT = 'X'.
      ls_layout-ZEBRA      = 'X'.
      ls_layout-GRID_TITLE = 'the title'.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING i_structure_name = 'STXL'
        CHANGING  ct_fieldcat      = lt_fieldcatalog[]
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'tdline'.
      ls_fcat-ref_table = 'STXITFD'.
    *  ls_fcat-ref_table = 'GT_stxl_ext'.
    *  ls_fcat-ref_field = 'tdline'.
    *  ls_fcat-inttype   = 'C'.
    *  ls_fcat-outputlen = '132' .
      ls_fcat-coltext   = 'Materiallangtext'.
    *  ls_fcat-seltext   = 'Materiallangtext'.
    *  ls_fcat-datatype  = 'CHAR'.
    *  ls_fcat-domname   = 'TDSTXLLINE'.
      ls_fcat-col_pos   = '7'.
      ls_fcat-tabname   = '1'.
      APPEND ls_fcat to lt_fieldcatalog.
        CALL METHOD alv_list1->set_table_for_first_display
            EXPORTING is_layout        = ls_layout
            CHANGING  it_outtab        = gt_stxl_ext
                      it_fieldcatalog  = lt_fieldcatalog
      CALL METHOD alv_list1->set_toolbar_interactive.
      CALL METHOD cl_gui_control=>set_focus EXPORTING control = alv_list1.

    try this it may work
    ls_fcat-fieldname = 'TDLINE'. " IN CAPS
    *ls_fcat-ref_table = 'STXITFD'.
    ls_fcat-ref_table = 'GT_stxl_ext'.
    ls_fcat-ref_field = 'tdline'.
    ls_fcat-inttype   = 'C'.
    ls_fcat-outputlen = '132' .
      ls_fcat-coltext   = 'Materiallangtext'.
    ls_fcat-seltext   = 'Materiallangtext'.
    ls_fcat-datatype  = 'CHAR'.
    ls_fcat-domname   = 'TDSTXLLINE'.
      ls_fcat-col_pos   = '7'.
      ls_fcat-tabname   = 'GS_STXL_EXT'.
      APPEND ls_fcat to lt_fieldcatalog.
    Regards
    shiba dutta

  • When i go to send a new text, the text field isn't blank.  There is already text entered in the message body.

    When i go to send a new text, the text field isn't blank.  There is already text entered in the message body that I have to go in and delete before typing my new text.  this prevents me from forwarding anything through text because if I get something I wish to forward, selecting forward as an option always brings up the same junk just like when trying to send a new message.  How can i remedy this?

    Here it goes -
    1) Download iBackupBot: http://download.cnet.com/iBackupBot/3000-2141_4-10969873.html
    2) Plug phone into computer and run backup
    3) Use "Explorer" box to find Messages: HomeDomain/Library/SMS/Drafts/(null).draft/
    4) In "Null Drafts" there is a file "message.plist"
    5) Double click to open, (cancel the popup if you did not purchase the iBackupBot) and you will see the prepopulating message on the <string> line 6
    6) Delete the offending text, leave all code
    7) Close text editor
    8) Right click on message.plist file and select "Restore selected item(s) to device"
    9) File will be restored to your phone and it will restart itself.
    10) Voila! Now it is time to consider that Windows phone....:)

  • I want other fields of table bkpf in T-code FB03

    hi expert.
    i want other fields of table bkpf in T-code FB03
    so i tried to find setting in spro(img) , but i couldn't find that.
    where is the that?  help me please..

    Hi
    Click the document list button in FB03. Give your company codes and other selections, but if you want to add futher bkpf fields for selection, use dynamic selections and select the appropriate header data.
    But if you looking to add these fields iwhile displaying document, please change the layout to include the relevant hidden fields and save
    Thanks
    Ron

  • I've logged onto iTunes, but it's asking me security questions because it's a new device, and I'm getting the answers wrong, but iTunes wants to reset but send the new passwords to my ex partners email address how can I get round this.

    I've logged onto iTunes, but it's asking me security questions because it's a new device, and I'm getting the answers wrong, but iTunes wants to reset but send the new passwords to my ex partners email address how can I get round this.

    I believe part of the recovery process is you get an e-mail allowing you to reset questions.  If that e-mail isn't correct either because your son set it up then you really have no option but to ask Apple again.  They are getting strict abotu security and given the number of "My iTunes account got hacked" posts here I can guess why.  They have no way of knowing you really are the owner of the account.  It's like me going to a policeman and saying, "See that car over there?  That is mine, can you open the door for me?" and the police opening it on that basis alone.
    Frequently asked questions about Apple ID - http://support.apple.com/kb/HE37 --> Can I change the answers to the security questions for my Apple ID?  --> Yes. You can change the answers to the security questions provided when you originally signed up for your Apple ID. Go to My Apple ID (http://appleid.apple.com/) and click Manage your account.
    Forgotten security questions - https://discussions.apple.com/message/18402551  and https://discussions.apple.com/message/18625296
    More involved forgotten question issues - https://discussions.apple.com/thread/3961813
    Kappy 09/2012 post about security questions - https://discussions.apple.com/message/19569468
    John Galt's tips (09&11/2012) - https://discussions.apple.com/message/19809294 and https://discussions.apple.com/message/20229239
    If none of the above work, contact iTunes Support at http://www.apple.com/support/itunes/contact/ and follow the instructions to report the issue to the iTunes Store.

  • TS1538 Hi technical support Team of  Apple  I am sorry but this time  I am very disappointed with IPhone and  IOS 7.1, actually I have IPhone 5,5S both and I was trying to Restore  my Phone for sell Because I want to by IPhone 64 Gold but unfortunately   

    Hi technical support Team of Apple  I am sorry but this time  I am very disappointed with IPhone and  IOS 7.1, actually I have IPhone 5,5S both and I was trying to Restore  my Phone for sell Because I want to by IPhone 64 Gold but unfortunately    both phone stuck on recovery mode with error 1, and 3
    I got Error 3 on IPhone 5 and error 1 In IPhone 5s , I did lot of try as I can my level best , like Update iTunes, stop all security, change cable even change computer format my laptop and install everything fresh in window   I did try to with Mac of my friend,
    Change Internet connections try with DFU mode, Make DFU file Also with redsnow   everything I did
    Whatever on internet information like go to  cmd and run as administrator  to make change hosts file
    Like ipconfig/flushdns everything  everything  what I can….  but I dint get good results and  good information about this error
    Somebody told me this is hardware problem, I make change my battery and charging connector too.
    I don’t know what to do next.. because  I don’t leave any experiment on my stuck phone..
    Note : one  is big issue that apple support team  is also and giving good answer
    I am in Saudi Arabia so I don’t  have any nearest store of Apple.. even Saudi Is Big Consumer of IPhone
    Its Really Bad its big Loss of Money I can’t afford more , Now will not Buy Any IPhone  in future if I don’t get solution..
    Thank You..

    What the **** is this taht you will not provide any service due to just a bit jailbreak..
    we are not much tecnical person.. and mostly consumer dont have good idea about Jailbreak. make your device  much better secure from hacker and jailbreak please we cant afford much money please give me any solution i ll not do jailbreak again please  

  • In Options -- General -- I want the option to "Show my windows and tabs from last time" AND "Show my homepage", but that choice isn't given. When I open a new tab, I'd like to see my iGoogle page, not a blank screen. Hope you can help. D

    In Options --> General --> I want the option to "Show my windows and tabs from last time" '''''AND''''' "Show my homepage", but that choice isn't given. When I open a new tab, I'd like to see my iGoogle page, not a blank screen. Hope you can help. D

    You can middle-click or Ctrl left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/new-tab-homepage/

  • I used to able to access and listen to my itunes library from my ipad using the remote app but this no longer works.  I am connected but sound thru ipad.  Is this because of they want us to use itunes match

    I used to able to access and listen to my itunes library on my ipad  using the remote app but this no longer works.  I am connected but sound thru ipad- just controls my library on iMac.  Is this because of they want us to use itunes match

    That has nothing to do with iTunes match. The Remote app on iPad can control the computer's iTunes but not play content from iTunes on your iPad.
    To play for example iTunes imusic on iPad
    You need to have Home Sharing On.
    Check Settings > Music > Home Sharing (key in your Apple ID & password here, must be the same on computer's iTunes)
    Start iPad's Music app, tap the ... More (bottom right), tap Shared.
    Choose your iTunes' library and have fun.

  • HT201442 Just bought a brand new ipod touch a month ago and went in to iTunes. There was an update for me so I downloaded it to my ipod and then it went into recovery mode. Tried to restore it in itunes but was told this device isn't eligible.  Help!!

    Just bought a new ipod touch a month ago.  Went into itunes to burn music and had an update to download which I did. Then I get a message that my ipod has gone into recovery mode. It's locked up with a black screen with iTunes logo and picture of a plugin on the screen. Tried to restore it as recommended but itunes said this device isn't eligible for the requested build. Error codes 3194 and 17. This is very frustrating considering the cost of the ipod and how new it is. Now what do I do?  Buy another one? Can anybody fix these types of things? Is this a common occurance or am I just unlucky?

    Make sure you have the Latest Version of iTunes (v11.1.5) Installed on your computer
    iTunes free download from www.itunes.com/download
    Then...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414
    3: If the device doesn't appear in iTunes, try using the Steps in this article to force the device into Recovery Mode.
    Note on Recovery Mode.
    You may need to try this More than Once... Be sure to Follow ALL the Steps...
         Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • I have an iphone 5 on contract with 3 but the speaker isn't working , I've spoken with my provider and they said I need to take it back to an apple store .is this correct ? Many thanks

    I have an iphone 5 on contract with 3 but the speaker isn't working , I've spoken with my provider and they said I need to take it back to an apple store .is this correct ? Many thanks

    If you received you phone as part of the contract then surely from a legal pov your contract is with 3 not Apple unless you bought Applecare, if you bought your phone outright then put your 3 SIM into it then yes you'd have to visit an Apple store with your phone's purchase receipt.

  • Erased all content on 3G but now won't sync with iTunes. Error states, "This iPhone cannot be used because the Apple Mobile Device service is not started." I don't want phone service on this old 3G. Just want to use it as an iTouch. Any suggestions?

    Erased all content on 3G but now won't sync with iTunes. Error states, "This iPhone cannot be used because the Apple Mobile Device service is not started." I don't want phone service on this old 3G. Just want to use it as an iTouch. Any suggestions?

    Type "Apple Mobile Device service " into the search bar at the top of this page by "Support"

  • HT1657 I had to stop downloading a movie that I rented. I want to compete the downloading now and it tells me that it is waiting....... But this has been going on for days. How can I get it started again?

    I had to stop downloading a movie that I rented , not quite finished. When I tried to start the download again the message says waiting........but this has gone on for days. I want to finish and watch my movie. How do I restart the download or get a refund and start over?

    Hello Wearekozy,
    The following article outlines how to report an issue with your purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Thanks,
    Matt M.

  • After copying a movie to the harddisk of my MacBook I wanted to also copy it to my iPad, but for this you first have to copy it to the library in iTunes, but this doesn't seem to be working. So how can I get this movie to the library ? And to the iPad ?

    After copying a movie to the harddisk of my MacBook I wanted to also copy it to my iPad, but for this you first have to copy it to the library in iTunes, but this doesn't seem to be working. So how can I get this movie to the library ? And to the iPad ?

    How is it not working?  And how are you doing it?  Drag the movie onto the iTunes icon on the Dock...  what happens?

  • HT201812 In the past it was possible to delete songs/tones from iTunes but this no longer seems to be the case.  Is it possible to delete songs or tones if they are not duplicated - I just no longer want them in my library?

    In the past it was possible to delete songs/tones from iTunes but this no longer seems to be the case.  Is it possible to delete songs or tones if they are not duplicated - I just no longer want them in my library?

    Howdy SJHocking,
    It sounds like you want to know how to dele songs and ringtones from iTunes. Take a look at the article linked below, it’ll walk you through the process of deleting content from iTunes.
    Delete songs, playlists, or other items - iTunes Help
    If you have iTunes Match enabled, take a look at this article which will walk you through the process of deleting songs from iCloud.
    iTunes Store: How to delete songs from iCloud - Apple Support
    Cheers,
    -Jason

Maybe you are looking for

  • How to create an Editable report?

    I want to generate one report using BEx Analyser as my client’s requirement. What the client’s requirement is, when he refreshes the query, he wants the query to be get refreshed and another user-editable sheet need to be get created. And the calcula

  • Exchange 2007 mail account sync with Mail 4.0 does not happen

    I am setting up my work exchange 2007 mail account in Mail 4.4. The total size of mail box is ~ 200MB. Folders smaller than 10MB have synced properly and I can see the mails in these folders inside Mail. However, none of the mails inside folders >10M

  • Why is page in Dashboard now displaying a different website? Hijacked?

    I've been using the feature to display webpages in Dashboard, however one of these widigts is now displaying a completely different website (one i have NEVER visited). When i click on it the amazon page displays for a split second, then it defaults b

  • Mavericks 10.9.5 update and Quicktime

    After i updated my iMac from OSX 10.9.4 to .5 yesterday, .mv4 clips no longer open in Quicktime 10 or 7 Player. I have over a hundred of clips in this format that I use in language teaching. They still open in VLC and when imported into iTunes, but n

  • Data Guard  demo

    hi frinedf i need Data Guard DEmo perfect helpp me