How to add my article in code gallery

Hi All,
Can anyone of you tell me how to add my article in code gallery. I want to post my article in code gallery, I tried to do that but I don't understand how to add my own screenshots, code and paragraphs.
Looking forward for helpfuld answers.
Thanks,
Venkat

Hi,
    Check this link , it's PPT how to contribute
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2f5d32b1-0c01-0010-4590-9ccd7d0cba4c
for more details check this link
ABAP Frequently Asked Questions
Salil..

Similar Messages

  • How to add breakpoint in abap code

    when use <i><b>java</b></i> call abap code ,
    how to add breakpoint in abap code?

    Hi,
    To start the ABAP debugger from your java client you have to set the JCO client to debug mode:
    e.g.
    yourJCOClient.setAbabDebugMode(true)
    (hope thats the right method name:-)).
    And don't forget to set also a break point of type "External" in the function module you call from your java client. For debuging, the user which calls the FM has to be a SAP User of type "<b>Dialog"</b> and has to be the rights to call RFCs, ...

  • I can't figure out how to add my soundcloud iframe code.etc in my site in cc 2014?

    Im having trouble adding codes to my animated site.i have everything ready,i just need to add forms and players from others sites and what not,but i cant figure out how to make a div a iframe, and no one is making videos on this problem or asking about it..so im stuckk ?

    Oops, your question duplicated. I replied here: https://support.mozilla.org/questions/1038640

  • Need to know how to add a delay between code

    I need to add delays between the following lines of code. Any ideas?
    speed=speed*.98;
    //Delay here
    speed=speed*.50;
    //Delay here
    speed=speed*.1;

    You can't add delays in the way you show, but you can build those delayed lines into functions and have the calling of the functions delayed.  Look into the setTimeout() function as one possibility.  setInterval() is another, though it can require more maintenance.

  • How to add streaming live video code

    in drmwvr mx how do i "embed" streaming video. what is the
    code? if u can help or point me in the right direction that would
    be great. i'm thinking of using windows media encoder. this is to
    broadcast church service.
    thanks

    In Indesign create a frame, use Overlay creator panel to create a Web content overlay, in webcontent overlay paste the url as http://www.youtube.com/embed/Y4DhGDpnRnA
    Click on Allow user interaction and auto play if required

  • How to add a working bar cod in a pdf form?

    I am able to create a bar code using adobe acrobat. It is working perfect in acrobat viewer. But when i open the same form with adobe reader, after a filling corresponding fields, the bar code disappears and a grey box appears. Here i attached an image of the pdf form. One is before i filling the form and one is after filling the form.
    What i need to do? Please help me It's urgent.Please help me.

    http://www.adobe.com/sea/products/server/readerextensions/
    I would recommend:
    1. Check the hardware requirements. (WIndows server, probably). The cost of the server is probably insignificant, even if you have to buy a new one.
    2. Estimate total usage (forms, users per form) over a year and the lifetime of the project.
    3. Contact a sales rep and get a preliminary price quote based on your usage,

  • How to add slideshow to Genius Gallery Widget?

    !! HELP !!  Need to know how to add slideshows (6) to Genius Gallery Widget replacing the existing lightboxes. 101 attempts and can't get the Layers and Targets in correct order.There HAS TO BE an easier way...please !! HELP !! 
    Mike

    Hi Mike
    Select the trigger and go to options ( little blue circle ) , in Editing enable "Show Lightbox parts while editing" and "Show All in Design Mode".
    As if both options are enabled then you can see the content and then modify it.
    Thanks,
    Sanjit

  • How to add youtube link?

    I'm desperate to add a youtube link to appear as the video itself !! how to do that ?
    I always copy and pasted youtube embedded code into HTML code; however, I don't know how to add and edit html code in here

    It's possible by placing the embed code in your own Dashcode widget, and making sure that a default image of the right size is included, along with a few javascript callbacks.
    If you do not want to code this yourself, we've put together a widget wizard at http://www.classwidgets.com/ that will generate a custom YouTube  widget for you, if you give it the web url address of the video you want.

  • How is add/insert jpeg/gif files on wiki (code gallery)

    Hi;
    I prepared new wiki-code gallery page. I must insert/add jpeg/gif files on my page. But I dont know  How is add/insert jpeg/gif files on wiki (code gallery).
    Please help me.
    Thanks.
    http://wiki.sdn.sap.com/wiki/display/Snippets/NewTimeDomainandConversionRoutineforTotalTime

    Hi;
    Mr Moshe Naveh helped me. He sended me new template page.
    I again prepared my wiki with new template.  ( http://wiki.sdn.sap.com/wiki/pages/createpage-entervariables.action?spaceKey=stage&templateId=113147905 ) I added jpeg files on new wiki page.
    Then He moved my new page.
    Thanks him.
    Best regards.

  • Hi Everyone, i have made a flash gallery using actionscript..how to add a loader to it?

    hi i am loading all thumbs and images in a container on a single frame using action script..but the size of the swf becomes 1.2 mb so i want to add a loader to it...the loader i am trying to add counts the frames but my file has just one frame so the loader doesnot show up..
    here is the script of my gallery..and the timeline has just one frame...
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    this.createEmptyMovieClip("container",1);
    var imagesNumber:Number = 18;
    var scrolling:Boolean = true;
    for (i=1; i<=imagesNumber; i++) {
    container.attachMovie("thumb"+i,"thumb"+i+"_mc",i);
    myThumb_mc = container["thumb"+i+"_mc"];
    if (i==1)
        myThumb_mc._x = (0.0)*myThumb_mc._width;
    else
        myThumb_mc._x = ((1.2*i)-1.2)*myThumb_mc._width;
    myThumb_mc._y = (Stage.height-myThumb_mc._height)/2;
    myThumb_mc._alpha = 100;
    myThumb_mc.largerImage = i;
    myThumb_mc.onRollOver = function() {
    this._alpha = 60;
    myThumb_mc.onRollOut = function() {
    this._alpha = 100;
    myThumb_mc.onRelease = function() {
    this._alpha=100;
    for (i=1; i<=imagesNumber; i++) {
    var myClip = container["thumb"+i+"_mc"];
    myClip.enabled = false;
    scrolling = false;
    _root.attachMovie("image"+this.largerImage,"large_mc",2);
    large_mc._x = (Stage.width-large_mc._width)/2;
    large_mc._y = (Stage.height-large_mc._height)/2;
    new Tween(large_mc, "_alpha", Strong.easeOut, 0, 100, 0.5, true);
    new Tween(container,"_alpha",Strong.easeOut,100,50,0.5,true);
    large_mc.onRelease = function() {
    scrolling = true;
    var myFadeOut = new Tween(large_mc, "_alpha", Strong.easeOut, 100, 0, 0.5, true);
    new Tween(container,"_alpha",Strong.easeOut,50,100,0.5,true);
    myFadeOut.onMotionFinished = function() {
    for (i=1; i<=imagesNumber; i++) {
    var myClip = container["thumb"+i+"_mc"];
    myClip.enabled = true;
    large_mc.removeMovieClip();
    container.onEnterFrame = function() {
    if (scrolling){
    this._x += Math.cos((-_root._xmouse/Stage.width)*Math.PI)*20;
    if (this._x>0) {
    this._x = 0;
    if (-this._x>(this._width-Stage.width)) {
    this._x = -(this._width-Stage.width);
    anyone knows how to add a loadre to this...?
    thanks..

    You'll need to repost in the AS2 forum.  That's all AS2 code and this is the AS3 forum.

  • How to add powershell script code in form application in C#

    Hi,
    i am creating a form application in C# and have powershell code which will create remote session on remote machine and execute few commands like set execution policy copy some share files install that files etc.
    I have to add this powershell script into form application in C#.
    Can some one please give me some example how to add the whole script which i have into C# code form application. Thanks in advance
    Thanks,

    Hi
    So the left is Run PowerShell Commands on Remote machine? Am I right ?
    Here  is a article talking about running  powershell commands on Remote Computers.
    http://www.howtogeek.com/117192/how-to-run-powershell-commands-on-remote-computers/
    About how to write in C#, please follow
    Joel Engineer's reply, using  process.Start() method  to start
    PowerShell.exe and Run PowerShell Commands to connect remote machine.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to add additional fields to zreport which contains standard report code

    Hi Experts,
    In order to add additional fields to standard report i copied the code into zreport but i am unable to  add additonal field into report because the code is looking so complex.
    standard report:AQZZ/SAPQUERY/FKF1============
         or
    sapmenu->accounting->financial accounting->accounts payable->information system->reports for accounts payable accounting->master data->S_ALR_87012087-Addresslist.
    Additional feilds to add is :Region,company code,country
    Please let me know how toidentify ALV and guide me how to solve this.
    Regards,
    naresh.

    Hello Naresh,
    First check whether these three fields are available in the text elements area.
    Please write your code in the subroutine %comp_ldesc.
    Repeat the code for your three new fields
    perform ldesc(rsaqexce) using 'G00010000X010       00  A1'
        %txt1 %txt2 %txt3 'LFA1-LIFNR' LFA1-LIFNR 'LFA1-LIFNR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A01'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
    So this subroutine will give you the basic list. Now Program is creating ALV with this basic list. So I think you don't need to worry about that. Please have a thorugh look at the code over this perform, and write accordingly.
    I think this is enoogh.
    Please update if you got the solution, which will be informative for others.
    regards,
    Antony Thomas
    Edited by: Antony Thomas on Jul 27, 2010 7:57 AM

  • E72: How to add international code suffix to conta...

    Like when i want to sms someone in my phonebook who is in another country at the moment i need to add a "+international code" in front of their number right? So how do i add that after i select their contact from e phonebook to the sms? I mean i don't want to manually type the suffix together with the contact number because that's troublesome and when i want to sms a few people it's gets tedious memorising their numbers 1 by 1. Any suggestions?

    and if you happen to be traveling and it is temporary, ad an additional cell number to those contacts and add the required country code in the stored number.

  • How to add the Match code object for the requisitioner field in TCODE ME51N

    Hi,
    How to add the search help (Match code object) for the requisitioner field in transaction ME51N.
    Please  do the needful to me.
    Regards
    Rajesh

    don't you think that posting your question to a microsoft developer site would be more efficient?
    regards,
    anton

  • How to add a code TestIfElse(10) to the Main method of the Program.cs class?

    How to add a code  TestIfElse(10) to the Main method of the Program.cs class?
    Here is my code and I have copied from the Wiley book for Microsoft certification page 14,
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ifelse_Statement
        class Program
            static void Main(string[] args);
            TestIfElse(10);
            public static void TestIfElse(int n);
            if(n < 10)
                     Console.WriteLine("n is less than 10");
             else if(n < 20)
                    Console.WriteLine("n is less than 20");
             else if(n < 30)
                Console. WriteLine("n is greater than or equal to 30");
    Here is the error list I am getting,
    Error 1      Method must have a return type        C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\switch_Statement\Program.cs
    12 13
    switch_Statement
    Error 2
    Type expected C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\switch_Statement\Program.cs
    12 24
    switch_Statement
    Error 3
    Method must have a return type C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    12 9
    ifelse_Statement
    Error 4
    Type expected C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    12 20
    ifelse_Statement
    Error 5
    Invalid token 'if' in class, struct, or interface member declaration
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    16 9
    ifelse_Statement
    Error 6
    Invalid token '10' in class, struct, or interface member declaration
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    16 16
    ifelse_Statement
    Error 7
    Type expected C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    16 16
    ifelse_Statement
    Error 8
    Invalid token '(' in class, struct, or interface member declaration
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    18 35
    ifelse_Statement
    Error 9
    A namespace cannot directly contain members such as fields or methods
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    20 10
    ifelse_Statement
    Error 10
    Type or namespace definition, or end-of-file expected
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    30 1
    ifelse_Statement
    Error 11
    The type or namespace name 'n' could not be found (are you missing a using directive or an assembly reference?)
    c:\users\pvs\documents\visual studio 2013\projects\lesson01\ifelse_statement\program.cs
    16 12
    ifelse_Statement
    Error 12
    'System.Console.WriteLine(string, params object[])' is a 'method' but is used like a 'type'
    c:\users\pvs\documents\visual studio 2013\projects\lesson01\ifelse_statement\program.cs
    18 26
    ifelse_Statement

    static void Main(string[] args){
    TestIfElse(10);
    public static void TestIfElse(int n)
    if (n < 10)
    Console.WriteLine("n is less than 10");
    else if (n < 20)
    Console.WriteLine("n is less than 20");
    else if (n < 30)
    Console.WriteLine("n is greater than or equal to 30");
    Fouad Roumieh

Maybe you are looking for

  • ECC 6 Best Practice

    Dear all, I hope someone can help me as I am a bit confused. We are implementing ECC 6 Automotive OEM Best Practice. The customer has a number of SD requirements which I do not seem to find anywhere in the pre configured scenarios. Furthermore, I am

  • Access ApplicationBean from servlet

    My project uses both JSF generated pages as well as servlets. I would like to be able to access an Application Bean from a servlet in the same project. The java files for the servlet are in the same directory as the package that holds the generated j

  • DB Connect MS SQL Server

    Hi all:    I´m trying to connect to MS SQL Server DB, trought DBCO transaction, filling data such a:    DB Connection: MY_CONNECT    DBMS: MSS (SQL server)    USER: my_user    PASS: my_password    CONN. INFO: ("MSSQL_SERVER=xxx.xxx.xxx.xxx MSSQL_DBNA

  • Zooming in AE 12.1 with OSX Mavericks

    Is it just me, or is the scroll wheel on the mouse not as responsive for zooming with AE 12.1 and OSX Mavericks? I think this became noticable after updating to AE 12.1 (the October update). Sort of annoying.  I used to be able to click the wheel onc

  • Signicance of LDB

    What is the significance of GET PERNR Event in LDB? and why do we use this. How it is related to LDB? What is the difference between running payroll with LDB and without LDB? why should we implement LDB..