FSG showing Account description instead of value and description

Hi ,
I am getting rows without Account Values in an FSG that I created - it has 27 columns. I had specifically created a row order with Value and Description for the Account Segment with all other segments having width zero. When I run this FSG I only get the Description and not the values. I tried everything from increasing the width of the column and also removing the row order but it still shows only the description. I also tried with a row order with Value only for the Account Segment but even then it shows only the Account description. I have no idea what is causing it? Can you tell me how to fix it?
Thanks,
Arun

Can you post the query for which the bind variable values are not being shown and the trace output for the same?
Probably it is listed down somewhere when you actually executed the query among the others. Try completely analyzing your trace file..

Similar Messages

  • In trace file and output file showing bind variable instead of value

    Hi,
    database 9i
    optimizer = choose(for cost based)
    In my trace file and output file showing bind variable instead of value.
    in my trace file 20 queries.
    I alse set this parameter in session level.
    alter session set events '10046 trace name context forever, level 4';
    but still showing traceoutput file bind variable.
    Pls help its very urgent

    Can you post the query for which the bind variable values are not being shown and the trace output for the same?
    Probably it is listed down somewhere when you actually executed the query among the others. Try completely analyzing your trace file..

  • Display value and description of one field in alv grid

    Hi Folks,
       I want to display value and description of one field as one column in alv grid.
    for example iam having Xfield = 01,02,03.
    and 01 iam having text value as xxx,
    01 xxx
    02 yyy
    03 zzz
    Im report display the values are displaying as 01,02,03..
    but i want to display it as 01 xxx,02 yyy, 03 zzz.
    Please do needful.
    Thx.

    Hi, swetha
    You can do this with "concatenate".
    example:
    In you code check where you final internal table is getting filled up before that do this concatenate and then append it.
    data t_text type string.
    t_text = textfield
    CONCATENATE 'Xfield'
                     t_text
                      INTO wa_workarea SEPARATED BY space.
    cheers,
    Bhavana

  • Both attribute value and description showing on attribute value dropdown list

    Hi All,
    I am using CRM 7.0 EhP 1 and I have encountered a item I need to address in regard to the display of a Marketing Attribute values on the Account Overview page (BP_HEAD/BPHEADOverview) on the Web Client.
    The component in question on the page is BP_DATA/MarketingAttributesEOVP.
    The value dropdown lists for each attribute show both the Attribute Value (in my case a number) and Description. We require that only the Description is shown and not the Attribute Value in brackets also.
    Is there a user setting that controls this or is displaying both standard with no adjustment possible through user settings or configuration? 
    Thanks,
    Jonathan

    Hi All, 
    The following OSS note looks to resolve issue in question above:
    1647509 - Attributes value shown as value+description in accounts page
    Thanks for your assistance.
    Jonathan

  • Asset report - with asset G/L accounts connected for gross value and amorti

    Hello dear all,
    Is there a way to obtain asset report by asset (and not by asset class) with the G/L accounts connected for gross value (acquisition) and amortization (depreciation) ?
    Thanks
    Edited by: Tarek AYACHI on Jun 1, 2010 10:25 AM

    Look to the report S_ALR_87011990 - Asset History Sheet  for more information about this report look in the wiki part from this forum
    http://wiki.sdn.sap.com/wiki/display/ERPFI/Asset+Reporting
    perhaps you can find with the ransaction ARQ0 - Ad Hoc Reports  you need

  • Chart legend shows database field instead of value

    Hi,
    I would like to understand the behavior of the charts legend, which sometimes display the field values as requested, but sometimes display the database field name starting with a @.
    We develop Crystal Reports and then generate them via an application. We have many releases of our application and therefore we get to work with Crystal versions 10, XI, XIr2 and 2008.
    In all cases, the legend display is correct when in the Crystal Reports Designer preview mode. However when generated through our application (using ADO.NET), depending on the Crystal runtime version (apparently) the result varies. Editing the legend label in preview mode doesn't resolve the issue.
    Is this behavior related to :
    - Crystal Reports runtime (it appears to happen only with Crystal Reports runtimes XIr2 and 2008 in our case) ?
    - Using formula fields in the chart instead of database fields directly ?
    - Evaluation time (our charts are in Report Header and/or Group Header) ?
    - any other idea ?
    Thank you very much
    Anthony

    We have been able to detect that the Language Regional Settings of Windows XP Pro has a direct effect on our charts legend display.
    We noticed that when the Regional Settings were set to English, the report would generate correctly and chart legends would display values, and not database fields names. However, when the regional settings are set to another language (tried French, Dutch, Spanish and German) the problem occurs.
    Using Process Monitor we have spotted that when in Regional Settings other than English it was still the English dll that were called (crdb_adoplus_res_en.dll)...
    The problem occurs with Crystal runtimes XIr2 and 2008 only. We use Crystal Reports in an application, using ADO.NET connector, and we use the Crystal runtime to generate reports.
    Is this a bug or is there a workaround to make sure the correct dll are called according to regional settings ?
    Thank you for your kind assistance.
    Best regards,
    Anthony

  • Standard report which can show the  details of Invoice value and PO value

    Hi all,
    Is there any  standard report which can show the  details of Invoice value  is more than 5% of PO value. MIRO value and PO value.
    If any report which caters the maximum requirement is also fine
    Regards
    Sanjith
    Edited by: Sanjith Sethu Lekha on Dec 6, 2011 2:42 PM

    Hi
    Please refer the below mentioned link
    /thread/1789934 [original link is broken]
    Regards
    Praveen P C

  • Domain Values and Description

    I have defined one custom data element with custom domain and some fixed values at the Domain level.
    I am using that data element at the Custom screen. The problem is that I am getting F4 help without Desription.
    In the drop down help I am getting on Values not the description. How I can get both in the F4 drop down help.

    You can try something like this... It is building the search help on the fly in the program based on the domain fixed values. 
    report zrich_0001 .
    data: dbdiff_values type ddfixvalues,
          dbdiff_val    type ddfixvalue.
    data: begin of help occurs 0,
          low type ddfixvalue-low,
          ddtext type ddfixvalue-ddtext,
          end of help.
    data: return type table of ddshretval with header line.
    parameters: p_koart type koart.
    at selection-screen on value-request for p_koart.
      call function 'DDIF_FIELDINFO_GET'
           exporting
                tabname      = 'BSEG'
                fieldname    = 'KOART'
                lfieldname   = 'KOART'
           tables
                fixed_values = dbdiff_values.
      clear help.  refresh help.
      loop at dbdiff_values into dbdiff_val.
        move-corresponding dbdiff_val to help.
        append help.
      endloop.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
           exporting
                retfield    = 'KOART'
                dynprofield = 'P_KOART'
                dynpprog    = sy-cprog
                dynpnr      = sy-dynnr
                value_org   = 'S'
           tables
                value_tab   = help.
    Regards,
    Rich Heilman

  • FSG Reports : Row Set Account assignments (Display Type to show Account nar

    I have an FSG related issue. I've defined a report using a basic row set and a column set. In my row set, I've used account assignments and the display type as 'Expand' to my natural account. Is it possible to show the narration of the account in the report instead of the natural account number?
    For example, My report now displays '1401' - which is the natural account number. I want to display its narration which reads 'Revenue'
    Miranga

    Hi Miranga,
    it is possible to display the Account code description .. infact you can display both account code and description ... for which you need to create a ROW ORDER and attach it to your FSG Report ...
    Perform the below steps :
    1) Switch responsibility to General Ledger
    2) Navigate to Reports > Define > Order
    3) Enter a name for the ROW ORDER field
    4) In the Account Display section, enter SEQ as 1, Segment as ACCOUNT, order by as VALUE and DISPLAY as VALUE AND DESCRIPTION and Width as 15 ..
    You can increase/decrease the width based on the how the data is appearing in your report output ...
    5) Save the record ..
    6) Navigate to Reports > Define > Report
    7) Query your report ....
    8) In the optional Components section, click on the Row Order field and select the row order you have configured above from List of values ..
    9) Save the changes made to the report ...
    10) Run the FSG report afresh and see the output ...
    Regards,
    Ivruksha

  • Keynote data labels, can I show category names instead of data values?

    I'd like to recreate the chart below in Keynote. The chart below is an excel line chart with the lines removed. In excel I can opt to show category names instead of values for the data labels. Can I do this in Keynote?

    You can select member name or alias or both in the Dimension property while creating the form.
    It is in the same window as explained earlier, you need to just select both the Member and its Aliase to be displayed on the form.
    Thanks,
    Ravi

  • Peoplecode to get dropdownlist box value and its description

    Hi,
    I have assigned a value and its description to dropdownlist box. when try to get the value and description in somewhere, i didn't get the description. i got only the value of the current row in a rowset. but i want to fetch the description which i assigned to the dropdownlist for the corresponding value. Is there any way to get the description?

    Since it is not a XLAT bound to the field, you cannot use the field class properties.
    What is the source of the dropdownlist?
    If it comes from a database record, you could fetch the description from the database using the &Field.Value as input.
    But this would cause a lot of database roundtrips.
    You could store the value and description in a two dimensional component array variable and load this array with the values and descriptions at PostBuild Event.
    This will only fires ones during the component build.
    Suppose the values are "hardcoded", something like this
    /* Create component 2-dim array */
    Component array of array of string &DropdownArray;
    &DropdownArray = CreateArrayRept("", 0);
    &DropdownArray.Push(CreateArray("value1", "descr1");
    &DropdownArray.Push(CreateArray("value2", "descr2");
    &DropdownArray.Push(CreateArray("value3", "descr3");
    After this populate the dropdownlist with values and descriptions from the array.
    For &i = 1 To &DropdownArray.Len
      &Field.AddDropDownItem(&DropdownArray[&i][1], &DropdownArray[&i][2]);
    End-For;
    Whenever you need to fetch the description of the dropdownlist value, first find the value by &Field.Value and then search within the array for the description.
    /*Get value from dropdown */
    &Value = &Field.Value;
    /*Find index for value*/
    &Ind = &DropdownArray.Find(&Value);
    /*Get description (second index in subarray)*/
    &Descr = &DropdownArray [&Ind][2];
    I am writing the code without an environment, so typos could exist
    Hope this helps.

  • ITunes Podcast Author and Description tags..

    My podcast xml syntax is 100% perfect and validated yet when I submitted my podcast to iTunes, it showed up as having no author and description tags - what is up with that?
    I submitted it anyway - 5 days ago - and today it's still not in the iTunes directory.
    How long should it take to be approved and if it's not approved, will I be able to submit it again?
    Power Book G4   Mac OS X (10.2.x)  
    Power Book G4   Mac OS X (10.3.9)  

    Do you have itune tags included?
    Make sure to do a Get Info in itnues once you manually add the file. Set the form values and then use that file.
    Make sure whatever is generating the rss feed adds itune tags as well. Feedburner and others do this.
    How long to get approved- could be a day or it could be ??

  • Need help for displaying key and description in Dropdown (ABAP WEBDYNPRO)

    Hi Experts,
    I am using dropdown as a table field. For this dropdown I want to display the value as well as description.
    In ALV table when we create a dropdown dynamically in table field, there is a method SET_KEY_VISIBLE in class CL_SALV_WD_UIE_DROPDOWN_BY_KEY.
    But I think we cannot use similar method for normal dropdown field in table.
    Is there any way we can display both value and description in dropdown value set ?
    Please help.
    Regards,
    Anand

    Hi,
    I think there is no such option. You need to consider one variable type string and while populating the
    valueset fill this variable by concatenating the value and description and assign it the key and value
    pair of the valueset.
    DATA:
      lt_value_set_ctry      type table of wdr_context_attr_value, " Country/Service Location
      lv_str type string.
        loop at lit_country into ls_country.
          concatenate ls_country-value ls_country-text into lv_str separated by space.
          ls_value_set-value = lv_str.
          ls_value_set-text  = lv_str.
          append  ls_value_set to lt_value_set_ctry.
          clear ls_value_set.
        endloop.
          lr_node_info->set_attribute_value_set( name = 'COUNTRY'
                     value_set = lt_value_set_ctry ).
    Consider this lit_country is a text table for countries.
    Regards,
    Lekha.

  • Query or report for G/L Master data including Tax Field and Description

    Dear SAP Gurus
    Please help me. I am trying to find a report to display G/L master data at company code level and which includes the tax filed and tax catagory description. Does such a report exist please?
    I have also created a query but cannnot add the description of the tax catagory entered in the G/L master data. Can you please tell me if such a table exists which can be used for a query. Besides the VAT code if this is entered in the master data I need to include value and description of the tax catagory such as *, > etc.
    Many thanks
    PRG

    Hi,
    There is no table storing the description on tax catagory such as *, > etc.
    Even SAP has hardcoded the discription in the search help of these special tex categories. For tax codes it picks from table T007A.
    You need to create your program with fetching the values for these tax categories.
    Regards,
    Gaurav

  • Easy DMS | characteristic value an descriptions

    Hi experts,
    In cv01, cv... users could select a value by entering the char. value key.
    On the other side in EDMS users could only select a value by a description.
    Is it possible to display the char. value and description -fields of characteristics in EDMS?
    Thanks in advance....

    You may extract the info using vs studio 2005, by referring the EasyDMSExplorer.tlb file supplied in EasyDMS Installtion. See  wiki http://wiki.sdn.sap.com/wiki/x/cAHEB for example.

Maybe you are looking for