How To display our  Z*status in Crm_dno_monitor under Status Field -F4 help

Hi,
In Crm_dno_monitor transaction - on the Selection screen Status field comes ,    Now in that status Field F4 Help Shows the Standard status only, For Ex: Open, Super user,....ect,.
Now I want to display the our Z status* in that F4 help of that status Field in that particular Crm_dno_monitor transaction.
Let me know how it's possible,
Thanks,
Nirmal

Dear Saxena,
Thank's to Response,
We used our own Zstatus profile, So we want our Zstatus profile - status in F4 help in status field.           Ex: we are using the Zstat status profile and we want to display Zstat status in status field by F4 help but now it shows the standard status only.
Thanks & Regards,
Nirmal
Edited by: Nirmal R on Feb 28, 2008 7:57 AM
Edited by: Nirmal R on Feb 28, 2008 7:58 AM

Similar Messages

  • How To change  the status in Crm_dno_monitor under Status Field -F4 help

    In Crm_dno_monitor transaction - on the Selection screen Status field comes , Now in that status Field F4 Help Shows the Standard status only, For Ex: Open, Super user,....ect,.
    Now I want to display the our Z status in that F4 help of that status Field in that particular Crm_dno_monitor transaction.
    please help it out .
    Thanks,
    Deepak Saini

    thanks a lot dear frnd,
    In crm_dno_monitor
    how can i find that staus field ,currently using which status profile-statuses.how can i replace our status profile statuses  in place of standard status profile-statuses.
    (in crm_dno_monitor
    just check for the field status profile and provide your status profile name.)   -   i did not got that point.
    please give me the clear explanation.
    Thanks and Regards ,
    Deepak

  • How to display an Image which is on Panel behind JScrollPane - Please Help

    Hiii All,
    How to display an Image which is on Panel behind JScrollPane. I have set the setOpaque() method of JScrollPane to false still when i run the program the JScrollPane is set as Opaque.. Can some one please help me in this...
    Thanks,
    Piush

    you need to set both
    scrollPane.setOpaque(false);
    scrollPane.getViewport().setOpaque(false);

  • How to display texts automatic. besides entered value for a field in Trans.

    How to display texts automatically besides the entered value for a field in a standard transaction screen. For example you have a value table and a text table associated to it. Then on entering the value field and pressing enter the text associated should get displayed immediately besides the value. Like if you have 'LOC' as the value and 'Location' as the text associated to it, on entering this value 'LOC', you automatically get the text 'Location' printed besides it automatically in a transaction screen ?
    Message was edited by: Sarika Kedia

    Hi sarika,
    Welcome to SDN.
    1. first of all, such display of text,
       is not automatic.
       (it appears to be automatic)
    2. At design time,
       a) take one extra field for text
         and mark it as OUTPUT ONLY
    3. Then in PBO coding,
        call some module, and in that module
        write code
    4. The code should be to
       select from TEXT Table
       into the work area.
    EG. THE SCREEN TEXT FIELD NAME IS
    T510A-FIELDNAME.
    CLEAR t510a.
      SELECT SINGLE * FROM t510a INTO t510a
      WHERE trfar = FIELVALUE.
    5. This will take care of
       displaying the text value of that field.
    regards,
    amit m.

  • How to display our own selected data in a search help using a exit

    Hello,
    I had created a Search Help Exit to restrict the values to be displayed in the search help. This code was written under the event 'DISP' in the exit. But it is not giving the desired result. So I want to replace the RECORD_TAB of the exit with my own selected data. For this I had written code for selection under the event 'SELECT'. But when I try to overwrite RECORD_TAB with this, this create errors.
    What should I do to overwrite the values of the RECORD_TAB field with my own values?
    Regards,
    Abijith

    Hi,
    This is how we implemented the code modify the values in search help exit.
    Check if display process button is pressed
      IF callcontrol-step = 'DISP'.
    Read the parameter ID for company code.
        GET PARAMETER ID 'BUK' FIELD lv_bukrs.
        IF sy-subrc EQ 0.
          lwa_bukrs-sign   = 'I'.
          lwa_bukrs-option = 'EQ'.
          lwa_bukrs-low    = lv_bukrs.
          APPEND lwa_bukrs TO lr_bukrs.
        ENDIF.
      Check if any entry is made in Test account/Testity account name
        LOOP AT shlp-selopt INTO lwa_selopt.
          CASE lwa_selopt-shlpfield.
            WHEN  'ZZTEST'.
              lwa_roy-sign = lwa_selopt-sign.
              lwa_roy-option = lwa_selopt-option.
              lwa_roy-low = lwa_selopt-low.
              APPEND lwa_roy TO lr_roy.
            WHEN 'ZZTEST_NAME'.
              lwa_roy_name-sign = lwa_selopt-sign.
              lwa_roy_name-option = lwa_selopt-option.
              lwa_roy_name-low = lwa_selopt-low.
              APPEND lwa_roy_name TO lr_roy_name.
          ENDCASE.
        ENDLOOP.
      Get customer in entered for a company code
        SELECT kunnr
               bukrs
          FROM knb1
          INTO TABLE lt_knb1
          WHERE kunnr IN lr_roy
            AND bukrs IN lr_bukrs.
        IF sy-subrc EQ 0.
          SORT lt_knb1 BY kunnr.
        Get customer name for  the customer.
          SELECT kunnr
                 name1
            FROM kna1
            INTO TABLE lt_kna1
            FOR ALL ENTRIES IN lt_knb1
            WHERE kunnr EQ lt_knb1-kunnr
              AND mcod1   IN  lr_roy_name.
          IF sy-subrc EQ 0.
            SORT lt_kna1 BY kunnr.
          ENDIF.
        ENDIF.
      Get Values for Testty account selected by standard search help
        CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'
          EXPORTING
            parameter   = 'Ztest'
            fieldname   = 'Ztest'                                    " Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            results_tab = lt_test_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
      Get Values for Testty account Name selected by standard search help
        CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'
          EXPORTING
            parameter   = 'Ztest1'
            fieldname   = 'Ztest1'                                    " Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            results_tab = lt_roy_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
        LOOP AT lt_knb1 INTO lwa_knb1.
          CLEAR lwa_kna1.
          READ TABLE lt_kna1
                INTO lwa_kna1
                WITH KEY kunnr = lwa_knb1-kunnr
                BINARY SEARCH.
          IF sy-subrc EQ 0.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                input  = lwa_kna1-kunnr
              IMPORTING
                output = lv_kunnr.
            lwa_roy_help-ztest1 = lv_kunnr.
            lwa_roy_help-ztest = lwa_kna1-name1.
            APPEND lwa_roy_help TO lt_roy_help .
          ENDIF.
        ENDLOOP.
        SORT lt_ztest_help.
        DELETE ADJACENT DUPLICATES FROM lt_roy_help COMPARING ZTEST1.
    Finally transport the computed numbers into the search help data.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
          EXPORTING
            parameter   = 'ZTEST1'
            fieldname   = 'ZTEST1'" Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            source_tab  = lt_roy_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
    Finally transport the computed numbers into the search help data.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
          EXPORTING
            parameter   = 'ZTEST''
            fieldname   = 'ZTEST''                                  " Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            source_tab  = lt_roy_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
      ENDIF.
    Nabheet

  • How to display data from Database individually??? Anyone can help ?

    HI,
    i i had select a row of data from database using ,
    /* Query * From Table RESOURCEORDER where po = selected no and project = selected project */
         public ResultSet getAllData() throws SQLException
         getConnection();
         Statement stmt = conn.createStatement();
         ResultSet rs = stmt.executeQuery("SELECT * FROM RESOURCEORDER WHERE PROJECT = '" + getSelProject() + "' and PURCHASEORDERNO = '" + getPo() + "'" );
         return rs;
    After that , how do i display the data individually ?
    Eg select data is ('projectA','7891203-1', '10-4-2005','lcd',2000,'121-45217-8','electrical','pending','donwong')
    i want to display them individually, like this in a page
    Projectname: /* should display the Project A*/
    P.O no:
    Date:
    Order:
    Cost:
    Acc no:
    Type:
    status:
    Orderedby:
    Can anyone help ? cos i'm new to JSP ......Thanks alot!!!!!
    Regards,
    khim

    I assume PO being a unique key, will always return 1 row from db.
    public String[] getAllData() throws Exception
    getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * FROM RESOURCEORDER WHERE PROJECT = '" + getSelProject() + "' and PURCHASEORDERNO = '" + getPo() + "'" );
    String [] returnValue = new String[9];
    while(rs.next())
    returnValue[1] = rs.getString("colname");
    returnValue[2] = rs.getString("colname");
    ///and so on
    return returnValue;
    }Once you get that you could individually view it by setting a loop to run through the returned array.
    Hope it helps

  • How to display current system Date in the Date Input field ?

    Hi,
    I am having a Date Input field( binded to Data type). On load, i would like to display the current system date filled in that input field.
    How do i achieve this ?
    Reg/Venkat

    Hi Venkatesan,
    In your view in your init() method add the following code:
    wdContext.currentContextElement().setOrderDate(new Date(System.currentTimeMillis()));
    this is if your Date-attribute is in the root of the context.
    else you have to set the date in the node where the date-attribute is present with:
    IYOURNODEElement node = wdContext.createYOURNODEElement();
    node.setOrderDate(new Date(System.currentTimeMillis()));
    regards,
    Björn

  • How to display records from a query into non-database field

    Hi
    I a have a problem:
    I have a query with many tables and 6 column(select a,b,c,d,e,f from x,y,z,t,s,g where conditions) and I use 3 parameters.
    I create 3 parameters :datai,:dataf and :partener and a button with a trigger when button is pressed.
    Then a create a manualy block with six field non-database a1,b1,c1,d1,e1,f1.
    Now I want to display all the records from my query into a1,b1,c1,d1,e1,f1 where a1=a,b1=b,etc. and all the records (if I have 20 record, it will display 20 records in non-database field) when I press the button.
    How I made:
    I create a cursor with query then
    begin open cursor
    loop
    fetch cursor into :a1,:b1,:c1,:d1,:e1,:f1;
    end loop;
    close cursor;
    end;
    It display one record in a1,b1,c1 only and it have to display 100 records and are date for all the fields.
    Can somebody help me in this problem?
    Thanks.
    Edited by: 928437 on Oct 1, 2012 2:55 AM

    Creating a view, and querying that into a database block is an excellent solution.
    To use the non-database block:
    You're missing the all-important Next_Record; command.
    <pre> Begin
    Go_block('X'); -- block X is the non-database block
    Clear_Block(No_Validate);
    open cursor X1;
    loop
    If :System.Record_status != 'NEW' then
    Next_Record;
    End if;
    fetch X1 into :a1,:b1,:c1,:d1,:e1,:f1;
    Exit when X1%NOTFOUND;
    end loop;
    close X1;
    end;</pre>

  • How to display Long text in a single text area field.

    Hi All,
    I have a tabletype field which carries n lines to the form.
    I want the n lines to be displayed on the form in a floating field. I had the binding ike this
    "$.table.data[].TDline[]" to the field but its just displaying only 1st line.
    Is there any other approach?
    Right now I am thinking of having a hiddne subform with table and then concatinate all the lines of the table to this floating field.
    Thanks & Rgerads,
    Sai

    Hi Otto,
    Thanks for the reply..!
    This query is not related to the other post I had earlier, let me explain it bit clear.
    I have a Static text with 4 lines.
    Each line has a floating field of type text sime thing like Name: <name Textfield> etc.
    Now on the 4th line I got Address with floating field.
    Where this address data is coming as a internal table.
    Now I want all the lines of this address in single floating field with multiple lines. so the data binding I had is $.Address.DATA[].line[].
    at run time I see only one line of data f rom the address table in the address floating field, what I was looking is for multiple lines in this floating field.
    Let me know if you need more info.
    Cheers,
    Sai

  • How to display descriptive flexfield values without clicking on the field

    Hi,
    We are using ATTRIBUTE1 in PO Headers to provide a field for entering an emergency PO number. When users query a PO in the Puchase Order Headers form with a value in this field, they want the value to display on the form without having to click on the [] field to open up the DFF. Is this possible? This is the only DFF we're using on this form.
    The user is telling me the 11i instance used to but it is no longer there in R12.
    Can anyone help?
    Thanks.

    Hi,
    Check out Reference field and Default Context at DFF level.
    Regards,
    Sridhar

  • How to display the copyright string (c) in a text field ? 

    Hello,
    I'm using a text field in which I want to display the
    copyright symbol (c) : the letter "c" in a small circle.
    I tried this :
    texte.text ="&copy BRAND"
    but it doesn't work.
    Can you help me ?

    Thanks Raymond,
    Your answer does work when I use the following code :
    this.createTextField("my_text1", this.getNextHighestDepth(),
    10, 10, 100, 100);
    my_text1.text = "\u00A9 brand";
    but it does not work when I import the same text from a XML
    document and want it to be displayed in the box field on the stage,
    using this code for example (texte is the name of my box instance)
    var menu_xml = new XML();
    menu_xml.load("menu_brands.xml");
    menu_xml.ignoreWhite = true;
    menu_xml.onLoad = function() {
    texte.text =
    this.childNodes[0].childNodes[0].attributes.brand;
    Actually in this case, the text that is displayed is :
    \u00A9 brand
    which means that the \u00A9 code seems not recognized as the
    copyright symbol.
    Can you explain this ?
    And can you tell where does the code \u00A9 come from ?
    Thank you again.
    Text

  • How to display image file from the link in the field

    Hi all,
    I have a column where it keeps the link of the image files reside. The link will be in the server such as \\server\picture1.jpg
    I have try to code in Read_Image_File('\\server\picture1.jpg', 'ANY','OM_ITEM.ITEM_URL');
    But I was encountered error run, ORA-01465: invalid hex number.
    Any one please help me. Thanks.
    Regards,
    Lim

    There are tons of informations missing here, for instance (but not limited to) the exact forms version you are using (note: 10g is not a version, but 10.1.2.0.2 is). Without Version informations a correct answer is not possible
    You might want to go through the links from the Announcement entitled "<a href=http://forums.oracle.com/forums/ann.jspa?annID=432>Before posting on this forum please read </a>" which contains links to the documentation and instructions on how to post proper questions for example.
    cheers

  • How to display a message dialog box

    I need to know how to display a message box from my application.
    Anyone can help me?
    Thanks in advance

    Dear Zennen,
    Use JOptionPane.
    Ex
    JOptionPane.showMessageDialog(this,"message","title",JOptionPane.INFORMATION_MESSAGE); Thanks
    Joey

  • How to display a oracle table from a java program?

    How to display a oracle table from a java program.
    Hello friends, I have written a Java program, using oracle 10g as backend.
    I want to display a oracle table as output. Im not getting how to display oracle table as a output table.. Pls help me
    Thank you

    jayanthds, you're not going to get a satisfactory
    answer to this here. it's too big a task to justbe
    quickly outlined in a forum - the reply "all youneed
    to do is to query you table and return it asJTable"
    is worthless, for example, since the solution to
    any problem can be distilled to such a
    soundbite, if need be. doesn't make the solutionany
    simpler
    essentially you're asking "how do I write adatabase
    application?". all you'll get is snippets of code
    that, when fitted together, will eventually helpyou
    do this, but you'll spend days and days comingback
    saying "right, I've done that, now what?" until
    either you or the forum gets frustrated with the
    whole affair and the process stops
    there are entire books written about this subject,
    and countless tutorials and guides on theinternet.
    you're better off going down that routehehehe.well, it's true! I used to have a manager that would outline the solution to a problem in a few lines of pseudocode, and then firmly believe that the actual solution would be just as brief and simple. shame his pseudocode included such lofty abstractions as "reformat all data"

  • BB Bold 9000 How to display Arabic SMS text

    I'm new to these forums so sorry if I'm posting this in the wrong spot .. please redirect me if so.
    Recently bought BB bold 9000 from Vodafone Aust. Need to know how to display msgs or emails received in ARABIC text .. any help would be appreciated.
    Solved!
    Go to Solution.

    Hi,
    Download the OS for the carrier and use Application loader inside the Desktop manager software (that came with the Box)  and select Arabic with the language options (if that is an option).
    Alternatively you could install the OS from an Arabic carrier (involves deleting the vendor.xml file), but its not recommended....
    This is the instructions from my website (the short version):
     Get an OS from here:http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    The Operating system software downloaded from the Blackberry website contains all the files required to reload the O/S.
    The Desktop Manager software is NOT required!
    Once downloaded and installed, follow these directions:
    Download the OS file from your carrier website to the PC then install it to the PC by running (double clicking) the file you downloaded.
    Go to c:\program files\common files\research in motion\apploader and delete the file named "vendor.xml."
    Plug in BB and double click on "Loader.exe." It's located in the same place as the above vendor.xml file.
    The process takes about 45 minutes to an hour depending on how much data you have to backup and restore during the process. Once it's done loading the new OS it will reboot (it may do this twice during the entire process.) You will see a white screen with an hourglass for up to 20 minutes at a time while the DM says "waiting for initialization." If, for some reason, you end up with a white screen with small icons and the number 507, simply connect to the PC again and run Loader.exe again and it should load the OS to the device.
    Checked out my Blackberry FAQ's and Links to Needed Articles here
    http://darkeen.homelinux.com/index.php/Blackberryfaq

Maybe you are looking for

  • How can I execute this procedure in sql developer, cursortype is refcursor

    PROCEDURE GET_CNTRY(CNTRY_NME_IN IN VARCHAR2 DEFAULT NULL, QRY_RSLT_OUT OUT CURSORTYPE) AS BEGIN OPEN QRY_RSLT_OUT FOR select CNTRY_NME, FRGN_CNTRY_CDE, INV_VEH_CNTRY_CDE, FRGN_CNCY_CDE, WTHH_PCT_COLA_CDE FROM CNTRY WHERE CNTRY_NME = NVL(CNTRY_NME_IN

  • Install old iLife from 10.3 disks onto iBook w/ a clean install of Tiger?

    My ibook originally came with Panther 10.3. iLife was included on the install disks. A few months ago, I did a clean install of Tiger. I then tried to reinstall iLife from the Panther 10.3 disks. However, only Garageband and iDVD show up ---iPhoto an

  • Parallel material valuation

    Hello colleagues, Current situation is that all materials in all legal entities are valued and standard price but for some of these we require that materials are valued @ moving average prices. That means that in any given time we need a report that

  • Files creation time on digital camera's SD is now offset with timezone

    Been checking out the photos I've took with a digital camera by taking the SD card and mounting it in current (all up to date) Arch. It was weird to see that the latest photos are shown as being in the future. Basically the camera don't know about ti

  • What Setting are Applied to RAW Imports?

    When I import my RAW files into Lightroom, what settings are applied to them - camera or Lightroom settings.  If Lightroom, how do I change those settings?