RERAIV - Real Estate Invoice mailing - BADI_RECP_SF

I am working for emailing of the smart form and found the same badi BADI_RECP_SF. But to update the recepient details i hope, i need to use cs_mail_recepeint. Please let me know how i need to fill this details. If not this CS_MAIL_RECEIPIENT, is there any other option to provide the mail id. I want to send the invoice to the mail-id updated in BP transaction.
My business requirement is when we creates the invoice through RERAIV, the output should go to customer through mail.
one way of doing is select check box "Email" in RECPA520, but my business don't want to execute this manually. And through this process i can send output only to one emial id (standard) which is maintained in business partner master.
Is there any way to send mail to other mail-ids which are maintained in business partner?
For achieving this functionality, we have badi: BADI_RECP_SF. But I am trying to know how to update or pass the parameters for this BADI method 'PRINT'.
If you have achieved this, please let me know.
Thanks in advance.

Hi Vipul,
Sorry to reply you late, our client doesn't have internet access.
Standard process, doesn't give you mail body as per my analysis.
If you want mail body then u need to customize whole process. Maintain the mail body in SO10, using READ_TEXT attach mail body.
Eg.
  ld_guid = id_docguid.
CLEAR ls_doc_output.
READ TABLE is_job_output_info-spoolids ASSIGNING <gv_spoolid> INDEX 1.
if sy-subrc = 0.
SELECT SINGLE RQCLIEnt RQO1NAME INTO (lv_client, lv_rqname) FROM tsp01 WHERE rqident = <gv_spoolid>.
CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
EXPORTING
AUTHORITY     = 'SP01'
CLIENT        = lv_client
NAME          = lv_rqname
PART          = 1
IMPORTING
*           CHARCO        =
*           CREATER       =
*           CREDATE       =
*           DELDATE       =
*           MAX_CREDATE   =
*           MAX_DELDATE   =
*           NON_UNIQ      =
*           NOOF_PARTS    =
*           RECTYP        =
*           SIZE          =
*           STOTYP        =
TYPE          = type
OBJTYPE       = objtype
EXCEPTIONS
FB_ERROR      = 1
FB_RSTS_OTHER = 2
NO_OBJECT     = 3
NO_PERMISSION = 4.
if objtype(3) = 'OTF'.
is_otf = 'X'.
else.
is_otf = space.
endif.
if is_otf = 'X'.
CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
EXPORTING
SRC_SPOOLID                    = <gv_spoolid>
NO_DIALOG                      = ' '
*       DST_DEVICE                     =
*       PDF_DESTINATION                =
IMPORTING
PDF_BYTECOUNT                  = numbytes
PDF_SPOOLID                    = pdfspoolid
*       OTF_PAGECOUNT                  =
BTC_JOBNAME                    = jobname
BTC_JOBCOUNT                   = jobcount
TABLES
PDF                            = pdf
EXCEPTIONS
ERR_NO_OTF_SPOOLJOB            = 1
ERR_NO_SPOOLJOB                = 2
ERR_NO_PERMISSION              = 3
ERR_CONV_NOT_POSSIBLE          = 4
ERR_BAD_DSTDEVICE              = 5
USER_CANCELLED                 = 6
ERR_SPOOLERROR                 = 7
ERR_TEMSEERROR                 = 8
ERR_BTCJOB_OPEN_FAILED         = 9
ERR_BTCJOB_SUBMIT_FAILED       = 10
ERR_BTCJOB_CLOSE_FAILED        = 11.
IF sy-subrc = 0.
CONCATENATE LINES OF pdf INTO l_string RESPECTING BLANKS.
l_len = strlen( l_string ).
EXPORT my_data = l_string(l_len) TO DATA BUFFER l_buffer.
IMPORT my_data TO ls_doc_output-pdf FROM DATA BUFFER l_buffer IN CHAR-TO-HEX MODE.
ENDIF.
endif.
ENDIF.
CHECK ls_doc_output-pdf IS NOT INITIAL.
l_mm = sy-datum+4(2) + 1.
IF ( strlen( l_mm ) = 1 ).
CONCATENATE '0' l_mm INTO l_mm.
ENDIF.
CONCATENATE l_mm '/' sy-datum+0(4) '.' INTO l_mmyyyy.
TRY .
*       create persistent send request
lo_send_request = cl_bcs=>create_persistent( ).
*       get PDF xstring and convert it to BCS format
ld_pdf_size = XSTRLEN( ls_doc_output-pdf ).
ld_pdf_content = cl_document_bcs=>xstring_to_solix(
ip_xstring = ls_doc_output-pdf ).
CALL FUNCTION 'READ_TEXT'
EXPORTING
*            CLIENT                        = SY-MANDT
ID                            = 'ST'
LANGUAGE                      = 'E'
NAME                          = 'ZRE_INVOICE_MAIL'
OBJECT                        = 'TEXT'
*            ARCHIVE_HANDLE                = 0
*            LOCAL_CAT                     = ' '
*          IMPORTING
*            HEADER                        =
TABLES
LINES                         = lt_tlines
EXCEPTIONS
ID                            = 1
LANGUAGE                      = 2
NAME                          = 3
NOT_FOUND                     = 4
OBJECT                        = 5
REFERENCE_CHECK               = 6
WRONG_ACCESS_TO_ARCHIVE       = 7
OTHERS                        = 8                   .
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
LOOP AT lt_tlines INTO ls_tlines.
IF ls_tlines-tdline cs 'MM/YYYY.'.
REPLACE FIRST OCCURRENCE OF 'MM/YYYY.' IN ls_tlines-tdline WITH l_mmyyyy .
ENDIF.
IF ls_tlines-tdline cs 'DD/MM/YYYY'.
REPLACE FIRST OCCURRENCE OF 'DD/MM/YYYY' IN ls_tlines-tdline WITH '01/08/2013' .
ENDIF.
ls_message_body-line = ls_tlines-tdline.
APPEND ls_message_body to lt_message_body.
ENDLOOP.
ld_subject  = is_options-tdtitle.
lo_document = cl_document_bcs=>create_document(
i_type    = 'RAW'
i_text    = lt_message_body
i_subject = ld_subject ).
CONCATENATE 'Invoice statement_' is_doc-buskey+4(13) INTO lv_filename.
TRY.
CALL METHOD LO_DOCUMENT->ADD_ATTACHMENT
EXPORTING
I_ATTACHMENT_TYPE    = 'PDF'
I_ATTACHMENT_SUBJECT = lv_filename
I_ATTACHMENT_SIZE    = ld_pdf_size
I_ATT_CONTENT_HEX    = ld_pdf_content.
CATCH CX_DOCUMENT_BCS .
ENDTRY.
*       add document to send request
lo_send_request->set_document( lo_document ).
*           add recipient (e-mail address)
select single customer INTO lv_kunnr FROM but000 as a INNER JOIN
cvi_cust_link as b ON b~partner_guid = a~partner_guid
WHERE partner = is_doc-partner.
select single adrnr into lv_addrcomm FROM kna1 WHERE kunnr = lv_kunnr.
if lv_addrcomm is NOT INITIAL.
select smtp_addr from adr6 INTO TABLE lt_recipient WHERE addrnumber = lv_addrcomm.
LOOP AT lt_recipient INTO lw_recipient.
ls_recipient-smtp_addr = lw_recipient-smtp_addr.
lo_recipient = cl_cam_address_bcs=>create_internet_address(
i_address_string = ls_recipient-smtp_addr ).
*       add recipient to send request
lo_send_request->add_recipient( i_recipient = lo_recipient ).
ENDLOOP.
*       send document
lf_sent_to_all = lo_send_request->send(
i_with_error_screen = 'X' ).
IF lf_sent_to_all = 'X'.
*          message i022(so). "Delete DEVK917667
ENDIF.
*   ---------- explicit 'commit work' is mandatory! ----------------
COMMIT WORK.
endif.
* *            exception handling
* * replace this very rudimentary exception handling
* * with your own one !!!
CATCH cx_bcs INTO lo_bcs_exception.
WRITE: text-002.
WRITE: text-003, lo_bcs_exception->error_type.
EXIT.
ENDTRY.
*  endif.

