Want to change company logo and address.

Hi all,
Here i have one Standard print report "SAPF130K" for customer or vendor balance conformation . But when i run this report this time i get logo of company "IDES HOLDING AG" and getting address of this company. but customer number and his address get properly but now i want to get my company logo place of this "ides holding ag" . For this i find many thing in SE71 tcode but i am still not able to change this logo and address so can u please kindly help me out how can i change this both.
Thanks in Advance.
Keyur

@  Anurag_N: This is not ALV, but SAP SCRIPT report.
Hello,
This standard report is using form F130_CONFIRM_01 for the printing purpose.
Please check in this form, how you can handle ur logo.
R u doing any config for printing this report for the form etc?
This text is coming from the window ADDRESS and the below inlude:
INCLUDE &T001G-TXTAB& OBJECT TEXT ID ADRS LANGUAGE &T001-SPRAS&, where &T001G-TXTAB& for me is coming as
ADRS_SENDER.
So, just add ur logo in the standard text ADRS_SENDER in SO10, you will c it in the sap script layout.
But, i am not sure how this variable &T001G-TXTAB&  gets populated and if it will get changed for soem other value.
Edited by: Kanwardeep Singh Gill on Apr 9, 2010 12:30 PM
Edited by: Kanwardeep Singh Gill on Apr 9, 2010 12:35 PM

