SAP query field selection order and text

Hello All,
   Is there any way I can change the position of fields on the selection screen of query. Also can I change the text of the selection fields. Thanks
Atul

In SQ01 enter your query name and go into change mode, on the menu click "Goto" , "Field Selection" then "Field Selection"
in there change the text of selection field, to change to ordering just enter the number sequence in the "No" the order in which you want them to appear. Like
Production Order 02
Order Type       03
Plant            01
after you execute the query selection screen will appear like below
Plant
Production Order
Order Type

Similar Messages

  • SAP Query: Display Selection Fields in the header page of Basic list

    Hello,
    I have to display the selection fields in the header page of the basic list and statistics
    in a SAP Query.
    I know the usage of short names for fields in the header page, but this doesn't work
    for the selection fields.
    How can I display the selection fields in header pages?
    Kind regards
    Thomas

    Try using:
    DATA: wa_lstab TYPE line
    READ LINE sy-index line value INTO wa_lstab
    Thanks,
    SKJ

  • SAP Query error for VBAK and KONV tables

    Dear Experts,
    Want to create SAP Query for below requirement but faced some error
    Step1) Extract the data from VBAK table w.r.t.  order type ,  Sale org and date range
    and collected the Sales order numbers and doc. condition record (KNUMV)
    Step 2)In table KONV (Transactional condition record data) in this table provided input as doc. condition record (KNUMV) with respect to condition type ABCD
    Manually i extracted data, there is no problem .
    But customer want to generate SAP Query for above requirement
    I tried to create but in t.code  SQ02 when i tried to join the table VBAK and KONV i faced the below error
    Table KONV cannot be used in a join.
    How  can I create SAP query for above requirement ???
    if its not possible then create Z report is the only solution ??????
    Thanks in advance

    Hello
    You can not create Query report with joining KONV. But there is one solution for your problem. You can create Query report by using Database VAV. In this logical database you will find all SD tables and also KONV. Use only those tables and fields which you want in your query report. I have checked this and its working
    Please try this and update the forum accordingly.
    Edited by: moazzamjii on Jun 30, 2011 12:13 PM

  • SAP Query DB - Selection screen

    Hi!
    I am workin with a DB for SAP Query.  I tried it and there is just one problem: In the report selection screen there is a field (from the DB) that is mandatory. I wanted to exclude that field or at least to make it not mandatory. Is it possible? How?
    Thank you

    Hi,
    Go to SQ01. Input your Query. Press change button. Press Basic list. In the left side you will see check box for list fields and selection fields. Remove the check box for whatever field you dont wan in the selection screen.
    Thanks,
    Senthil

  • Sap query report-selection screen modification

    Hi
    I  have created a SAP query report using the logical database KDF ,the selection screen was created automatically.For vendor report open item and Cleared item Push button would be there in FBL1N but here it only displays Open key date,clearing dates.The open key date is mandatory to give though i give clearing dates as i need vendor cleared items.
    Is ther way to change the selection screen to get the option open item and cleared item push button as in FBL1N.
    This is because i was filtering a vendor only for particular doc type only for clearing items but report takes open item too though i meantioned clearing date rate.How to modify the selection screen in sap query report when Logicaldatabase is selcted.

    I need to get only the cleared items.I donot need open items.Then if go for BSIK is it wrong.Should go only for BSAK.
    I couldnt find the table BSAK in logical database KDF.
    Edited by: mysap query on Mar 18, 2009 3:15 PM
    Edited by: mysap query on Mar 18, 2009 3:15 PM

  • Selecting textframe and text inside with 3 clicks

    This was possible in InDesign-Versions previous to InDesign CC. Now, if I double-click a textframe i have to wait 1 second, then i'm able to select text with another double click.
    That is very annoying and disturbs my working process. Is someone else facing this issue?
    The answer from the Adobe LiveChat-Support was "we have something changed" and questions in the kind of "First: Have you already turned your machine on?".
    Friendly as they are the gave me an mysterious adress to a cave somewhere in US, where I can dig for further answers. Fine.

    Sorry, that is not my point, changing settings as you propose doesn't solve my problem.
    This triple click is meant if the cursor is already blinking in the selected textframe.
    @Peter Spier: I change nothing in my prefs. Thats how it works since I installed InDesign CC without any changes.
    No matter how often I click once - InDesign CC does not select text. I have to wait one second and then I have to double click, or triple click to select a word or a line.
    I older versions it was possible just to click three times and text was selected - without switchen first to the text-tool.
    I work very fast on an InDesign-Document, often image-frames and text-frames step by step. So it slows me down if I have to wait one second so I'm able to select text...
    I try this explanation, so you can reproduce the error:
    1. create a text frame and enter some text
    2. Switch from text-tool to the selection-tool (Key "V" or Escape-Key)
    3. Click several times (i mean 10 times and more) fast on a word in the textframe. You will see that in InDesign CC no text will be selected. You have to wait 1 second, then the text-tool will be activated and then you are able to select text. I previous InDesign versions after 3 clicks there was text selected - without selecting first the text-tool.
    Understand my problem? In a fast workflow it is unacceptable to wait 1 second because of a UI-Bug...

  • Query for Sales order and corr.AR Invoice Info

    Hi,
    I need to write a query which gives the flollowing sales order info along with the coressponding AR invoices info
    Sales Order columns reqd:
    OPERATING_UNIT
    ORDER_NUMBER
    CUSTOMER_NUM
    CUSTOMER_NAME
    ORDERED_DATE
    FLOW_STATUS_CODE
    TOTAL_ORDER_AMOUNT
    AR invoice columns reqd for the sales orders:
    Invoice number,
    Invoice date,
    Invoice Total.
    Can anyone help me out with this?
    Thanks,
    Ash

    Hi Ash,
    There are some issues that must be defined before you have the exact query.
    Do you have freight charges or non-inclusive tax? If you have, freight charges and tax amounts must be included?
    Depending on you grouping rule, you can have lines from more than one order in a single invoice. In this case, as invoice amount you want the sum of all lines, or only the lines from that order?
    Below is an example using two views. It assumes that grouping rules split lines from different order into different invoices.
    Hope it helps,
    Ketter Ohnes
    create or replace view order_summary as
    select oh.org_id,
    oh.ORDER_NUMBER,
    oh.header_id,
    ott.name tt_name,
    ca.account_number,
    p.party_name,
    oh.ordered_date,
    oh.flow_status_code,
    sum(ol.ordered_quantity*ol.unit_selling_price) total,
    sum(ol.tax_value) tax,
    (select sum(operand)
    from OE_PRICE_ADJUSTMENTS_v x
    where x.header_id = oh.header_id
    and x.adjustment_type_code='FREIGHT_CHARGE') freight_charge
    from oe_order_headers_all oh,
    oe_order_lines_all ol,
    hz_cust_accounts ca,
    hz_parties p,
    oe_transaction_types_tl ott
    where ol.header_id=oh.header_id
    and oh.sold_to_org_id = ca.cust_account_id
    and ca.party_id = p.party_id
    and oh.order_type_id = ott.transaction_type_id
    and ott.language =
    (select language_code
    from fnd_languages
    where installed_flag = 'B')
    group by oh.org_id,
    oh.header_id,
    oh.ORDER_NUMBER ,
    ott.name,
    ca.account_number,
    p.party_name,
    oh.ordered_date,
    oh.flow_status_code;
    create or replace view invoice_summary as
    select a.interface_header_context,
    a.trx_date,
    a.trx_number,
    b.interface_line_attribute1,
    b.interface_line_attribute2 tt_name,
    a.customer_trx_id,
    sum(b.extended_amount) invoice_total
    from ra_customer_trx_all a,
    ra_customer_trx_lines_all b
    where a.customer_trx_id = b.customer_trx_id
    and b.interface_line_context = 'ORDER ENTRY'
    and b.line_type in ('LINE','FREIGHT')
    group by a.interface_header_context,
    a.trx_date, a.trx_number,
    b.interface_line_attribute1,
    b.interface_line_attribute2,
    a.customer_trx_id;
    select *
    from order_summary o,
    invoice_summary i
    where o.order_number between :1 and :2
    and o.order_number = i.interface_line_attribute1
    and o.tt_name = i.tt_name;

  • Changing logical database DDF select order, and restricting the selection

    HI all,
    I am using logical database DDF for a report.  I would like to do two things:
    1) Change the sort order of records so that when my GET statements are processing, they are bringing the data back in sorted by a field of my choice (such as KNA1-REGIO, or KNB1-BUSAB).
    2) I would like to add KNA1-REGIO and KNB1-BUSAB as fields for selection during the LDB's initial selection, instead of filtering out records during the GET statements. 
    FYI, I did find the field DD_BUSAB in the LDB selection structure which I can use to restrict KNB1-BUSAB.  I am still not sure how to restrict by KNA1-REGIO though.
    Any thoughts?
    Thanks so much,
    L

    Thanks for the reply Shiba.  For that particular problem, the business wants to not have to use the dynamic selection, and just have KNA1-REGIO and KNB1-BUSAB as regular select options.  Like I said as well, I did find DD_BUSAB which I can use for KNB1-BUSAB, but KNA1-REGIO is still a problem. 
    Right now I just use a CHECK statement and filter kna1-regio after the GET kna1 statement.
    Thanks again,
    L

  • Query for Sales Order and AR Invoice Information

    Hi,
    I need to write a query which gives the flollowing sales order info along with the coressponding AR invoices info
    Sales Order columns reqd:
    OPERATING_UNIT     
    ORDER_NUMBER     
    CUSTOMER_NUM     
    CUSTOMER_NAME     
    ORDERED_DATE     
    FLOW_STATUS_CODE     
    TOTAL_ORDER_AMOUNT
    AR invoice columns reqd for the sales orders:
    Invoice number,
    Invoice date,
    Invoice Total.
    Can anyone help me out with this?
    Thanks,
    Ash

    Hi Ash,
    Table RA_CUSTOMER_TRX_ALL can be joined to RA_CUSTOMER_TRX_LINES_ALL table through CUSTOMER_TRX_ID column. The table RA_CUSTOMER_TRX_LINES_ALL.INTERFACE_LINE_ATTRIBUTE6 = OE_ORDER_LINES_ALL.LINE_ID. And from the LineId, you can get the HeaderId os the OE_ORDER_HEADERS_ALL table.
    You must have visualized the query by now.
    Thanks
    Sumit

  • Photoshop CS6 selection, shape, and text is causing colored artifacts on screen

    The Photoshop CS6 (13.0.4) selection, text, and shape tool causes colored artifacts on screen. I'm running on a retina Macbook Pro updated to the latest ML release. I have disabled GPU acceleration. I have also tried starting Photoshop with no plugins but this does not help.
    I have created a video which shows the phenomena
    http://www.youtube.com/watch?v=VG5ayC3WmKA

    SOLVED. After two days of intense debugging I've identified the issue as an interaction between the ICC color profile, integrated GPU, and Photoshop. The ICC profile was created with an i1Display Pro using the i1Profiler software. The issue occurs when you create the color profile using the LUT setting. Creating a profile using the matrix setting seems to be ok. In summary, these are the specific conditions that cause the issue (for me):
    1) Using a color profile created with the LUT setting with i1Profiler and i1Display Pro
    2) Using the integrated GPU (discrete GPU is disabled in Photoshop Performance setting)
    3) Running on Photoshop 13.0.4 (13.0+ all have the issue) on a 15" Macbook Pro with Retina display
    Creating a new profile with the matrix setting OR enabling the discrete Nvidia GPU will also make the artifacts go away. The integrated GPU using the LUT based color profile does not seem to have any artifacts in any other photography and video editing software that I've tried so Photoshop is playing a role. The nature of the artifacts also change from Photoshop version 13.0 to 13.0.4. For example, in Photoshop 13.0 the Marquee Tool has no issues while 13.0.1+ has artifacts.

  • MB24-5 SAP TRANSACTION - FIELD "SALES ORDER" EMPTY

    Hi Consultants,
    could you please have a look.... why the program under the transaction MB25 doesn't make the Sales Order to appear in the output. The standard program for MB24-25 is RM07RESL.
    Thankyou in Advance

    Dear,
    It is standard transaction and standard transactions you can say 100% error free.
    System will show sale order in respective field, if any production order created with reference to sale order. rest all reservation will have empty field of sale order.
    Thanks
    Muhammad Ashfaq

  • Query on Purchase order header texts

    Hi everybody,
    Can any one please help me on some info regarding hearder texts used in Purchase orders.
    I have a requirement like, for one of the header texts in PO like "TERMS OF PAYMENT", if the user inputs a text like "Payment terms" in taht particular header text, a standard text should be called, it can be a 4 to 5 pages standard text..
    Did anybody work  on this one?
    Your help will be certainly appreciated.
    Thank yu
    Regards
    Priya

    Hi,
    Use FM READ_TEXT to get header texts.
    * read the several textlines for each text-ID
      loop at sel_thead.
        clear: tline.
        refresh: tline.
        call function 'READ_TEXT'
          exporting
            id       = sel_thead-tdid
            language = sel_thead-tdspras
            name     = sel_thead-tdname
            object   = sel_thead-tdobject
          tables
            lines    = tline
          exceptions
            others   = 1.
        if sy-subrc eq 0.
          loop at tline.
            po_header_texts-po_number = purchaseorder.
            po_header_texts-text_id   = sel_thead-tdid.
            po_header_texts-text_form = tline-tdformat.
            po_header_texts-text_line = tline-tdline.
            append po_header_texts.
          endloop.
        endif.
      endloop.
    Regards,
    Raju.

  • Small Query in Selection Screen and Screen.

    Hello Guys...
    I have Created a program using Selection-Screen 1000. and Screen 2000.
    At Selection-Screen I have written code
    Start-of-selection.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'BACK'.
            LEAVE PROGRAM.
    end case.
    and At the user-command of Screen 2000.
    I have written Follow code.
    ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'BACK'.
            LEAVE PROGRAM.
        when 'CANCEL'.
           LEAVE PROGRAM.
        when 'ADD'.
           Perform Add_New_Row.
        when 'REMOVE'.
           Perform DELETE_Row.
        when 'SAVE'.
           Perform SAVE_DATA.
        when 'EXIT'.
           LEAVE PROGRAM.
        endcase.
    My Problem is that I am not able to come out from program through back button..
    Follow is like that..
    at Selection Screen user provide some input on that basis screen 2000 Call.
    but when i press back button on screen 2000 Selection screen 1000 appear.
    and my Problem is that when i press back button on selection-screen on 1000.
    it's goes to screen 2000.
    I know, it's little thing I am missing, Let me know ..what was that..
    Cheers......
    Swati...

    Hello Guys...
    Previous code I have given is modify by this but same problem..
    I have dubug the program and trace it. it's will not goes on Selection Screen
    on Each back button the event occurs which is user-command 2000.
    I have Created a program using Selection-Screen 1000. and Screen 2000.
    At Selection-Screen I have written code
    Start-of-selection.
    ok_code = sy-ucomm.
    CASE ok_code.
    WHEN 'BACK'.
    LEAVE PROGRAM.
    end case.
    and At the user-command of Screen 2000.
    I have written Follow code.
    ok_code = sy-ucomm.
    CASE ok_code.
    WHEN 'BACK'.
          CALL SELECTION-SCREEN '1000'.
            EXIT.
    when 'CANCEL'.
    LEAVE PROGRAM.
    when 'ADD'.
    Perform Add_New_Row.
    when 'REMOVE'.
    Perform DELETE_Row.
    when 'SAVE'.
    Perform SAVE_DATA.
    when 'EXIT'.
    LEAVE PROGRAM.
    endcase.
    My Problem is that I am not able to come out from program through back button..
    Follow is like that..
    at Selection Screen user provide some input on that basis screen 2000 Call.
    but when i press back button on screen 2000 Selection screen 1000 appear.
    and my Problem is that when i press back button on selection-screen on 1000.
    it's goes to screen 2000.
    I know, it's little thing I am missing, Let me know ..what was that..
    Cheers......
    Swati...

  • Select images and text from one particular website do not load in Firefox

    As a website manager, I have been updating the text and images for a website. And I have found that on one page (http://nikkiyoung.biz/On-The-Scene.php), certain images and paragraphs of text do not appear in Firefox. I've tried it on multiple computers, and multiple browsers (Internet Explorer and Chrome), and those items appear as they're supposed to, but no matter which computer I use, if I'm using Firefox, those spaces appear invisible. Please advise.
    Thank you.

    This could be due to a large number of nested <div> elements. I'm not sure what is generating those, but it seems Firefox sometimes fails to display deeply nested elements. Can you review your code and see whether it's possible to reduce that?

  • HT201285 Why does Apple not give more info on spotlight search? Set up your system with all selections disabled and text two or three messages. Then go ahead and check messages and go to spotlight search and type any letter that begins a word. Messages ar

    Why can't spotlight search be deleted or cleared? Why so secretive? The problem is that this is a huge business security risk.
    Fix it Apple!!!

    SteweyRoux wrote:
    Why can't spotlight search be deleted or cleared? Why so secretive? The problem is that this is a huge business security risk.
    Fix it Apple!!!
    1) If you have sensitive business information on your phone, put a passcode on it.
    2) Apple doesn't participate here. If you want to give them feedback, here's the link:
    http://www.apple.com/feedback
    Best of luck.

Maybe you are looking for

  • Error Message "No plugins are installed"

    Hi I have download Oracle Migration Workbench 10.1.0.4 and unzipped I need to migrate from DB2 8.2 to Oracle 9i When i am trying to create database repository getting error message "No plugins are installed, please install the plugin for the database

  • Adding Pioneer DVR-116D dvd writer

    I am replacing an old Pioneer DVR-112D with a new DVR-116D in my dual G4 MDD Mac with OSX 10.4.11 Are there updates / hacks I should load to make the DVR-116D fully compatible with my Mac? Thanks!

  • Transaction F-22(Invoice - General) - program

    Hi,    Can anyone let me know if there is any program for posting document using F-22(Invoice - General) transaction. Please let me know. Thanks, SP

  • Issue with Process Simulation with Oracle BPM Studio

    Hi. Im using Oracle JDeveloper 11.1.1.6 and BPM Studio and i have a problem with include Simulation Models into a Simulation Definition. I think that this is a bug in PS5 release and only can add one Simulation Model into a Simulation Definition, can

  • To find the error in java code if any

    i was learnig java.net package and this is the code i wrote to read the contents directly from a given url using openStream() method of URL class and got the message 'error' from java.io.IOException which i had given in the catch block. please tell m