How to upload graphic to SAP througth the program?

Hi everyone,
     Please help me. My point as subject. Because the graphics is different by delivery's batch no.. Whether has any method to be upload graphic to SAP,
but does not need to each time used SE78 to upload graphic.
     Thanks a lot. My version is ECC 6.0.
Nicole

HI Nicole,
              I think there is also a another way for uploading a graphic but u can use it only for ALV in SAP  u can use the transaction OAER and fill the class name like u can give PICTURES and in class type OT or as per your requirment and then execute (F8) then goto the create->standard doc. types->screen then you will get a pop-up window and select your graphics.In your report you call the fuction
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
IT_LIST_COMMENTARY = I_LISTHEADER
I_LOGO = 'OBJECT KEY'.
Do this if it's use full for you and also....
Plzz give reward point.
Thanks n Regard
Anirudh Saini

Similar Messages

  • How to upload Materials into  SAP

    HI,
         How to upload Materials into  SAP using MATMAS05 Idoc type?

    use the lsmw standard existing bapi or idoc method to upload the data into sap

  • How to upload forecast into sap.

    how to upload forecast into sap.

    Hi
    You can use MD61 - create planned independent requirements or MM17 - Mass Maintenance
    Thanks !
    E.Avudaiappan

  • How to upload pictures to Facebook using the Bloggie Software

    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick

    Sony wants your feedback! http://bit.ly/WcYjMO
    This video will show you how to upload pictures to Facebook using the Bloggie Software.
    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick

  • How to upload movies to YouTube using the Bloggie Software

    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick
    Solved!
    Go to Solution.

    Sony wants your feedback! http://bit.ly/WcYjMO
    This video will show you how to upload movies to YouTube using the Bloggie Software.
    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick

  • Upload data into SAP through standard program

    hi!
    why don't we prefer to upload data into sap through standard program like RFBIKR00 to upload for vendor master or other standard programs to upload durectly without using BDC or LSMW and how do we upload data into SAP through BAPI.
    pls help me with a sample program.
    regards
    Amit

    It totally depends upon the requierment which fields your want to update in transaction if it works with program then use program else go for bdc .
    If there is some any screen enhancement with z fields then program will not solve the problem.
    For BAPI you check these links:
    http://www.sap-img.com/abap/bapi-step-by-step-guidance.htm
    http://sap-img.com/bapi.htm
    Edited by: shilpi agarwal on Aug 22, 2008 7:28 AM

  • How to find user exit implemented in the program

    how to find user exit implemented in the program or standerd transaction

    try this program to get the list of all the user exits for a transaction...
    *& Report  Z_USER_EXIT                                                 *
    *REPORT  Z_USER_EXIT                             .
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
      TABLES : tstc,     "SAP Transaction Codes
               tadir,    "Directory of Repository Objects
               modsapt,  "SAP Enhancements - Short Texts
               modact,   "Modifications
               trdir,    "System table TRDIR
               tfdir,    "Function Module
               enlfdir,  "Additional Attributes for Function Modules
               tstct.    "Transaction Code Texts
    *& Variables
      DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
      DATA : field1(30).
      DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
      SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
      SELECTION-SCREEN SKIP.
      PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
      SELECTION-SCREEN SKIP.
      SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
      START-OF-SELECTION.
    Validate Transaction Code
        SELECT SINGLE * FROM tstc
          WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
        IF sy-subrc EQ 0.
          SELECT SINGLE * FROM tadir
             WHERE pgmid    = 'R3TR'
               AND object   = 'PROG'
               AND obj_name = tstc-pgmna.
          MOVE : tadir-devclass TO v_devclass.
          IF sy-subrc NE 0.
            SELECT SINGLE * FROM trdir
               WHERE name = tstc-pgmna.
            IF trdir-subc EQ 'F'.
              SELECT SINGLE * FROM tfdir
                WHERE pname = tstc-pgmna.
              SELECT SINGLE * FROM enlfdir
                WHERE funcname = tfdir-funcname.
              SELECT SINGLE * FROM tadir
                WHERE pgmid    = 'R3TR'
                  AND object   = 'FUGR'
                  AND obj_name = enlfdir-area.
              MOVE : tadir-devclass TO v_devclass.
            ENDIF.
          ENDIF.
    Find SAP Modifactions
          SELECT * FROM tadir
            INTO TABLE jtab
            WHERE pgmid    = 'R3TR'
              AND object   = 'SMOD'
              AND devclass = v_devclass.
          SELECT SINGLE * FROM tstct
            WHERE sprsl EQ sy-langu
              AND tcode EQ p_tcode.
          FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
          WRITE:/(19) 'Transaction Code - ',
          20(20) p_tcode,
          45(50) tstct-ttext.
          SKIP.
          IF NOT jtab[] IS INITIAL.
            WRITE:/(95) sy-uline.
            FORMAT COLOR COL_HEADING INTENSIFIED ON.
            WRITE:/1 sy-vline,
            2 'Exit Name',
            21 sy-vline ,
            22 'Description',
            95 sy-vline.
            WRITE:/(95) sy-uline.
            LOOP AT jtab.
              SELECT SINGLE * FROM modsapt
              WHERE sprsl = sy-langu AND
              name = jtab-obj_name.
              FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
              WRITE:/1 sy-vline,
              2 jtab-obj_name HOTSPOT ON,
              21 sy-vline ,
              22 modsapt-modtext,
              95 sy-vline.
            ENDLOOP.
            WRITE:/(95) sy-uline.
            DESCRIBE TABLE jtab.
            SKIP.
            FORMAT COLOR COL_TOTAL INTENSIFIED ON.
            WRITE:/ 'No of Exits:' , sy-tfill.
          ELSE.
            FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
            WRITE:/(95) 'No User Exit exists'.
          ENDIF.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'Transaction Code Does Not Exist'.
        ENDIF.
    Take the user to SMOD for the Exit that was selected.
      AT LINE-SELECTION.
        GET CURSOR FIELD field1.
        CHECK field1(4) EQ 'JTAB'.
        SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
        CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.

  • How do I cancel my purchase, remove the program an information in order to receive my money back?

    How do I cancel my purchase, remove the program an information in order to receive my money back?

    Hi Technoterri,
    You can manage your account by logging into adobe.com and taking the following steps:
    *Sign in the top right corner using your Adobe.com credentials
    *Click on your name (same location) and select ‘My products and services’
    *From there you can check on your status, log in/account info, etc.
    Let us know if this helps!
    Kind regards, Stacy

  • How do i make is so that the program is running already and then have a start button to execute?

    I created a program to control a function generator.  I want it so that the program is already running when i load it up, and then when i actually want it to run press a start button.   I think you can just do a case structure for the start button... but how do i get it so that the program is running when you load it.  so when you press the start button it starts. instead of having to press the start button, then press the run program button. thanks!

    A few things about Run When Opened.  Once this is set, if you need to edit the vi, it will start running when you open it.  You then have to abort the vi to edit it.  Some people like to make a backup copy that is not set to run when opened so they can edit it without the hassle of aborting.  In your case, it is probably not worth it since your vi does nothing until the start button is pressed.  But this is for future instances of run when opened.  Also, if you want to edit, I think if you press and hold the shift key (or is it the control key) while opening the vi, it will not run when opened.  Another method to get around the run when opened is to create a blank vi.  In the block diagram, put your vi that is set to run when opened.  Then you can double click on the vi and edit it without having it run when opened.
    - tbob
    Inventor of the WORM Global

  • How to upload Graphics Image in SAP script

    Hi
    I have a new porblem in SAP script can anyone help me how to upload an graphic image

    Hi Pavan,
    Give the same name and upload the graphics, u get a popup saying do u want to overite the existing one, click yes and the old logo will be replaced by the new one.
    Cheers..
    Santosh.
    P.S. Mark usefull answers

  • HOW TO UPLOAD SPREADSHEET TO SAP

    I need to know how do we upload a excel sheet to SAP. What is the transaction code. There is an excel sheet with costs and expenses downloaded for a charge card from bank. we want to post those expenses to liablitlity account in SAP. So if these expenses are downloaded in excel , how do we upload them to SAP to hit the correct G/L account. Please explain the whole procedure
    Thanks
    Lakshmi

    Hi Sridhar,
    Let me explain the situation. We download the expenses from a bank website. Then we need to post those expenses in SAP to their respective accounts. So in this case, how do we do it. Do we need to map those expenses to respective SAP accounts in spreadsheet and then upload them throughLSMW, t.code FB01 in SAP. What specs do we need to give for creating ZGLUPLOAD program to the ABAP person.
    WHat do you mean by P-Card?? Can you please also explain what is Z-table of accounts?? I am not sure if I understand this???
    Thx
    Lakshmi

  • How to upload my purchased item to the iCloud?

    How do I upload movies end songs to the iCloud from my PC?

    You don't.  Movies and songs you purchased from the itunes store can always be downloaded again to other devices registered with itunes.  But you can't upload them to icloud.
    If interested in songs, you can subscribe to iTunes Match ($25/yr).  That allows you to have your collection of music on icloud and accessible from other devices.  Google ITunes Match to get more info on this service.

  • How to upload a java application into the oracle DB

    Hello,
    I am in search of an issue that is worrying me now for weeks. I have a java application which is independent. Now I want to upload this application to the oracle DB.The idea is for the application to sit on the DB and do it work from there, which is to transfer data to another 3rd party independent system. What is the best way of doing this? Is there any utility which can help me to upload a java application to the DB?
    Also after uploading the application in the DB, how can it be called? Is there any tutorial to guide me please?
    Thank you all for brain storming

    Check the docs for "Java Stored Procedure":
    http://www.oracle.com/pls/db92/print_hit_summary?search_string=java+stored+procedure

  • How to upload a multistructured file in BDC program using gui_upload?

    I want to upload a multistructured file in BDC program...in which some structures are repeating for multiple records..how to do this..
    BP_GEN_DATA     FR0100270154                         FR12345678902
    BP_PAYMENT     FR     0123456789     01234567890          
    BP_UNLOAD     MARSEILLE     X     FR                    
    BP_UNLOAD     PARIS          FR                         
    Here BP_GEN_DATA is root structure and BP_UNLOAD is lower level structure which is repeating

    Resolved

  • How do I remove a character from the program output? please read/help

    i have written a program that stores the names of all the students in my class in an array. To write the program, i use Scanner to incorporate a text file that contains the names of all the people in my class listed. the names in the text file are in the form: "last name, first name" so when i print the program the output comes out first name last name, the comma remains at the end of the last name and i need to know how to get rid of this comma in the program writing so that it doesn't appear once i print the program.
    here's what i have:
       import java.util.Scanner;
       import java.io.File;
        class Enrollment{
           public static void main(String [] args)throws Exception{
             Person [] name = new Person [30];
             Scanner sc = new Scanner(new File("names.txt"));
             while (sc.hasNext()){
                String lastName = sc.next();
                String firstName = sc.next();
                sc.nextLine();
                System.out.println("Name: " + firstName + " " + lastName);
       }the program prints in such a manner
    John White,
    Alfred Morriss,
    Becky Downs,
    how do i get rid of those commas at the end?

    Substring is a method in the string class that is very usefull so be sure to check out the API an see what all you can do with it. Basicaly, it allows you to read specific sections of a string.
    The way you use it is as such:
    stringVariable.substring(x,y)With x being the starting point of the section you wish to keep and y being the ending point+1 . Keep in mind that when indexing a string the begining is 0 just as it is with an array.
    For your situation, try this
    lastName = lastName.substring(0,lastName.length()-1);Another thing you could try is StringBuffer, be sure to check it out in the API as it can be pretty usefull
    Message was edited by:
    Dexsite
    -- had a minor syntax error i fixed

Maybe you are looking for