LOGO IS NOT COMING IN SCRIPT IN PRODUCTION SERVER ONLY

Dear all,
   i had  modify a std script for payment advice for FI module. my problem is that the company logo is not coming in form after execting it from tcode f-58 in production server only.
i checked that graphics object in se78 in prod.sever , it is present there. the thing is that the logo is coming in the form when i executing it from development sever. can any body tell where is the problem.
thanks
Banaja

Hi,
May be you have changed the form in DEV and in PRD your print program is still calling the std form and not the new (z-form).
Might be a good idea to check that in t-code NACE !
Let us know if this solves your problem.
Regards
Hrishi

Similar Messages

  • Logo is not coming properly while mailing the script

    this is my code..
    m converting script output to pdf and sending as attachment... my pdf conatains LOGO.. when i received the mail,text is coming properly but LOGO is not getting printed properly..
    pls suggest any solution to this...
    thanking u in advance...
    *& Report  ZZGBTEST_PDF
    REPORT  ZZGBTEST_PDF.
    TABLES: PA0105.
    DATA: LF_FM_NAME TYPE RS38L_FNAM.
    DATA: WA_CTRLOP TYPE SSFCTRLOP,
          WA_OUTOPT TYPE SSFCOMPOP,
          WA_STXH LIKE STXH.
    DATA: T_OTFDATA TYPE SSFCRESCL,
          T_PDF_TAB LIKE TLINE OCCURS 0 WITH HEADER LINE,
          T_LINE LIKE TLINE OCCURS 0 WITH HEADER LINE.
    DATA : T_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
           W_FILESIZE TYPE I,
           W_BIN_FILESIZE TYPE I.
    *OBJECTS TO SEND MAIL.
    DATA :  I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
            I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            I_OBJBIN LIKE SOLIX OCCURS 0 WITH HEADER LINE,
            I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
            I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            W_OBJHEAD TYPE SOLI_TAB,
            W_DOC_CHNG TYPE SODOCCHGI1,
            W_BUFFER TYPe STRING. "TO CONVERT FROM 132 TO 255.
    DATA : V_LINES_TXT TYPE I,
           V_LINES_BIN TYPE I.
    SELECTION-SCREEN BEGIN OF BLOCK SCR WITH FRAME TITLE TEXT-900.
      SELECT-OPTIONS: MAILTO FOR PA0105-USRID_LONG NO INTERVALS.
      PARAMETERS : WDATE LIKE SY-DATUM DEFAULT SY-DATUM,
                   TESTRUN AS CHECKBOX .
    SELECTION-SCREEN END OF BLOCK SCR.
    DATA: DATAB TYPE TABLE OF ITCOO WITH HEADER LINE,
          PDFTAB TYPE TABLE OF TLINE WITH HEADER LINE,
          BINFILESIZE TYPE I.
    DATA: FNAME TYPE STRING,
          FPATH TYPE STRING,
          FULL_PATH TYPE STRING.
    DATA: STRUCT TYPE ITCPO.
    START-OF-SELECTION.
    WA_CTRLOP-GETOTF = 'X'.
    WA_CTRLOP-NO_DIALOG = 'X'.
    WA_OUTOPT-TDNOPREV = 'X'.
    STRUCT-TDDEST   = 'LP01'.
    STRUCT-TDNOPREV = 'X'.
    STRUCT-TDGETOTF = 'X'.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
       DEVICE                            = 'PRINTER'
       DIALOG                            = SPACE
       FORM                              = 'ZGBTEST'
       LANGUAGE                          = SY-LANGU
       OPTIONS                           = STRUCT
    EXCEPTIONS
       CANCELED                          = 1
       DEVICE                            = 2
       FORM                              = 3
       OPTIONS                           = 4
       UNCLOSED                          = 5
       MAIL_OPTIONS                      = 6
       ARCHIVE_ERROR                     = 7
       INVALID_FAX_NUMBER                = 8
       MORE_PARAMS_NEEDED_IN_BATCH       = 9
       SPOOL_ERROR                       = 10
       CODEPAGE                          = 11
       OTHERS                            = 12
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'MAIN'
       WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
       ELEMENT                        = 1
       FUNCTION                       = 2
       TYPE                           = 3
       UNOPENED                       = 4
       UNSTARTED                      = 5
       WINDOW                         = 6
       BAD_PAGEFORMAT_FOR_PRINT       = 7
       SPOOL_ERROR                    = 8
       CODEPAGE                       = 9
       OTHERS                         = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CLOSE_FORM'
    TABLES
       OTFDATA                        = DATAB[]
    EXCEPTIONS
       UNOPENED                       = 1
       BAD_PAGEFORMAT_FOR_PRINT       = 2
       SEND_ERROR                     = 3
       SPOOL_ERROR                    = 4
       CODEPAGE                       = 5
       OTHERS                         = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF..
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = 'PDF'
    IMPORTING
       BIN_FILESIZE                = BINFILESIZE
      TABLES
        OTF                         = DATAB[]
        LINES                       = T_PDF_TAB[]
    EXCEPTIONS
       ERR_MAX_LINEWIDTH           = 1
       ERR_FORMAT                  = 2
       ERR_CONV_NOT_POSSIBLE       = 3
       ERR_BAD_OTF                 = 4
       OTHERS                      = 5
    IF SY-SUBRC EQ  0.
    MESSAGE 'SCRIPT SUCCESSFULLY CONVERT IN TO PDF' TYPE 'I'.
    ENDIF.
      LOOP AT T_PDF_TAB.
    REPLACING SPACE BY ~
        TRANSLATE T_PDF_TAB USING ' ~'.
        CONCATENATE W_BUFFER T_PDF_TAB INTO W_BUFFER.
      ENDLOOP.
    REPLACING ~ BY SPACE
      TRANSLATE W_BUFFER USING '~ '.
      DO.
        I_RECORD = W_BUFFER.
    APPENDING 255 CHARACTERS AS A RECORD
        APPEND I_RECORD.
        SHIFT W_BUFFER LEFT BY 255 PLACES.
        IF W_BUFFER IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    REFRESH : I_RECLIST, I_OBJTXT, I_OBJBIN, I_OBJPACK.
    CLEAR W_OBJHEAD.
    OBJECT WITH PDF.
      I_OBJBIN[] = I_RECORD[].
      DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
    MAIL TEXT TO BE FILLED UP HERE
      SELECT SINGLE TDID TDSPRAS TDNAME TDOBJECT FROM STXH INTO
      CORRESPONDING FIELDS OF WA_STXH
        WHERE TDOBJECT ='TEXT' AND TDNAME = 'ZGBTEST'.
      IF SY-SUBRC = 0.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
           CLIENT                        = SY-MANDT
            ID                            = WA_STXH-TDID
            LANGUAGE                      = WA_STXH-TDSPRAS
            NAME                          = WA_STXH-TDNAME
            OBJECT                        = WA_STXH-TDOBJECT
          TABLES
            LINES                         = T_LINE.
        LOOP AT T_LINE.
          I_OBJTXT = T_LINE-TDLINE.
          APPEND I_OBJTXT.
        ENDLOOP.
      ENDIF.
      DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
    DOCUMENT INFORMATION.
      W_DOC_CHNG-OBJ_NAME = 'FORM'.
      W_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
      W_DOC_CHNG-SENSITIVTY = 'F'. "FUNCTIONAL OBJECT
      W_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    PACK TO MAIN BODY AS RAW.
    OBJ. TO BE TRANSPORTED NOT IN BINARY FORM
      CLEAR I_OBJPACK-TRANSF_BIN.
    START LINE OF OBJECT HEADER IN TRANSPORT PACKET
      I_OBJPACK-HEAD_START = 1.
    NUMBER OF LINES OF AN OBJECT HEADER IN OBJECT PACKET
      I_OBJPACK-HEAD_NUM = 0.
    START LINE OF OBJECT CONTENTS IN AN OBJECT PACKET
      I_OBJPACK-BODY_START = 1.
    NUMBER OF LINES OF THE OBJECT CONTENTS IN AN OBJECT PACKET
      I_OBJPACK-BODY_NUM = V_LINES_TXT.
    CODE FOR DOCUMENT CLASS
      I_OBJPACK-DOC_TYPE = 'RAW'.
      APPEND I_OBJPACK.
    PACKING AS PDF.
      I_OBJPACK-TRANSF_BIN = 'X'.
      I_OBJPACK-HEAD_START = 1.
      I_OBJPACK-HEAD_NUM = 1.
      I_OBJPACK-BODY_START = 1.
      I_OBJPACK-BODY_NUM = V_LINES_BIN.
      I_OBJPACK-DOC_TYPE = 'PDF'.
      I_OBJPACK-OBJ_NAME = 'FORM'.
      I_OBJPACK-OBJ_DESCR = 'temp.PDF'.
      I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255.
      APPEND I_OBJPACK.
    DOCUMENT INFORMATION.
      CLEAR I_RECLIST.
      CLEAR I_RECLIST[].
    E-MAIL RECEIVERS.
    LOOP AT MAILTO.
      I_RECLIST-RECEIVER = MAILTO-LOW.
      I_RECLIST-EXPRESS  = 'X'.
      I_RECLIST-REC_TYPE = 'U'. "INTERNET ADDRESS
      APPEND I_RECLIST.
    ENDLOOP.
    SENDING MAIL.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = W_DOC_CHNG
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = I_OBJPACK
          OBJECT_HEADER              = W_OBJHEAD
          CONTENTS_HEX               = I_OBJBIN
          CONTENTS_TXT               = I_OBJTXT
          RECEIVERS                  = I_RECLIST
        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.
      IF SY-SUBRC = 0.
        WRITE :/ 'MAIL SENT SUCCESSFULLY...'.
      ENDIF.
    *CALL METHOD cl_gui_frontend_services=>FILE_SAVE_DIALOG
      CHANGING
         FILENAME = FNAME
         PATH = FPATH
         FULLPATH = FULL_PATH.
    *CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
       BIN_FILESIZE                    = BINFILESIZE
       FILENAME                        = FULL_PATH
       FILETYPE                        = 'BIN'
    TABLES
       DATA_TAB                        = PDFTAB[]
      FIELDNAMES                      =
    EXCEPTIONS
      FILE_WRITE_ERROR                = 1
      NO_BATCH                        = 2
      GUI_REFUSE_FILETRANSFER         = 3
      INVALID_TYPE                    = 4
      NO_AUTHORITY                    = 5
      UNKNOWN_ERROR                   = 6
      HEADER_NOT_ALLOWED              = 7
      SEPARATOR_NOT_ALLOWED           = 8
      FILESIZE_NOT_ALLOWED            = 9
      HEADER_TOO_LONG                 = 10
      DP_ERROR_CREATE                 = 11
      DP_ERROR_SEND                   = 12
      DP_ERROR_WRITE                  = 13
      UNKNOWN_DP_ERROR                = 14
      ACCESS_DENIED                   = 15
      DP_OUT_OF_MEMORY                = 16
      DISK_FULL                       = 17
      DP_TIMEOUT                      = 18
      FILE_NOT_FOUND                  = 19
      DATAPROVIDER_EXCEPTION          = 20
      CONTROL_FLUSH_ERROR             = 21
      OTHERS                          = 22
    *IF SY-SUBRC <> 0.
    MESSAGE 'Error !!!' TYPE 'E'.
    *ELSE.
    MESSAGE 'PDF FILE SUCCESSFULLY DOWNLOADED ...!!!' TYPE 'I'.
    *ENDIF.

    Hi Sagar,
    In scripts when you will see print preview the logo will be not shown up with clarity.Take the print out of the document and check whether logo is printing up with clarity.
    Thanks
    Phani

  • SSIS is not running in 64 bit production server - Error Class cannot be found while running from c# web application

    Full error message:
    An Integration Services class cannot be found. Make sure that Integration Services is correctly installed on the computer that is running the application. Also, make sure that the 64-bit version of Integration Services is installed if you are running a 64-bit
    application
    I have developed SSIS package in my development machine where the OS is 64 bit and sql server 2012 is installed.
    The package has excel source and oledb destination. Excel files can be both .xls and .xlsx format. Since i want to run both xls and xlsx format i have installed
    32 bit Microsoft Acess database engine form the below link, then both xls and xlsx format worked.
    .xls - 32 bit
    .xlsx - 32 bit and 64 bit is available. So in common i have to run it in 32 bit.
    I have set Run64BitRuntime to False and ran package. it is working fine. I cannot set Run64BitRuntime to True and run the packages. Because i have office products installed on my machine which is 32 bit. if try to install 64 bit Microsoft Acess
    database engine redistributable pacakage from below link , it is throwing error saying that, already office 32 bit product is installed so uninstall 32 bit product and install 64 bit.
    Excel connection string is Ace database engine only. everything works fine.
    microsoftcom/en-us/download/details.aspx?id=13255
    Now i am trying to invoke package from c# code by using Microsoft.SqlServer.ManagedDTS.dll and it is also working fine in my dev machine.
    When i deploy the web application in production am getting the error while invoking package. the full error message is posted in 1st line of this thread.
    Then i tried to execute the package in production server by using dtexec utility, it is working fine. I tried both 32 bit and 64 bit dtexec utility by going to specific path (program files(x86) and Program files) via command prompt.
    It is all working fine. So the error coming when i invoke from web application. My guess is ManagedDTS causing problem.
    Where can i find 64 bit Microsoft.SqlServer.ManagedDTS.dll
    or is it because of any other problem. i have checked below links, still problem not resolved.
    social.msdn.microsoftcom/Forums/sqlserver/en-US/491384d2-02f7-4178-a1c3-bcbd58e57fce/an-integration-services-class-cannot-be-found-make-sure-that-integration-services-is-correctly?forum=sqlintegrationservices
    forums.aspnet/t/1990417.aspx?Issue+deploying+SSIS+Package+in+production+web+server

    1) "I have set Run64BitRuntime to False and ran package" -> this is not valid outside of your development environment, it is made for simulation purposes as all the dev tools are 32 Bit
    2) "Where can i find 64 bit Microsoft.SqlServer.ManagedDTS.dll " is basically SSIS. It is quite possibly the culprit. I am inclined to think you attempt to run the package where there no SSIS installed.
    Arthur
    MyBlog
    Twitter

  • Prperty editor not coming for roles in dev server

    Hi all,
    Actually in my development server ,when iam clicking on any of the roles the property editor on the right panel is not coming ,whereas for iviews this problem is not there ,please help me with this isssue and guide me with the necessary  steps which need to be done.

    HI Prem,
    THnks for ur help but its like i  have checked the "Activate Accessibility Feature" its unchecked and moreover whenever I try opening portal objects it gives portal runtime error.
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.sap.portal.pcmEditor
    Component Name : com.sap.portal.appdesigner.framework.defaultPcmEditor
    getDeltalinkState() returns as value IPcmDeltaLinkState.DlState.PLAIN_CONTEXT or IPcmDeltaLinkState.DlState.ADDED_CONTEXT.
    Exception id: 03:09_07/03/08_0018_2747750
    See the details for the exception ID in the log file.
    after that i checked in the log files:
    Caused by: java.lang.IllegalStateException: getDeltalinkState() returns as value IPcmDeltaLinkState.DlState.PLAIN_CONTEXT or IPcmDeltaLinkState.DlState.ADDED_CONTEXT
    Thanks& Regards
    Pooja
    Edited by: Pooja Gehani on Mar 7, 2008 1:03 PM

  • Team calendar  My trainings not showing any DATA  on Production Server

    Dear ALL,
    We are facing very critical issue on Production Server.
    We have two Id's for which Team calendar, My trainings is not showing any DATA .
    We observed that this is happening to both the users who had MSS role previously..
    now for your information we have check the following things already .
    1. RFC PT_ARQ_TEAMCALE_GET is showing DATA correctly .
    2. The authorization. Is correct..
    3. We got help from SAP..But not solved problem.
    Here we copied same data in the Quality system and the Team calendar, My trainings working fine ..
    I donu2019t know why Team calendar, My trainings is not showing any data in the Production system
    Let me know ASAP.

    Hi,
    All r correct in both system .............even following things i have checked .................which i got from reply from U.
    01.07.2009 - 11:29:52 UK - Reply by SAP
    Hello Pinki
    You need to check the settings in your different systems
    the #group of organizational views# MSS_LTV_EE is maintained
    for the Team Calendar and MSS_LEA_EE for the request mode.
    Check the IMG step
    Integration with Other mySAP.com Components ->
    Business Packages/Functional Packages -> Object and Data Provider
    -> Organizational Structure Views -> Group Organizational Structure vieMSS_LTV_EE (Team: Employee selection): the two organizational
    views MSS_LTV_EE_ALL and MSS_LTV_EE_DIR are assigned.
    MSS_LEA_EE (Leave Request: Employee Selection) the two
    organizational views MSS_LEA_EE_ALL and MSS_LEA_EE_DIR are assigned
    These organizational views are defined in IMG step #
    #define Organizational Structure views#:
    They have the following Object selections:
    MSS_LTV_EE_ALL: MSS_LTV_EE_ALL (All Employees)
    MSS_LTV_EE_DIR: MSS_LTV_EE_DIR (Team: Direct Reports)
    MSS_LEA_EE_ALL: MSS_LEA_EE_ALL (All Employees)
    MSS_LEA_EE_DIR: MSS_LEA_EE_DIR (Absence: Directly Subordinate Employees)Then you have to check the IMG step # Object
    Also check these
    Please use the evaluation path "ORGASS".
    To change the evaluation path kindly go to the view V_TWPC_V , look for
    the ESSDIR view and double click on the ESSDIR.
    Please check the above customisation,
    Tthe evaluation path SAP_MANG is used to determine
    the root objects. "Eval.Path for Root Objects" on the detail
    screen in the view V_TWPC_V "View Definition" for further information onthis topic).
    Also check the customisation using
    report RHSTRU00
    In view V_TWPC_VG, the view group PTESS of view ESSDIR with position
    01 should exist. Please correct it as well
    and ensure that
    In the View Cluster(T-Code SM34) VC_TWPC_ORGVWGRP there should be
    a record for the group 'ATTEND'.
    Hope this will help you.
    Best Regards,
    Siddharth Rajora
    HCM
    SAP LABS India

  • Apple Support said OSX Server could not be used as a file server only

    Hi There,
    We bought OSX server thinking it would be easier than MS Small Business Server 2003 to setup, administer and maintain, as well as be more compatible with our mac studio.
    The simple setup we would like is:
    - A file server for our Mac studio (7x macs)
    - A "My Documents" style redirect to backup email from the client machines
    - Some sort of secondary backup to a HD on the server (primary Backup is already taken care of)
    We're using a single 1.8ghz G5 box as the hardware
    After a lot of trouble with the documentation and the setup example in the manual, I called Apple Tech Support.
    I was told in no uncertain terms that if we didn't have a fully qualified domain name on the server (and all the services needed to run it), then I could not configure the server as a simple File Server with a My Documents redirect and that Apple could not support me. - IS THIS TRUE?
    I am not a network/IT/PC guy, I'm a graphic designer, but I've found the installation and setup of MS Small Business Server to be much easier than OSX so far (despite the MS documentation).
    Any help or direction would be very much appreciated.
    Cheers
    Ben
    Dual 1.8Ghz G5    

    Hello,
    If you need to just setup a FileServer then you do not need OpenDirectory or DNS. You just need AFP and Windows File Sharing turned on.
    You can create a windows workgroup and setup shares in WorkGroup Manager using the internal users and groups database.
    When the windows clients boot up you could set up a persistent mapping of a volume which would contain your email data. You would use a \\192.168.x.x type connection from the RUN menu.
    It sounds like you could do with some more help on how best to use the server. I rekon you would be better off not having a simple fileserver (though it would work!) and make use of the extra functions availiable in the server software. On OS 10.4 server you can create a Windows Domain Controller that would allow all your PC home directories to be stored on the server, this will ensure that the Desktop, My Documents and anything elese the user stores in their profile will be safe and backed up on the server. You can also do this for the the Macs, in fact you can set it up so you can loggon to any PC in the office and your user information, desktop wallpaper and other settings follow you, if you were to then logon to a Mac you would have your documents follow you around the office. This works great for people hot-desking and using different types of computer.
    I don't understand why you were advised to have a fully-qualified domain. When I have setup OpenDirectory and Windows Domain Controllers with DNS and LDAP etc I have just made up a domain name on the DNS server like "mycompany.net" and call the server "server.mycompany.net" and printers "epson.mycompany.net". The only problem with this is because if you were to use a domain name that is registerd on the internet then your computers would have trouble resolving that name, so don't use "apple.com" or "google.com".
    Good luck,
    David

  • Problem with cheque printing in production Server Tcode - FBZ5

    Hi
    Cheque Printing using SAPScript with TCODE FBZ5.
    I had a problem with cheque printing in production Server. TCODE - FBZ5
    It is working fine in Development Server with proper alligned data but not coming alligned data in production server. I compared, dubugged and checked the allignment...there is no difference I found.
    Could you please let me know, where the problem is occuring.
    The amount is not coming properly and coming out of the box.....but it is coming properly in development server.
    Sekhar

    Hi,
    For Amount field you must print like &amount(C)&. And it must be printer settings only. Because i gor same like this error while printing cheque. at that time Basis team had made the changes in printer settings.

  • How to change logo in production server- very urgent

    Hi,
    I have to change the logo in production server, they have provided a new logo, how should I load it into production server as well as how can call it into my Script.
    I can upload logo in my development server, and can change it in my script, if I move it to production, my newly uploaded logo will also move to production server, or should I move it some other way, please help

    hi,
    Steps for uploading Logo :-:
    1. Goto the transaction OAER
    2. Enter the class name as 'PICTURES'
    3. Enter the class type as 'OT'
    4. Enter the object key as the name of the logo you wish to give
    5. Execute
    6. Then in the new screen select Standard doc. types in bottom window
    Click on the Screen icon
    Now, it will ask for the file path where you have to upload the logo
    7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
    Here you go !!
    *& Form TOP_OF_PAGE
    * text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo = Logo name
    * I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    Rgds'
    Anver

  • In transaction OBA7 the description is not coming in Spanish

    Hi Everybody,
    Spanish ( ES ) language imported in ECC 6  thru SMLT and activated the same thru report RSCPINST.
    After that login in Spanish is working fine.
    But problem is in transaction OBA7 the description is not coming in Spanish.
    Problem reported only for this tcode only , may be there are problem in other tcode also.
    Any idea !!
    Regards
    Santanu

    Hi,
    check in client 000, if you don't have spanisch there, then most probably its not translated (yet)
    you can transate yourself if needed...
    Rgds
    Nico

  • Multiple line items not coming in ME91F

    Hi All,
    I am facing a problem while doing ME91F for urging letters to vendor. I am maintaining multiple line items in PO but in ME91F PDF it is not coming multiple items, it is showing only single line item, Please help.
    Thanks

    Hi,
    Cross check PDF/Smartform assigned to your PO message type and find logic on available in PDF/Smartform for showing line items in PO( discuss with ABAPer).
    Also cross check other line items  where material involved(which are not apperaing) and find the available of
    Purchasing value key
    1st Reminder/Exped. 
    2nd Reminder/Exped. 
    3rd Reminder/Exped. 
    Regards,
    Biju K

  • Cisco LMS 4.0 Graph some time not coming

    I have installed cisco lms 4.0.
    I have added 10 devices, previously it was working fine, Since last few days some time syslog and graph are not coming. after every reboot on server it started working. It is happening on daily.plz help me out with permanent solution
    and also i have added manualy one device 7609-s router but not able to see cisco view
    Error:-
    Cannot find applicable device package for 10.133.224.131.
    This error could be due to one of the following:
    - The device package for this device type is not installed.
    - Device support for this device type is not available.
    - You are trying to open a component inside a device.
    To correct the problem, either install a device package for the device type, or open the parent device to manage the component.
    In device attribute it is showing 868 integrated router, I had try to delete and add again but problem is still same...
    Windows 2008 r2 standard
    RAM-16 Gb, Swap memory 8096

    Evrything looks good. Are you able to access LMS in the server itself? Try to install another browser on your server and try to login.
    Try both :
    http://x.x.x.x:1741
    https://x.x.x.x:443
    Share NMSROOT/MDC/tomcat/logs/stdout.log and stderr.log.
    -Thanks

  • OIM server is not coming up in Weblogic Install

    Hello !
    I am having issues trying to start my OIM deployed on a weblogic server. ( Iam trying to deploy OIM in a clusetered Env, where in OIM server is not coming up on the Admin Server host)
    [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified..
    weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:342)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:221)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1783)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    Truncated. see log file for complete stacktrace
    com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    Thanks

    Hello All !
    Trace of the logs:
    0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1257202805420> <BEA-090511> <The following exception has occurred:
    com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:365)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
    at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:47)
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:300)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:221)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1783)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    at com.bea.common.security.internal.legacy.service.SecurityProviderImpl.init(SecurityProviderImpl.java:47)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:363)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
    at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:47)
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:300)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:221)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1783)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Nov 2, 2009 6:00:05 PM EST> <Error> <Security> OIM_SERVER1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1257202805433> <BEA-090870> <The realm "myrealm" failed to be loaded: weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified..
    weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:342)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:221)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1783)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:365)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
    at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:47)
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:300)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:221)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1783)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name for OIMAuthenticator is not specified.
    at com.bea.common.security.internal.legacy.service.SecurityProviderImpl.init(SecurityProviderImpl.java:47)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:363)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:315)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:257)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:72)
    at weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(WLSIdentityServiceImpl.java:47)
    at weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(CSSWLSDelegateImpl.java:300)
    at weblogic.security.service.CSSWLSDelegateImpl.initialize(CSSWLSDelegateImpl.java:221)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.InitializeServiceEngine(CommonSecurityServiceManagerDelegateImpl.java:1783)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:442)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:840)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:869)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1028)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Nov 2, 2009 6:00:05 PM EST> <Notice> <Security> <OIM_SERVER1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1257202805441> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Nov 2, 2009 6:00:05 PM EST> <Critical> <WebLogicServer> <OIM_SERVER1> <Main Thread> <<WLS Kernel>> <> <> <1257202805466> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090399]Security Services Unavailable
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:916)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Edited by: user597820 on Nov 10, 2009 8:48 AM

  • TFS work item store is not connecting in production server using server side event handler code

    Server side plugin code to connect to work item store
    tfs = new TfsTeamProjectCollection(new Uri(tfsUri));
    store = (WorkItemStore)tfs.GetService(typeof(WorkItemStore));
    I used the above code and accessed work item store in my TFS DEV server without username and password. But the same plugin code is not working for the TFS Production server.
    Exception:
    Account name:
    domain\TFSService Detailed Message: : TF30063: You are
    not authorized to access http://localhost:8080/tfs/xx. Exception Message: TF30063: You are not
    authorized to access http://localhost:8080/tfs/xx
    Please guide

    Hi divya,
    From the error message, you might not have the permissions to get the work item store in TFS production server. You can check the permissions on your production server by using
    tfssecurity command in VS command line.
    Please execute tfssecurity /imx “domain\username” /collection:url, for more information about tfssecurity /imx, please refer to:
    http://msdn.microsoft.com/en-us/library/ms400806.aspx 
    If you have the permission, then you can also clean team foundation cache and try again.
    Best regards,

  • Arch as production server

    Hi,
    can you recommend Archlinux as production server? I really like all the cutting-edge technologies.. But I had problems with Arch on my VPS (after-update kind) and I'm not sure if they are caused by Arch or by OpenVZ.. But production server simply cannot be down for a few hours simply because I ran "pacman -Syyu"..
    So I am considering both Arch or SL6..
    Thanks for your opinions ^_^

    The main reason that I see for not using archlinux on a production server is that in a production server applications cannot get major upgrades automatically. Arch doesn't follow this. In example, the python command one day changed from python2 to python3. This kind of sutff can't happen in a production server unless explicity requested.
    On the other hand, this is also one thing that I like about ArchLinux, because it "enforces" you to stay up to date about newer version of all kind of stuff, making it your way of living to be familiar with present day technologies (or future technologies in case of most production servers).

  • Web Analysis report is not coming with the border/logo/heading while print

    Hi All,
    I am using 9.3.1 version of hyperion planning were Web Analysis report is not coming with the border/logo/heading while printing with the option "print all object", Only the data grid is coming in the print. If I use "print screen" it is coming with border/logo/heading but it gives a screenshot of the report, that won't cater out need.
    So please suggest us with a resolution to have border, logo and heading, while using Print all object.
    Thanks with regards....
    Rao

    Hi Sagar,
    In scripts when you will see print preview the logo will be not shown up with clarity.Take the print out of the document and check whether logo is printing up with clarity.
    Thanks
    Phani

Maybe you are looking for

  • Photo Recovery problem

    Hi, had all my photos sync'd to my iPhone but Dell system crashed. Bought an iMac and cannot get the photos off the iPhone into iPhoto. There pictures are in Photo Library and in folders within Photo Albums but the sync wants to erase all my photos o

  • XFCE panel not responding after suspend

    I've installed XFCE and slim, when I wake up suspended computer XFCE panel behave weird. I can't run any application from launcher in panel, but I can switch between running apps or open panel properties. I think it might be problem with suspending.

  • Microphone and camera support roadmap?

    Hi, I've been working on a design project at my university and we'd love to use Java FX. However, we need microphone support, and preferably camera as well. I know it's not supported right now, but will this be supported in the future? When would thi

  • Why do we need the "Trusted Application" in 11.1.2.1?

    Hello, We're upgrading from 9.3.1 to 11.1.2.1. In the process of testing I've discovered that for our CORPLOAD group users cannot see the HFM reports in 11.1.2.1 unless we add the "trusted application" role. This is not the case in our current produc

  • Help needed in finding max of a given dates

    I have stored a list of dates in an arraylist. I need to find the maximum or the latest date from the list.