Regarding fiscal yr format..

Hi,
I am loading data from datasource 0FI_AA_005 to InfoCube is failing.  The error
message shows that the fiscal year 8005 is invalid.  The data in the
datasource shows data for the fiscal year period in MMM.YYYY format
005.2008), and the data in the PSA comes in as YYYYMMM, which may both
be correct, but it appears that the transformation rule for the fiscal
year is incorrect because it is deriving the fiscal year from the last 4
digits from the data in the PSA (YMMM).
So its populating the error Fiscal yr is not maintained.
Plz help..

Gunjan,
I assume you have the Fiscal Variant value in your records too...
Are there other values for Fiscal Period for which the conversion is done correctly?
Try to transfer the global settings from the source system, including the Fiscal Year variants and load again.
Hope it helps.
Regards,
Luis

Similar Messages

  • Opp Close Date - Quarters should be in Company Fiscal Year format

    Hi,
    I have to design report to calculate No of Opp Closed in Current Quarter and Last Quarter both according to Fiscal Year format.
    Now, when I see Report 'Opportunity Analysis' for Data Source 'Opportunity Header and Item', Key Figure 'Close Date' has hierarchical date values (Quarter, Year Quarter etc) same as Calender Year.
    For Example.
    If Close Date = 15 Jan 2014, then system shows Quarter = Q1 and Year Quarter  = Q1/2014. Meaning it is same as Calender Year.
    Now, Company Fiscal Year starts from previous year Aug to July. So 15 Jan 2014 should be Quarter = Q2 and Year Quarter = Q2/2014.
    Similarly, If Close Date = 10 Sept 2013, then system shows Quarter = Q3 and Year Quarter  = Q3/2013. Meaning it is same as Calender Year.
    Now, Company Fiscal Year starts from previous year Aug to July. So 10 Sept 2013 should be Quarter = Q1 and Year Quarter = Q1/2014.
    To achieve Date hierarchical values in Fiscal Year format, Please let me know if I need to do any config OR if I am missing something OR I can achieve in fiscal format by creating new Key Figure.

    Alim,
    As per my knowledge I did not find any setting where you can change the Calendar Fiscal Year in the system.
    But what you are trying to achieve can be done in a different way.
    If I understand your requirement right if you have 10 Opportunities in Jan 2014 you should see them as Q2/2014 instead of Q1/2014. What you can do is you can create 4 Restricted Key figures for 4 Fiscal quarters , i.e Aug to Oct -- Q1. Sept to Jan--Q2 , Feb to Apr --Q3 , May to July -- Q4 . Then Hide the original Key figure and make these 4 Key figures available in your report.
    So if a user searches for Jan2014 the Key Figure Q2 will have some values not Q1. Try this.
    This is a round about solution which might work. Quarterly search is not possible in this case as the system is still assuming Jan2014 as Q1 but not Q2 what you did above is just masking of Q1 as Q2 in your report.
    Hope this helps you.
    Thanks
    Pavan.

  • Regarding the pdf formating

    hi,
      can any body tell how to convert the sap data into pdf format and send that pdf as an attachment through the email.
    it is very urgent.
    thanks in advance.

    *& Report ZSPOOLTOPDF *
    *& Converts spool request into PDF document and emails it to *
    *& recipicant. *
    *& Execution *
    *& This program must be run as a background job in-order for the write *
    *& commands to create a Spool request rather than be displayed on *
    *& screen *
    REPORT zspooltopdf.
    PARAMETER: p_email1 LIKE somlreci1-receiver
    DEFAULT '[email protected]',
    p_sender LIKE somlreci1-receiver
    DEFAULT '[email protected]',
    p_delspl AS CHECKBOX.
    *DATA DECLARATION
    DATA: gd_recsize TYPE i.
    Spool IDs
    TYPES: BEGIN OF t_tbtcp.
    INCLUDE STRUCTURE tbtcp.
    TYPES: END OF t_tbtcp.
    DATA: it_tbtcp TYPE STANDARD TABLE OF t_tbtcp INITIAL SIZE 0,
    wa_tbtcp TYPE t_tbtcp.
    Job Runtime Parameters
    DATA: gd_eventid LIKE tbtcm-eventid,
    gd_eventparm LIKE tbtcm-eventparm,
    gd_external_program_active LIKE tbtcm-xpgactive,
    gd_jobcount LIKE tbtcm-jobcount,
    gd_jobname LIKE tbtcm-jobname,
    gd_stepcount LIKE tbtcm-stepcount,
    gd_error TYPE sy-subrc,
    gd_reciever TYPE sy-subrc.
    DATA: w_recsize TYPE i.
    DATA: gd_subject LIKE sodocchgi1-obj_descr,
    it_mess_bod LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    it_mess_att LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    gd_sender_type LIKE soextreci1-adr_typ,
    gd_attachment_desc TYPE so_obj_nam,
    gd_attachment_name TYPE so_obj_des.
    Spool to PDF conversions
    DATA: gd_spool_nr LIKE tsp01-rqident,
    gd_destination LIKE rlgrap-filename,
    gd_bytecount LIKE tst01-dsize,
    gd_buffer TYPE string.
    Binary store for PDF
    DATA: BEGIN OF it_pdf_output OCCURS 0.
    INCLUDE STRUCTURE tline.
    DATA: END OF it_pdf_output.
    CONSTANTS: c_dev LIKE sy-sysid VALUE 'DEV',
    c_no(1) TYPE c VALUE ' ',
    c_device(4) TYPE c VALUE 'LOCL'.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Write statement to represent report output. Spool request is created
    if write statement is executed in background. This could also be an
    ALV grid which would be converted to PDF without any extra effort
    WRITE 'Hello World'.
    new-page.
    commit work.
    new-page print off.
    IF sy-batch EQ 'X'.
    PERFORM get_job_details.
    PERFORM obtain_spool_id.
    Alternative way could be to submit another program and store spool
    id into memory, will be stored in sy-spono.
    *submit ZSPOOLTOPDF2
    to sap-spool
    spool parameters %_print
    archive parameters %_print
    without spool dynpro
    and return.
    Get spool id from program called above
    IMPORT w_spool_nr FROM MEMORY ID 'SPOOLTOPDF'.
    PERFORM convert_spool_to_pdf.
    PERFORM process_email.
    if p_delspl EQ 'X'.
    PERFORM delete_spool.
    endif.
    IF sy-sysid = c_dev.
    wait up to 5 seconds.
    SUBMIT rsconn01 WITH mode = 'INT'
    WITH output = 'X'
    AND RETURN.
    ENDIF.
    ELSE.
    SKIP.
    WRITE:/ 'Program must be executed in background in-order for spool',
    'request to be created.'.
    ENDIF.
    FORM obtain_spool_id *
    FORM obtain_spool_id.
    CHECK NOT ( gd_jobname IS INITIAL ).
    CHECK NOT ( gd_jobcount IS INITIAL ).
    SELECT * FROM tbtcp
    INTO TABLE it_tbtcp
    WHERE jobname = gd_jobname
    AND jobcount = gd_jobcount
    AND stepcount = gd_stepcount
    AND listident <> '0000000000'
    ORDER BY jobname
    jobcount
    stepcount.
    READ TABLE it_tbtcp INTO wa_tbtcp INDEX 1.
    IF sy-subrc = 0.
    message s004(zdd) with gd_spool_nr.
    gd_spool_nr = wa_tbtcp-listident.
    MESSAGE s004(zdd) WITH gd_spool_nr.
    ELSE.
    MESSAGE s005(zdd).
    ENDIF.
    ENDFORM.
    FORM get_job_details *
    FORM get_job_details.
    Get current job details
    CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
    IMPORTING
    eventid = gd_eventid
    eventparm = gd_eventparm
    external_program_active = gd_external_program_active
    jobcount = gd_jobcount
    jobname = gd_jobname
    stepcount = gd_stepcount
    EXCEPTIONS
    no_runtime_info = 1
    OTHERS = 2.
    ENDFORM.
    FORM convert_spool_to_pdf *
    FORM convert_spool_to_pdf.
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = gd_spool_nr
    no_dialog = c_no
    dst_device = c_device
    IMPORTING
    pdf_bytecount = gd_bytecount
    TABLES
    pdf = it_pdf_output
    EXCEPTIONS
    err_no_abap_spooljob = 1
    err_no_spooljob = 2
    err_no_permission = 3
    err_conv_not_possible = 4
    err_bad_destdevice = 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
    OTHERS = 12.
    CHECK sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings
    LOOP AT it_pdf_output.
    TRANSLATE it_pdf_output USING ' ~'.
    CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.
    ENDLOOP.
    TRANSLATE gd_buffer USING '~ '.
    DO.
    it_mess_att = gd_buffer.
    APPEND it_mess_att.
    SHIFT gd_buffer LEFT BY 255 PLACES.
    IF gd_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ENDFORM.
    FORM process_email *
    FORM process_email.
    DESCRIBE TABLE it_mess_att LINES gd_recsize.
    CHECK gd_recsize > 0.
    PERFORM send_email USING p_email1.
    perform send_email using p_email2.
    ENDFORM.
    FORM send_email *
    --> p_email *
    FORM send_email USING p_email.
    CHECK NOT ( p_email IS INITIAL ).
    REFRESH it_mess_bod.
    Default subject matter
    gd_subject = 'Subject'.
    gd_attachment_desc = 'Attachname'.
    CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
    it_mess_bod = 'Message Body text, line 1'.
    APPEND it_mess_bod.
    it_mess_bod = 'Message Body text, line 2...'.
    APPEND it_mess_bod.
    If no sender specified - default blank
    IF p_sender EQ space.
    gd_sender_type = space.
    ELSE.
    gd_sender_type = 'INT'.
    ENDIF.
    Send file by email as .xls speadsheet
    PERFORM send_file_as_email_attachment
    tables it_mess_bod
    it_mess_att
    using p_email
    'Example .xls documnet attachment'
    'PDF'
    gd_attachment_name
    gd_attachment_desc
    p_sender
    gd_sender_type
    changing gd_error
    gd_reciever.
    ENDFORM.
    FORM delete_spool *
    FORM delete_spool.
    DATA: ld_spool_nr TYPE tsp01_sp0r-rqid_char.
    ld_spool_nr = gd_spool_nr.
    CHECK p_delspl <> c_no.
    CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
    EXPORTING
    spoolid = ld_spool_nr.
    ENDFORM.
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    Send email
    FORM send_file_as_email_attachment tables it_message
    it_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    DATA: ld_error TYPE sy-subrc,
    ld_reciever TYPE sy-subrc,
    ld_mtitle LIKE sodocchgi1-obj_descr,
    ld_email LIKE somlreci1-receiver,
    ld_format TYPE so_obj_tp ,
    ld_attdescription TYPE so_obj_nam ,
    ld_attfilename TYPE so_obj_des ,
    ld_sender_address LIKE soextreci1-receiver,
    ld_sender_address_type LIKE soextreci1-adr_typ,
    ld_receiver LIKE sy-subrc.
    data: t_packing_list like sopcklsti1 occurs 0 with header line,
    t_contents like solisti1 occurs 0 with header line,
    t_receivers like somlreci1 occurs 0 with header line,
    t_attachment like solisti1 occurs 0 with header line,
    t_object_header like solisti1 occurs 0 with header line,
    w_cnt type i,
    w_sent_all(1) type c,
    w_doc_data like sodocchgi1.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    CLEAR w_doc_data.
    READ TABLE it_attach INDEX w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    CLEAR t_attachment.
    REFRESH t_attachment.
    t_attachment[] = it_attach[].
    Describe the body of the message
    CLEAR t_packing_list.
    REFRESH t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE it_message LINES t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    APPEND t_packing_list.
    Create attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    APPEND t_packing_list.
    Add the recipients email address
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    Populate zerror return code
    ld_error = sy-subrc.
    Populate zreceiver return code
    LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
    ENDFORM.
    check this.
    regards,
    Prabhu

  • Regarding a date format

    Dear All,
    I have a doubt regarding date formats.
    i have a date = Wed Jun 24 00:00:00 GMT+300 2009
    i want to convert this date in to 24.06.2009
    What i tried is
    SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM d HH:mm:ss Z yyyy");
    Date convertedDate = dateFormat.parse(value);
    SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy");
    String date = sdf.format(convertedDate);
    System.out.println(date);But my output was 24.06.0300Some thing happened to my Year field .
    Please help me to solve this ....
    Thanks and Regards,

    shashi_rajak wrote:
    "Wed Jun 24 00:00:00 GMT+300 2009" definetely it is not in "General time zone" and "RFC 822 time zone format". But the [SimpleDateFormat api|http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html] tell this also
    SimpleDateFormat also supports localized date and time pattern strings. In these strings, the pattern letters described above may be replaced with other, locale dependent, pattern letters. SimpleDateFormat does not deal with the localization of text other than the pattern letters; that's up to the client of the class.
    That's not saying anything about changing what the various bits do, though. It's just saying that a particular Locale might use a different letter sequence to represent hours..."XX" instead of "HH", for example. But the Locale equivalent of "z" would still expect the format "GMT+3:00".
    hey sha_2008 can you tell what values these methods " toLocalizedPattern()" and " toPattern()" returns on SimpleDateFormat object which created the "Wed Jun 24 00:00:00 GMT+300 2009" string.The OP hasn't mentioned anything about how he got the original date string, so we can't assume it came from another SimpleDateFormat object. In fact, it clearly hasn't.

  • Regarding Fiscal Week

    Hi All,
    I need to know how we can determine Fiscal week and also is ther any table related to it.
    Please suggest.
    Regards
    Dhiraj

    You can define fiscal week, you have to define fiscal year with 52 weeks so when you post it takes the 52 weeks as fiscal weeks or periods.
    assign points if helpful

  • Regarding Report Display Format

    Dear all,
           In my report i have records in internal table like this :
          Line no.    LAR01   LAR02   LAR03  LAR04
            20          LNTP     LSTP     LNTP   LTPS
            40          LSTP     PNTR    PN26    P2C2.
          I want these records should display like this :
          Line no.
           20            LNTP
                           LSTP
                           LNTP
                           LTPS
          40             LSTP
                          PNTR
                          PN26
                          P2C2
    Can u pls give me any solution that how can i able to display records in my required format.
    Thanks & Regards,
    Shivam Pastagia.

    HI,
    You have the data in internal as below format..if you pass this to alv it displays in the same foramt..which is not your requiremnt.
    Example.
    You have data in the internal table..
    20 LNTP LSTP LNTP LTPS
    40 LSTP PNTR PN26 P2C2.
    Now you take another internal table with two fields and populate it as shown below and build the fieldcataog for this and pass to ALV
    Line no.  FIELD
    20        LNTP
              LSTP
              LNTP
              LTPS
    40        LSTP
              PNTR
              PN26
              P2C2

  • XI to proxy: issue regarding the file formatting

    Hi,
    our scnario is proxy to file.
    If the no data is coming from abap side then in file no new line should be created for that particular field.
    exmple: our file structure is
    Header----
    Master1----
    Master2----
    Detail1----
    detai2----
    EarningHistory1----
    EarningHistory2----
    Trailer----
    Now if Abap side does not sent any data corresponding earning history. Then our file structure sholud be
    Header----
    Master1----
    Master2----
    Detail1----
    detai2----
    Trailer----
    no new line is created for Earning History.
    but now our file structure is
    Header----
    Master1----
    Master2----
    Detail1----
    detai2----
    Trailer----
    This is problem.
    How do i resolve this????
    output:
    Header----
    Master1----
    Master2----
    Detail1----
    detai2----
    Trailer----
    no new line is created for Earning History.
    Regards,
    Sanghamitra

    Hi,
    go through this link:
    RCVR File Content Conversion - Remove empty Recordsets
    Fabio

  • Regarding the File Format on the application server

    Hi,
    I would like to know the file format (ANSI, UTF-8, UTF-16, UTF-32) of the file placed on the application server in my program. Can anyone help me with the Function Module or Class or any other way which will retrieve this information.
    Thanks
    Sarves S V K

    Hi
    You can try the standard class CL_ABAP_FILE_UTILITIES and the method
      CALL METHOD cl_abap_file_utilities=>check_utf8 
        EXPORTING 
         file_name = filename 
        IMPORTING 
         bom       = file_bom 
         encoding  = file_encoding. 
    Check the possible values returned by encoding and BOM:
    NO_BOM
    BOM_UTF8
    BOM_UTF16_BE
    BOM_UTF16_LE
    ENCODING_UTF8
    ENCODING_7BIT_ASCII
    ENCODING_OTHER

  • Regarding Page No Format

    Hi,
    I need page No to be  printed  as page No / Total No of pages. 
    Example  01/ 05  .
    If   I  use  this  &SFSY-PAGE& of &SFSY-FORMPAGES&     then  its  printing 1/ 5.
    So i tired doing for SFSY-PAGE
    wf_flag5  = sfsy-page.
    if  wf_flag5  le 9.
      concatenate  ' 0'  wf_flag5  into  wf_flag5.
    endif.
    When i am populating as &wf_flag5&/ &SFSY-FORMPAGES(2)&
    Then 01/05   05 is overlapping
    Please guide me regarding this.
    Regards,
    Neelima.
    Edited by: Sammeta Neelima on Nov 21, 2008 9:57 AM

    Hi,
    Declare in global parameters as;
    pageno TYPE NUM2
    formpage TYPE NUM2
    and in program lines just above textelement to print;
    Pageno = SFSY-PAGE.
    formpage = SFSY-FORMPAGES.
    and in text element print as;
    &pageno&/&formpage&
    This will solve your problem.
    Regards
    Karthik D

  • Regarding smartforms page format

    i create a page format of size 240mm width and 93mm height and go through the transaction SPAD and i done the device type setup also correctly. but when i try to take the print out it is showing the following error as follows.
    exception : send_error
    message id : ssfcomposer
    device type swin does not support page format <name>.
    please anybody can give solution for this.

    Total Posts:  7 
    Total Questions:  6 (6 unresolved)
    Did you even try to search before posting. Similar threads have been discussed no of times.
    [Creating custom page format for sapscript/smartform|http://sample-code-abap.blogspot.com/2009/05/creating-custom-page-format-for.html]
    Close the threads if resolved
    Edited by: K.Manas on Dec 28, 2010 6:06 AM

  • Regarding the date format

    Hi,
    My requirement is:
    We have to generate a batch number in such a way that
    the first character should be the last digit of the current date
    the second character should be the month identifier(1-9 from Jan to sept and for the rest Oct-A Nov-B and Dec-C)
    the third character should be the day identifier(for dates 1-9,its 1,2..9 and for the rest consecutive dates starting frm a,b,...v)
    Please help me how to achive this.

    Hi
       U can do this by using Character String Operations on DATE and based on value use IFELSE control statement.
       like ur DATE is 20081202 then
                          if date+6(2) = 01.
                            c3 = 1.
                          elseif date+6(2) = 02.
                          endif.
    but this is simple way , u can find some more optamize way.
    Regards
    Sachin

  • Regarding simple date format

    Hi,
    Can any one please tell what is simple date format for below format.
    2008-11-04T11:49:04.312-04.00

    Basil wrote:
    I think all are getting confused with my question, I dont want to know how to convert date
    to a a particular format, I want to know if there is any format for 2008-11-04T11:49:04.312-04.00
    like yyyy-MM-dd'T'HH:mm:ss.SSS for 2008-11-04T11:49:04.312. My JDK version is 1.4
    Edited by: Basil on Nov 4, 2008 7:43 AM
    Edited by: Basil on Nov 4, 2008 7:43 AMRead the link for SimpleDateFormat and make one. How is that hard to understand? And it is what you have been being told from the beginning, and would have realised had you actually read the API docs pointed to. All the information you need to do so is there.

  • Error regarding MPEG-4 format

    when trying to export to MPEG-4 format the "Estimated File Size" says: 7MB. Is it reasonable for MPEG-4 to be so small? doesn't it suppose to be large as MPEG-2? when trying to change frame width to 720 i get an error:"invalid frame size/frame rate" etc.
    Noam.

    You have that correct. AVI, MPEG, MOV, WMV, etc. are all "wrappers," and almost anything can be contained within those "wrappers." This ARTICLE will give you some background.
    Hope that helps, and good luck,
    Hunt

  • Doubt regarding - InetAddress Texual Format

    Hi All,
    In the JavaDocs of InetAddress shows that the representation or input of the Ipv4Address as follows
    Textual representation of IPv4 address used as input to methods takes one of the following forms:
    d.d.d.d
    d.d.d
    d.d
    d
    Can anyone please point me the RFC inwhich the above details are explained? or the standard is defined by Sun Itself.
    Thanks in Advance and Appreciate your help.
    Thanks
    Ravikumar

    Start with RFC 791 and work outwards from there.
    Sun didn't define the Internet nor its address formats.

  • Conditional Formatting in RTF templates

    HI
    I am just going around with designing of rtf templates. I have a question regarding the conditional formatting feature. The question is
    IF i am having different type of customers(corporate,individual,etc..) passed as parameters, Can an particular cell be formatted with different colors for different customers. for example, if the parameter is corporate customer the the color of particular cell should be RED in color, and if parameter is Individual the color of cell Must be GREEN in color.
    Please help me out with this.
    Thanks in advance

    Yes you can conditionally format the individual cells.
    Take a look at the guide (link provided) and search for "Cell Highlighting":
    http://docs.oracle.com/cd/E10415_01/doc/bi.1013/e12187/T421739T481157.htm
    Example code: <?if:debit>1000?><xsl:attribute xdofo:ctx="block" name="background-color">red</xsl:attribute><?end if?> <?debit?>
    Thanks,
    Bipuser

Maybe you are looking for

  • Failure Caption not showing in playback

    The Failure Caption is not showing for me when I record a demo/simulation manually. I selected the Failure Caption check box for the click box options and entered caption text, but when you click outside of the click box area nothing displays when pu

  • Cannot set timezone

    I'm having a very weird issue where I cannot use timedatectl to set the timezone. When I run it the following occurs: [gnunn@gnunn-laptop2 ~]$ timedatectl set-timezone Canada/Mountain Failed to set time zone: Access denied When I look at /etc/localti

  • Traveling with my MB Pro and want secure connectivity

    Going on travel and want secure connection using the hotel wifi in my room - is an Airport Express the answer?  If so, I'm VERY fuzzy on how to make the connection - any help out there for a REAL novice? 

  • Iphoto 4 will not open

    My i photo will try to open and it will say it crashed without even opening. My i DVD i movie and all the other products work. When i looked in the files everything has been erased is there anything i can to to make this open again? Thank you

  • I was trying to move a mailbox and it disappeared. Is there any way to retrieve it?

    I was trying to move a mailbox and it disappeared. Is there any way to retrieve it?