How to print  logo when ever new customer arrises?

hi friends
i have range of customers . i have to print logo when ever new customer arrises . if the customer data continues in 2nd page i dont have to print logo. how to get it ?
regards
thiru

hi,
are you using smartform or script for printing ?
write the condition in program lines using the control commands ie on change of customer.
Take separete window for logo and print that in the first page so that if the customer data extend as to next page logo window will not appear in the next window.
and is there any table maintained for logos and customer details. if its maintained it would be easy to put the condition in the print program itself or else you can hadle it in the form.
Regards,
Prathima.

Similar Messages

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • How to print logo in printout using classical report.

    Hello Friends,
    By using below code i am displaying logo in output using Classical report.
    What my problem is it is not displaying in print out.
    Please help. or else tell me how to print logo in classical report as well as output print out.
    DATA: docking TYPE REF TO cl_gui_docking_container,
          picture_control_1 TYPE REF TO cl_gui_picture,
          url(256) TYPE c ,
          query_table LIKE w3query OCCURS 1 WITH HEADER LINE,
          html_table LIKE w3html OCCURS 1,
          return_code LIKE w3param-ret_code,
          content_type LIKE w3param-cont_type,
          content_length LIKE w3param-cont_len,
          pic_data LIKE w3mime OCCURS 0,
          pic_size TYPE i,
          repid LIKE sy-repid.
    repid = sy-repid.
    START-OF-SELECTION.
      CREATE OBJECT picture_control_1
        EXPORTING
          parent = docking.
      CHECK sy-subrc = 0.
      CALL METHOD picture_control_1->set_3d_border
        EXPORTING
          border = 5.
      CALL METHOD picture_control_1->set_display_mode
        EXPORTING
          display_mode = cl_gui_picture=>display_mode_stretch.
      CALL METHOD picture_control_1->set_position
        EXPORTING
          height = 100
          left   = 700
          top    = 1
          width  = 200.
      "Position
      IF url IS INITIAL.
        REFRESH query_table.
        query_table-name = '_OBJECT_ID'.
        " Logo Name
        query_table-value = 'ENJOYSAP_LOGO'.
        APPEND query_table.
        CALL FUNCTION 'WWW_GET_MIME_OBJECT'
          TABLES
            query_string        = query_table
            html                = html_table
            mime                = pic_data
          CHANGING
            return_code         = return_code
            content_type        = content_type
            content_length      = content_length
          EXCEPTIONS
            object_not_found    = 1
            parameter_not_found = 2
            OTHERS              = 3.
        CALL FUNCTION 'DP_CREATE_URL'
          EXPORTING
            type     = 'image'
            subtype  = cndp_sap_tab_unknown
            size     = pic_size
            lifetime = cndp_lifetime_transaction
          TABLES
            data     = pic_data
          CHANGING
            url      = url
          EXCEPTIONS
            OTHERS   = 1.
      ENDIF.
      CALL METHOD picture_control_1->load_picture_from_url
        EXPORTING
          url = url.
      WRITE : /'Classical Report Logo'.
    Regards,
    Phaneendra
    Edited by: phaneendra punukollu on Dec 31, 2009 11:38 AM
    Code Formatted by: Alvaro Tejada Galindo on Jan 4, 2010 4:52 PM

    Hello Nidhi,
    Thanks for your sugessition.
    Actual we have data from IDOCS and it is maintained in Ztables
    and need to dispaly in report ( Service centre - Warranty data ).
    The report is completed. So again going to Script means waste of time for us.
    So Plz help me  if possible in Classical report.
    Regards,
    Phaneendra

  • How do I completely enable a new custom asset in Correspondence Management?

    Hello!
    I'm trying to add a new custom asset to the Correspondence Management Solution Accelerator, and have it behave like all other assets in the system (ie searchable, updateable etc).  I'm almost there, but there's obviously something I'm missing, and I was hoping someone here might have done this before, or have a link to some documentation regarding the matter that I may have missed.  The asset I'm trying finish creating is for a LiveCycle user in a specific domain.  This is what I've done so far...
    I've created the asset definition MyUser.fml and placed it in the FSIApp\Portal\webapp\WEB-INF\assetDefinitions folder.  I've then registered this fml file in the spring-config.xml file in both the 'lc.cm.assetDefinitionsDeployer' and 'lc.cm.assetTypeRegistryBootstrapper' beans.  In the 'lc.cm.assetTypeRegistryBootstrapper' bean, I set the key to 'MyUser', and the value to the class path of my Java class that represents this asset.
    On the Java side I've created the MyUser.java class, as well as MyUserService.java and MyUserServiceImpl.java to allow the searching, updating etc of the MyUser assets.
    After running the Bootstrap process, I can log into the Manage Templates application, select Data Dictionaries from the 'View' dropdown, and view/edit the MyUser data dictionary properties with no problems.  So I'm happy that the asset has successfully been registered with the application.
    Where I'm stuck is choosing the MyUser asset from the drop down, and searching the system for assets of that type.  I can choose the MyUser asset type from the 'view' drop down, but the search result returns an empty array.
    From digging into the existing Manage Templates code, I've created the following classes:
    public interface IMyUserService extends IEventDispatcher -  containing the following function definitions:
              function getMyUser(id:String):IAsyncToken;
              function getAllMyUsers(param1:Query=null):IAsyncToken;
    public class MyUserSeviceProvider extends ServiceProvider - containing a getter/setter for MyUserServiceDelegate
    public class MyUserServiceDelegate extends ServiceDelegate implements IMyUserService - containing the functions defined in IMyUserService, as well as creating the RemoteObject to perform the actions.
    The MyUserServiceDelegate constructor is:
         public function MyUserServiceDelegate ()
                super();
                _service = new RemoteObject("myapplication.services.myUserService");
                _service.showBusyCursor = true;
    This is the code for the function in getAllMyUsers in MyUserServiceDelegate:
         public function getAllMyUsers(param1:Query = null):IAsyncToken
                var operationToken:AsyncToken = this._service.getAllMyUsers(param1);
                var token:IccToken = new IccToken(this.className + ".getAllMyUsers");
                operationToken.addResponder(getDefaultResponder(token));
                return token;
    I've also made changes to the following config files to register the RemoteObject destination specified in the MyUserServiceDelegate constructor:
    spring-http-config.xml:
         <bean name="/service/UserService" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
            <property name="service" ref="myapplication.services.myUserService" />
            <property name="serviceInterface" value="com.mydomain.lc.services.MyUserService" />
        </bean>
    remoting-config.xml:
         <destination id="myapplication.services.myUserService"/>
    flexmessagebroker-servlet.xml
         <flex:remoting-destination ref="myapplication.services.myUserService" />
    Above my Java class definition of MyUserServiceImpl.java I have the following line:
    @Service("myapplication.services.myUserService")
    So......
    My problem is that when I choose the MyUser asset from the drop down, no search results are returned (an empty array is returned).  I have logging code in the getAllMyUsers function in the MyUserServiceDelegateclass.as, as well as logging in the MyUserServiceImpl.java class (not shown in the above code snippets) and neither of them fire when selecting the MyUser asset from the drop down.  So neither of the classes are being called on the search.  If I force a search via the following line:
    MyUserSeviceProvider.getMyUserService().getAllMyUsers();
    the logging in both the Flex and Java classes works (and the java class returns the results as expected).  So I'm happy that these functions, as well as the linking between the Flex and the Java side is working correctly.
    The step that I can't seem to work out is having the selection of the asset in the drop down call the desired function automagically.  I've been digging into the SearchManager, the ServiceLocator and heaps of other classes, but I'm falling deeper and deeper into the rabbit hole...
    Can anyone shed some light on what they think might be needed to make the final link here?  I've been digging and digging into the code for days now and my brain hurts!!
    Any advice appreciated!!
    Thanks,
    Kristian

    Hi Saket,
    By 'not really complete' I'm assuming (hoping) that some work has been done on this already.  Our project requires the use of custom assets, so it's very important that we get this functionality running as soon as possible.
    Any help, unsupported or otherwise, would be great.  Feel free to email me any details if you'd prefer not to post anything public on the boards.
    Cheers,
    Kristian

  • How to print Photo Info in the Custom Print Package

    I am  using LR CC, latest version on a Windows7 PC.
    I am trying to print Photo Info in the Custom Print package. I have no trouble selecting Photo Info in the Single Image/Contact Sheet Layout Style, but when I switch to the Custom Print Package, the Photo Info check box in the Page panel, disappears. I can't find any reference to this in the manual as to why this would occur, or not be available.
    Appreciate any help with this matter.
    Best Regards
    Steve

    Hi,
    Have a look at: Lightroom Help | Print module layouts and templates
    Only on the Single Image and Contact Sheet layouts can you " ... print information about photos, such as the filename, title, caption, and keywords ..."

  • How to print logo in standard report

    Hi,
    How to print a logo in sap ordinary report
    Thanks,
    Sreedhar

    Hi Sreedhar,
    It is not possible to print logo in the ordinary report, but it can done through ALV.
    Write  the code in Top-of-page event in ALV.
    The following is the code for inserting the logo in ALV.
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
               I_LOGO             = 'ENJOYSAP_LOGO'
                IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.
    ENDFORM.
    Rewards if it is helpful...
    Regards,
    Omkar.

  • How to attach Item LOV to new Customized form.

    Is it possible to attach Item Lov to new customized form in EBS12.04.
    For example
    I have created new form and i want to attach LOV of Item like in Requisition Form a LOV attached with Item Text Box.

    Thanks avajain for reply,
    I can create new lov and attach it with item. But i want to call same API or LOV which is called from Purchasing-->requisition-->Item . Where from you select Item Class, Sub Class, serial.
    Regards,
    Fassi

  • How to remove logo when printing a PDF without editing

    I need to recover pdf Document Management System that contains a logo and would like to remove the logo. Is there any way to remove it without editing the PDF?

    You can create a new layer that you can have the logo appearing on, and change the properties of the layer 'Not to print', then delete the layer from the base.
    I am working on the assumption that the logo is selectable on its own, you have permission to change the PDF....if not, I can't think of how you can remove something without editing it...

  • How to set country field automatically when creating new customer??

    Hi Gurus,
    when customer number is entered in account identification, if there is no matching account, a new one is created. While creating , in the screen there is an country field and I want to set this field to a fixed value of our country. How can I do this??

    Hi everybody,
    I got a simple question. Can I use BADI: BADI_CRM_BP_UIU_DEFAULTS of Enhancement Spot CRM_UIU_BP_ENHANCEMENT
    to make the country 'US' as a default value for component: ICCMP_BP_DETAIL  (NOT: BP_HEAD)?
    Component ICCMP_BP_DETAIL is Interaction Center.
    If not which Badi or way I can use to make country 'US' as default value?
    Best Regards
    Oliver
    Edited by: Oliver Schultze on Dec 9, 2010 4:33 PM

  • How to drag transparent swatch when creating new custom tool panel in CC 2014

    Hi guys. I'm having trouble dragging the transparent swatch over to a new panel I'm trying to create. Love the new feature, but not sure how to get this last crucial item on my toolbar:
    Thanks for helping out!

    thesergie wrote:
    Or is the main toolbar not customizable (ie I can only create custom toolbars)?
    Exactly.
    Would be nice if it were ...

  • How To Save Path when setting new env variable!!

    Hello all,
    I am trying to learn how to properly include something in my path. When I run the command echo $PATH, I get /Xcode3.12/usr/bin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbi n:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/ opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin,,,,,how ever, as soon as I leave the Terminal and relaunch it and retype the echo $PATH command I no longer see what I just included in the path before logging out. This is what i do first:
    export PATH=/Xcode3.12/usr/bin:${PATH}
    export PATH
    export MANPATH=/Xcode3.12/usr/share/man:{MANPATH}
    export PATH
    After typing this in the Terminal, I exit the Terminal and it is no longer there. Can anyone explain to me how I go about saving this so it remains permanently part of the PATH. The reason why I'm asking about this is I am trying to install OpenMotif and it is asking me to add the lib path to the DYLDLIBRARYPATH envi.,, I have no idea what this is. Any help would be greratly appreciated.
    Best Regards,
    freesparks

    freesparks wrote:
    I did as you said and now each time I launch a new Terminal window this is what I'm getting:
    Last login: Thu Feb 18 15:36:30 on console
    -bash: /sw/bin:/sw/sbin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin: /opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/op t/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/X11R 6/bin:/Xcode3.12/usr/bin:/Xcode3.12/usr/share/man: No such file or directory
    You are going to have to post the contents of your .bash_profile file. Make sure to put it between two lines of:
    so it will display nicely here in the forums.
    Is this normal? And, if it isn't how do I undo it? This is the result ourcing the new .bash_profile file.
    It isn't normal. You have some duplicates in there. Still, you have at least two different ports packages in there. Even when correct, your path is going to be pretty long.
    You normally shouldn't source .bash_profile. It is loaded automatically when you login. If you keep source-ing it, it will just keep adding junk to your path and other variables.
    When hacking around on these files, it is best to keep several (or at least two) terminal windows open. That way, you can hack up a file, then open a new window to check it out. If that new window hangs entirely, you still have one functional window where you can fix it.
    checking for Motif headers... configure: error: ** NO MOTIF HEADERS FOUND ** install Motif development headers or use --with-motif-includes to specify location of Xm/Xm.h
    sudo /opt/local/bin/port install curl imagemagick openmotif pcre db42 lcms proj gdal libpng libxml2 shapelib libgeotiff
    That sounds like you are doing my job!
    You don't need curl, it comes with the OS. You don't need libxml2, that comes with the OS too. Same for pcre.
    I know imagemagick builds right out of the box on MacOS X. I'm still not convinced you need openmotif. If you do, doug has posted a link to the official installer package for it.
    Error: You cannot install fontconfig for the architecture(s) x86_64 because
    Error: its dependency expat only contains the architecture(s) i386.
    It sounds like the ports packages are all screwed up.
    I wasn't kidding about you doing my job. Those are all the tools I use on a daily basis. Normally I work in Linux, but I am supposed to be getting a new Mac soon that I can use for local development. I plan to be building all those tools on my machine, but I won't use any porting package. So, I'll be glad to help you install them, because I need to install them myself (I've already done ImageMagick - it was easy). But I can't fix bugs in the ports packages.

  • How to set homepage when opening new tab?

    I've set Google as my home page. When opening a new tab, Google does not appear

    Hi sion,
    This is the default behavior of Firefox. There are lot of great add-ons that will let you customize the new tab page. Take a look at the Knowledge Base article [[Customizing Firefox with add-ons]]. It will show you how to find and manage add-ons in Firefox.
    Hopefully this helps!

  • How can I tell when the NEW firmware is available ?

    Although the firmware became available for the 'z2 tablet' very quickly - nothing has appeared for the phone (UK - SIM free).
    I have tried the update several times (with my PC) & am just told 'up to date'....
    I remember with the 'xperia s' I had to check a code (on a sticker inside the rear of the phone) to tell when it was available for me - how do I do this with the Z2 ?

    Unfortunately we are unable to confirm specific date for any particular firmware release due to the nature of the approval process.. For further information regarding the approval process please see here.
    http://talk.sonymobile.com/t5/FAQ/The-software-update-collection-topic/m-p/348066#U348066
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Sapscript  : how to print logo in dynamic position  ?

    i have form with different company logo's  ,
    and i want to set the POSITION   for each logo
    i created logo window and i can see the logo  ,
    But i can't set the POSITION of logo window according to my logo size.
    i tried  :
    /: POSITION WINDOW
    /: POSITION XORIGIN '11 CM YORIGIN '11' CM      " just example
    /: INCLUDE xxxxxxx  OBJECT GRAPHICS ID BCOL LANGUAGE xx
    Nothing happened .
    Also
    BOX XPOS '0' CM YPOS '2.6' CM WIDTH '17' CM HEIGHT '2.2' CM FRAME 10 TW
    It created rectangle on the form, but the logo window still stay in his initial value position.
    thanks .

    "Do you really have color logos in your system? Outputting to a color printer? Appears so with 'BCOL'.
    It  took me some time to understand the meaning of your question   
    But it's so important  , just when i upload the logo in black & white it was display in the form  .
    Thanks 
    ilan

  • COPA - How to add table when create new characteristic

    Hi all,
    I want to create new characteristic in COPA, that is batch (as currently, FG's price is manged by batch).
    I find that this value is maintain in table VBRP. However, when I create new characteristic, I dont is this table in current list.
    Please tell me how can I  add this table ?
    Step by step what I did is:
    1.KEA5: create new characteristic
    2. enter characteristic name
    3. choose "transfer from SAP table"
    4. because it doesnt have table VBRP in the this, so I type directly "Table Fields --> Table"
    5. Systems show mesg "Enter valid reference table"
    Please tell me how can I  add this table ?

    Hi Emily,
    Pls check the SAP Note 111232 which gives similar solution that of you are looking for...
    Follow the procedure...
    Please create a characteristic by transferring it from table VBRP and
    then change the automatically from system defined TKEZU entries like
    the note 111232 explains.
    The way to solve the problem would be to change the assignment
    table TKEZU by exchanging VBRP with KOMP in the table name:
    (1) Delete the following entry in table TKEZU (you can maintain TKEZU
    with view V_TKEZU in transaction SM30):
    Characteristic, B Tran, Table, Field name, Offset, Length
    (2) Add the following entry to table TKEZU:
    Characteristic, B Tran, Table, Field name, Offset, Length
    XXXXX KEDR KOMP BWTAR
    (3) Generate the environment of your operating concern.
    Pls revert with result...
    Srikanth Munnaluri

Maybe you are looking for

  • How to exchanging data between SAP and P3?

    could use BAPI directly between SAP and P3? And if we use XI as middleware, which protocols or methods should we use? any answer should be appreciated.

  • Default Reports Language

    Hi, I am kinda new to B1 so pardon me if my question is basic. I installed B1 2007 on an XP machine having its regional options set to English US. I created a new company supplying Canada as Localization, and English as default Language. Q1 - Why wou

  • Remove pointer from the left/right click areas of Synaptics touchpad

    Just received my U510 a couple of days ago and the touchpad is driving me crazy.  My pointer moves around in the left/right click areas of the touchpad which is causes me to continually make the wrong selections because of a slight movement made by m

  • Boot Camp Vista 32bit Install on New Unibody MPB - Questions

    I have successfully installed Vista on this MBP. I am using the windows install exclusively for gaming. I have installed the drivers from my Mac OS X install disc. 1. Should I run the 2.1 Bootcamp update via apple software update in windows NOW? 2. O

  • [SOLVED] netatalk and postfix init scripts (not systemd)

    Hey, does anybody have an older version of Arch running somewhere? I'm looking for init scripts for netatalk and postfix that I've just re-built from ABS on an outdated Arch system. However, both packages offer systemd support these days and no love