Display Description

Hi,
I developed one payment request voucher form in that i have one doubt.
I am picking the all fields from BSAK and BSIK.
but my requirement is :
from bsak-->check document NO augbl(170000094)
            display(BELNR) 190000194
          then goto BSEG-->
in that comapare shkzg = s
pick hkont>then goto> SKAT Compare
SANKR = HKONT in that pick txt50
Thanks&regards,
prasad
Moderator message : Spec dumping not allowed, show the work you have already done. Thread locked.
Edited by: Vinod Kumar on Dec 6, 2011 4:49 PM

Prasad,
This is normal logic that we need to apply if want G/L account text. For each BELNR in BSAK you can select single record from BSEG where shkzg = 'S'. Using BSEG-HKONT, you can get G/L account text from SKAT. See if logical database KDF is of some use to you.
Regards,
Kalyani

Similar Messages

  • Display descriptions of cost center and G/L account in ME51N/ME52N/ME53N

    Hi Experts,
    Can any one suggest that how to display descriptions of cost center and G/L account in account assignment subscreen- ME51N / ME52N / ME53N.
    Thanks in Advance...
    Siva

    hi
    if the field is required then u have to enter them manually
    so if this are not required then goto OKB9 here give the default cost center for the Gl acct

  • Display description & save code for a control with CFL

    Hi all,
        I have an edit text which is associated with a Choose From List(CFL). The CFL displays 2 fields viz. Code & Name. I need my edit text to display the 'Name' field but should save the Code field in the database.
        Combo box has this functionality of 'Display Description' that display the description but stores the corresponding Code. How do I achieve this functionality for CFL.
    Praveen.

    Hi Praveen,
    Here's code (based/generated on/through B1DE... I am sure you can "translate" it for your purposes) that does the trick:
    <B1Listener(BoEventTypes.et_ITEM_PRESSED, true)>  _
    Public Overridable Function OnBeforeItemPressed(ByVal pVal As ItemEvent) As Boolean
      Dim form As Form = B1Connections.theAppl.Forms.Item(pVal.FormUID)
      Dim item As Item = form.Items.Item("1")
      Dim button As Button = CType(item.Specific, Button)
      Dim oEdt As SAPbouiCOM.EditText
      Try
        oEdt = form.Items.Item("NMS_MyDescr").Specific
        Dim oDTab As SAPbouiCOM.DataTable
        If form.DataSources.DataTables.Count = 0 Then
          oDTab = form.DataSources.DataTables.Add("DummyDT")
        Else
          oDTab = form.DataSources.DataTables.Item("DummyDT")
        End If
        oDTab.ExecuteQuery("select U_MyCode from [@NMS_UDO_SDN] where U_MyDescr = '" & oEdt.String & "'")
        oEdt = form.Items.Item("NMS_MyCode").Specific
        oEdt.String = oDTab.GetValue("U_MyCode", 0).ToString()
      Catch ex As Exception
        B1Connections.theAppl.StatusBar.SetText(ex.Message, BoMessageTime.bmt_Short)
      End Try
      Return True
    End Function
    Regards,
    Frank
    Message was edited by:
            Frank Moebius
    To make it easier for me to compile a SQL for the DataTable I have the description in the UDT as well, but that doesn't have any impact on the trick...

  • 'F4IF_INT_TABLE_VALUE_REQUEST' how to display description

    Hi All,
    I'm showing such help using 'F4IF_INT_TABLE_VALUE_REQUEST'
    TYPE
    RE
    KR
    TY
    Now the requiremnt is to show description also along with that like :
    TYPE   Description
    RE       Invoice-xyz
    KR       Invoice-abc
    TY       Invoice-pqr
    Below is my code :
    value_tab-name = 'RE'.
      append value_tab.
      value_tab-name = 'KG'.
      append value_tab.
    field_tab-fieldname = 'BLART'.
      field_tab-tabname = 'BSAK'.
      append field_tab.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield        = field_tab-fieldname
        tables
          value_tab       = value_tab
          field_tab       = field_tab
          return_tab      = return_tab
        exceptions
          parameter_error = 1
          no_values_found = 2
          others          = 3.
    Kindly help how can I achieve this.

    Hi All,
    This is my complete code :
    select-options : s_blart   FOR bsak-blart.
      DATA: BEGIN OF value_tab OCCURS 0,
                   name TYPE bsak-blart,
                   des TYPE makt-maktx,
                 END OF value_tab.
      DATA :field_tab LIKE dfies  OCCURS 0 WITH HEADER LINE.
        field_tab-fieldname = 'BLART'.
        field_tab-tabname = 'BSAK'.
        APPEND field_tab.
        value_tab-name = 'XG'.
        value_tab-des = 'desc'.
        APPEND value_tab.
        value_tab-name = 'YT'.
        value_tab-des = 'abc'.
        APPEND value_tab.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'BLART'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'S_BLART'
    *      window_title    = 'Document Types'
          value_org       = 'S'
        TABLES
          value_tab       = value_tab
          field_tab       = field_tab
          return_tab      = return_tab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc = 0.
        s_blart-low = return_tab-fieldval.
      ENDIF.
    For this code help is displayed with no values.
    Kindly suggest what changes need to be made now.

  • ALV report : to display description in two lines.

    Hi all,
    In a ALV grid display,  I want to print description(40 characters) of a field in two lines(20 characters in each).
    Please suggest me how to achive the same.
    Thanks in advance.

    make the description field of 20 char legth in your final internal table.
    while passing data to your final internal table, pass all fields along with 20chars from description to one line of final table and in the same loop add another row with all fields blank but the description with rest of the fields..
    loop at it_1 into it_s.
    is_final-desc = it_s-desc+0(20).
    apppend is_fianl to it_final.
    clear is_final.
    is_fianl-desc = it_1-desc+20(20).
    apppend is_fianl to it_final.
    clear it_s.
    endloop.

  • Display Description for a field in a screen

    Hi Gurus,
    I have created a screen which has 2 fields, Material no and Material description.My requirement is that, If I select the material description, the corresponding material should display.
    But I can't select from the F4 help of material description as two or more materials may have the same description.
    How to proceed in this case?Please help..
    Thanks in advance,
    Raj.

    use this function module
    here pass selected matnr no need to press enter
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
           EXPORTING
                DYNAME               = PROG_name
                DYNUMB               =  screen_no
           TABLES
                DYNPFIELDS           = (Material No.)
           EXCEPTIONS
                INVALID_ABAPWORKAREA = 1
                INVALID_DYNPROFIELD  = 2
                INVALID_DYNPRONAME   = 3
                INVALID_DYNPRONUMMER = 4
                INVALID_REQUEST      = 5
                NO_FIELDDESCRIPTION  = 6
                UNDEFIND_ERROR       = 7
                OTHERS               = 8.

  • How to display Description for Selected Value instead of ID

    Hi i have a problem i want to display a description on a combo box list of values instead of the ID when i want to use ir for a formlayout or af:query for estethic
    because i have found this links:
    http://vikasadflovdevelop-adf-lov.blogspot.com/2012/06/v-behaviorurldefaultvmlo.html?showComment=1389196282800
    https://blogs.oracle.com/adf/entry/combo_lov_how_to_display
    The Incident Archive: ADF: LOV Description instead of code
    but none of them really works or i dont how to do it anyone can helpme please
    i'm new on ADF and jdeveloper

    Hey user,
    If i'm understanding it right, you want to show the values instead of the id, which is very usefull. If that is the case, try this website:
    ADF Tutorial: How to implement dependent list of values | Oralublog - Oralution&amp;#039;s Blog
    That looks like yours but it explains a little better. Probably you forgot to go to the UIhints part...
    Hope that helps,
    Frederico.

  • Display description in Overview screens

    I am currently working on the Overview Screens for Personal Data, Address etc., and need your inputs on below:
    1. how to display the "description" instead of codes/key for the fields like Preferred language(dropdown), Gender (radio button), State (dropdown) on the Overview Screens in the respective applications.
    2. is there a best practice to show a generic error message when the screen is locker by a user ? please share the details.
    3. how to display the values of from different fields like communication type, area code and telephone number on the Overview screen. for ex: Communication Type 1: CELL 123-4567890
    Version: EHP3
    Appreciate your inputs.
    Thanks,
    Amar Challa

    Amar,
    For requirements 1 and 3 you need to change the webdynpro for java code and you need NWDI for that.
    for requirement 2 you cannot have control for displaying custom message because it is webdynpro for java code
    Thanks
    Bala Duvvuri

  • Photoshop: How to save as a pdf and display description?

    The only other Photoshop I ever used was CS3, and when I clicked "print" it saved as a pdf first, and I could choose to make it display different metadata. That feature has been removed for all newer versions for some reason, and I have no idea how to do what I want to do.
    I need to save it as a pdf, and display the description/subject metadata under the photo. I can't find anything online on how to do this.

    BlazeHeatnix,
    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    Please understand that "CS5" does not clear up the issue of what version of Photoshop you are using.  "Photoshop CS5 12.0.1" would.
    A screen capture would be very helpful.
    Also, have you trued the Print command, then Save As PDF?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Display Description from Text table on View Cluster

    Hello All,
    I have the below requirement for creating a view cluster to maintain customizing data -
    V_TAB_1 has been created for table TAB_1. TAB_1has a text table associated with it.
    V_TAB_2 has been created for table TAB_2. TAB_2 has a field which has foreign key relationship with the key field of table TAB_1.
    I have created view cluster using above views V_TAB_1 and V_TAB_2. Now while maintain the data using view cluster, description is no visible on the UI.
    First Level of Data: This maintains the data in table TAB_1 and its text table.
    Now, If I select any record and click on the sub node of the view cluster - Following appears
    Second Level of Data -
    If we look at the data in the second screen shot, description 'Nitesh' is not coming against the reason code '1'. this is highlighted in the second screen shot
    I have tried to populated with Events as well. But could not succeed. Any help would be highly appreciated.
    Regards,
    Nitesh

    Hi
    I try to see the data of CSKS by SE16 and I can't see the text field (my release is 6.00) but I can see that field by SE16N, so just the situation like yours.
    Probably the fields of this table are too much, because SE16 can display the text field of other tables having a text table
    Max

  • WebGUI does not display descriptions of hierarchy nodes in RSH1

    Hello,
    I want to enable end users to maintain a hierarchy via SAP GUI for HTML.
    I built a transaction (ZRSH1_$my-hierarchy) that calls rsh1 directly with the parameters InfoObject and hierarchy name. It works just as expected.
    Now when I call my transaction in the WebGUI, it opens the modification view of the expected hierarchy. That's ok.
    But the text descriptions of all the nodes are not displayed. It just displays "0HIER_NODE" where the textnode descriptions should be.
    Is that a bug? Or can I fix it somehow?
    Thanks in advance,
    Stefan
    By the way:
    I am on BI 7.0 with Integrated ITS 6.40
    SAP Base 10
    Message was edited by:
            Stefan Voltz

    Hi Vicky,
    When you talk of views do you want to run the report in the web or the Analyzer?
    If its the Analyzer, run your query - open and close whatever nodes you want in your query and on the Properties of the Query ensure that the Interaction Tab - Return to Global Definition is not enabled. Save your workbook and then when you reopen the workbook you will see the nodes opened or closed as you saved them.
    Regards
    Gill

  • Display description, but non-updatable data block

    To display my Item_Description, I've created a post-query trigger to lookup Item_Description based on Item_Num, which works fine, except if the user does not have update priveledge. By default the data block is non-updatable. If the user has update, then the block is set updatable at run-time.
    Problem is, for a non-update priveledge user, the form errors when the trigger attempts to set the description field. [Even though the field is set updatable by default.]
    What am I missing? Thanks.

    I'm confused. You say:
    "By default the data block is non-updatable."
    but then you say:
    "...the field is set updatable by default."
    If the data block is not updateable, then you can't make the item updateable.
    Assuming the default is non-updateable, and a user does not have update privilege, then the error message you are getting is correct because the trigger is trying to do an update when the item is non-updateable.
    If you need the trigger to do an update, then you need to make the item updateable. If you don't want the trigger to do an update for this user, then first check if the item is updateable (use the get_item_property), and if it is updateable, then let the trigger do the update.
    Message was edited by:
    Mark Roberts

  • Status Field Display Description in PLD

    Hi Experts,
    My Client is in SAP88 PL=14 Hotfix
    The Status Field in the Sales Order Screen is a Variable field:
    for Example 1-Open, 2-Open Printed, 3 -Close and 5-Unapproved
    Using Standard PLD Sales Order Layout, is there a quick way of displaying the description of these variables instead of the numeric code?
    Thank you for any imput in advance.

    Hi,
    You can create formulas for this:
    1. Add the Status field as variable 275.
    2. Add formulas to state the Status = 1, 2 or 3, etc.
    3. Add simple text fields with the statuses you would like to print, eg. 'Open' or 'Open - Printed'
    4. In the field Properties of these fields use the Link To option to link them to the relevant fields described in step 2 respectively.
    This way each text field will only show if the relevant status code is applicable.
    One example:
    1. F_001: variable: 275
    2. F_002: formula: F_001=='1'
    3. F_003: text: Open
    4. F_003: linked to F_002
    Hope this helps.
    Regards,
    Nat

  • 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

  • Search Help displaying description but returning ID

    Hi All,
    I have a textbox in web dynpro showing description (from table "Description" ) in a textbox after user selected some value from its search help.
    The issue is, instead of description shown (which is correct), I want to process the value selected using its ID (from table "ID").
    Both tables have child-parent relation.
    Unfortunately, both "ID" and "Description" are not key. The keys for both table are GUID (another field).
    Any suggested solution ?
    TIA,
    Tony

    Hi Tony,
        In your search help try using index.
        You can use the index number to select the value.
        I have some sample code, you can use this as per your requirement.
    METHOD add_data .
      DATA : lt_urls TYPE if_main_view=>elements_drp_text.
      DATA : lr_element      TYPE REF TO if_wd_context_node.
      DATA :     url             LIKE LINE OF lt_urls.
    Supply data for the node at runtime
      REFRESH lt_urls[].
      DO 5 TIMES.
        url-key = sy-index + 1 .
        CONDENSE url-key.
        CONCATENATE `www.` url-key `.com` INTO url-url.
        INSERT url INTO TABLE lt_urls.
      ENDDO.
      lr_element = wd_context->get_child_node( 'DRP_TEXT' ).
      lr_element->bind_table( lt_urls ).
    ENDMETHOD.
    Hope this will help you.
    Cheers,
    Darshna.

  • Display description of query variable in selection screen

    Hi @ All.
    we have a query with a variable (..UVO_0currency_001D).
    In the selection screen of the query I see the technical name of the variable instead of the description "Currency".
    What and where I have to change to see the description of my variable?
    Thanks a lot!
    Stephan

    Hi,
    change the infoobjec property for that perticular infoobject at Multi provider if your Query is on Multiprovider. goto Change mode of multiprovider - > expand respective dimension -> right click ob perticulat infoobject - > select provider - specific properties of the infoobject. select disply ad key and text.
    hope this helps
    Regards,
    Daya Sagar

Maybe you are looking for

  • IPhoto library list not showing up in the iMovie window

    Hi everyone, I upgraded to iLife '08 and also to Leopard recently and am having trouble using iMovie with iPhoto. I've had no problems pulling in iPhoto pictures into the previous version of iMovie but now I do. My iPhoto library sits on an external

  • Stale data when db is shared

              I asked a question to a WebLogic salesrepresentative, how to avoid stale data when the db is shared, without doing ejbLoad() for each transaction.           He told me that if two WebLogic Servers, in a cluster setup, access the same databa

  • Round up all values in FI & other modules also

    Hi Experts, We have an requirement that, while posing of any document in SAP, via FI like Cash / Bank / Expenses Voucher or any kind of document / voucher (may be coming from other modules also), the Decimal Points should not appear or value should b

  • OAF vs Oracle Scripting

    A potential custom application has been put on hold as it has been deemed to expensive to write in OAF. We have now been asked to investigate if it is possible and quicker to write this app in Oracle Scripting. I am currently ploughing my way through

  • Completely lost - programs won't load, others won't operate properly

    I'm at my wits end here guys and I have no idea what to do. I've tried everything I could think of short of reinstalling the entire operating system. I've tried repairing the boot up drive with the install CD on startup, but after several attempts it