Display of XREF2 Field in FBL3N

Hi All,
The client is maintaining some values in a field XREF2 in BSEG. In se16 the values are displayed. They are also displayed in FB03 when I am viewing the individual documents. But when I am using transaction FBL3N the same is not getting displayed. Even if I am selecting the fields from "choose display" icon, the columns are getting added for the said field but it is appearing blank. Can somebody tell me why is this happening please?
Regards,
Sameer

Hi Sammer,
Not sure if this issue is resolved, I have the same issue with displaying XREF2 (Ref. Key 2) and RSTGR (Reason Code) in FBL3N transaction. FBL3N (Program - RFITEMGL) always reads line items from tables BSIS/BSAS and above fields not available in these tables. RFPOSX structure already have these fields, so extending or changing won't help. I looked at SAP special/advance development/consulting/customizing notes for any work arounds for this requirement. I guess all the clients that use reason codes in AR and charge off to expense accounts would have this issue but i don't see any clear answer/solution to this requirement except a Z report. Not even sure if anybody used BTE 1650 approach and had success.
Can somebody advise how this requirement can be met?
Thanks
Venkata Ganesh Perumalla

Similar Messages

  • Vendor name field in FBL3N report

    Hi Experts,
    Requirement : In Fbl3n report Vendor name required for vendor code in vendor field and not in offseting account field.
    Action taken : Through spro vendor field has been added to fbl3n report.Now BTE 1650 has been activated.In function module ZF_INTERFACE_00001650 in importing parameter i_postab there is no field for getting vendor codes that are displayed in vendor field in FBL3N report.So i cannot get not get name of vendor codes.
    One option i know is i am getting PO no from i_postab,so from PO NO i can get vendor code and hence vendor name.
    Is there any other way of getting vendor codes in function module mentioned above.
    Please suggest.
    Regards,
    Kaustubh Kabre.

    Hi,
    Refer the below link
    [New fields in FBL3N report]
    Regards,
    Surendar Reddy.

  • Add field in FBL3N Tcode Layout

    Hello All,
    I wish to add the field LGTXT (Wage Type Long Text) to be displayed in FBL3N.  How to add this field in the layout in FBL3N?
    Can we add this field? My idea is to view the Wage type text field when i hit the G/L Account and company code in FBL3N.
    Please guide me. Thanks in advance.
    Regards,
    Santosh

    Hello Madhu,
    I did activate the BTE in FIBF and also assigned the ZSAMPLE_INTERFACE_00001650 Function Module to it.
    I carried out following steps:
    1) Activated FIBF and assigned function module 00001650.
    2) Appended structure to RFPOS and RFPOSX with ZZLGTXT and executed RFPOSXEXTEND.
    3) In coding inside FM 00001650, following is my code:
    FUNCTION
    E_POSTAB = I_POSTAB.
    TABLES: bseg,  ska1, skat, t512t,  t52el.
    Data:  lc_account like SKA1-SAKNR.
    Data:  lc_symbolic_account like T52EL-SYMKO.
    Data:  lc_type like T52EL-LGART.
    Data:  lc_text like T512T-LGTXT.
    select single SAKNR into lc_account from ska1 where SAKNR = e_postab-konto.
    select single SYMKO into lc_symbolic_account from T52EL where SYMKO = e_postab-konto.
    IF lc_symbolic_account = lc_account.
      select single LGART into lc_type from T52EL.
    ENDIF.
    IF lc_type = T512T-LGART.
    select single LGTXT into lc_text from T512T.
      IF sy-subrc = 0.
        e_postab-ZZLGTXT = lc_text.
      ENDIF.
    ENDIF.
    ENDFUNCTION
    Am not getting the Wage type text data in my Wage Type Text Field in FBL3N. Please guide me on my coding.
    Thanks,
    Santosh

  • To display a VARCHAR field in database as select boolean checkbox

    Hi,
    i have a table in database having a VARCHAR2(1) field named IsActive with value 'Y' or 'N' , I need to display this field as select boolean check box in the JSF page
    using ADF Entity Object and ViewObject. We have followed the following method for displaying this field as select boolean check box.
    1. Changed the datatype of the IsActive field in the Entity Object as Boolean and the database column type as Varchar2(10)
    2. we have edited the query using case when IsActive='Y' then 1 else 0 end .
    3.and converted the IsActive inputtext to select boolean checkbox.
    Thus we where able to display this field as select boolean check box but the problem is that we where not able to insert the data as 'Y' or 'N' using this method.
    Please help us whether the method we are following is correct or is there any other method to insert and display the similar fields like IsActive as select boolean check box in ADF
    Thanks in Advance
    Anitha

    Anitha,
    Create a transient boolean attribute on your EO. Write the getter to return true/false if the real attribute is Y/N. Write the setter to do the converse. Bind the transient attribute to the checkbox.
    John

  • Module pool programming - supressing display of some fields

    Moderator message: better to start a new thread.
    Hi i have similar requirement to this. module pool programming - supressing display of some fields
    suppose i am displying
    BUKRS    0001
    Sales org  0001
    KUNNR    1000
    i dont want todisplay  if the field is blank.
    suppose if sales org is blank
    expected result is liek this
    BUKRS    0001
    KUNNR    1000
    i tried through loop at screen by uisng that
    i am getting output like below.
    BUKRS    0001
    KUNNR    1000
    hello subbarao, could you tell if your problem solved.

    Hi Naidu,
    In PBO put
    DATA: FLAG TYPE I VALUE 0.
    IF SALESORG = SPACE.
      FLAG = 1.
    ENDIF.
    LOOP AT SCREEN.
      IF FLAG = 1.
        IF SCREEN-NAME  = 'SALESORG'.
           SCREEN-INVISIBLE = 'X'.
           MODIFY SCREEN.
        ENDIF.
    ENDIF.
    ENDLOOP.
    Thanks,
    Chidanand

  • How to set "Display as Text" field with AJAX select list

    thanks Denes for your posting. I'm trying to use the Denes Kubicek code to populate a "Display as Text" field. It works for Text Field (disabled), but not "Display as Text" field(saves state) . In my applciation I need to show this field only (not the disabled text box) when a select list value is changed. any ideas to modify the code below are appreciated.
    http://htmldb.oracle.com/pls/otn/f?p=31517:80:3418128396960418::NO
    here is the code from the url above
    1. Create an Application Process - getDet:
    DECLARE
    my_det VARCHAR2 (200);
    BEGIN
    SELECT ename || CHR(10) || job || CHR(10) || mgr
    INTO my_det
    FROM emp
    WHERE empno = :P80_EMPLOYEES;
    HTP.prn (my_det);
    END;
    2. Put the following in the Region Header of your page:
    <script language="JavaScript" type="text/javascript">
    function f_getDet ()
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=getDet',0);
    get.add('P80_EMPLOYEES',html_GetElement('P80_EMPLOYEES').value)
    gReturn = get.get();
    if(gReturn)
    {  html_GetElement('P80_DETAILS').value = gReturn  }
    else
    {  html_GetElement('P80_DETAILS').value = 'null'  }
    get = null;
    </script>
    3. Put the following in the HTML Form Element Attributes of :P80_EMPLOYEES:
    onChange="f_getDet()";

    Arie,
    this works fine on normal page, except page zero. I have the AJAX select list and "Display as Text" field on page zero. The "Display as Text" field doesn't show the the value when AJAX select is changed. I'm using similar code as used in my other APEX page on OTN site. I tired to display the gReturn value, just before calling "setDisplayOnlyNode" function in the code below and it's showing correct value, but fails to display the value in the APEX field on page zero. Any ideas are appreciated.
    Thanks,
    Surya
    <script language="JavaScript" type="text/javascript">
    function setDisplayOnlyNode(pItem, pValue)
    { var textNode = pItem + '_DISPLAY'; $x(textNode).innerText = pValue; }
    function f_getDet ()
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=getDet',0);
    get.add('P1_EMPLOYEES',html_GetElement('P1_EMPLOYEES').value)
    gReturn = get.get();
    if(gReturn)
    { setDisplayOnlyNode('P1_DETAILS',gReturn)}
    {  html_GetElement('P1_TEST').value = gReturn  }
    get = null;
    </script>

  • Displaying Single Datablock field in Multiple Record Data Block

    Hi all
    I have a master detail block for cash transaction recording.
    Master Table name CahMaster and datablock contains columns Cash Bill No, Date, Customer ID, Misc Freight Charges.
    Detail Table name is CashDetail and datablock includes product id, product name, unit price, quantity, return, discount and Disc Overall. Number of records to be displayed in this block are 10.
    Now I want to Display Disc Overall field for one time only which is also a database field.
    I have used to set its properties to be displayed for one time only. It apprantlelly solved the problem.
    But when I used to execute query to see the previous records,
    Disc Overall field does not show the records till I move or Mouse click the last record of any cashdetail record.
    Any solution, thanks in advance!!!
    With Best Regards
    Thunder2777

    The layout of my cash detail is as follow to give you better undrstanding
    Prod_ID Prod_Name Qty Unit Price Return Disc Total per Record
    Total Qty --- Total Return ---- Sub Total ----
    Disc Overall ----- Grand Total ----
    I calculate cash Detail as following
    Total per Record = ((Qty - Return) X Unit Price) - Disc (Discount)
    Disc (Discount) is further calculated through When Validate trigger at item level which is (totalPrice * Disc)/100
    Total Per Record is a display field just to display the total.
    There are 4 other Displays fields e.g Total Qty, Total Return, Sub Total and Grand Total
    Totoal Qty, Total Return and Sub Total uses the sum fuction of block to calculate the sum of these three columns. Sub Total sum the Total Per Record field /column.
    Grand total again uses the when validate trigger at item level to calculate the grand total which is Grand Total = Sub Total - Disc Overall.
    Disc Overall = Subtotal - (subtotal * Disc Overall ) / 100
    That' s why I have asked to display the Discont Overall field for ONE TIME only as it is the discount which is applied to overall total.
    With Thanks
    Thunder2777

  • How to update XREF1, XREF2 fields

    Guyz,
    i've captured few custom values for specific G/L Documents during creation through BTE.... if i want to give user to change the values selected during creation, i'm looking for options to change xref1, xref2 fields in BSEG....
    no bapis found..... FI_DOCUMENT_CHANGE doesn't work for XREF1, XREF2 if my doc is G/L Account (BSEG-KOART = 'S') ....
    following are my thoughts, and want your suggestions on this or any advise pls...
    1>> BDC
    2>> direct update BSEG (i'm afraid of transaction integrity aswell, so require all tables to update , if required....
    OR
    any other miracle?
    thanks in advance

    HI,
    Can you please share your solution.
    Thanks,
    Themba

  • Secial Field in FBL3N

    Hi
    Can any one please guide me to bring " Long text" (Not the Text) into FBL3N standard report. This is the second screen from Text in FBL3N basic transaction report
    The technical detail for the field in question is given below.
    Table name- EENO_DYNP
    Field Name - ZEILE
    Regards
    Dinabandhu

    Hi,
    It is not possible in any way to get this field in FBL3N.
    This is long text and needs a seperate programme to read.  You can use the function module READ_TEXT to see this text in a custom report.
    Cheers.

  • How to display/create Local field in SAP query

    HI All,
    I'm new to abap query. I have to include a local field in the existing query. I know through SQ01->Edit->Local field we can display the Local fields, but the options under Local Fields menu option are disable even in change mode of Query.
    So, later through SDN found that, I have to Switch On the short names menu option. Even the sub-options in Short Names are disabled.
    Can any body please let me know how can we display the local fields to the change the formula and how can we create the new local fields in the existing qeury.
    Hope I'm able to explain my issue clearly.
    Thanks in advance.

    You can create the local fields in the "Select Field" screen. (Third screen after "Title, Format" and "Select Field Group") This option is disabled on the other screens.<br />
    <br />
    <i>Reference : <a class="jive-link-external" href="http://help.sap.com/saphelp_NW70EHP1/helpdata/en/d2/cb4186455611d189710000e8322d00/frameset.htm" target="_newWindow">Defining Local Fields</a> in <a class="jive-link-external" href="http://help.sap.com/saphelp_NW70EHP1/helpdata/en/d2/cb3efb455611d189710000e8322d00/frameset.htm" target="_newWindow">SAP Query</a>.</i><br />
    <br />
    Regards,<br />
    Raymond

  • Change XSD / XML dataset during runtime and display texts in field explorer

    Hi there,
    I am changing the datasource of a report during runtime. Afterwards, I would like to change the texts of the fields appearing in the field explorer.
    I tried:
    CrystalDecisions.ReportAppServer.DataDefModel.XMLDataSetClass xmlDS =
    new CrystalDecisions.ReportAppServer.DataDefModel.XMLDataSetClass();
    byte[] xmlContent = reportContent.getXmlContent();
    byte[] xsdContent = reportContent.getXsdContent();
    CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray xmlData =
    new CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray();
    CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray xsdData =
    new CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray();
    xmlData.ByteArray = xmlContent;
    xmlDS.XMLData = xmlData;
    xsdData.ByteArray = xsdContent;
    xmlDS.XMLSchema = xsdData;
    rasDoc.DatabaseController.SetDataSource(xmlDS, "", "");
    rasDoc.Database.Tables[0].Description = "POMMES";
    for (int i = 0; i < rasDoc.DatabaseController.Database.Tables[0].DataFields.Count; i++)
    rasDoc.Database.Tables[0].DataFields.Name = "TEST";
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.Name);
    rasDoc.Database.Tables[0].DataFields.HeadingText = "HOORAY";
    rasDoc.Database.Tables[0].DataFields.Description = "NOPE";
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.Description);
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.HeadingText);
    When running this, the message boxes include the right strings I set before but when this is done, the filed explorer still shows no changes. What am I doing wrong?
    Also, I would like to change the field texts that are displayed in the field explorer. How can this be done?
    Thanks,
    Pascal

    Also, I do not understand why I am not able to change the display of the fields in the filed explorer.
    This coding does not change a bit, but why??
    //preparation
    string tableName = reportDataSet.Tables[0].TableName;
                  // Get the table definition exactly like the definition of my own dataset.
                  CrystalDecisions.ReportAppServer.DataDefModel.Table table = GetTable(tableName);
                  table.ConnectionInfo = connectionInfo;
                  //delete all existing tables if there are any
                  foreach (CrystalDecisions.ReportAppServer.DataDefModel.Table oldTable in rasDoc.DatabaseController.Database.Tables)
                      rasDoc.DatabaseController.RemoveTable(oldTable.Name);
                  //add my new table with the IDs of the XSD
                  rasDoc.DatabaseController.AddTable(table, null);
                  //now I want to change the displayed fields texts
                  CrystalDecisions.ReportAppServer.DataDefModel.Tables modifyTables =
                      rasDoc.DatabaseController.Database.Tables;
                  CrystalDecisions.ReportAppServer.DataDefModel.Table myTable =
                      (CrystalDecisions.ReportAppServer.DataDefModel.Table)modifyTables[0];
                  Fields fields = myTable.DataFields;
                  for (int i = 0; i < fields.Count; i++)
                      ISCRField field = fields<i>;
                      ResultFieldController resultFieldController =
                         rasDoc.DataDefController.ResultFieldController;
                      try
                          resultFieldController.Remove(field);
                          string sText = "";
                          sText = "Bäschreibung" + i.ToString();
                          field.Description = new string(sText.ToCharArray());
                          sText = "Häding" + i.ToString();
                          field.HeadingText = new string(sText.ToCharArray());
                          //sText = "Näme" + i.ToString();
                          //field.Name = new string(sText.ToCharArray());
                          resultFieldController.Add(-1, field);
                      catch (Exception exp)
                          MessageBox.Show(exp.Message);
    I am completely stuck.
    Thanks for any help.
    Pascal
    Edited by: Pascal Schmidt-Volkmar on Sep 30, 2008 9:31 AM

  • To Display a date field in TSTCT table

    Dear Experts,
    Recently we got a request to have a date field in TSTCT table. So, that when ever the new transaction is created the date will automatically display  in TSTCT table. Now there is only three fields in the table. There is no further settings to regarding the display of date field. Is there any possible cases/BADI's which helps to display the Date field in TSTCT Table. Please help me with possible solutions.
    Thanks in advance, Regards,
    Harsha.

    Dear Eswara,
    It is not possible adding field through BADI or exit. But you go into /nSE11 for this table and go to Technical Settings, if the check box 'Log Data Changes' is set then you may be able to display a log of changes made to entries in this table using /nSCU3.
    Regards,
    Abbas.

  • Display currency  unit  field in FM reuse_alv_grid_display

    Hi friends,
    I am using ALV list, I want to display the currency field as a column in the list , also the '$' sign should get displayed in the amount field .
    I have used the logic given in the SAP help, but i am unable to display the currency unit.
    can anybody help me out .
    Thanks in advance for the suggestions.

    Hi Poonam,
       I think you cannot have the $ sign in the same amount field if you have declared it as a TYPE CURR field.
    YOu can have an extra field, immediately after the Amount Field which has a value '$' in it.
    If you want to have the dollar sign in the field itself, then concatenate the amount field and '$' sign into a common field and build a field catalog for that field.
    But there is an inherent disadvantage with this approach that you will not be able to have utilities like totals, subtotals etc.
    Welcome to SDN..:)
    Regards,
    Ravi
    Message was edited by: Ravi Kanth Talagana

  • Displaying new custom field in

    hi all expert again!
    i created a new field in order.jsp. but i have no idea how to display this new field with value in orderstatusdetail.jsp, which user click on history link on the right side. this value should be collected from FM or extension table? can you let me know which java action to be interrupted to add this in? 
    can you all guide me please?
    thanks!
    appreciated your help.
    Shanti

    Shanthi,
    1. Create a custom action ZMaintainBasketDispatcherAction. Extend the MaintainBasketDispatcherAction. In this write logic for the customerExitDispatcher method to forward to a custom action when the simulation is done.
    Ex: String actionSimulate = (String)parser.getRequest().getParameter("simulatepressed");
              if (actionSimulate!=null && actionSimulate.length() > 0) {
                   zforwardTo = "zsimulate";
    2. In config.xml add a new entry for zsimulate and provide another action class like zsimulationaction.java
    3. Here read the value of the field from the request and set it to the extension data of header/item based on the field location in order.jsp.
    Ex: preOrderSalesDocument.getHeaderData().addExtensionData("obj","value");
    4. Create a custom backend object for Order / Quotation. There, create instance for the ZCreateStrategy which will extend the CreateStrategy.
    5. You will have a user exit available performCustExitBeforeR3Call where you can read the extension data that you set earlier
    Ex: document.getHeaderData().getExtensionData("obj")
    6. YOu can pass this data to backend FM which will be SD_SALESDOCUMENT_CREATE.
    7. After function module is executed. implement the user exit performCustExitAfterR3SimulateCall
    8. Again set the value back to the extension object.
    document.getHeaderData().addExtensionData("obj","value")
    9. Now in the ordersimulate.jsp read the extension obj and display it.
    Hope this helps.
    Pradeep

  • Displaying dependant matadata fields in UCM

    Hi..
    I want to display the matadata fields depending upon the Option list in UCM.
    Means for ex: There is option list for Department-HR , Finance.Now When I select HR in that option list,then it should display emp name and Emp no only that are the matadata fields associated with HR department .And for Finance,it should display amother matadata fields- Order id and order name..
    How can I get it???

    Hi ryan,
    Thanks for reply..But you are not getting me..Acctually I want to display the specific matadata fields depending upon one of the option list value..
    For ex: There is one option list-Department having values HR and Finance..Now ,when I select Department as a HR,then only EmpName and EmpNo should displayed..And when I select Finance,then OrderId and OrderName should displayed and remaining fields such as EmpName and EmnNo should hidden...
    OR though the all fields are displayed but while doing check in,only appropriate fields should check in..That is If I select Department as HR,then only EmpName and EmnNo should check in ,not OrderId and OrderName.
    Regards,
    Yogita

Maybe you are looking for

  • SSIS: How to use one Variable as Input and Output Parameter in an Execute SQL Task

    Hello, i need your help,I'm working on this issue since yesterday and have no idea how to deal with it. As I already said in the tilte i want to start a stored procedure via a Execute SQL Task which has around 15 prameters. 10 of these should be used

  • I can't do ANYTHING on my ipod touch.

    *my ipod touch (2nd gen?) won't turn on, won't show up on my computer - and i've tried 'recovery mode'. if anyone else has had the same problem and sorted it i would appreciate greatly tips / info.* here's what happened: 1. the battery ran low and de

  • HT4641 Unable to share Pages document as a PDF document in email.

    I am having difficulty exporting documents created in Pages as PDFs. I have a New iPad. Latestest iOS installed 5.1.1. I ReInstalled the app and restarted my iPad. I have emailed myself PDFs from Pages many times. Installing the iOS update (5.1.1) wa

  • Export table from pdf to excel

    I have been attempting to convert a large table from a pdf file to an Excel worksheet, but I am having no luck. I am working on Adobe 8, and I can't figure out a way to do it. I've tried saving the file as .txt, but this completely screws up the form

  • Text File - to- XMLFile  scenario    Conditions

    Hi friends,       My Text File contain data like this <b>MAT_NO</b> M1 M2 M3 <b>MAT_NAME</b> MONITOR PROCESSOR USB <b>MAT_PRICE</b> 5000 2000 800 Ect............................................. the above is my Text file.. now  i want to  load this f