Similar Messages

  • How to create the default empty work book with company logo and address????

    Hi Guru's
    I am working in ECC5.0 (BW 3.5), i wann create the default empty work book with company logo and company address. so when i am executing any query's that should open in the default empty work book.
    greatly appreciated your help. will assign pt's for sure.
    thanks and regards
    Mohan

    Hi Mohan,
      Report designer is used in BI 7.It is a seperate application used for formatting
    the report.
    For BW3.5,go through this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/33/746e393cf65c1ae10000000a114084/frameset.htm
    This would help you
    Regards,
    Senoy

  • Logo and address

    hello,
    i want to add our logo and address in the standard report of purchase order, please let me know how to do the same and what are steps to followed.
    please explain the entire details and steps and oblige.
    thanks
    suja

    hi sujatha
    *& Report  ZSAMP_ALV_DISPLAY                                           *
    REPORT  zsamp_alv_display                       .
    TYPE-POOLS: slis.
    TABLES : t001,t005t.
    TYPES : BEGIN OF  struct1,
            bukrs LIKE t001-bukrs,
            butxt LIKE t001-butxt,
            land LIKE t001-land1,
            spras LIKE t001-spras,
            periv LIKE t001-periv,
            landx LIKE t005t-landx,
            numb(3) TYPE n,
            END OF struct1.
    TYPES: BEGIN OF struct2,
           land1 LIKE t005t-land1,
           landx1 LIKE t005t-landx,
           END OF struct2.
    TYPES: tab1 TYPE STANDARD TABLE OF struct1,
           tab2 TYPE STANDARD TABLE OF struct2.
    DATA: itab1 TYPE tab1,
          itab2 TYPE tab2,
          itab_temp TYPE tab1,
          wa1 TYPE struct1,
          wa2 TYPE struct2,
          i_fieldcat TYPE slis_t_fieldcat_alv.
    SELECT-OPTIONS: s_bukrs FOR t001-bukrs.
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM enhance_data TABLES itab1.
      itab_temp[] = itab1.
      SORT itab_temp BY land.
      DELETE ADJACENT DUPLICATES  FROM itab_temp.
      CLEAR itab_temp.
      LOOP AT itab1 INTO wa1.
        READ TABLE itab2 INTO wa2 WITH KEY land1 = wa2-land1.
        IF sy-subrc = 0 .
          wa1-land = wa2-land1.
          MODIFY itab1 FROM wa1 TRANSPORTING landx WHERE land = wa2-land1.
        ENDIF.
      ENDLOOP.
      PERFORM alv_merge.
      PERFORM fieldcat TABLES i_fieldcat.
      PERFORM alv_display.
    *&      Form  GET_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM get_data .
      SELECT  bukrs
              butxt
              land1
              spras
              periv  FROM t001 INTO CORRESPONDING FIELDS OF TABLE itab1
               WHERE bukrs IN s_bukrs.
      SELECT land1
             landx
              FROM t005t INTO CORRESPONDING FIELDS OF TABLE itab2
                      FOR ALL ENTRIES IN itab1 WHERE land1 = itab1-land.
    ENDFORM.                    " GET_DATA
    *&      Form  ENHANCE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM enhance_data TABLES  p_tab TYPE tab1 .
      DATA  wa_tab TYPE struct1.
      LOOP AT p_tab INTO wa_tab.
        wa_tab-numb = sy-tabix.
        MODIFY p_tab FROM wa_tab TRANSPORTING numb.
      ENDLOOP.
    ENDFORM.                    " ENHANCE_DATA
    *&      Form  ALV_MERGE
          text
    -->  p1        text
    <--  p2        text
    FORM alv_merge  .
    *TABLES   P_I_FIELDCAT.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
       EXPORTING
         i_program_name               = sy-repid
         i_internal_tabname           = 'I_TAB1'
        I_STRUCTURE_NAME             =
        I_CLIENT_NEVER_DISPLAY       = 'X'
         i_inclname                   = sy-repid
        I_BYPASSING_BUFFER           =
        I_BUFFER_ACTIVE              =
         CHANGING
          ct_fieldcat                  = i_fieldcat
       EXCEPTIONS
         inconsistent_interface       = 1
         program_error                = 2
         OTHERS                       = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_MERGE
    *&      Form  ALV_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM alv_display .
      DATA : returncode(200) .
      DATA: BEGIN OF fields OCCURS 2.
              INCLUDE STRUCTURE sval.
      DATA: END OF fields.
      CLEAR fields.
      fields-tabname     = 'RLGRAP'.
    fields-fieldname   = 'FILENAME'.
    fields-value       =  p_file.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
          i_bypassing_buffer                =  'X'
          filename                = filestring
          write_field_separator   = ','
          i_grid_title                      =  'MERGE TABLES'
          it_fieldcat                       =   i_fieldcat
          i_callback_top_of_page            =  'F_HEADER'
           i_callback_program               =   sy-repid
        TABLES
          t_outtab                          =  itab1
         EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY
    *&      Form  FIELDCAT
          text
    -->  p1        text
    <--  p2        text
    FORM fieldcat  TABLES  p_i_fieldcat TYPE slis_t_fieldcat_alv..
      DATA: l_fieldcat TYPE slis_fieldcat_alv.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 1.
      l_fieldcat-fieldname = 'NUMB'.
      l_fieldcat-seltext_l = 'SR.NO.'.
      l_fieldcat-key = 'X'.
      l_fieldcat-edit = 'X'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 2.
      l_fieldcat-fieldname = 'BUKRS'.
      l_fieldcat-ref_tabname = 'T001'.
      l_fieldcat-ref_fieldname = 'BUKRS'.
      l_fieldcat-edit = 'X'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 3.
      l_fieldcat-fieldname = 'BUTXT'.
      l_fieldcat-ref_tabname = 'T001'.
      l_fieldcat-ref_fieldname = 'BUTXT'.
      l_fieldcat-edit = 'X'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 4.
      l_fieldcat-fieldname = 'LAND'.
      l_fieldcat-ref_tabname = 'T001'.
      l_fieldcat-ref_fieldname = 'LAND1'.
      l_fieldcat-edit = 'X'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 5.
      l_fieldcat-fieldname = 'SPRAS'.
      l_fieldcat-ref_tabname = 'T001'.
      l_fieldcat-ref_fieldname = 'SPRAS'.
      l_fieldcat-edit = 'X'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 6.
      l_fieldcat-fieldname = 'PERIV'.
      l_fieldcat-ref_tabname = 'T001'.
      l_fieldcat-edit = 'X'.
      l_fieldcat-ref_fieldname = 'PERIV'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
      l_fieldcat-col_pos = 7.
      l_fieldcat-fieldname = 'LANDX'.
      l_fieldcat-ref_tabname = 'T005T'.
      l_fieldcat-ref_fieldname = 'LANDX'.
      l_fieldcat-edit = 'X'.
      APPEND l_fieldcat TO p_i_fieldcat.
      CLEAR l_fieldcat.
    ENDFORM.                    " FIELDCAT
    *&      Form  f_header
          text
    -->  p1        text
    <--  p2        text
    FORM f_header .
      DATA:  t_header      TYPE slis_t_listheader,
             wa_header     TYPE slis_listheader,
             t_line        LIKE wa_header-info,
             ld_lines      TYPE i,
             ld_linesc(10) TYPE c.
    Title
      wa_header-typ  = 'A'.
      wa_header-info = 'Purchase Requistion Report'.
      APPEND wa_header TO t_header.
      CLEAR wa_header.
    Date
      wa_header-typ  = 'A'.
      wa_header-info = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
       sy-datum(4) INTO wa_header-info."todays date
      APPEND wa_header TO t_header.
      CLEAR: wa_header.
    Total No. of Records Selected
      DESCRIBE TABLE itab1 LINES ld_lines.
      ld_linesc = ld_lines.
      CONCATENATE 'Total No. of Records : ' ld_linesc
        INTO t_line SEPARATED BY space.
    *T_LINE = 'Requisation Report,'.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      APPEND wa_header TO t_header.
      CLEAR: wa_header, t_line.
      t_line ='Its my Report:'.
      wa_header-typ  = 'A'.
      wa_header-info = t_line .
      APPEND wa_header TO t_header.
      CLEAR: wa_header, t_line.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header
          i_logo             = 'HCL_LOGO'.
    ENDFORM.                    " f_header
    *&      Form  f_top_list
          text
    -->  p1        text
    <--  p2        text
    FORM f_top_list .
      FORMAT COLOR COL_HEADING ON.
      WRITE: /10 text-h10,  text-h09.
      FORMAT COLOR OFF.
      WRITE: /10 text-h11, sy-datum.
      WRITE: /10 text-h12,  sy-pagno.
    ENDFORM.                    " f_top_list
    *&      Form  f_user_command
          text
    -->  p1        text
    <--  p2        text
    FORM f_user_command .
    ENDFORM.                    " f_user_command
    regards
    kumar.

  • TS1645 I want to change my ID and when I try to it says that that e-mail cannot be used for my id because it is my "rescue" email address. How can I change my "rescue" e-mail address?

    I want to change my ID and when I try to it says that that e-mail cannot be used for my id because it is my "rescue" email address. How can I change my "rescue" e-mail address?

    Go to My Apple ID (appleid.apple.com), click "Manage your Apple ID," and sign in.
    With the Name, ID, and Email Address drawer selected, click Edit next to Apple ID and Primary Email Address.
    Enter your new email address.
    Click on Password and Security;
    Answer the security question;
    Delete your email from rescue address;
    Do logout and login again into manage your apple id;
    Go back to Name, id and email address;
    Change your primary email address;
    Verify your email address.

  • HT5312 I want to change my rescue email address. When I get to step 4 above no Password and Security to click. Is there an easy way to do this?

    I want to change my rescue email address.I've followed the instructioins to step 4. I have no 'Password and Security@ to click. Is there an easy way to change it?

    Welcome to the Apple Community.
    It should be here.

  • I want to change my primary email address, and use one already associated with my account why can I not do this ?, I want to change my primary email address, and use one already associated with my account why can I not do this ?

    I want to change my primary email address, and use one already associated with my account why can I not do this ?, I want to change my primary email address, and use one already associated with my account why can I not do this ?  I don't want to create another one if I really don't need to
    Any ideas ?

    I'm afraid that once an address has been associated with an Apple ID you can't re-use it in any way. You will have to create another address (such as a free on from GMail or Yahoo for example).

  • How to change company logo dynamically using login information of the user in flex4 CSS styl method?

    hi all,
    I am doing mxml flex4 web application. i am using a login in my application. this login for multi user  purpose.
    My need is when a user login using his username and password his company logo should show the top of my application and his copyright details show the bottom of my application
    if another user login means his company logo and copywrights should show in my application.
    This logo and copyrights details should change dynamically based on the login information.
    I want to create this using CSS file (skins and sparks)
    How to do this,i am struck in this place,
    Looking for useful and helpful suggession or snippet code,
    Thanks in advance,
    Cheers,
    B.Venkatesan.

    If the user is logging in, presumably you are having the user hit a back end web-server and database and using something like Blaze to connect? Right?
    I personally would not do this with CSS. I would map the company icons to the users in the DB, retrieve the proper company icon and then pass it down (or embed it in the app) when the user logs in. Then, I would just set the source of the icon to be what I passed down:
    Add your image where you want it to go:
    <s:Image id="emptyImage" x="locationx" y="locationy".../>
    Then in your ActionScript, when the user logs in and you know what company the user belongs you could do this:
    private function loginUserBlazeResponse(resultEvent:ResultEvent):void {
    var bytes:ByteArray = ByteArray(resultEvent.target);
    emptyImage.source = bytes;
    addElement(img);
    img.visible = false;
    img.addEventListener(FlexEvent.UPDATE_COMPLETE, imageLoaded);

  • HT201303 I want to change my questions and answers apple account?

    I want to change my questions and answers apple account?
    I just can not buy anything, because when I buy it asks questions and answers from my account and I forgot

    It got sent to a different email address, or got caught in a spam filter, or something’s wrong at Apple’s end. You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (116802)

  • Cloned Dac, Informatica and OBIEE want to change the ip and hostname

    Hi Gurus,
    I recently cloned my OBIEE env on virtual machines on OEL ( Linux)
    I want to change the hostname and ip address to make the services up with new IP and hostname.
    I started the Database(11gR2) single instnace successfully. Please let me know what all changes need to be done to start the dac(10.1.3.4), informatica(9.0.1 Hotfix 2) server and also OBIEE(11.1.1.7.1)
    I did run ./startServerprompt.sh for DAC but still the service cannot be started.
    Thanks in advance.
    Regards

    Hi kt1,
    Informatica and DAC is also on Linux servers. As a first step I'm trying to start the services on  DAC and Informatica servers but still no luck.
    When I'm Trying to start it gives me the following error in the log
    For Informatica:
    Domain service init method is called
    java.net.UnlnownHostException: santa.pti.local (which is the  wrong hostname)
    it should be picking up the new hostname panta.pti.local
    but I don't know where exactly is this information stored and how to get over it.
    The same case is with DAC server when I try to start it it's picking up the wrong hostname
    Anybody who can help me get through this. I have go ogled  it but so far I couldn't solve it.
    Appreciate if anyone could help me solve this.
    Regards,

  • I want to change my primary email address

    I wan to change my btinternet primary email address to another one, either my sub account address or a new one.  I don't mind which.  I've been trying for 9 days now to have this done, and BT keep saying they'll do it but they haven't.
    Has anyone else tried to do this and if so have they actually succeeded in getting a new primary email address?
    Thanks
    Solved!
    Go to Solution.

    Hi harrybeadlebaum
    Thank you for your reply it is much appreciated.
    Basically I want to change my primary email address as I've changed my surname following separation from my husband, and don't want any association with my old name which it was.  I wish it was only spam I want to get rid of.  Yes, you're right, I'm using webmail not outlook or similar.
    Unfortunately I've already begun the long and tortuous process of getting my primary email address changed and am now on day 9 of frustrating emails, telephone calls with the call centre in India (or somewhere)  Each time I talk to someone they assure me it will be done in 24 hours, 48 hours, by the end of the day..... I expect this sounds familiar to you if you've been there?  Your comment about a breakdown in communication is perhaps an understatement!  I've come to the conclusion they fully understand what I want but just aren't interested in seeing it through. All they want to know at the end of the phone call is if I'm happy with how they've dealt with my call.  Well yes I am at the time, as they understand what I want, relay back to me what I want, but don't actually deliver.  Promises, promises, promises.
    I've now lodged a formal complaint to BT and am sure I'll get the usual responses about process, systems, blah blah blah...
    Sigh.  As you may guess I'm absolutely fizzing about it all!!  I've already wasted hours of my life chasing it, just can't stop though - don't give up!!  However, am pleased to know that someone has got it done,  so I'll just keep trying and boy is it trying....
    Rant over,  I'll let everyone know how I get on!
    From a very irate and now crabby mrs blobby

  • HT201363 I want to change rescue e-mail address but now i can't enter yahoo.co.kr site

    Hi. i'm korean. may be you know the YAHOO Korea e-mail service is done in korea country. and my rescue e-mail is ****. Please i want to change rescue e-mail address but now i can't enter yahoo.co.kr site. Please check quickly somebody use a my account card
    <Email Edited By Host>

    -If you established a rescue email address, there will be a link on the "Passwords & Security" page of id.apple.com.  Clicking the link will send the reset to your rescue email address (NOTE:  This is not the same address as your Apple ID email)
    -If there is no link on the page, then you didn't establish a rescue email address.  Contact AppleCare at 800.694.7466 (If you are in the US), and ask for account security.  You will need to answer some questions to verify your identity, AND you will need access to a computer to generate a temporary support pin.
    -If you are not in the US, click http://support.apple.com/kb/HT5699 - Apple ID: Contacting Apple for help with Apple ID account security
    HTH

  • Can end user insert and save logo and address on PDF?

    I design sell sheets for our large network of dealers. I am looking for a way a dealer can download a PDF, add their logo and address into a field and then save the document and bring to their own printer for output. I work on a Mac.

    They can if they have Acrobat, and not just Reader. Although you can Reader-enable a document which allows Reader to save a modified form, I believe the Acrobat license prohibits you from selling Reader-enabled documents. You client could Reader-enable the document and provide it to his users, and he would have to comply with the Acrobat License Agreement with respect to Reader-enabled documents.
    In any case, Reader can only add an external graphic/image by pasting from the clipboard as a stamp annotation for forms created with Acrobat. XFA forms created in LiveCycle Designer can make use of it's image field, which allows the user to select an image form their system.
    If your clients have Acrobat Standard or Pro, you can set up a button that allows them to import a logo from a large number of sources, including images (jpg, tif, png, etc.) and other formats (pdf, word, etc.), since Acrobat knows how to convert them. If you want more help with this, post again.

  • Hey I have a problem. I want to change my rescue email address as somehow apple has the wrong one but I don't know my security questions - but you need one to change the other. Any help?

    hey I have a problem. I want to change my rescue email address as somehow apple has the wrong one but I don't know my security questions - but you need one to change the other. Any help?

    You can get your Security Questions reset by contacting iTunes Support at either of the two links below. Select the best options for your issue, or provide specific information. Let them know you are contacting them concerning Forgotten Security Questions. They will get back to you via your primary email address, usually within 24 hours. Once your Security Questions have been reset, you will be able to go in and reset your Rescue email address on your account:
    http://www.apple.com/support/itunes/ww/
    or by email:
    http://www.apple.com/emea/support/itunes/contact.html
    Cheers,
    GB

  • I got an iPhone 4 a week ago. I synced my iTunes once and now I want to change what albums and playlists are on my phone. When I try to do this, iTunes threatens to remove all my apps. Of course, Apple's support is no help.

    I got an iPhone 4 a week ago. I synced my iTunes once and now I want to change what albums and playlists are on my phone. When I try to do this, iTunes threatens to remove all my apps. Of course, Apple's support is no help. I know there has to be a way to add and remove whole albums and playlists like on the music tab on the device, so please don't tell me to uncheck/delete everything from my iTunes that I don't want and re-sync. That is not helpful and not the issue. How do I get around it threatening to remove all my apps?

    On the MacBook, go to System Preferences > Security & Privacy > Privacy > Advanced > Disable remote control

  • I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    Does this involve iPhoto in some way?

Maybe you are looking for

  • Building secondary Index fails for large number(25,000,000) of records

    I am inserting 25,000,000 records of the type: Key --> Data [long,String,long] --> [{long,long}, {String}} using setSecondaryBulkLoad(true) and then build two Secondary indexes on {long,long} and {String} of the data portion.      private void buildS

  • Message Control for Purchasing

    I am new to output determination and am having trouble with the communication structure between the application and my custom code FORM_KOBED_950. When I put a breakpoint in this form and run ME21n to create a PO, then save, I do hit the breakpoint.

  • [BUG] ClassCastException when defining custom EventDispatcher

    Hi, The contextual event framework uses direct implementation class in its code, resulting in a ClassCastException being thrown when you define a custom EventDispatcher within the DataBindings.cpx file. The exception looks like: java.lang.ClassCastEx

  • Size of production server.......

    Hi, I have to create onr production server. There are 40-50 users working on it, so how can i calculate size of production server. Give me requirement of production server Thanks in advance

  • Oracle10g ORA-00600: 内部错误代码, 参数: [kkocxj : pjpCtx], [], [], [], [], [], []

    oracle10g的数据库,在执行一个存储过程是报错: ORA-00600: 内部错误代码, 参数: [kkocxj : pjpCtx], [], [], [], [], [], [] 执行的sql语句如下: execute immediate 'create table '||sDataTable||' as select recid,wfrolepartid,actdefid,createdate,acttimestateid,finishtime from (select a.create