Regarding MCBA character selection.

Hi,
When I am performing transaction MCBA and selecting all the characteristics like Plant, Storage location, MAterial, Month, Valuation class, MRP controller, etc. When executing the report the output is delivered. But while downloading it via XXL to excel (via menu - Plant analysis -->export --> Transfer to XXL ) system ask to select which characteristics to include in the download.
But the Field 'Valuation class' is not listed to include in the download. ( all other are dispalys).
Please help on this issue.
Thanks.

Your main purpose here is to export file to excel. Why not try second button with arrow sign, save to PC file and then check spreadsheet and press enter, this is better option on exporting files.

Similar Messages

  • I have a comment.  I am very upset with Photoshop and all your tutorials regarding the quick select tool.  I have watched many tutorials and read instructions until I am blue in the face.  This tool does not work.  It is all over the place and all of your

    I have a comment.  I am very upset with Photoshop and all your tutorials regarding the quick select tool.  I have watched many tutorials and read instructions until I am blue in the face.  This tool does not work.  It is all over the place and all of your tutorials make it look so simple.  How can you advertise this as a viable tool when it just doesn't work?

    It is all over the place and all of your tutorials make it look so simple.
    This is a user to user Forum, so you are not really addressing Adobe here, even though some Adobe employees thankfully have been dropping by.
    How can you advertise this as a viable tool when it just doesn't work?
    Concluding something does not work because you fail at using it is not necessarily always justified.
    The Quick Selection Tool certainly has limitations, but your post seems to be more about venting than trouble-shooting – otherwise you might have posted an image where you failed to get an expected result.

  • How do I make a "Character Select" system?

    I'm making a game for school that is a vertical scrolling shooter (like the Raiden series), based off of the anime Galaxy Angel. For anyone who has seen GA would know there's 5 main characters, all of which I have put in my game. My program is an application (so swing answers only please), and made up of 4 classes: Title Page, Character Select, Main Game, and Credits. I intend to make my program load different Player sprites depending on what character is chosen. Can someone tell me how I can make my Main Game class read which character has been chosen from my Character Select class?

    A very quick and easy way of doing this with Swing is using the JRadioButton class. The following suggestion is similar to a technique used in "How to use Radio Buttons".
    http://java.sun.com/docs/books/tutorial/uiswing/components/button.html#radiobutton
    Inside CharSel class:
    First, declare a class String variable called "userIcon" or something at the top of your program. This will be the path of the icon for your user.
    private static String userIcon=null;When you're setting up the GUI for your CharSel screen, use an array of JRadioButtons for the character buttons. In the for loop where you initialize each button, group them all, and set up the basics (ie: stylize the button to make it feel more like a game), add something like this:
    buttons.addActionListener(this); //assuming you've implemented ActionListener
    buttons[i].setActionCommand("images/charIcon"+i+".gif");
    The i variable is just an int; the current index of your radio button array in your for loop. An action command is simply a String passed to the ActionEvent of your ActionListener.
    You would then add something like the following so you can retrieve the icon's path from other classes:
    public static void setUserIconPath(String s) { this.userIcon = userIcon; }
    public static String getUserIconPath() { return userIcon; }
    //called when a radio button is pressed
    public void actionPerformed(ActionEvent e) {
      //retrieve the action command
      setUserIconPath(e.getActionCommand());
    }When you are writing your actual game classes, you'll create the user image using the static methods:
    ImageIcon portrait = new ImageIcon(CharSel.getUserIconPath());If you wish to avoid the static methods (which may cause problems depending on how you use them), you can set the constructor of your MainGame class to accept the icon's path (or just the ImageIcon itself).
    Alternately, you could simply call a method passing the path/imageicon [i]after you initialize your MainGame class.
    Other techniques may include constant ints and a switch statement (which checks something like CharSel.selectedIcon() == CharSel.BOB). Of course, a more typesafe way of doing that would be to use enums. If you did use enums, you could even include methods for your enum constants (ie: CharSel.Chars.BOB.getImageIcon() may return Bob's ImageIcon).
    Good luck!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Regarding Printer Tray Selection while running BI Publisher Report.

    Hi All,
    Below is my requirement.
    When ever user tries to run the report, based on the customer code the printer tray has to be passed to printer so that the report gets printed by selecting the paper from the same tray. Each printer tray will have different paper color.
    Let me know how can I achieve this? Its very urgent..
    Thanks
    Babu

    hi,
    Just now i identified that its not deleting the report but its reverting back the report to its previous version. Let me explain it you in details:
    suppose i created a report with following query source as Oracle Database:
    select territory_code from fnd_territories_tl
    where LANGUAGE = USERENV ('Lang')
    now if i modify the query in the same report to following query:
    <dataTemplate name="dunningLetter" description="Dunning Letter Report" dataSourceRef="IPOVIS" defaultPackage="xx_shpckt_init" Version="1.0">
    <parameters>
    <parameter name="p_order_number" dataType="character"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q1">
    <![CDATA[select order_number from oe_order_headers where order_number = :p_order_number
      ]]>
    </sqlStatement>
    </dataQuery>
    <dataTrigger name="beforeReport" source="xx_shpckt_init.beforeReportTrigger"/>
    </dataTemplate>
    and then if i run the report again, the report will still show the result of previous query!! and then if i go back to data model then it will show the previous query there!! not sure why is it doing this way?? Also sometimes, when i create a new report and then view the result then it will revert its previous stage i.e report without Data model, LOVs and parameters!! That is the reason i thought its deleting the report while running report.
    Please suggest why is it acting this way? Appreciate your help and time.
    Thanks,
    Regards,
    AS

  • Using if the else logic in regards to a select statement for a report

    Hi all,
    I've a question regarding if then else logic in Oracle.
    I'm developing a report application which contains 3 selectlists
    - ProductGroup - SubGroup - Manufacturer
    Each one containing several values. And are based on eachother, meaning if you select an item from the PG list, you only get the SG items regarding the PG item you've choosen before. The process logic should be as the following:
    When a user selects one item from for example the PG list, the query will be:
    select * from x where PG = :P_PG
    and the report displays all the items in the PG category selected
    The other two bindvariables would be null as the user didn't pick them
    If he then proceeds and selects one item from the SG list, the query would be:
    select * from x where PG = :P_PG and SG = :P_SG
    and the report displays all the items in the PG and SG category selected
    If he then proceeds and selects one item from the MA list, the query would be:
    select * from x where PG = :P_PG and SG = :P_SG and MA =:P_MA
    and the report displays all the items in the PG and SG and MA category selected
    Now, I've read some documentation about the decode function, but I can't figure it out, please help.
    Peter

    Okay, Chet, have set it up on htmldb, so you can see my problem, will go in high detail, it is not producing what I want. Example on htmldb:
    DEMO/test
    http://htmldb.oracle.com/pls/otn/f?p=33229:6
    Defenitions:
    3 LOV's, namely:
    - LOVPG - select distinct productgroep, productgroep pg from plijst
    - LOVSG - select distinct subgroep, subgroep sg from plijst where productgroep = :P6_LOVPG
    - LOVLE- select distinct leverancier, leverancier le from plijst where productgroep = :P6_LOVPG and subgroep = :P6_LOVSG
    3 Selectitems with submit, namely:
    - :P6_LOVPG
    - :P6_LOVSG
    - :P6_LOVLE
    Report region select statement:
    select * from plijst where (productgroep = :P6_LOVPG or :P6_LOVPG IS NULL) and (subgroep = :P6_LOVSG or :P6_LOVSG IS NULL) and (leverancier = :P6_LOVLE or :P6_LOVLE IS NULL)
    Branch to:
    Branche to page on submit after processing
    What it should do is:
    When you select an item from the first selectlist, productgroep, the report should show all rows containing the specified productgroep.
    When the user selects the next item in the subgroep selectlist, the report should show all rows containing the previously selected prodctgroup and the just selected subgroep.
    When the user selects the final item , the report should show all rows based on all three selected itemvalues, productgroep, subgroep, leverancier.
    The problem is that with this setup the report is only generated after the final selectlist choice of the user. But the user should see a report before that, going deeper into the structure. Hope, you see my problem?
    Sincerely,
    Pete

  • Query regarding Oracle SQL select statement

    Hi,
    How does Oracle ensures a consistent snapshot with the select statement
    without locking the table. My question is summarized with an example below:
    1. At time T1, Oracle select statement is fired and is fetching the result.
    2. At time T2, some DML operation is performed on the same table on which
    the select was executed and a commit was fired.
    3. At time T3, The Oracle select statement (Step 1) completes.
    My question is whether the records of transaction at time T2 will be visible at time T3 or not?
    If "not", then does it mean that Oracle retrieves the rows from the time of last commit.
    I would also like to know if for the above mechanism, Oracle would make use of the rollback segemt to access the rows at a particular instant of time.
    TIA
    Regards,
    Raj

    This is called Read Consistency in the oracle. Its all about SCN before starting the transaction.
    Lets say
    1. T1 executs SELECT statement on EMP table.
    2. T2 made an update on the EMP and commited.
    But, T1 only still sees only old image of the data not the new one. This is called read consistency.
    You will be having two images in the buffer, one is consistent and changed image.
    When the T1 give SELECT statement it notes the SCN of the transaction. Read oracle document about read consistency.
    SJH.

  • Regarding performance in select query

    hi to all,
    i wrote select query for fetching duplicate records,like select distinct *.
    so at runtime it fetches all fields in table (FI dbtable).
    but i want to fetch only 8 records,for this i am using
    select distinct
              field1
               field2
    ..... like this ,it wasnt excuted.
    how can i avoid this issue.
    in program not much logic is there,only fetching the data and summation,n display.....
    plz giv me reply asap.
    regards
    satya

    satya wrote:>
    > hi to all,

    >  i wrote select query for fetching duplicate records,like select distinct *.
    > so at runtime it fetches all fields in table (FI dbtable).
    >
    > but i want to fetch only 8 records,for this i am using
    > select distinct
    >           field1
    >            field2
    > ..... like this ,it wasnt excuted.
    >
    > how can i avoid this issue.
    > in program not much logic is there,only fetching the data and summation,n display.....
    >
    > plz giv me reply asap.
    >
    > regards
    > satya
    Hi,
    write like this
    > select field1
    >           field2
    >          .......
    >   from  table
    >   into ( itab-f1,
    >            itab-f2,
    >            ........ )
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 19, 2008 5:14 PM

  • Regarding Data Base Select Query

    Hi All,
              I want to extract the data from data base into my internal table
              by not giving the exact value but the pattern.
              Ex) I want to select the vendor starting with patter '12*'
                    from LFA table in my internal table.
              Which select Query I should use for getting the
              Vendor No. starting with pattern '12*' ?.
              Points will be rewaded.
              Thanks in Advance.
    With Regards
    Jitendra Gujarathi.

    Hi jitendra,
    1. simple
    2.
    select * from lfa1
    into table lfa1
    where lifnr  like '12%'.
    regards,
    amit m .

  • Regarding Line Item Selection and product category

    Hi Experts,
    We are having a requirement in Line Item Selection in Oppurtunity.The requirement is that we need to display only the product categories belonging to that particular company(for eg Product Categories belonging to Company X) by restricting the display of product IDs.Please provide me some pointers on this as this is a high priority requirement.
    Requirement:Line item selection of an opportunity will be at a 'X' category from the product hierarchy level.

    Hi Amar,
      You have to retrieve all you rproduct ids based on your criteria before the execution of the below step in your method.
    result = qs->get_query_result( ).
    Once you have all your product Id's then default your search criteria with your product id's using the below code.
    ls_selection-attr_name = 'PRODUCT_ID'.
          ls_selection-sign = 'I'.
          ls_selection-option = 'EQ'.
          LOOP AT it_product INTO v_productid WHERE comt_product_id CP ls_search_criteria-low.
            CLEAR ls_selection-low.
            ls_selection-low = v_productid.
            CALL METHOD qs->add_selection_param
              EXPORTING
                iv_attr_name = ls_selection-attr_name
                iv_sign      = ls_selection-sign
                iv_option    = ls_selection-option
                iv_low       = ls_selection-low.
            CLEAR: v_productid,wa_result.
          ENDLOOP.
    this code should be included in your event handler before calling get_query_result( ).
    Hope this helps.
    Regards,
    Lakshmi.Y
    Edited by: Lakshmi Soujanya on Jul 11, 2011 11:55 AM

  • Regarding List output selection

    Hi Friends,
                    My query is iam having 100 fields in report(list) output and my client needs only 20 fields information from that o/p how can i get
    that selected fields from list output dynamically?
    Regards,
    Kishore

    which report are u printing can u tell me the tcode.
    see if this is a standard report most likely it will be an ALV report so in that case you can create a layout and hide unwanted fields, then save the layout, and set it as a default layout. Then whenever you will print next time it will only display the selected colums.
    reward points if helpful.
    regards,
    khusro habib

  • Regarding dates and selection screen

    Hi all,
    In my selection screen i have 2 date fields(ranges). I have a requirement wherein i have to allow user to select only one date i.e. let the date fields be date1 and date2 when the user enters date1 he should not be allowed to enter date2 and when the user enters date2 then he should not be allowed to enter date1.
    when user enters date1 and tries to enter date2 then a message should be displayed.
    pls urgent requirement and points are gauranteed.
    Regards,
    Ravi

    try this code
    slect-options : sdate1 for mkpf-budat,
                          sdate2 for mkpf-budat.
    parameters : rdate1 radiobutton group rb1 user-command date default 'X',
                       rdate1 radiobutton group rb1.
    at selection-screen output.
    if rdate1 = 'X'.
    loop at screen.
    if screen-name = sdate2-low or screen-name = sdate2-high.
    screen-input = '0'.
    modify screen.
    elseif rdate2 = 'X'.
    loop at screen.
    if screen-name = sdate1-low or screen-name = sdate1-high.
    screen-input = '0'.
    modify screen.
    endif.
    at selection-screen.
    if rdate1 = 'X'.
    clear sdate2[].
    elseif rdate2 = 'X'.
    clear sdate1[].
    endif.
    START-OF-SELECTION.
    regards
    shiba dutta

  • Regarding Debugging in Selection screen

    Hi All,
    I have a program when it will call a screen screen it will go to the debugging screen , could you plz tell me the ans.
    Regards,
    Nihar

    Hi Nihar,
    steps to go in debug mode in called program.
    <li>Put break-point on SUBMIT statement. Submit statement calls another program.
    <li>Before run calling program after entering selection-screen, give /H in command field and press ENTER.
    <li> Now Check , Break-point At menu in the menu bar, select statement and now give MESSAGE statement.It stops when MESSAGE is reached.
    I hope that it helps you.
    Thanks
    Venkat.O

  • Regarding button in selection screen

    Hi all,
    A query...
    After clicking the button on the screen, when i press the execute button it should give a display saying the corresponding button i clicked....
    But its not working out frnds...
    tables sscrfields.
    data flag.
    parameters test.
    selection-screen pushbutton /20(10) but1 user-command cli1.
    selection-screen pushbutton /20(10) text-020 user-command cli2.
    initialization.
    but1 = 'Button 1'.
    At selection-screen.
    if sscrfields-ucomm = 'cli1'.
    flag = '1'.
    elseif sscrfields-ucomm = 'cli2'.
    flag = '2'.
    endif.
    start-of-selection.
    if flag = '1'.
    write :/'Button 1 was clicked'.
    elseif flag = '2'.
    write :/'Button 2 was clicked'.
    endif.
    Thanking u all.
    regards,
    suraj

    Hi,
    <b>CHECK THIS CODE now it's working</b>
    data flag.
    selection-screen pushbutton /20(10) but1 user-command CLI1.
    selection-screen pushbutton /20(10) but2 user-command CLI2.
    initialization.
    but1 = 'Button 1'.
    but2 = 'Button 2'.
    At selection-screen.
    <b>if sy-ucomm = 'CLI1'.</b>
    flag = '1'.
    <b>elseif sy-ucomm = 'CLI2'.</b>
    flag = '2'.
    endif.
    start-of-selection.
    if flag = '1'.
    write :/'Button 1 was clicked'.
    elseif flag = '2'.
    write :/'Button 2 was clicked'.
    endif.
    Regards,
    Priyanka.

  • Regarding Tablename in Selection-screen

    HI all,
       my requirement is,, If i will give Table name in the selection-screen then the output is to display all the fields in table...
    for example if i will give MARA.... THE Output has to display all the fields of mara and their description..
    can any one give some idea pls...and if poss give some eg coding also....

    Hi,
    Check these function modules
    BKK_DB_GET_TABLE_FIELDS
    RM_TABLE_FIELDS_GET
    or check these tables
    DD03L                          Table Fields
    DD03T                          DD: Texts for fields (language dependent)
    Regards,
    Jyothi CH.

  • String Character Selection

    I just want to know if anyone knows the code so I can select the first character in a string and the last character in the string so that I can do the following function :
    First("ABC") ^ Last("ABC") = Answer
    Tks for any help

    You can use the charAt() method of the String class to help you find out the values. To find the first character use charAt(0) and to find the last character you can use charAt(String.lenght() - 1).
    Example:
    String word = "ABC";
    char firstLetter = word.charAt(0);
    char lastLetter = word.charAt(word.length() - 1);
    I hope this helps.

Maybe you are looking for