Hyperlink provision for website in sap script

Hello,
Is there any possibility to display the website link with hyperlink with colour blue in sap script?If yes please provide the solution.
Thanks in advance.
Regards,
Ashwini

Hi,
Check t-code SO72 to Maintain Hypertext Module.
Refer this wiki,
http://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/creatingHypertextinSAPScripts
but i dnt knw how to display in blue color.. I am not sure In sap script coloring is not possible.
Regards,
Dhina..

Similar Messages

  • Request for Quote IN SAP SCRIPTs

    Request for quote in SAP Scripts
    Do any one was modified MEDRUCK layout??
    Please let me know ,which elements
    do they people used??
    thank you

    Hi Silpa,
       You needn copy the MEDRUCK Script for your specific purpose. You can create your own script for your purpose. Its not necessary that you have to copy the original one and proceed.
    Link:
    http://www.sap-img.com/sapscripts.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d6/0db74a494511d182b70000e829fbfe/frameset.htm
    Reward if helpful.
    Regards,
    Tushar

  • Output Format for Amount in SAP Script PO

    Hi,
    In my Standard SAP Script PO Form 'MEDRUCK', all amount values are getting printed in the form 1.234.567,89 but I want them to be in the Form 1,234,567.89 .
    For doing this I have gone in T-Code SU3 and set the default decimal notation as
    X 1,234,567.89 . 
    I have also tried by giving the command
    /: SET COUNTRY 'IN'
    But still the amounts in the ouput format is coming in the same way 1.234.567,89 .
    If anyone has faced similar situation, plz tell how to change the output format of amount in SAP Script.
    Thanks and Regards,
    Nitin Gupta

    I have tried using SU3 but it's not worknig. Is their any other method also of which maybe I am not aware of?

  • How to attach Pacakge for Local made SAP Script

    Hi,
             I have created a SAP Script, initially I have made it as local without assigning any  package,  ow I want to attach one package for that SAP Script form to transfer it to quality and production but in chnage mode the package filed is disable.
              Also other option is there to copy existing form to new and give the package name  but i want to know insted of copy how to add package for existing form.
    regards,
      zafar

    Goto SE03>object directory>change object directory entries> enter FORM in the first text box and script name in the object name select checkbox and execute.....>select the form and press button change object directory above....

  • How to find the Adobe barcode name for its corresponding SAP Script barcode

    Dear All,
    We are doing conversions from SAPScript to Adobe forms.
    The barcode used in two sapscript forms are 'BC_CD39' and 'ARTINR' respectively .
    I would like to know the corresponding barcode name to be assigned to Adobe forms as the above barcode names are not present in the Object Library-> Barcode section of Adobe forms.
    regards,
    PP

    >
    Muralidhar Medisetty wrote:
    > Hi,
    >
    > I had an issue, in the transaction F110  Payment advice. They need to adjust the spacing on the cheque printing, which is overlapping the names on the cheque and hence I have forgotten how to find the form name and the driver program of the script. Can anybody suggest me how to find those. Your help will be appreciated.
    >
    > Thanks in advance.
    hey
    NACE is the transaction ..for this u must know the output type..
    Script for Cheque Printing and Payment Advice can be known from Transaction FBZP...
    FBZP -> paying Company Codes -> u will get Script used for Payment Advice
    FBZP -> Pmnt methods in company code -> u will get Script used for Cheque Print
    ....Give points if useful.....
    Edited by: Satyabrata sahoo on Oct 14, 2008 4:42 PM

  • Two spool getting generated for a single SAP script

    Hi ABAPers,
    I have a SAPscript development. This is a PO form for India. When I do a "Trial printout" in ME9K I see that two spools are generated. This is my first problem as till last week only one spool was getting generated. Only spool should be generated.
    My second problem is that, the second spool which is generated has texts shown in some different language than English (my form only exists in language EN which is the orginal one too). When I debugged this whole thing, on the second run of the debugger (i.e. when the second spool is generated), when the control goes to a text in one of the windows, that text is shown in some other language (in debug mode also). Please note that the standard text is a Global standard text and it exists in around 6 languages.
    I guess if only one spool is generated then my second problem would be solved. But then why are 2 spools generated in the first place?
    If anyone has came across similar kind of problem please help. Thanks in advance.
    regards,
    Prakhar

    Hi,
       Check this..
    1. Go to txn. NACE... select application "EF"... then click on "Condition Records" button
    2. Select your Output Types...(ex. NEU)....
    3. Go to Change condtion Record Screen. Select ur condtion then click on "communication" button..
    4. Under Print Output Check the field "Number of Message" if it is 2 then delete it.
    Regards
    GK.

  • How to get 2 spools for the same SAP script

    Hi,
    I have a requirement where i have to get 2 spools when i run the script once. Please suggest me the how to achieve this.
    Thanks in advance.

    Hi,
    I believe u need different pages of the Scirpt output on diffrent spools.
    If Yes, Use START_FORM & END_FORM in the looping of your MAIN window data in Driver program.
    Regards,
    Bhargava

  • For transportation of SAP SCRIPT

    hi friends,
    can any body tell me how me transport the sapscript acorss different clients???????????

    Hi,
       If layout is in the same client then we will use SCC1 transaction. Normally SCC1 will be used to import any TR from other clients with in the same server irrespective of the object under TR.
      Theoritically i know that through RSTXSCRP program we can import / export the layout sets to the different servers in the same land scape. Can any give me more idea on this program.
       When i checked  this program i came to know that it can export / import standard texts, styles or forms to / from application server ...is it not ? In case if i want to import the layout in Quality server from dev system what is the step by step procedure to follow, can any one please explain me.
    Thanks
    jaya

  • Is it possible to use same sap script for different comp code with difflogo

    I have 3 company codes. I need to use same sap script to all  but each company code has different logo. I dnt want to go for 3 different sap script. Is it possible to change in coding
    like this
    If comp code = '100'
    print ' logo1'
    If comp code = '200'
    print ' logo2'
    If comp code = '300'
    print ' logo3'
    in same sapscript.If yes how ?

    Hi,
    Yes you can do it.
    In Sap Script use:-
    /: If Comp code='100'
       INCLUDE ZHEX-LOGO100 OBJECT TEXT ID ST LANGUAGE EN
    /:Elseif comp code = '200'
    INCLUDE ZHEX-LOGO200 OBJECT TEXT ID ST LANGUAGE EN
    /:Else
    INCLUDE ZHEX-LOGO300 OBJECT TEXT ID ST
    LANGUAGE EN
    /:Endif
    I hope this helps,
    Regards
    Raju Chitale

  • SAP Script 'space' check in IF  statement

    Hi,
    I want to check for space in SAP script
    i want to check something like
    /: IF &TS_ITEM-USPOS& EQ SPACE
    ZD ...........
    /: ENDIF
    even if the there is space in uspos field this lines under are not printing.
    your help is appriciated.
    thanks
    surya

    Hi Surya,
    It depends of the type of this field 'USPOS'.
    If it's defined, for eg, like POSNR ( NUMC 6 )so the statement is :
    /: IF &TS_ITEM-USPOS& EQ '000000'
    Hope this helps,
    Erwan

  • Debugging of SAP SCRIPTS

    Hi ,
           Wht r the steps for debugging of sap-scripts, and the wht r the steps (configuration steps ) i need to follow for making changes to an existing script.script is  trigred by TC : VA03. 
    Many thxs
    vind.

    Hai Vind
    SAP Script:
    YOu Can debug a SAP Script by activating debugger in two ways 1.In SE71->Menu->Utilities->Activate Debugger, then debugger will be get activated and when your print program is executing Script Debugger will be in active and you can proceed with your debugging.
    2. Goto se38-> RSTXDBUG ->Execute this same as going thru in se71-> Menu, now debugger will be activated.
    Smartform:I am afraid , we dont have any direct commands or direct procedure to debug a script. But in indirect ways we can do it.
    1.Put a command line before where you want check the value of smartform and write the code "BREAK-POINT"->hardcoded debugging.
    2.You can debug the function module which generates the smartform.
    Thansk & regards
    Sreeni

  • Enquiry(SAP SCRIPTS)

    hi experts !
    can any one tell me the wat is form name, driver program & t.code for ENQUIRY ? (sap scripts )
    or
    list of form names and their respective driver programs , Tcodes ?
    Regards,
    Rajsh
    Edited by: rajesh  k on Mar 4, 2008 10:59 AM

    thanks for Reply !
    of course i know that but am not getting the appropriate one..!
    am facing the problems like
    when i get the form name,, the driver program is not there .
    when i know the both but am unable to find the respective tcode for that form ?
    can any one pls provide me ?
    list of form names with respective driver programs  , tcodes ?
    Cheers,
    Rajsh.

  • SAP-Script Spool Requests over 2 GB

    Hi Experts,
    if I make a dunning run the created spool requests are over 2 GB and the printing will be cancelled by the system. I use SAPF150D2 for printing the SAP script dunning froms. According to SAP it's not possible to handle spool files with  more than 2 GB in Temse.
    I don't have any idea why the spool request take so much space. I only generate 2000 pages in one spool request without any graphics, only text and some table lines. On the same system we make invoice forms also in SAP script with more than 4000 pages and there is no problem.
    Has anybody an idea what reasons could be that the request take so much space???
    Regards
    CD

    Hi Christian,
    It still looks strange to me that spool request is so big. If it would be output request then I would say that problem lies in your printer - it doesn't recognize Arial font and because of that data have to be send as images and not text, but spool....hmmm. I guess there is still a lot to learn That way or other thanks for info. It may be useful in future.
    Best regards
    Marcin Cholewczuk

  • SAP script  & smartform debugging

    Hi experts
    can u plz give me the step by step procedure  for debugging the SAP script and smartform
    regards
    venkat

    Hi,
    They are two ways to debug the SAPScript.
    1). Use Tools - Word Processing - Layout Set (SE71). Enter
    name of layout set and then Utilities - Activate Debugger.
    It is of no consequence which layoutset you enter when
    selecting the SAPscript debugger. (Menu path:
    Tools-Wordprocessing - Forms, Utilities - Activate Debugger)
    The next layoutset called will invoke the debugger.
    2). Another way to set the SAPScript debugger is to run
    program RSTXDBUG.
    When you debug Print program it is same as you debug any
    other ABAP program. While when you debug SAPScript, you
    actually debug the code ( scripting) you have written
    SAPScript Form.
    DEBUG Smartform:
    One way to debug smartform is to debug the Function Module of
    that smartforms. If you want to debug particular smartform
    node that the solution would be, insert a "Program Line" just
    above the node you want to debug and this program line write
    a normal abap breakpoint. So whenever you call the
    smartforms, it will stop at this breakpoint and you can debug
    onwards.
    another way is SFTRACE can be used for debugging SMARTFORMS
    for details refer this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    rgds,
    latheesh

  • Why  SAP Script  client-dependent  but  Smartform is client  independent

    Hi  All,
        What   are  the  fundamental  reasons   for  justifying  that  SAP Script  is  client-dependent  but  Smartform is client  independent  ???
    Regards
    jaman

    hi,
    why script is client dependent?
    the reason is:
    in script, to display some table data, we use text elements, where the text elements access the dictionary tables data. there the table from which we are fetching data, that may be a client dependent table, so first the text elements became client dependent. as script use text elements, script also became client dependent.
    hope u got the point. to b simple, the text elements r client dependent, there fore scripts also became client dependent.
    smartforms are client independent. bcoz it doesnt use any text elements. it will be executed through a function module, as you know function modules are client independent, the smartform also became client independent.
    hope ur clear, if any doubts, plz post them back.
    reward if helpful.

Maybe you are looking for

  • Hi i am trying to install a printer to my iMac desktop pc but i am getting an error message no drivers.

    Hi just bought my first Imac computer and i love it i am a 63 year old so getting used to it is not the same as windows but i can lear. My question is i have a codak printer less than one yeat old but it will not install to my Mac, no drivers i am to

  • How do I disable the Mac Startup Sound?

    http://www5e.biglobe.ne.jp/~arcana/StartupSound/BETA/index.en.html I tried that but it doesn't work for me. Must be outdated?

  • WSDL and Java

    Hey guys, WSDL is new to me... can anyone send me a very basic example on how to link java application to a WSDL. Your help is very much appreciated! Thank you very much.

  • DHCP wont start automatically

    I can't connect to the internet unless I manually go into control panel>administrator tools>services>DHCP and start it manually.  I'm hard wired to a link sys router.  I'm not sure why the configuration changed How do I get DHCP to start automaticall

  • How to I change the colour of an object without loosing it's detail?

    Hello all, I get by for the most part creating the art work for my advertising in photoshop, my finished product always turns out good, but i'm not expert by any means. Currently, I am in need a yellow real estate sign post.. all the sock images I ca