"vbuk" fields for selection

Hi experts,
we could check the status of the sales documents in VBUK table.
if i want to check the status of the sales documents basing on sales organization. when i check the fields for selection " sales org" not avaiable.
how to add sales org field in selection screen.
please guide me how to go about it.
Thanks in advance

Hi,
use SQVI (quick viewer) to join tables VBUK and VBAK (here you´ll find sales organization).
Regards,
JM

Similar Messages

  • Fields for Selection on selection screen - Data Dictionary

    Hi,
    I have an issue while selecting the required fields for selection on the Standard table.
    VBAK --> Settings > Fields for Selection> Select required fields and save it as a variant.
    It looks good for that day but it again changes to the standard selection fields on the selection screen.
    Is there any way that i can keep the Fields for selection on the selection screen ?
    Any suggestion will be appreciated!
    Regards,
    Kittu

    Hi Kittu,
    The SE16 tool generates Selection Screens automatically for the Table and chosen fields therein the user selects. Unfortunately the tool is User Independent, thus other users can change the fields for selection thus rendering any Variants created useless. This is because of internal numbering identifiers for fields instead of field names making up the variant. SE16 has always being regarded as a development tool hence its limited functionality.
    I however may suggest that you could utilise ABAP Queries instead by way of transaction SQ01/SQ02 or SQVi. These may offer you a better solution.
    Best of luck,
    Derrick Hurley
    ABAP Development Workbench
    SAP
    Edited by: Derrick Hurley on Mar 31, 2011 4:01 PM
    Edited by: Derrick Hurley on Mar 31, 2011 4:01 PM

  • How to display the selection screen fields for selected checkboxes

    Hi all,
             I have 7 checkboxes, for each check box we have some seletion screen fields.if i select first check box,i want to display first slection screen fields only.
    and if we select more than one check box how to display the selection screen fields for selected check boxes,please help me this
    Thanks
    sriman.

    hi,
    Try this code
    report z_13317_sdn2.
    tables : mara, marc, dd03l.
    parameters : p_chk1 as checkbox user-command ABC,
                 p_chk2 as checkbox user-command PQR,
                 p_chk3 as checkbox user-command XYZ.
    select-options : s_matnr for mara-matnr modif id A,
                     s_ersda for mara-ersda modif id A,
                     s_werks for marc-werks modif id B,
                     s_lvorm for marc-lvorm modif id B,
                     s_tab for dd03l-tabname modif id C.
    data: v_chk1,
          v_chk2,
          v_chk3.
    at selection-screen output.
      loop at screen.
        if screen-group1 = 'A' or
           screen-group1 = 'B' or
           screen-group1 = 'C'.
            screen-input = 0.
           modify screen.
        endif.
      endloop.
      loop at screen.
        if v_chk1 = 'X'.
          if screen-group1 = 'A'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
        if v_chk2 = 'X'.
          if screen-group1 = 'B'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
        if v_chk3 = 'X'.
          if screen-group1 = 'C'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
      endloop.
    at selection-screen.
      if sy-ucomm = 'ABC'.
        if v_chk1 = ' '.
          v_chk1 = 'X'.
        else.
          v_chk1 = ' '.
        endif.
      endif.
      if sy-ucomm = 'PQR'.
        if v_chk2 = ' '.
          v_chk2 = 'X'.
        else.
          v_chk2 = ' '.
        endif.
      endif.
      if sy-ucomm = 'XYZ'.
        if v_chk3 = ' '.
          v_chk3 = 'X'.
        else.
          v_chk3 = ' '.
        endif.
      endif.
    Regards,
    Sailaja.

  • How to get a Field for Selection in 8 Datasource

    Hello All,
    We have a scenario where in we need to change the Generated Export Datasource (8Z******) and check one more field for Selection, so that it appears in the Data Selection tab in InfoPackage.
    But I am not able to do that. I tried to change the transfer Structure for the same but to no luck. I also tried to change the Data Source in RSA6, but even that dint helped.
    In Ideal cases it should have taken all the Characteristic fields as Selection when the Export DS is generated, but for this particular case it took only 6 fields by default. I need to have one more field.
    Can anyone help me with this..??
    NOTE: We are working on 2004s.
    Regards
    Rohit Rakhan

    Hi,
    for Export DataSources, you can only use selections for Full-Update mode, when using the 3.x functionalities.
    But in 2004s, you can assign selections in your DTP.
    So the you'll export via export DataSource into the PSA and then perform selections via DTP onto the PSA-Data.
    hth
    Cheers
    Sven

  • Field for selection-generic data source

    Hi All,
    I have created a generic datasource with 4 fields from VBPA table the fields are
    VBELN
    PARVW
    PERNER
    POSNR
    and set the delta based on VBELN.
    My client want all the fields for slection in RSA3.
    Now in RSA3 except VBLN all fields are available for selection.
    I tried to select the VBLN field in RSA6 there i can see the selection box is disabled.
    Could any one please let me know how i enable this field for selection
    Many thanks in advance and pls respond to this as it is very urgent
    Thanks
    S VR

    Hi..
    Check whether any one had collected this extractor in Transport.. which is why its in display mode...
    And also.. get into change mode in RSA6 for ur DS and then check if u can see that check box is enabled for u?
    Let us know the details..
    Thanks
    Hope this helps

  • How to Make field for selection in the datasource.

    Hi All,
    I want to enable one field in the DataSource for selection. I am not getting where can we make that enable.
    I know we have one check box in transfer structure for make file for selection. But I am getting that is grayout , not able to check that ?
    Please let me know where can we change the setting to make it enable.
    regards
    Ashutosh D

    Look at Roberto's reply in the below post :
    Re: Hos to make a filed to be required field when creating datasource
    What is ur datasource ..?
    Have u tried RSA6 Change Mode for that datasource - Flag Selection?
    Message was edited by:
            Jr Roberto

  • Restrict number of characters in table field for select statement.

    SELECT * FROM table
                    WHERE  column1  = z-column.
    The field column1 is of  type char and size 20
    The field z-column is of type char size 10.
    how do we perform this select?
    Anyone can guide me?
    Edited by: Hadesfx on Sep 11, 2009 3:56 PM
    Edited by: Hadesfx on Sep 11, 2009 3:59 PM

    Hello,
    In your OP did you mention this? Please be specific when you post the next time.
    Can you please post your code?
    I think you have to try a work around:
    DATA:
    RS_STOCKID TYPE SELOPT,
    RT_STOCKID TYPE STANDARD TABLE OF SELOPT.
    LOOP AT GT_ZB1PUT_STOCKTMP.
    RS_STOCKID-SIGN = 'I'.
    RS_STOCKID-OPTION = 'EQ'.
    RS_STOCKID-LOW = GT_ZB1PUT_STOCKTMP-STOCKID.
    APPEND RS_STOCKID TO RT_STOCKID.
    CLEAR RS_STOCKID.
    ENDLOOP.
    You can use this RANGE table to SELECT data from the table.
    SELECT * FROM zb1xxt_param
                FOR ALL ENTRIES IN gt_zb1put_stocktmp[]
                WHERE zzcode    = 'DEV036'
                AND   zzdomain  = 'SD'
                AND   zzdata    = 'INBOUND'
                AND   zzinput1  = 'STOCKID'
                AND   zzinput2  IN RT_STOCKID. "Use RT_STOCKID for SELECT'ing data
    BR,
    Suhas

  • Build group of configured fields for selection

    Dear All,
                 Please let me know what is the usage of field under "Build groups of configured field"  where the grouped field has to be used as Selection field.
    Besides i also see that we don't have any Search help option which can be configured for grouped configured field. If possible please quote some examples.
    Thanks,
    Shubh,

    Dear Daniel,
                         Thanks for your response. "Where the grouped field has to be used as Selection field", I mean to ask , when we configure grouped field for web interface , it gives us the option as whether the Conf field type is for selection , or display or for Event Message.
                         Now i want to create the grouped field as selection field for providing it as a search criteria. Now suppose i have grouped first name and last name. How will the the selection field behave ?
    Thanks,
    Shubh.

  • Adding additional field for selection criertoria for report painter

    I am trying to add a new selection criterion for a report which is created from report painter. I have run Transaction Code GRR2 and selected the library 1VK which is cost centers: absorption costing and doubled clicked on the report.
    Clicked on edit on the header à General data selection à I am looking for a option for company code but I cant find it in the list. Is there anywhere I need to flag the field company code as characteristic value or am I missing something??
    Thanks
    E

    hi,
    You might want to try add parameters in general data selection.... in addition you can add variable against this field so that it appears on selection-screen. You can look at standard SAP report for example.
    hope this helps.
    Cheers,
    Gimmo

  • Fields for selection in FPCJ : Bank details not showing for Postal Order

    Hi Sap Gurus,
    I have a requirement in which while recieving the payment from FPCJ of type postal order i am not able to enter the bank details.
    which are available for Cheque payments.
    In our system the fields to determine the bank account and bank details fields are not showing in FPCJ for PO type payments.
    Kindly help me as to our client wants to put in the details of the bank in the FPCJ screen.
    Regards,
    Ankit

    Hi Ankit,
    I don't think there is a configuration to make the fields available for postal order in FPCJ. It needs to be customized.
    Check this link which is little bit relevant to your posting.
    BDT & Cash Desk (FPCJ) -- Removal of Postal Order Tab
    Thanks,
    VR

  • Attribute can be a field for selection screen

    Hi,
    For 0employee i have made a attribute as organization unit in a report,so org unit is attribute for 0employee and now my requirement is that i want that organization unit to be in selection screen for Bex reporting so that the user can choose the org unit from the selection screen only.

    Hi,
    If you need to include organization unit, which is a attribute of 0employee, in you report, you need to perform the below steps.
    1. In the 0EMPLOYEE characteristic Attribute tab, make organization unit as a Navigational attribute.
    2. In the InfoProviders on which the query is created, you need to select organization unit as a navigational attribute.
    3. If your report is created on a multiprovider, you need to select organization unit as a navigational attribute in Multiprovider also and create assignment for it.
    ex: If your report is based on a multiprovider, which is created on a Cube and cube has a ODS below it, you need to perform above steps at all levels.
    You will now be able to see the organization unit as a characteristic in report, just pull it and create a variable.
    Please let me know if you need any more information.
    Regards,
    Pankaj

  • ABAP Dump when selecting Calendar Field for selection in Working Time reports

    Hi Team,
    Out client gets a weird issue, when he selects date from selection he gets dump, this is happening only in his system, If he tries from his same user id from different machine, he is not getting the error.
    Dump details below
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    Thanks ~ Priya

    Hi Krishnan,
    this issue is most likely related to some missing\unregistered components in SAPGUI folder. There are a few ways to solve this kind of errors:
    1. In order to check it, ask your client to go to 'C:\Program Files (x86)\SAP\SapSetup\Errors\' path and open an .xml file, which is the error report file that contains error log created during SAPGUI client installation. The erroneous modules can be registered by using regsvr32 command via command line. (Make sure you have Administrator rights while doing this.)
    2. If previous step did not help, run SAP Logon, goto Options->System Information->'Check SAP GUI Installation' and run the report.It will open an xml file with the errors report.
    3. If none of steps helped, then reinstall SAPGUI client. You need to run installation under Administrator user rights.
    BR

  • Choose for Selection option in ALV report

    Hi SAP experts,
    There is a requirement of using the functionality of Settings->Field for selection functionality in our ALV report.
    Please suggest some way to implement it. I am attaching the screenshot. This functionality i need to use in alv report. Thanks in advance
    Thanks & regards
    Pratham kapoor

    Hello,
    in an ALV-Report you could just use get_selinfos = 'X' in the layout-workarea.
    Check the docu on parameter IS_LAYOUT in REUSE_ALV_LIST_DISPLAY.
    Or you could use the fuction you wrote about and print these information at the TOP_OF_PAGE event.
    Regards Wolfgang

  • Reg: EQ Operator for Select-Options..

    Normally we use IN Operator for comparing selection-screen fields for select-options, Rarely we use EQ also when working with Select-Options, why we go for this EQ operator.
    Kindly let me know.
    Thanx in Advance.
    Akshitha.

    Hi there. You should use IN when you know that there will be or may be multiple values chosen for the select-option.  For instance, if the user is going to enter a range of personnel numbers on the selection screen, you could use something like:
    IF ws_pernr IN p_pernr
    (where p_pernr is your select-option selection screen field).
    But if you know that the select-option field will only have one value assigned to it (or you are referencing either the high value or the low value of the select-option) then you can use EQ; the term EQ checks for equality against a single value.
    - April King

  • Standard field for Country of Despatch in condition table

    Hello All,
    I want to created a condition table with Despatching Country, Destination Country, Tax Classificatio of Customer and Tax Classification of Material.
    In the allowed fields for selection, I am able to get the field LAND (country of despatch).  I have created the condition table and assigned in the access sequence.  But when I see the analysis in the sales order this field is picking destination country.
    I do not want to include Z field in the KOMK/KOMP struture, I want a standard field.  Can anybody hlep me out............
    Thanks & Regards,
    Sreehari.

    At my end, its absolutely right?
    TKOMK-ALAND is based on delivering/supplying plant.
    If that is not the case, then it is not standard, where TKOMK-ALAND is is not equal to T001W-LAND1.
    Take assistance of ABAPer in your team & check whether  any enhancement (Program MV45AFZZ, Form USEREXIT_PRICING_PREPARE_TKOMK) is done.
    Say, in enhancement sales organization country is used as the country of departure.
    Regards
    JP

Maybe you are looking for

  • What Do Users Want Skype To Be?

    This is a question to the rest of the Skype userbase: what do you want skype to be for you? I'll start it off. 1) I want skype to be a free and minimalist text messenger, group chat, conference call and conference video call client. All functionality

  • Desktop compressed on to a 6" stripe in center of monitor

    it is an Apple Studio Display 21" CRT everything was fine with the display, came in one day and brought the computer out of sleep mode and the display was messed up. the deskptop is compressed to a 6 inch strip in the center of the screen with black

  • Received message that iTunes account was disabled without the reason provided

    Received message that iTunes account was disabled;  specific reason not cited

  • Is possible to Integrate SAP BCM with Third party?

    Hello Everyone, Some of you can tell me if Is possible to integrate SAP BCM with another solution IBM ITSM? The integration would also have the screen pop up the same or similar to SAP CRM. Thanks in advance. Best regards Rodrigo Lucas

  • P.O auto mail generation pdf to word

    Hi  everyone, this is regarding the automatic mail generation in smartforms. Its like when you process the smartforms the mails are automatically shooted to the address maintained for eg usually to the vendors. So what I need is incase I proces my sm