Logo issue

Hi,
I have to replace existing logo in my pdf form with client logo.
But when i am trying to change url path in Object platter, system is giving me screen (error "Network Connection Not Found")
Can anyone tell me how can i display my own logo in PDF Forms.
Regards,
Vivek

Hello,
Check the path you entered (use file browser for this, and check 'embed image data' box) - this should work fine.
Regards,
Francois

Similar Messages

  • ITunes Podcast logo issue

    Our podcast logo shows up in the window when you search for it in the store. http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=288813069
    But when you down load it and click on an episode it doesn't show up in the bottom left hand corner "Selected Item" window of iTunes.
    Is that an RSS issue? What's the fix?
    Thanks!

    Here's how I add that graphic:
    For MP3:
    take the final prepared MP3 file.
    Drag it into iTunes.
    Edit the MP3 tag info (if you like)
    Drag your artwork into the artwork window. iTunes will glitch for a moment while it writes the JPG to the tag of the mp3 file.
    now from the iTunes playlist, drag the podcast file back to the finder.
    you now have an mp3 with the artwork embedded.
    upload and enjoy.
    For M4A: use the podcast track in Garage Band or use ChapterToolMe to write the dynamic graphics to the m4a.

  • EXCEL output logo issues in  XML Publisher

    Hi,
    We are using XML Publisher API to generate PDF,EXCEL outputs using Template. While adding image to the template its showing in the pdf output. But not showing in the Excel output. Then i added url:{/Image} in the alt text of the image in template and submitted the report again now able to see the image in excel output. Can you please tell me why its not showing the image in excel by default which is right happening in case of PDF. Iam getting the same issue for HTML outputs generation also. Please tell me what i can do to get the image by default same as the way i am getting in PDF.
    Thanks
    Satya

    Hi Alex,
    Thanks for your suggession.
    I have two OAF versions and i found the xml publisher version from the below java file
    $OA_JAVA/oracle/apps/xdo/common/MetaInfo.class
    in both 11.5.10 and 12.1.1 OAF versions i am seeing the below line of code
    public static final String VERSION = "Oracle XML Publisher 5.6.3";
    when i login to the application and went to the About this page option available there
    in 11.5.10 i got to see that the version
    is XML Oracle XDK Java 9.0.4.0.0 Production
    in 12.1.1 version
    XML Oracle XML Developers Kit 10.1.3.130 - Production
    But as per your seggession from the MOS document 736897.1, i came to know that it is an issue in 5.6.3
    Can you please tell me how to find out my xml publisher version in different EBS versions.
    I am using Office 2007.
    Finally,
    in the document i can see that
    Applies to:
    *BI Publisher (formerly XML Publisher) - Version 11.5 to 12.1 [Release 11.5 to 12.1]*
    Information in this document applies to any platform.
    Means this issue is not fixed even in 12.1.3.
    To resolve this issue,do we need to do the manual image setup like the way menioned in the document 736897.1?
    Thanks
    Satya

  • Urgent::Logo Issue in PDF

    Hi Experts,
         My requirement is to list data in a classical report along with a logo at the top and convert this report output into a pdf file and send it via email as an attachment.
         I have used  METHOD picture_control->load_picture_from url to display logo in my report and i can see the logo properly in the classical report output, but when i convert it into pdf, i can see everything properly except the logo.Logo Does not appear in the pdf file.
    Kindly help........
    Thanks...

    hi pls checkout this.
    REPORT YMS_EXCISE MESSAGE-ID E4 NO STANDARD PAGE HEADING LINE-SIZE 350. .
    TABLES : J_1IEXCHDR, " header table
    J_1IEXCDTL, " item table
    J_1IPART2, " Excise Part II details
    LFA1, " vendor master table
    J_1IMOVEND, " vendor excise details table
    MSEG, " Document Segment: Material
    MKPF, " Header: Material Document
    DD07T, " domain text table
    T001W. " Plant and Branch Details
    DATA : BEGIN OF IT_CHDR OCCURS 100,
    DOCNO LIKE J_1IEXCHDR-DOCNO,
    DOCYR LIKE J_1IEXCHDR-DOCYR,
    EXNUM LIKE J_1IEXCHDR-EXNUM,
    EXDAT LIKE J_1IEXCHDR-EXDAT,
    WERKS LIKE J_1IEXCHDR-WERKS,
    EXBED LIKE J_1IEXCHDR-EXBED,
    EXCCD LIKE J_1IEXCHDR-EXCCD,
    ECS LIKE J_1IEXCHDR-ECS,
    END OF IT_CHDR.
    DATA : BEGIN OF IT_CDTL OCCURS 100,
    DOCYR LIKE J_1IEXCDTL-DOCYR,
    DOCNO LIKE J_1IEXCDTL-DOCNO,
    EXNUM LIKE J_1IEXCDTL-EXNUM,
    EXDAT LIKE J_1IEXCDTL-EXDAT,
    LIFNR LIKE J_1IEXCDTL-LIFNR,
    MATNR LIKE J_1IEXCDTL-MATNR,
    MAKTX LIKE J_1IEXCDTL-MAKTX,
    CHAPID LIKE J_1IEXCDTL-CHAPID,
    EXBAS LIKE J_1IEXCDTL-EXBAS,
    EXBED LIKE J_1IEXCDTL-EXBED,
    ECS LIKE J_1IEXCDTL-ECS,
    MENGE LIKE J_1IEXCDTL-MENGE,
    MEINS LIKE J_1IEXCDTL-MEINS,
    RDOC2 LIKE J_1IEXCDTL-RDOC2,
    END OF IT_CDTL.
    DATA TEXT(10).
    DATA : BEGIN OF IT_OUT OCCURS 0,
    SERIALNO LIKE J_1IPART2-SERIALNO,
    TEXT1 LIKE TEXT,
    EXNUM LIKE J_1IEXCDTL-EXNUM,
    EXDAT LIKE J_1IEXCDTL-EXDAT,
    NAME LIKE LFA1-NAME1,
    DDTEXT LIKE DD07T-DDTEXT,
    EXCCD LIKE J_1IEXCHDR-EXCCD,
    BUDAT LIKE MKPF-BUDAT,
    EXBAS LIKE IT_CDTL-EXBAS,
    EXBED LIKE IT_CDTL-EXBED,
    ECS LIKE IT_CDTL-ECS,
    MATNR LIKE IT_CDTL-MATNR,
    MAKTX LIKE IT_CDTL-MAKTX,
    CHAPID LIKE IT_CDTL-CHAPID,
    MENGE LIKE IT_CDTL-MENGE,
    MEINS LIKE IT_CDTL-MEINS,
    DEL_IND(1),
    END OF IT_OUT.
    DATA IT_PART2 LIKE J_1IPART2 OCCURS 0 WITH HEADER LINE.
    DATA S_NO(4) .
    DATA DB_CNT LIKE SY-TABIX.
    DATA EBELN_T LIKE MSEG-EBELN .
    TYPE-POOLS : SLIS.
    DATA : AFIELD TYPE SLIS_FIELDCAT_ALV.
    DATA : LIST_HEADER TYPE SLIS_T_LISTHEADER,
    FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
    LS_FTCAT TYPE LVC_S_FCAT,
    SORTCAT TYPE SLIS_T_SORTINFO_ALV,
    SORTCAT_LN LIKE LINE OF SORTCAT,
    G_REPID LIKE SY-REPID,
    G_BACK_GROUND(70), "like bapibds01-objkey,
    GS_VARIANT LIKE DISVARIANT,
    G_SAVE ,
    GT_EVENTS TYPE SLIS_T_EVENT,
    ALV_EVENT TYPE SLIS_ALV_EVENT,
    EVENTCAT TYPE SLIS_T_EVENT,
    EVENTCAT_LN LIKE LINE OF EVENTCAT,
    LAYOUT_IN TYPE SLIS_LAYOUT_ALV,
    LAYOUT_IN1 TYPE SLIS_LAYOUT_ALV.
    CONSTANTS : GC_FORMNAME_TOP_OF_PAGE TYPE SLIS_FORMNAME VALUE
    'TOP_OF_PAGE',
    GC_FORMNAME_USER_COMMAND TYPE SLIS_FORMNAME VALUE
    'USER_COMMAND',
    GC_FORMNAME_BEFORE_OUTPUT TYPE SLIS_FORMNAME VALUE
    'BEFORE_OUTPUT'.
    ALV_EVENT TYPE SLIS_ALV_EVENT,
    DATA EX_NO LIKE IT_CHDR-EXNUM VALUE 0.
    DATA REGTYP_1 LIKE J_1IPART2-REGTYP.
    SELECTION-SCREEN BEGIN OF BLOCK B WITH FRAME.
    PARAMETERS WERKS TYPE J_1IEXCHDR-WERKS.
    SELECT-OPTIONS : BUDAT FOR J_1IEXCHDR-EXDAT.
    PARAMETERS : R1 RADIOBUTTON GROUP GRP DEFAULT 'X',
    R2 RADIOBUTTON GROUP GRP.
    SELECTION-SCREEN END OF BLOCK B.
    INITIALIZATION.
    G_REPID = SY-REPID.
    G_SAVE = 'A'.
    PERFORM BUILD_EVENT USING GT_EVENTS[].
    PERFORM ALV_EVENT_INIT.
    AT SELECTION-SCREEN.
    REFRESH LIST_HEADER.
    PERFORM TOP_OF_PAGE_LIST_HEADER USING LIST_HEADER.
    START-OF-SELECTION.
    PERFORM ALV_EVENT_INIT.
    G_REPID = SY-REPID.
    G_BACK_GROUND = ' ' .
    IF R1 = 'X'.
    CLEAR R2. CLEAR : REGTYP_1.
    REGTYP_1 = 'A'.
    set titlebar 'BALAJI' with DB_CNT.
    ELSEIF R2 = 'X'.
    CLEAR R1.CLEAR : REGTYP_1.
    REGTYP_1 = 'C'.
    set titlebar 'BALAJI1' with DB_CNT.
    ENDIF.
    SELECT * FROM J_1IPART2
    INTO CORRESPONDING FIELDS OF TABLE IT_PART2
    WHERE REGTYP = REGTYP_1 AND
    TRNTYP = 'GRPO' AND
    BUDAT IN BUDAT.
    DOCYR = IT_CDTL-DOCYR AND
    DOCNO = IT_CDTL-DOCNO.
    LOOP AT IT_PART2.
    SELECT SINGLE * FROM J_1IEXCHDR
    INTO CORRESPONDING FIELDS OF IT_CHDR
    WHERE TRNTYP = 'GRPO' AND
    DOCYR = IT_PART2-DOCYR AND
    DOCNO = IT_PART2-DOCNO AND
    WERKS = WERKS AND
    exdat IN BUDAT.
    ORDER BY EXDAT.
    IF SY-SUBRC = 0.
    APPEND IT_CHDR.
    ELSE.
    CONTINUE.
    ENDIF.
    IF SY-SUBRC <> 0.
    MESSAGE E084.
    ENDIF.
    ENDLOOP.
    LOOP AT IT_CHDR.
    SELECT * FROM J_1IEXCDTL
    INTO CORRESPONDING FIELDS OF IT_CDTL
    FOR ALL ENTRIES IN IT_CHDR
    WHERE
    TRNTYP = 'GRPO' AND
    DOCNO = IT_CHDR-DOCNO AND
    DOCYR = IT_CHDR-DOCYR AND
    EXNUM = IT_CHDR-EXNUM AND
    EXDAT = IT_CHDR-EXDAT AND
    WERKS = IT_CHDR-WERKS.
    IF SY-SUBRC = 0.
    APPEND IT_CDTL.
    ELSE.
    CONTINUE.
    ENDIF.
    ENDSELECT.
    ENDLOOP.
    LOOP AT IT_CDTL.
    CLEAR TEXT.
    DB_CNT = DB_CNT + 1.
    READ TABLE IT_CHDR WITH KEY EXNUM = IT_CDTL-EXNUM.
    READ TABLE IT_PART2 WITH KEY DOCNO = IT_CDTL-DOCNO .
    IT_OUT-SERIALNO = IT_PART2-SERIALNO.
    SELECT SINGLE NAME1 FROM LFA1
    INTO IT_OUT-NAME
    WHERE LIFNR = IT_CDTL-LIFNR.
    SELECT SINGLE * FROM LFA1
    WHERE LIFNR = IT_CDTL-LIFNR.
    IF LFA1-LAND1 EQ 'IN'.
    TEXT = 'INVOICE'.
    IT_OUT-TEXT1 = TEXT.
    ELSE.
    TEXT = 'BOE'.
    IT_OUT-TEXT1 = TEXT.
    ENDIF.
    SELECT SINGLE * FROM J_1IMOVEND
    WHERE LIFNR = IT_CDTL-LIFNR.
    SELECT SINGLE * FROM DD07T
    INTO IT_OUT-DDTEXT
    WHERE DOMNAME = 'J_1IVTYP' AND
    DDLANGUAGE = 'EN' AND
    DOMVALUE_L = J_1IMOVEND-J_1IVTYP.
    IF DD07T-DDTEXT = 'First Stage Dealer of indigenous excisable goods'
    OR
    DD07T-DDTEXT = 'Second Stage Dealer of indigenous excisablegoods'.
    DD07T-DDTEXT = 'Dealer'.
    ENDIF.
    IT_OUT-DDTEXT = DD07T-DDTEXT.
    ELSEIF DD07T-DDTEXT = 'Second Stage Dealer of indigenous excisable
    *goods'.
    DD07T-DDTEXT =
    CLEAR EBELN_T.
    SELECT SINGLE LFBNR FROM MSEG
    INTO EBELN_T
    WHERE MBLNR = IT_CDTL-RDOC2 .
    SELECT SINGLE * FROM MSEG
    WHERE BWART = '106' AND
    LFBNR = EBELN_T ."and
    ebeln = ebeln_t.
    IF SY-SUBRC = 0.
    IT_OUT-DEL_IND = 'X'.
    ELSE.
    IT_OUT-DEL_IND = ' '.
    ENDIF.
    SELECT SINGLE BUDAT FROM MKPF
    INTO IT_OUT-BUDAT
    WHERE MBLNR = EBELN_T ."MSEG-LFBNR.
    IT_OUT-EXNUM = IT_CDTL-EXNUM.
    IT_OUT-EXDAT = IT_CDTL-EXDAT.
    IT_OUT-EXCCD = IT_CHDR-EXCCD.
    IT_OUT-EXBAS = IT_CDTL-EXBAS.
    IT_OUT-EXBED = IT_CDTL-EXBED.
    IT_OUT-ECS = IT_CDTL-ECS.
    IT_OUT-MATNR = IT_CDTL-MATNR.
    IT_OUT-MAKTX = IT_CDTL-MAKTX.
    IT_OUT-CHAPID = IT_CDTL-CHAPID.
    IT_OUT-MENGE = IT_CDTL-MENGE.
    IT_OUT-MEINS = IT_CDTL-MEINS.
    APPEND IT_OUT.
    EX_NO = IT_CDTL-EXNUM.
    ENDLOOP.
    Title Portion
    IF REGTYP_1 = 'A'.
    SET TITLEBAR 'BALAJI' WITH DB_CNT.
    ELSEIF REGTYP_1 = 'C'.
    SET TITLEBAR 'BALAJI1' WITH DB_CNT.
    ENDIF.
    AFIELD-COL_POS = 1.
    AFIELD-FIELDNAME = 'SERIALNO'.
    AFIELD-SELTEXT_L = 'INPUTS'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 2.
    AFIELD-FIELDNAME = 'TEXT1'.
    AFIELD-SELTEXT_L = 'TYPE OF DOC'.
    AFIELD-JUST = 'L'.
    AFIELD-DECIMALS_OUT = '0'.
    AFIELD-NO_ZERO = 'X'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 3.
    AFIELD-FIELDNAME = 'EXNUM'.
    AFIELD-SELTEXT_L = 'DOC.NO'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 4.
    AFIELD-FIELDNAME = 'EXDAT'.
    AFIELD-SELTEXT_L = 'DOC.DATE'.
    AFIELD-JUST = 'C'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 5.
    AFIELD-FIELDNAME = 'NAME'.
    AFIELD-SELTEXT_L = 'NAME OF THE SUPPLIER'.
    AFIELD-NO_ZERO = 'X'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 6.
    AFIELD-FIELDNAME = 'DDTEXT'.
    AFIELD-SELTEXT_L = 'TYPE-OF-SUPPLIER'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 7.
    AFIELD-FIELDNAME = 'EXCCD'.
    AFIELD-SELTEXT_L = 'ECC OF THE SUPPLIER'.
    AFIELD-NO_ZERO = 'X'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 8.
    AFIELD-FIELDNAME = 'BUDAT'.
    AFIELD-SELTEXT_L = 'INPUT RECV DATE'.
    AFIELD-JUST = 'C'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 9.
    AFIELD-FIELDNAME = 'EXBAS'.
    AFIELD-SELTEXT_L = 'ASSESSABLE-VALUE'.
    AFIELD-DO_SUM = 'X'.
    AFIELD-JUST = 'R'.
    AFIELD-DECIMALS_OUT = '2'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 10.
    AFIELD-FIELDNAME = 'EXBED'.
    AFIELD-SELTEXT_L = 'DET OF CREDIT TAKEN CENVAT'.
    AFIELD-JUST = 'R'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 11.
    AFIELD-FIELDNAME = 'ECS'.
    AFIELD-SELTEXT_L = 'DET OF CREDIT TAKEN E-CESS'.
    AFIELD-JUST = 'R'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 12.
    AFIELD-FIELDNAME = 'MATNR'.
    AFIELD-SELTEXT_L = 'MATERIAL-CODE'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 13.
    AFIELD-FIELDNAME = 'MAKTX'.
    AFIELD-SELTEXT_L = 'DESCRIPTION'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 14.
    AFIELD-FIELDNAME = 'CHAPID'.
    AFIELD-SELTEXT_L = 'TARIFF-ID'.
    AFIELD-JUST = 'L'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 15.
    AFIELD-FIELDNAME = 'MENGE'.
    AFIELD-SELTEXT_L = 'QUANTITY'.
    AFIELD-JUST = 'R'.
    AFIELD-DO_SUM = ' '.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 16.
    AFIELD-FIELDNAME = 'MEINS'.
    AFIELD-SELTEXT_L = 'UOM'.
    AFIELD-JUST = 'C'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 17.
    AFIELD-FIELDNAME = 'DEL_IND'.
    AFIELD-SELTEXT_L = 'Deleted'.
    AFIELD-JUST = 'C'.
    APPEND AFIELD TO FIELDCAT.
    * LAYOUT FOR ZEBRA CATLOG
    LAYOUT_IN-COLWIDTH_OPTIMIZE = 'X'.
    LAYOUT_IN-ZEBRA = 'X'.
    LAYOUT_IN-GET_SELINFOS = 'X'.
    LAYOUT_IN-CONFIRMATION_PROMPT = 'X'.
    LAYOUT_IN-DETAIL_POPUP = 'X' .
    SORTCAT-decimals = '0'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = G_REPID
    I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
    I_SAVE = G_SAVE
    IS_VARIANT = GS_VARIANT
    IT_FIELDCAT = FIELDCAT
    IT_SORT = SORTCAT
    IS_LAYOUT = LAYOUT_IN
    IT_EVENTS = EVENTCAT
    I_BACKGROUND_ID = g_back_ground
    TABLES
    T_OUTTAB = IT_OUT.
    *& Form TOP_OF_PAGE_LIST_HEADER
    text
    -->LIST_HEADERtext
    FORM TOP_OF_PAGE_LIST_HEADER USING LIST_HEADER TYPE SLIS_T_LISTHEADER.
    DATA : HLINE TYPE SLIS_LISTHEADER,
    TEXT(60) TYPE C.
    CLEAR : HLINE,TEXT.
    HLINE-TYP = 'H'.
    WRITE 'ROOTS INDUSTRIES LTD' TO TEXT.
    HLINE-INFO = TEXT.
    APPEND HLINE TO LIST_HEADER.
    SELECT SINGLE * FROM T001W WHERE WERKS = WERKS.
    CLEAR : HLINE,TEXT.
    HLINE-TYP = 'H'.
    WRITE 'PLANT :' TO TEXT.
    WRITE WERKS TO TEXT+8.
    HLINE-INFO = TEXT.
    APPEND HLINE TO LIST_HEADER.
    CLEAR : HLINE,TEXT.
    HLINE-TYP = 'H'.
    WRITE T001W-NAME1 TO TEXT.
    HLINE-INFO = TEXT.
    APPEND HLINE TO LIST_HEADER.
    CLEAR : HLINE,TEXT.
    HLINE-TYP = 'H'.
    WRITE T001W-STRAS TO TEXT.
    HLINE-INFO = TEXT.
    APPEND HLINE TO LIST_HEADER.
    CLEAR : HLINE,TEXT.
    HLINE-TYP = 'H'.
    WRITE T001W-ORT01 TO TEXT.
    HLINE-INFO = TEXT.
    APPEND HLINE TO LIST_HEADER.
    CLEAR : HLINE,TEXT.
    HLINE-TYP = 'H'.
    WRITE 'DATE :' TO TEXT.
    WRITE BUDAT-LOW TO TEXT+7.
    IF BUDAT-HIGH NE ''.
    WRITE 'TO' TO TEXT+18.
    WRITE BUDAT-HIGH TO TEXT+22.
    ENDIF.
    HLINE-INFO = TEXT.
    APPEND HLINE TO LIST_HEADER.
    ENDFORM. "TOP_OF_PAGE_LIST_HEADER
    *& Form ALV_EVENT_INIT
    text
    FORM ALV_EVENT_INIT .
    CLEAR ALV_EVENT.
    ALV_EVENT-NAME = SLIS_EV_TOP_OF_PAGE.
    ALV_EVENT-FORM = 'ALV_TOP_OF_PAGE'.
    APPEND ALV_EVENT TO EVENTCAT.
    CLEAR ALV_EVENT.
    ALV_EVENT-NAME = SLIS_EV_TOP_OF_LIST.
    ALV_EVENT-FORM = 'ALV_TOP_OF_LIST'.
    APPEND ALV_EVENT TO EVENTCAT.
    CLEAR ALV_EVENT.
    ALV_EVENT-NAME = SLIS_EV_END_OF_LIST.
    ALV_EVENT-FORM = 'ALV_END_OF_LIST'.
    APPEND ALV_EVENT TO GT_EVENTS.
    CLEAR ALV_EVENT.
    ALV_EVENT-NAME = SLIS_EV_END_OF_PAGE.
    ALV_EVENT-FORM = 'ALV_END_OF_PAGE'.
    APPEND ALV_EVENT TO GT_EVENTS.
    ENDFORM. "ALV_EVENT_INIT
    *& Form ALV_TOP_OF_PAGE
    text
    FORM ALV_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = LIST_HEADER
    I_LOGO = 'ENJOYSAP_LOGO'.
    ENDFORM. "ALV_TOP_OF_PAGE
    *& Form BUILD_EVENT
    text
    -->P_GT_EVENTS[] text
    FORM BUILD_EVENT USING P_EVENTS TYPE SLIS_T_EVENT.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
    I_LIST_TYPE = 0
    IMPORTING
    ET_EVENTS = P_EVENTS
    EXCEPTIONS
    LIST_TYPE_WRONG = 1
    OTHERS = 2.
    READ TABLE P_EVENTS WITH KEY NAME = SLIS_EV_USER_COMMAND INTO
    ALV_EVENT.
    IF SY-SUBRC = 0.
    MOVE GC_FORMNAME_USER_COMMAND TO ALV_EVENT-FORM.
    APPEND ALV_EVENT TO P_EVENTS.
    ENDIF.
    READ TABLE P_EVENTS WITH KEY NAME = SLIS_EV_BEFORE_LINE_OUTPUT INTO
    ALV_EVENT.
    IF SY-SUBRC = 0.
    MOVE GC_FORMNAME_BEFORE_OUTPUT TO ALV_EVENT-FORM.
    APPEND ALV_EVENT TO P_EVENTS.
    ENDIF.
    ENDFORM. " BUILD_EVENT
    with regards.
    Hema.
    pls reward if helpful.

  • .swf animation in rich pdf : flash logo issue

    Hello
    When I do simple animations in inDesign, export them in .swf and put them back in just like in this tutorial http://tv.adobe.com/watch/csinsider-design/indesign-creating-interactive-pdfs-with-page-tu rn-and-flash-animations/ i got a swf logo coming over it.
    and on this particular page evne got this video note (no video anywhere in the original document)
    anyone experiencing this ?

    Did you use any poster image? You can set it in Media panel...

  • Logo issues

    I have logo in my MIME repository.
    I want to place the logo in my form.
    please let me know how can pass the data from printprogram to layout.
    Thanks in Advance.
    Audi

    I "Googled" this question as well and found a bit of a work-around:
    I added this:
    text-indent: -3000px;
    ...to the previous code, and it worked, but is it "acceptable"?  Or is it considered "bad practice" to Google as it is a "hidden" text?

  • IPod Touch 2G 32GB with White Apple Logo and Failed Restore / Recovery

    My Specifications:
    iPod Touch 32GB 2G
    iPhone OS 3.1.3
    2.8 Ghz. Intel Core 2 Duo iMac
    Mac OS 10.5.8
    iTunes 9.0.3 (15)
    Problem:
    After updating my iPod Touch to OS 3.1.3, my iPod touch started having sync issues where it would say the sync failed. The backup files stopped being created and the latest version was over two weeks old (from prior to the updated to 3.1.3). After an application became unstable and crashed frequently, I tried to do a reboot by holding the Power & Home buttons until the Apple Logo appeared to begin the reboot process. After waiting for 6 hours, the ipod still had not rebooted but was frozen on the White Apple Logo screen.
    Troubleshooting Steps I’ve Take:
    1. Attempted to follow Apple Frozen iPod Touch and Common Issue Troubleshooting Guide. The iPod will not shut down using the Power Slider function.
    2. Restore via iTunes using the DFU Restore Function (Power Button & Home Button for 10 seconds, releasing the Power Button, followed by plugging in the USB cable while holding the Home Button down). iTunes recognized the ipod at the point and began the restore process. The process took almost 32 hours and when it was completed, the ipod would not boot up by remained with the White Apple Logo. My original attempt was with using a powered USB hub.
    3. Repeated the restore process but by plugging directly into the computer and eliminating all USB devices except keyboard and mouse. Deleted the OS 3.1.3 updated and made iTunes download the file in case it was corrupted.
    4. Rebooted computer between each attempt.
    5. Deleted iTunes and the Apple Mobile Device Services as per Apple Article HT1747. Rebooted the computer and reinstalled iTunes. iTune would not recognized the iPod Touch to do a restore using the DFU method. I’ve retried various timings and versions with the cable plugin, booting with the cable plug in and not plugged in, etc... No effect.
    6. Repeated the above steps on a MacBook Pro running OS 10.6. iTunes wouldn’t recognize the iPod.
    7. Repeated the above steps using a different sync cable. iTunes wouldn’t recognize the ipod.
    8. Unplugged the iPod and let it completely drain until the screen went blank for 1 day. When pressing home button the Low Battery / Plug In warning appears. Recharged the battery using a wall plug for 12 hours. Retried the above steps. No change.
    What I’ve Eliminated As The Problem Via My Troubleshooting:
    1. Computer Hardware
    2. iTunes Software
    3. Sync Cable
    4. USB Conflicts
    What I Need Is A Solution:
    1. Completely wiping my ipod is an acceptable solution at this point. I’ve spent a week working on this and wasted way too much time. Is my iPod trashed thanks to an OS update?
    Any help or suggestions would be greatly appreciated. I've ready each forum posting involved White Apple Logo Issues and have come up empty. Am I the only persons would is having trouble restoring?
    Thank you,
    Paul

    More Troubleshooting Steps For Your Consideration:
    I was able to restore back to iPhone OS 2 by using a laptop that had not been synced with my ipod touch previously. When I did the DFU with it, iTunes downloaded OS 2 and it worked.
    Then I went back to my iMac and proceeded to install OS 3.1.3 and that seemed to work ok too.
    I've been getting the white apple logo of death, however, when I try to sync applications. All seems well, but as it is finishing the ipod touch reboots to the White Apple Logo Screen and stays there. iTunes seems oblivious to this taking place.
    During my second rebuild starting with OS 2 and then updating to 3.1.3, it worked again. When I tried to add apps, I only put on a dozen. That worked too. I did get the White Apple Logo Screen of Death once again and I did the third sync to get the rest of my apps in place.
    I'm on the third rebuild from version 2. I'm going to try to use an old file I have of 3.1.1 instead of 3.1.3. Also, I'm going to add one application per sync. At least this way I might be able to find out if it is a specific app that is causing the problems.
    In my further research, it appears that this bug has been in place since the early days of iPhone OS 2.
    All told I've spent over week with my computers tied up working on this problem. I think it would have more cost effective to just buy a new iPod. (I'd rather wait for the 4G version this fall!).
    Just in case anyone else has been having issues, that is where I'm at. I'll let you know if I figure this issue out in more detail.
    Thanks,
    Paul

  • GContacts removed from the AppStore -- should I be concerned?

    An application that allowed on to browse a local copy of Google Contacts was sold on the App Store for about 3 days.
    I bought a copy of "gContacts".
    It has been removed from the App Store without explanation.
    The only information on the app is that the author was "Shawn Gragg". That's an unusual name -- there are few Google hits on it.
    I'd like to know why it was removed. The worst case explanation is that the app was stealing Google account passwords. (That's bad.) The best case is a trademark problem.
    I worry about the "worst case" because I (only) now note how little information is available about the author. In future I won't buy an App Store iPhone apps without some information to tell me about the reputation of the author.
    Anyone have any ideas?

    Whew.
    It would be a lot nicer if Apple would provide some explanation of these takedowns.
    I was 90% sure it was a trademark and logo issue, which is why I didn't change my gmail pw - despite my worries.
    I do think though, going forward, that I won't buy any apps that don't have an associated public web site and other ways to measure the author's reputation. There are too many bad things some vendors can do with gmail account info.
    Your name shows up two different ways in the get info dialog, once as McGragger in the "composer fields" and once as Shawn Gragg in the copyright field.
    Shawn Gragg is a really unique name!
    john

  • Is it possible to change the change context id in the company?

    Hi,
    During uploading the enterprise WB there was mistake in the context id maintained for the company. While uploading the workbook, it got created with warning.
    Now i am not able to change the context id of the company.
    Is it possible to delete the company which was created and upload it agin?
    Is it possible to change the context ID of the company so that i don't have to load it again?
    Your pointers will be highly appreciated.
    Rgds,
    Madhan

    Hi Madhan,
    Need little bit more information on your setup. How many enterprise contexts, sub-contexts do you have and which context is the company you created by mistake associated with? How many companies do you have in the system?
    If you have multiple enterprise contexts, you can't cross link the company to another enterprise context (even accidentally) as you will have visibility only within your context. My guess is, you have an enterprise context and have created multiple sub-contexts under the enterprise. Is this the case?
    The first company you create is the enterprise company. If the company in question is the enterprise company, I wouldn't recommend inactivating it and instead start over by running install_root script.
    If the company in question is not an enterprise company, then itu2019s fine inactivating it and creating a new one.
    The logo issue most probably is caching related. Clear the system cache and try again. If that doesn't help pls provide details on the configurations. Which release of Sourcing are you on? Note, there is a known issue with logo in release 5.1.
    Regards,
    Vikram

  • LabVIEW DSC Logging too Many Data Points for Integer Tags

    Hi,
    I am having a strange problem with LabVIEW 2013 SP1 DSC data logging, running on XP SP3.
    All the integer Data Type Tags in my Tag Database that are set to data log, are logging way too much data. When I look at the amount of logged data points for these int16 in Historical view I see its logging a point nearly every second. See screen shots below or attached jpeg's of screen shots of trace view and Trace Props of one of the integer Tags. I would prefer the integer tags to only log on change like the boolean tags.
    These tags are being acquired from a Horner OCS over Modbus Serial RTU. The Modbus comms is set-up to poll once a second.
    The problematic Tag Data Type in DSC logging are Int16
    The Modbus register data items denotations I am using for Int16 is S4#####
    Example  'OCS_Modbus_Master\S403709' 
    The same register represented in OCS Register is shown as '%R0709'
    The trace properties for some of these int16 tags is showing database page numbers in the thousands, which compared to the largest floating point tag is currently showing 172 pages after several months of logging.
    I would have expected int16 tags to only log a value when the value changes and since the 'update deadband' tag setting is disabled for integer tag properties there is no way to config the tag to only log on changes. What is the default logging config for integers. Log everything or log on any change?
    I would prefer for these integer tags to only log on change, since they change infrequently, log on change would be much more data efficient.
    I tried changing the tag data type to floating point and gave it an update deadband value to try and see if that would reduce the amount of logged data, it didn't seem to make any difference.
    Not sure if the issue lies in the
    > Modbus Comms
    > The DSC data event tracking module
    > The DSC Data Logging module
    > Some kind of  Horner OSC data type mismatch which results in DSC polling seeing the acquired value as having changed on every poll.
    Any suggestions greatly appreciated
    Thanks
    Paul
    Attachments:
    Integer Tag Data Points Trace View.jpg ‏125 KB
    Integer Tags Data Points Tag Properties.jpg ‏42 KB

    This definitely sounds like a citadel/logos issue. There are two possibilities:
    1) corrupt database
    2) corrupt logos
    To see if it is a corrupt database, simply go to your database folder and move all the files out of that folder to a different folder. Then restart the application. Your application will create a clean database. This may solve the problem. If so, then you know it is a corrupt database.
    To upgrade/reinstall logos, go to the Control Panel -> Add/Remove Programs. If you see logos there, uninstall it. After uninstalling it, install the most recent logos version (found at ftp://ftp.ni.com/support/lookout/logos).
    Please let me know if the problem persists. As you know, you may also always call in to the Tech Support Line.
    Thanks.

  • My computer starts but shuts down

    my computer will turn on and the apple will appear but I will turn off, last time I did was re-start it

    Hey Silvia,
    Welcome to Apple Support Communities.
    The article linked below provides resolutions for startup issues, like the gray screen with an Apple logo issue that you described. Try following along with it and just reply reply if you run into any issues.
    Mac OS X: Gray screen appears during startup
    I hope this helps.
    -Jason

  • Image In Excel Output

    Hi
    I am posting Excel logo issue here 2nd time
    I want Image to show on Excel output in EBS
    I gone through Tim's Blog about "Excel Limitation"
    as per this blog I am giving
    Base image URI = http://cvd-erp-dev-01.limac.com:8011/OA_MEDIA/comp_logo.gif
    and
    Image file directory = /u11/orafindv/findvcomn/java/oracle/apps/media/comp_logo.gif
    Is it correct?
    Now please suggest me what should I write in rtf Template?
    shall I take dummy Image? or something in form field?
    Thanks In advance
    Rahul

    You should put this issue on the XML Pub forum.
    I remember some specific setting required for linking images off the instance top. Check the XML Pub dev guide.
    --Shiv                                                                                                                                                                                                                                                                                                                                                           

  • G5 clicks but no LED / wont power on

    Hi guys,
    I recently replaced a G5 motherboard for a customer who had the hanging apple logo issue (I read about the issue and it looks like reballing was the best fix, but customer was willing to just get the mobo replaced).
    I replaced, the board, put everything back together, and then, when I went to power it on PS would click on/off and the power LED would come on then turn off.
    I tested the CMOS battery with a multimeter (the 1 1/2 AA size battery in this model) and it had about .3v (maybe just wasn't used in a while). To be safe, I put in the old battery which tested at 3.6v. Still nothing.
    I took out everything and tried powering it on with just the power supply on the motherboard, still nothing. I put the OLD board in which used to turn on, and even that does not come on anymore.
    PLEASE NOTE: I tested the power supply and compared it with a pinout, all voltages were CORRECT. When I put a pin between the green wire of the 24 pin connector and the 23rd ground pin, it clicks and the fans come on the PS.
    Now, after trying it again, the front LED will not even come on. It still clicks on and off and sometimes when plugging in the power the LED might flash, but that's it.
    All I can think of is maybe a bad power button? I don't know, i searched around and a lot of people just left it alone for a couple days and reported that it turned on afterwards. I'm lost with this one. Any way i can use a safety pin to manually power on the computer? If so, which pins do I touch together on the onboard power connector?
    THANK YOU!!! I REALLY appreciate your help guys!

    Well i found one issue,
    the motherboard was not made for the liquid cooling processor so there was no connector for it. I tried using another similar connector but no go. gonna hold till i get the right mobo

  • Apple Software Update is stuck in the "Checking for new software..." phase

    I installed iTunes+Quicktime using iTunes64Setup.exe and so ASU got automatically installed as well.
    When I manually start ASU, it immediately checks for new software and the progress bar stalls at around 10%. I have not seen ASU run by the task scheduler yet.
    Bonus: The ASU logo has weird colours (http://imagebin.ca/view/XN2-zrN.html)
    Is anybody also having the same problem?

    That's an odd one.
    Have you tried a repair install of ASU?
    Head into your Uninstall a program control panel, select "Apple Software Update" and click "Repair".
    Any help with the hang or the logo issue?

  • Issue in changing the Mountain logo in CRM WEB UI

    Hi Everyone,
    My requiremnet is to change the mountain logo in the web ui logon screen. I have done all the configurations as per the link given below:
    New Skin Management Part 3 - Example about how to change the image above WorkCentre from CRM7.0 Ehp1 - CRM - SCN Wiki
    Still I am unable to show it up on the web ui screen. I am working on CRM 7.0 EHP3.
    Steps that I have followed:
    1. Copied the bsp application THTMLB_STYLES to Z*_SKIN and activated it.
    2. Created a custom folder by copying the standard skin in SPRO customizing ''Access Skin Workbench''
    3. Uploaded a new logo in custom folder under default-->styling-->lshape
    4. Copied the css file 'thtmlb_stand.css' to 'thtmlb_new.css' and changed logo name to the new logo name. Uploaded it to the custom folder under default.
    5. Did customizing under sub node: 'Define path for CSS files'
    Could you please suggest if I missed something in this procedure?
    Many Thanks!!
    Regards,
    Ekta

    Hi Becky,
    Usually, this is a customizing task, shoule be performed in Dev/Customizing client and once the reequest is released, then only it reaches to the testing client.
    Did it ask for a customizing request, usually it does, when you make the changes to UI config. I remember similar kind of issue I'd before, then i tried to do the same config in BSP_WD_CMPWB and it worked. May some some notes related to UI config wud be missing , please check it in SMP.
    /people/pengwah.ng/blog/2011/05/25/the-truth-about-webui-default-role-config-key
    The blog may be useful to understand the customer config.
    Get back to me for any further Q's
    Cheers. Satish

Maybe you are looking for

  • JDBC Connection pool recovery after DB server restart

    I am finding that Kodo is throwing the following exception after I restart my database server (mysql). I am doing the database server restart while my application server is idle, so it is not during a transaction. Communication link failure: java.net

  • Install using SDTV as monitor?

    I'm wanting to install Arch on another machine, but only have a SDTV as a monitor. While I can verify that the machine and TV connection works fine, I don't get anything but a black screen when I try and boot from the Arch CD. Am I right in thinking

  • Exception of buffer overflow.

    Hi There, I have a code to read the text file in jsp, the problem i am facing is of buffer overflow as the text file contains more than 2000 records and when i upload data to database it throws exception of buffer overflow, any help will be appriciat

  • Where is my service?

    My landline connection has been down for 10 days now and no engineer has attended the fault yet despite multiple (false) promises from the BT service desk. Apparently there are still 60 other faults ahead of me in the queu. I consider it to be a disg

  • First two examples of  "my first cup of Java"

    I could compile and run the first example "HelloWorldApp" with the JDK 1.5.0 Version from the java-sun pages. And I could compile and run the second but only with the appletviewer. But my problem is, that I couldn't start the Hello.html file in my br