Similar Messages

  • RERAIV - Real Estate Invoice mailing body text - BADI_RECP_SF

    Hi,
         We want to send REFX invoice by email and everything work perfectly except we need to put a text like «Find attached your invoice» and our signature in the email body. I create a text and I can selected(text module) in RECPA520 but my email still have anything in the body. I look every where and I didn't found anaything on it.
    Best regards

    Hi,
         We want to send REFX invoice by email and everything work perfectly except we need to put a text like «Find attached your invoice» and our signature in the email body. I create a text and I can selected(text module) in RECPA520 but my email still have anything in the body. I look every where and I didn't found anaything on it.
    Best regards

  • Real Estate Contract Invoice

    Hi Experts,
    Currently im working in the RE invoice, my problem is the mapping of the RE invoice. I dont have the transaction of the RE invoice so i cant check if i can map out the fields i needed to create the form of that.
    Can anybody help me find the output types and form name of the Real estate invoice. I will give points if its answered. Thanks.

    Hi,
         SPRO -> Flexible Real estate Management (RF-FX) ->Correspondence->
    PDF based forms->Forms -> define forms.
    Use the Tcode SFP to build the Forms. not from SE71 like what we use for other SD and MM forms.
    I think there is no need of assignment with the program, as I don't find any assignment in SPRO settings.
    So modify the form and keep the standard form there in the SPRO settings.
    Close the thread if your question is answered.
    Thanks
    Nayan

  • Where can i see Invoices for a Real Estate Contract ?

    Hi Guys,
           Where can i see Invoices for a Real Estate Contract ?  let me also know relevant tables also.  All i know is i can see Contact in Tcode RECN.
    Thanks
    Regards

    hi,
    Go to SE80, choose the Repository Information System, and search within ABAP Dictionary -> Database Tables for tables belonging to application component RE-FX. which fetches you the relevant tables /.....
    Regards,
    Santosh

  • All BAdIs of Real Estate Management

    Thought this list would help you as helped me guys...
    Name of a BAdI Definition       Description
    BADI_REAJ_ADJUSTMENT          Rent Adjustment
    BADI_REAJ_ADJUSTMENT_RLRA     Adjustment of Conditions - RLRA Procedure
    BADI_REAJ_ADJUSTMENT_TASK     Adjustment Measure
    BADI_REAJ_COMPARE_GROUP          Comparative Group of Apartments
    BADI_REAJ_EXPENSE_CALC_RULE     Calculation of Current Expenses
    BADI_REBD_ARCH_OBJECT          Architectural Object
    BADI_REBD_BUILDING          Building
    BADI_REBD_BUSINESS_ENTITY     Business Entity
    BADI_REBD_MEAS_AOHIER          Switch Off Hierarchical Measurements on AO
    BADI_REBD_MEAS_CUST          Measurements Allowed Based on Customizing
    BADI_REBD_PROPERTY          Land
    BADI_REBD_RENTAL_OBJECT          Rental Object
    BADI_REBP_ACCTASS_DETERMINE     Business Partner: Determination of Account Assignment Object
    BADI_REBP_ADD_FIELDS          Business Partner: Own Fields
    BADI_REBP_ATTRIB_DETERM          Business Partner: Specification of Attributes for Partner C
    BADI_RECA_ARCHIVING_OBJECT     Archiving Object
    BADI_RECA_AUTH_CHECK          Authorization Check
    BADI_RECA_BDT               Enhancements in BDT Environment
    BADI_RECA_BUSINESS_DATE          Determination of Working Days in RE-FX
    BADI_RECA_CAD_PROVIDER          Determination of CAD Provider Instance
    BADI_RECA_GUI_TABLE_EXT          Interface Extension of Table Master Data
    BADI_RECA_INTERFACE_IMPL     Implementation of Interfaces
    BADI_RECA_MESSAGE          Change Characteristics of Messages
    BADI_RECA_PROCESS          Intervention in Control of a Process
    BADI_RECA_RANGE_EXT          Change to the Range
    BADI_RECA_RESUBMISSION          Reminders
    BADI_RECA_SEARCH_METHOD          Search Methods for a Search Strategy
    BADI_RECA_STORABLE_EXT          Enhanceable Object
    BADI_RECA_WB               RE Navigator
    BADI_RECA_WB_LIST          Lists on Objects
    BADI_RECD_CALC_RULE          Calculation Formula for Conditions
    BADI_RECD_CASHFLOW          Cash Flow
    BADI_RECD_CONDITION          Condition
    BADI_RECD_DIST_RULE          Distribution Formula for Conditions
    BADI_RECN_CONTRACT          Real Estate Contract
    BADI_RECP_OI               Correspondence with office application
    BADI_RECP_SF               Correspondence with PDF-Based Forms or Smart Forms
    BADI_REEX_AL_ACROBJ          Processing of Accrual Object
    BADI_REEX_FI_BAPI          Before Call of FI BAPI for Document Posting
    BADI_REEX_FI_DUNNING          Dunning
    BADI_REEX_FI_GET_GLACCT          BAdI for FI Account Determination
    BADI_REEX_FI_MM_CAPITAL          COA: Statement of Reserve Fund
    BADI_REEX_FUNC_LOC          RE Functional Location: Create and Change Data
    BADI_REIS_LIST               Info System: ALV Reporting.
    BADI_REIS_RM               Integration of Records Management
    BADI_REIT_DATE_OF_SERVICE     Derivation of Date of Service
    BADI_REIT_DIST_EXCLUDE          Exclusion from Input Tax Distribution
    BADI_REIT_OPTION_RATE          Option Rate Determination
    BADI_REIT_POSTING_RULE          Account Determination for Input Tax Distribution
    BADI_REIT_TAX_CORR_OBJ_ASSIGN     Default Correction Object for Line Item
    BADI_REIT_TAX_CORR_OBJECT     Correction Object
    BADI_RELM_JOINT_LIABILITY     Joint Liability
    BADI_RELM_LAND_REGISTER          Land Register
    BADI_RELM_NOTICE_ASSESSMENT     Notice of Assessment
    BADI_RELM_NUMBER_LRPAGENO     Conversion Exits for the Page Number of Land Register
    BADI_RELM_NUMBER_LRREGNO     Conversion Exits for Numbers in the Real Estate Register
    BADI_RELM_NUMBER_PLNO          Conversion Exits for Parcel Number
    BADI_RELM_NUMBER_SECNO          Conversion Exits for Numbers in Sections II and III
    BADI_RELM_PARCEL_OF_LAND     Parcel of Land
    BADI_RELM_PUBLIC_ENCUMBRANCE     Other Public Registers
    BADI_RELM_RECORD_CHANGE          Parcel Update
    BADI_REMM_MANDATE          Mandate
    BADI_REMM_OBJ_ADOPT          Conversion to Condominiums
    BADI_REOR_COST               Costs of Reservation/Continuous Occupancy
    BADI_REOR_COST_DERIV          Price Derivation for Reservation/Continuous Occupancy
    BADI_REOR_OFFER               Contract Offer
    BADI_REOR_OFFER_OBJECT          Offered Object
    BADI_REOR_PO_OCCUPANT_OBJECTS     Edit Assigned Objects for Move Planning
    BADI_REOR_PO_PARTNER_TREE     Determine Partner Using Hierarchy
    BADI_REOR_PO_SUGGEST_POSITIONS     Determine Possible Available Desk Assignments
    BADI_REOR_POSITIONS          BAdI: Desk Assignments on Reservation Object
    BADI_REOR_RENTAL_REQUEST     RE Search Request
    BADI_REOR_RESERVATION          Reservation
    BADI_REOR_REVERSAL_COST          Costs of a Cancellation
    BADI_REOR_SEARCH          BAdI for Real Estate Search
    BADI_REOR_SERVICE_COST          Costs of a Service
    BADI_REOR_SERVICE_COST_DERIV     Price Derivation for Service
    BADI_RERA_ACCT_SHEET          Overview of Tenant Account
    BADI_RERA_ADVPAY          Determination of Advance Payment
    BADI_RERA_DOC               Creation of RE Document
    BADI_RERA_INVOICE          RE Invoice
    BADI_RERA_OP               Create One-Time Posting
    BADI_RESC_ACCRUAL          Accrual/Deferral of Apportionable Costs
    BADI_RESC_INFO_SYSTEM          SCS: Reports
    BADI_RESC_PARTICIP_GROUP     Participation Group
    BADI_RESC_SETTL_UNIT          Settlement Unit
    BADI_RESC_SETTLPARTICIP          Settlement Participation

    Hi,
    For tables in real estate:
    Just do like this to know about your tables,
    go to se11,
    give table name as DD03L(which is a table for table fields),
    display,
    excute,
    under the field name input u can VIOROO and VIBPOBJREL
    then excute, u can get the table names for your fields.
    Please refer to this link:
    http://www.sapmaterial.com/
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • I teach Continuing education classes to Real Estate agents and I need to issue them certificates at the class, whihc need to be signed by me and it needs to contain their info on the certificate. The certificate is currently saved in a word format.What i'

    I teach Continuing education classes to Real Estate agents and I need to issue them certificates at the class, whihc need to be signed by me and it needs to contain their info on the certificate. The certificate is currently saved in a word format.What i'm trying to accomplish is to do a "mail merge " ( as some classes i have as many as 150 attendees) for the document, digitally sign each one with my signature on the certificate and then e-mail it out to the respective attendees. can this be done? if so How?

    This is the step that I took after inputting my signature.
    On the right, after saving my document, I click "Get Others to Sign."  I was confused because it says that it's powered by EchoSign.  Like I stated before, my clients are able to sign this document when I send it to them, but it is returned to me with their signature (not in the signature field, but at the end of the document), and my signature is missing.  I tested this on myself - my signature is missing when they receive it. 

  • IW32 - assignments to real estate object not possible

    Hello, we want to assign an order to a Real Estate Object in transaction IW32.
    We go to order header data screen, choose Goto->Assignments, but Real estate object submenu is grey.
    Please explain us why?
    What should we customize before to activate this feature?

    Hi Sridhar,
    Thanks for the response. Unfortunately I worded my question incorrectly. And yes, you are right as to the use of a cost element and a cost center.
    By default you can post revenue from a customer contract to a cost element in real estate using flow types, account symbols, etc, but we managed to post an manual customer invoice (FB70) against a cost center as well as specifying the standard GL account and profit center (profit center generated using the contract details).
    Is it possible to setup this situation (use of cost centers) in flexible real estate through config using flow types and account symbols?

  • Business packages for real estate

    Hi,
      Any one know whether we have any business packages for real estate.If anyone know please send me the link or mail documentation to this mail id [email protected]
    Thanks,
    kumar

    Hi Kumar,
       I only found one business package about real estate in the portal content portfolio.  It is by a third party.  If you go to this link: https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio
    and search on real estate you will find it.
    Good luck,
    John

  • Error Message: Real estate object cannot be determined from entries

    Hi
    We are using the BBPIV01 IDoc Type to pass Invoice data to backend system. We have implemented BBP_ACC_CHECK_ICC BADI to update the RL_EST_KEY (Internal Key for Real Estate Object) field. But when the IDoc is processed in the backend system it end up with the following error message.
    <b>Real estate object cannot be determined from entries (ID: RECAAP, No: 012 ).</b>
    Note: We are treating Real Estate Contract as an Account Assignment Category in SRM.
    Any help would be highly appreciated.
    Regards
    Kathirvel

    Hi Ramki
    I have check the same i.e. in ECC. All the necessary changes explained in the notes have already been done in the release we are using.  And I meant that the notes are not relevant for the problem I am facing now.
    Thanks a lot for your concern.
    Regards
    Kathirvel

  • Need BLART in flex. real estate

    Hi all,
    In flex. real estate im developing INVPOICE SmartForms.
    I need to find teh BLART (document type) .
    the table BKPF is not filled with that info (yet) i think the invoice isnt in FI at this point.
    where (table of FM maybe) can i find the BLART corresponding with an invoice?
    Thanks alot!
    Joris

    Hi Joris
      Accounting Document Type is assigned to Billing document type. This can checked via table TVFK.
      Alternatively you can check the same via IMG using the following path:
    IMG->Sales & Distribution->Billing->Billing Documents->Define Billing Types.
      Select the billing type, double click on the same(F2).
      In the next screen, under General Control tab field document type refers to accounting document type.
      Hope this helps you.
    Kind Regards
    Eswar

  • Status from init to modify in real estate

    hi masters,
    in tcode : RECN... when i create a real estate contract the status button will be on CREATE. So after create then i change anything or name of the contract to something else ex : sap... now when i save the STATUS should change automatically to MODIFED.  I found a badi which is BADI_RE_CN_CN in this badi i have so many methods... and i looked for the field STATUS
    but i could not find that field name in the badi... but when i put the break point it stops there.
    i have never worked on the badis... and it is my first badi... so can you any one help me as to how to approch where and how can i say in those classes  or where to work it out.
    regards,
    pasala.

    Hi Bhasker,
    For status there wil not be any field that is available. you need to use FMs to change status.
    What status are you talking about. Is it system status or User status?
    There are 2 function modules which needs to be used to change the status.
    STATUS_CHANGE_INTERN - Set/Delete System Status
    STATUS_CHANGE_EXTERN -Set User Status
    Sample Code:
    SYSTEM STATUS:
    Fill the internal table with the required system status.
        wa_status-stat = 'I0070'. " Status (ISTAT) found in table TJ02T.
        append wa_status to it_status.
        clear wa_status.
        call function 'STATUS_CHANGE_INTERN'
          exporting
            objnr               = <Object Number> " (VICNCN-OBJNR)
          tables
            status              = it_status
          exceptions
            object_not_found    = 1
            status_inconsistent = 2
            status_not_allowed  = 3
            others              = 4.
    USER STATUS:
      call function 'STATUS_CHANGE_EXTERN'
        exporting
      CHECK_ONLY                = ' '
         client                    = sy-mandt
          objnr                     = <Object Number> " (VICNCN-OBJNR)
          user_status               = 'EXXXX' " Status (ESTAT) found in table TJ30T for your status profile.
    EXCEPTIONS
       OBJECT_NOT_FOUND          = 1
       STATUS_INCONSISTENT       = 2
       STATUS_NOT_ALLOWED        = 3
       OTHERS                    = 4
    Please Revert back if you need more help.
    Regards,
    Gautham Paspala

  • When I click on a picture or map in i.e. Kijiji real estate pages, Firefox opens it all crunched to the right side of the page. How can I correct this?

    When I click on a picture or map in i.e. Kijiji real estate pages, Firefox opens it all crunched to the right side of the page. How can I correct this?
    For instance I view an apartment ad which has various pictures attached. It says click on the pictures to see an enlarged version. FF opens the page however most of the page is blank and the picture appears to be pushed to the right side of the page and shows as if it has been scrunched agains the right side not showing the whole picture.
    What Can I do to correct this?

    I see that you have increased some font sizes considerably.
    * font.size.fixed.x-western: 20
    * font.size.variable.x-western: 22
    This can effect margins when the website specifies these as em values and cause content to shift.
    If you have made changes to Advanced font settings like increasing the minimum/default font size then try the default minimum setting "none" and the default font size 16 in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow pages to choose their own fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but to use an extension to set the default page zoom to prevent issues with text not being displayed properly.
    You can use the NoSquint extension to set font size (text/page zoom) and text color on web pages.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    Note that your System Details List shows multiple Flash plugins.
    * Shockwave Flash 16.0 r0
    *Shockwave Flash 12.0 r0
    You can find the installation path of all plugins on the <b>about:plugins</b> page.
    *http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins
    You can check the Flash player installation folder for multiple Flash player plugins and remove older version(s) of the plugin (NPSWF32) and possibly (re)install the latest Flash player.
    *(32 bit Windows) C:\Windows\System32\Macromed\Flash\
    *(64 bit Windows) C:\Windows\SysWOW64\Macromed\Flash\
    Your System Details list shows that you have a user.js file in the profile folder to initialize prefs each time Firefox starts.
    The user.js file is only present if you or other software has created this file and normally it wouldn't be there.
    You can check its content with a plain text editor (right-click: Open with) if you didn't create this file yourself.
    The user.js file is read each time Firefox is started and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    You can delete this user.js and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

  • How do you create a custom search result for surrounding suburbs for a real estate website?

    I have a Web App for property listings for a real estate website. There are item fields as follows:
    Suburb List:
    Edensor Park
    Hoxton Park
    Denham Court
    Cecil Hills
    Abbotsbury
    Surrounding Suburb List:
    Edensor Park
    Hoxton Park
    Denham Court
    Cecil Hills
    Abbotsbury
    Say a property is listed in Edensor Park as the main suburb and Hoxton Park and Denham Court are also selected as its surrounding suburbs.
    On the website's search form, the visitor selects, for example, Edensor Park. I need the search results to show everything listed in Edensor Park as well as in the surrounding suburbs of Hoxton Park and Denham Court. Is this at all possible?
    Thanks,
    Veronica.

    The Filter settings are sticky.  Every container listed on the Library tab of the Inspector keeps it's own Filter settings, set to whatever was last used.
    I'm not aware of any way to set a default Filter.
    You could create a Folder and put a Smart Album in that Folder with "Source" set to the Folder.  Any Albums or Projects you put in the Folder become the superset for the Filter you set in the Smart Album.  This is a pretty sophisticated set-up, however.  What is the filter you need, and how often do you need it?

  • Can anyone help with some free real estate software for our School in the UK to practice with

    Hi Guys
    We are setting our class a task to set up their own Estate agency (real Estate) and need some basic web software for them to use to develp their own shop. can anyone help us with a IWEB template that they can copy their own photos over and rename their shop.
    Thanks in advance
    Mr Smyth Richardson
    Head of IT

    Mr Richardson ~ Welcome to the Support Communities. Some forum members have quoted Apple staff as saying iWeb is no longer a supported product. ...iWeb hasn't received a major upgrade in almost three years and is not being included in new Macs. If you're not already too committed to using iWeb, consider other free site builders such as this:
    http://education.weebly.com
    ...One of Weebly's key advantages is that a site can be updated from any modern PC or Mac — there's also this:
    Introducing Collaborative Website Editing

  • Standard text in Real Estate

    Hi all,
    I am able to see Standard text saved in STXH table but not in SO10.
    Actually these are getting dynamically called and settings are maintained in
    Real Estate -> Correspondence -> Letters and Text Modules -> Maintain Letters.
    Can you please tell me where I can see these standard texts?
    Thanks and regards,
    Ridhima

    hi
    Only the header details of the standard text like Text object, Text Name, Text ID  and Language are stored in STXH...to read the same text use fm READ_TEXT by passing these parameters..but if an entry exists in STXH, u shud be able to see the same in SO10
    if helpful, reward
    Sathish. R

Maybe you are looking for

  • Can't get ipv6 address assigned correctly.

    I use NetworkManager and dhclient for auto-configuration but it has some weird problems. When I boot up my laptop, I only have chance to get access to ipv6 network, when I fail, I tried to delete the connection in Network Management Settings, and the

  • How to display array values in textfield?

    i am creating student details with mysql database using JSON to get values and display in xcode.i got json array values from php and converted to NSMuatable array. my array result     firstName = hari;     lastname = krishna;     age=10;     fatherna

  • Add row by right click event

    hello expert i want to create add row functionality by right click event like in SAP B1 when we click on matrix colum it give menu for Remove,copy,add row in matrix how i do it by in my userdefiend form matrix

  • CR2011 Integration into VStudio 2008

    Somebody knows how can i integrate Crystal Reports 2011 into VStudio 2008 , I can not find the references for example " "\CrystalDecisions.CrystalReports.Engine.dll " into the folder  "SAP BusinessObjects". maybe is not compatible CR2011.

  • 5s updates ...do i need to do .4 before .6

    New updates ...do i need to do 7.0.4 before7.0.6