Text in field reference key does not appear in FBL3N

Dear Expert,
Can you tell me why reference key's content (text) in FI document doesn't appear when I execute FBL3N?
Thanks and Regards,
YL

Go to O7R3 and add field XREF1 / XREF2 / XREF3.....which ever you are using.
O7R3 - BSEG - XREF1
To activate the field you have run the program RFPOSXEXTEND from SE38
Then try with FBL3N. It doesn't show the Text for old documents, it shows from the time you activate the field and post the document.
Thanks
Edited by: nkonnipati on Feb 21, 2012 2:29 PM
Edited by: nkonnipati on Feb 21, 2012 2:32 PM

Similar Messages

  • Field functional area does not appear as an entry field into the document..

    Hi,
    We are using the functional area field in our system. In order to access this field, we proceeded
    to customize the system as follows:
    -  We already activate Cost of Sales Accounting for our Company Code.
    -  The field functional area was set optional through transaction OB41, for the posting keys required.
    -  The field functional area was set optional using transaction OB14, for the field status group assigned to the GL accounts.
    However, we cannot enter the area functional when we are posting documents related to customers and vendors. 
    Although the field functional area was set optional, it does not appear as an entry field into the document screen for the
    different transactions: fb70, fb60, f-02,fb01.  It is only happening when we areentering the document position for the vendor/customer.
    Regards,
    Efrain

    Hi,
    In FB70 or FB60 change the layout ........ select the line item layout configuration, you get a separate Table Settings screen pop up where in you need to select "Administrator"  button the system displays another pop up window where in you can check whether the Functional Area field is checked as invisible if so remove the check mark and active the settings.
    Kind Regards

  • New field in CI_COBL does not appear in FB01 interface

    Hi!
    I have added new field to coding block (ci_cobl) and created subscreen with this field. I did this through OXK3 transaction (spro->...->special ledger->maintain coding block).
    The field has appeared in field statuses set-up (it is set to "Opt Entry"), but it hasn't appeared in the FB01/02/03 transactions.
    How to enable the field in the interface of standard FI transactions?
    Thanks!

    Some questions
    -Did you solve your problem ?
    -Did you come through OSS <a href="https://service.sap.com/sap/support/notes/174413">Note 174413 - Customer-specific fields in new Enjoy transactions</a> ?
    Regards

  • DTW -- UDF does not appear in Serial Number

    Hi All,
    I am trying to update a UDF in serial number transaction table for GR PO. I have prepared a template where I have added a column at the end with the name of the column as defined in database. when I map these fields in DTW, I dont find this UDF in the list of serial number's columns. when I map the document header (GR PO), I am able to see the UDF of OPDN table but that does not happen for Serial number's mapping. any idea??? I am using 2005 B PL 44.
    thanks,
    Binita

    Hi Peter,
    thanks for the reply. I am using the third template viz SerialNumbers.xlt  only for updating UDFs in serial number's transaction table (OSRI). and all the default fields appear in the list while mapping which are there in the template. also the UDF column which I have added in the template does appear in the list on the left side (source fields)   but it does not appear on the right side (Target fields). so I have nothing to map it against.
    any idea?
    thanks,
    Binita

  • Field on manual tabular appears using Firefox but does not appear using IE

    Hello,
    A field in a manual tabular form appears correctly using Firefox but does not appear or appears in another field when IE is used. Javascript is used to hide certain columns on the tabular form. Does anyone know how to solve this problem?
    Thanks pany

    Prabodh,
    The select for the report and the javascript that is used to hide the columns are displayed below. The data for Apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') is shown in the previous column, Date Acquired, and the column for Method Acquired is blank. It appears correctly in Firefox. Please let me know if this is sufficient.
    Thanks,
    pany
    SELECT
    apex_item.hidden(1, c011) status
    ,apex_item.checkbox(2,seq_id) checkbox
    ,apex_item.hidden(3, seq_id) seq_id
    ,apex_item.hidden(4,c001) Owner_Firm_Id
    ,apex_item.hidden(5,c002) Owner_Id
    ,apex_item.hidden(6,c003,10) First_Name
    ,apex_item.hidden(7,c004,10) Last_Name
    ,apex_item.text(8,c005,10) Number_Shares
    ,apex_item.text(9,c006,10) Percentage
    ,apex_item.text(10,c007,10) Class
    ,apex_item.date_popup(11,rownum, c008, 'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,c009,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,c010,10) Primary_Key
    FROM apex_collections
    WHERE collection_name= 'INTEREST_STOCK_COLL'
    AND c011 IN ('O','N','U')
    union all
    select
    apex_item.hidden (1,null) status
    ,apex_item.checkbox(2, null) checkbox
    ,apex_item.hidden(3, null) seqid
    ,apex_item.hidden(4,null,10) Owner_Firm_Id
    ,apex_item.hidden(5,null,10) Owner_Id
    ,apex_item.hidden(6,null,10) First_Name
    ,apex_item.hidden(7,null,10) Last_Name
    ,apex_item.text(8,null,10) Number_Shares
    ,apex_item.text(9,null,10) Percentage
    ,apex_item.text(10,null,10) Class
    ,apex_item.date_popup(11,1, null,'MM/DD/YYYY',15) Date_Acquired
    ,apex_item.select_list_from_lov(12,null,'LOV_METHOD_OF_ACQ') Method_Acquired
    ,apex_item.hidden(13,null,10) Primary_Key
    FROM dual
    Javascript
    function hideCols(p_startOfTable, p_pageList, p_debug)
              alert("in function");
              var outStr = "Blanking Script:\n";
    var debug = p_debug;
    var offCols = p_pageList.split(":"); //string comes in colon delimited, split it
    into array
    var tbl = document.getElementById(p_startOfTable); //get the table from the page
    html source
    var rows = tbl.getElementsByTagName('tr'); //get the first row
    var tds = tbl.getElementsByTagName('td');
    var testStr;
    outStr = outStr + "START tds length is " + tds.length + "\n";
    if (debug)
    alert(outStr);
              //START Clear Headers
    var i, j, cells;
    cells = rows[0].getElementsByTagName('th'); //get the headers
    for (j = 0; j < offCols.length; j++)
    cells[j].className = "hidden";
    outStr = outStr + "i is " + i + " HEADER rows.length is " + rows.length +
    "\n";
    if (debug)
    alert(outStr);
    //END Clear Headers
              //START Clear TDs
              for (i = 0; i < tds.length; i++)
    var attrib = tds.innerHTML;
    var gNum = attrib.indexOf(" name=") + 7;
    var colNum = attrib.substr(gNum, 2);
    colNum = parseFloat(colNum);
    for (j = 0; j < offCols.length; j++)
    if (debug)
    testStr = testStr + "\n" + "colNum is: " + colNum + " className is: " +
    tds[i].className + " i is: " + i + " j is: " + j + "\n";
    if (colNum == offCols[j])
    if (debug)
    alert("colNum is " + colNum);
    if (tds[i].className == "datepicker")
    if (debug)
    alert("caught condition with i= " + i);
    tds[i - 1].className = "hidden";
    tds[i].className = "hidden";
    tds[i + 1].className = "hidden";
    //add popupLOV functionality here
    //add radio button functionality here
    // add other items that may have multiple <td>
    else
    //regular hideCol
    tds[i].className = "hidden";
              //END Clear TDs
    if (debug)
    alert(testStr);
    //document.write(testStr);
    Edited by: PANY on Aug 12, 2010 8:25 AM

  • Field Headinds for some Z fields does not appear in SE16n

    For some custom defined fields, headings does not appear if we use transaction SE16n. But that appears if SE16.
    Please reply if you got similar issue.
    Thanks
    Manish

    Hello Manish,
                            This is because all the the custom fields those are not created with reference to a data element won't display the filed names in Se16n.
    So if you want you can make your custom field of the append structue to refer a data element.
    Thanks,
    Greetson

  • Manage Account does not appear in the options sync tab. How do I manage my account to get the recovery key?

    I cannot sync my Firefox 18 desktop with iPad or iPhone browsers. I have tried everything suggested on the Web and have tried safe mode as well. When I enter the three-line synch code, I get a sync failure. I have deleted my account and then set up a new account without success. Manage Account does not appear in the options sync tab. How do I manage my account to get the recovery key?
    I’ve spent hours on this and am considering using Chrome as my regular browser since I have no trouble syncing Chrome with apps. Help appreciated.

    You can only inspect the sync key via manage account if this device is has been setup and is connected to the sync server.
    You can find the sync account password and the sync (recovery) key in the password manager on computers where a sync account with a specific e-mail address has been set up.
    Look for:
    * chrome://weave (Mozilla Services Password)
    * chrome://weave (Mozilla Services Encryption Passphrase)
    You can look at this version of the about:synckey extension that I have modified to show the sync key in current Firefox versions (desktop and mobile).
    * http://www.freefilehosting.net/aboutsynckey-11-fnfx
    * [[/questions/942893]]

  • My iMessage does not appear to be working. Every time I go to reply to an existing message it just appears as normal text. I have tried to create a new message but it still just defaults to normal messages. I have checked my settings but looks ok. Help?

    My iMessage does not appear to be working. Every time I go to reply to an existing message it just appears as normal text. I have tried to create a new message but it still just defaults to normal messages. I have checked my settings but it is all set up as it should be. Is there anything I've missed or could try? Thanks

    Try the following:
    In Finder, select the problematic volume and then press command-I.
    Expand the Sharing & permissions section if it's collapsed.
    If the section is locked, then unlock it by pressing the padlock button and then authenticating as directed.
    Tick/check Ignore ownership on this volume.

  • I upgraded pages.  Now when I begin a new document I automatically have a text box.  How do I get rid of the text box so that it does not automatically appear.  What settings do I need to change?

    I upgraded pages.  Now when I begin a new document I automatically have a text box.  How do I get rid of the text box so that it does not automatically appear.  What settings do I need to change?

    Perhaps you are loading a template that has a text block already on it.
    You might try the blank template option and set that as your go to template in your preferences

  • A word document was emailed to me.  I can open the document without a problem.  Is there a way for me to type on the document.... to fill out the form?  When I click the fields, the virtual keyboard does not appear.

    A word document was emailed to me.  I can open the document without a problem on my iPad 2.   Is there a way for me to type on the document.... to fill out the form?  When I click the fields, the virtual keyboard does not appear.

    If you want to edit a word document then you will need an app on your iPad that supports word so that you can copy them to it via 'open in' e.g. Apple's Pages app or a third-party app such as Documents To Go or QuickOffice HD

  • Go - Connect to Server does NOT work - The text entered does not appear to

    Two Macs with Mac OS X 10.5.2. Both migrated from Mac OS X 10.4.11. One Mactel and one PowerPC. I can see the former from the latter, but not the latter from the former:
    Go/Connect to Server
    gives this error all the time for all listed servers:
    The text entered does not appear to be a recognized URL format
    This does not help:
    Mac OS X 10.5: "The text entered does not appear to be a recognized URL format" alert when connecting to server
    http://docs.info.apple.com/article.html?artnum=307256
    Any idea how to fix it? Thanks.

    At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, boot holding down CMD+s, then when the prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    I'd do it on all of them.
    Then we can go on from there if you still have a problem, but with several queastions eliminated!

  • On OSX 10.6.8 Mac Mail sent items do not show the Bcc field. Adjusting settings in mail/prefs/viewing/custom/bcc has no affect on Mail, ie Bcc still does not appear on sent items. Anyone got a fix?

    On OSX 10.6.8 Mac Mail sent items do not show the Bcc field. Adjusting settings in mail/prefs/viewing/custom/bcc has no affect on Mail, ie Bcc still does not appear on sent items. Yet another example of Mac caring not a jot about the performance of versions of OS and software running on on older hardware. Anyone got a fix by any chance? Oh and fyi I need to see the Bcc in sent items to confirm sent email is attaching to Salesforece - when I see the Bcc I know I can delete it as a copy will be in SForce. Big thanks W.

    On OSX 10.6.8 Mac Mail sent items do not show the Bcc field. Adjusting settings in mail/prefs/viewing/custom/bcc has no affect on Mail, ie Bcc still does not appear on sent items. Yet another example of Mac caring not a jot about the performance of versions of OS and software running on on older hardware. Anyone got a fix by any chance? Oh and fyi I need to see the Bcc in sent items to confirm sent email is attaching to Salesforece - when I see the Bcc I know I can delete it as a copy will be in SForce. Big thanks W.

  • New fields added on Bidder data does not appear in Business Partner

    Hi,
    I have added two new fields in Bidder data tab of Maintain Business Partner screen.
    When there are only three tabs viewable i.e Company data , Bidder data , Registration data tabs, the added new fields  does not appear.On approved suppliers (vendors) there will be a also tabs for vendor and supplier classification(customised).   But for companies that are only approved as bidders, there may be only the 3 tabs showing.
    Please help.
    Regards,
    S. K.

    Hi Jay,
    Yes i have used EEWB to add new fields. But i have used badi's  BBP_BUPA_GET_CUF and BBP_CUF_BADI_2 to display those fields on Bidder data tab.
    When business partner is approved bidder that time i am not able to view these new fields, but when business partner is approved vendor that i can view those fields.
    We are using SRM 5.5.
    Regards,
    S K.

  • Field added to cobl does not appear in FB01 interface

    Hi!
    I have added OXK3 transaction and set this field as "Opt Entry", but the field does not appear in FB01 transaction.
    I've also tried "Req Entry" status for new field it gave no effect.
    How this field can be enabled in the interface of standard FI transactions?
    Thanks!

    Some questions
    -Did you solve your problem ?
    -Did you come through OSS <a href="https://service.sap.com/sap/support/notes/174413">Note 174413 - Customer-specific fields in new Enjoy transactions</a> ?
    Regards

  • I have just updated my MBP to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    I have just updated my MBP 17 / retina display to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    The button response has changed. 
    Short press : sleep
    Medium press (2-3 sec) : restart, shutdown, sleep dialog
    Long press : force shutdown. (Same as before)

Maybe you are looking for

  • SLDAccess set to true, but not available

    Hi all, I get the following error when Running a Proxy to mail Scenario. This happens in the Call adapter pipeline Step of the receiver mail adapter. error message "com.sap.engine.interfaces.messaging.api.exception.ConfigException: SLDAccess set to t

  • PO not creating in ECC

    Hi All, We are facing a problem in SRM production system. The PO is created in SRM after approval completion. Now the PO is not creating in ECC prod system. We are getting the following error in SRM EBP. Comm. error checking account assignmt for purc

  • Assignment Set

    We have a requirement to create an assignment set every time we do medical payment to employees. We do medical payments 2 times a week and its not necessary that every time we have same employees. Element entries of NON RECURRING nature are created t

  • How can I run local PHP websites on OS X Maverick?

    Should I install a web server? If yes, which one do you suggest?

  • Flash Builder: Fluctuations in .ipa file size

    This is more of a tip, cause it's been bugging me for a while.  Sometimes, when you build an ipa to test on your App on an iOS device, you may have realized huge differences in file size between an app packaged through Debug or through Run.