What  is configarion in scripts

I am developing scripts layout from scratch and   and developed one reports with selection screen it has some fields like  sales order range and date range
Right now  I want to print that data of sale order which I will give in the selection screen,
How to configure this one with layout plz tell me
I had this question in one interview
Thanks
Durga Prasad

Hi,
After creating form and print program, we need to do some configurations steps in sap scripts.
So these configuration is doing on NACE  transacation code.
NACE  is tracsaction code for configuer the script and smartforms.
Once u entered into this t-code, there u need to give select Out put type and goto the process routine, there u have to give ur Layout , print program,print mode and language etc...
Enter NACE->select output type->and click on process routine..
If u need further info give me back.................
By
Seshu.......

Similar Messages

  • I can not get Firefox to play music backgrounds on pages in browsers it works in IE and other browsers but not firefox, what HTML or Jave script do I need too use to make them work?

    I'm having a problem with firefox playing background music on some sites, it works with IE and other browsers but not with fire fox, what html or java script do I need to add to the pages so that they play the music?
    I develop my pages in Front Page and I know that the music only works in IE, so if someone can tell me how to correct this problem as it is important as I use fire fox as my main browser.
    I thank you in advance

    If a website uses BGSOUND then it will only work in IE.
    BGSOUND is not compatible with other browsers like Firefox.
    * http://kb.mozillazine.org/Background_music_does_not_play

  • What are the following script doing?

    What are the following script doing? What does symbol *<* stand for?
    protected Map<Member, List<String>> divideWork(Set members, List<String>
    fileNames)
    Thank you

    su_penguin wrote:
    Side note: http://en.wikipedia.org/wiki/Operator_overloading
    Extra credit: What trick does Java's syntax use to allow Generics to compile with or without whitespace between the angle brackets? Ex: Map< Member, List< String > >
    Why doesn't it work in C++?Does this have something to do with the comment "Note that it is not an LL(1) grammar"? [http://java.sun.com/docs/books/jls/third_edition/html/syntax.html]

  • WHAT ARE THE FORMS (SCRIPTS) WHICH ARE NOT PROVIDED BY STANDARD SAP?

    WHAT ARE THE FORMS (SCRIPTS) WHICH ARE NOT PROVIDED BY STANDARD SAP?

    Hi Pravin
    For a beginner in CRM - Sales would be a right choice to understand how CRM behaves when integrated with backend R/3.
    Still as far as CRM goes, most of the components are not exposed to their fullest potential and that is why its not outshining the competitors in market.

  • What is this command script called missing kitty that initiated out of nowhere on my macbook pro?

    What is this command script called missing kitty that initiated out of nowhere on my macbook pro? It says it was created by a former Apple genius and it showed up 3 days after I had to have my macbook wiped clean and re-installed at the Genius bar due to a "software glitch" that locked up my firmware....

    https://discussions.apple.com/thread/2404816?start=0&tstart=0
    at the Apple Store called "Missing Kitty" that would allow you to install a script on the root level of the HD. After installing everything and making a user it would go in and delete the user so on the next restart the computer would start up a "brand new" and already have iLife installed.
    You can always call the genius bar for clarification
    Genius reservation http://www.apple.com/retail/geniusbar/

  • Repeatedly, this error code suddenly appears on the screen and I don't have a clue what it means or what to do:  "A script in this movie is causing Adobe Flash Player to run slowly.  If it continues to run, your computer may become unresponsive.  Do you w

    Repeatedly, this error code suddenly appears on the screen and I don't have a clue what it means or what to do:  "A script in this movie is causing Adobe Flash Player to run slowly.  If it continues to run, your computer may become unresponsive.  Do you want to abort the script?
                                             No     Yes"

    Hi,
    Some "movies' are actually Flash files.
    This means the Flash App will play them (possibly in a browser in some cases).
    Depending where this item is and how it is playing it may be effected by other things
    A web page can include javascript.
    Apple uses javascript here to help with creating the posting box, the Edit options, Adding pics/smilies and the like.
    Sometimes the javascript can be what is called a runaway process and gets sort of stuck in an endless loop.
    If it is a free standing item then it might be triggered by AppleScript on the Mac. (or be modified in some way)
    Again if the Script (normally written with a upper case S) is not perfect it can cause problems.
    9:09 pm      Wednesday; February 26, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • What effects when the scripts in INST_TOP were START / STOP

    What effects when the scripts in INST_TOP were START / STOP
    adalnctl.sh adforms-c4wsctl.sh adopmnctl.sh gsmstart.sh msc
    adapcctl.sh adformsctl.sh adpreclone.pl ieo mwactl.sh
    adautocfg.sh adformsrvctl.sh adstpall.sh javacache.log mwactlwrpr.sh
    adcmctl.sh adoacorectl.sh adstrtal.sh java.sh sqlnet.log
    adexecsql.pl adoafmctl.sh cm.sql jtffmctl.sh synonym.txt
    When we will connect through front end (URL), how will we know that which service is not working and what is the main problem and how to solve that.

    Please post the details of the application release, database version and OS.
    What is the status of the services? Please issue "adopmnctl.sh status" and post the output here.
    What is the reason, when we tried to connect through front end but its showing white screen and not connect? How to rectify it?Compile JSP files manually -- Blank Page Accessing R12 - 'Missing class: _RF' in OACore application.log [ID 467562.1]
    What is the reason, when we entered our Username and Password on first screen, but after that its not connected to our apps? How to rectify it?What is the error? Any errors in Apache log files?
    What is the reason, when it shows HTTP Error 500 Internal Server error. How to rectify it?Again, check Apache log files for details about the error.
    Please run AutoConfig and make sure it completes successfully.
    Also, make sure no errors are reported in the database log file.
    R12: Troubleshooting 500 Internal Server Error in Oracle E-Business suite [ID 813523.1]
    Thanks,
    Hussein

  • What is a shell script?

    dear members,
    what is a shell script?
    I know that it is used for database file management but how?
    can any body highlight on this in detail.
    regards
    sandeep

    > what is a shell script?
    I know that it is used for database file management but how?
    can any body highlight on this in detail.
    Unix provides several command environments, which can also be used as simple programming languages, for example this in korn shell:
    /Users/williamr: integer i=3
    /Users/williamr: while (( i-- > 0 ))
    do
           print $i
    done2
    1
    0
    /Users/williamr: They can be saved as files and executed by entering their names (subject to execution privileges and path setup), thus extending the set of commands available.
    While endlessly useful, they are nothing to do with databases and were not designed for interacting with them.

  • What is "run pregrade script for apple devices"?

    What  is  "Run pregade script for Apple Device mean. I am tryong to down load Itunes 10.5 on my 2005 Mac. What is the problem?

    Are you sure that's how the error message is phrased? Are you sure it doesn't actually say "run preupgrade script for Apple Mobile Device Support"? (note in particular the difference between "preupgrade" and "pregrade" as you have phrased it)
    If it really does instead say "preupgrade", not "pregrade", here are a couple of threads with suggestions:
    https://discussions.apple.com/thread/3373568?start=0&tstart=0
    https://discussions.apple.com/thread/2515630?start=0&tstart=0
    If those don't help, this support article may:
    http://support.apple.com/kb/HT1747
    Regards.

  • What is "run preinstal script" [was john tripp]

    what is "run preinstal script"
    [edited by host]

    As Ned said, at least tell us what product you are trying to install onto what system...
    Mylenium

  • What could block a script, when there's nothing wrong with it?

    Hello, again
    I've just wasted some hours trying to get a script to execute. It threw an error saying that the 'object wasn't valid' I decided to give up, wen't home, and later at home started up again to see if I could sort it out.
    It executed well on the first run.
    Same computer. No changes to the script. ESTK was set to InDesign 5, I checked it a million times.
    What could cause this to happen? Caches overflowing? "Blocks" between InDesign and ESTK?
    The script isn't callng for any URIs or such.
    Here's the bit I was having trouble with:
    app.activeDocument.groups.everyItem().ungroup();    
    app.activeDocument.layers.everyItem().locked = false;
    app.activeDocument.pageItems.everyItem().locked = false;
    MoveTextFrame();
    function MoveTextFrame() {
        var doc = app.activeDocument;
        var stories = doc.stories;
        var STYLE = doc.paragraphStyles.item("Some Style");
        for (var i = stories.length-1; i >= 0; i--) {
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 1) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([38.8, 15, 48.249, 130]);  
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 2) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([9.2, 15, 18.6, 130]);               
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 3 && app.activeDocument.documentPreferences.facingPages == true) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([9.2,225, 18.6, 340]);
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 3 && app.activeDocument.documentPreferences.facingPages == false) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([9.2,15, 18.6, 130]);
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 4) stories[i].paragraphs[0].parentTextFrames[0].move([15,9.2]);

    Thanks for taking your time Harbs.
    Sorry to say, once I escape the ungroup-line, it still won't run. Says line " if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 1) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([38.8, 15, 48.249, 130]);"
    ..is wrong and that 'null is not an object'.

  • What is the OMB+ script to apply a schedule to one process flow?

    Let's say process flow name : 'MY_PRLCESSFLOW'
    schedule name:'MY_SCHEDULE'
    so what is the script?
    thanks so much.

    http://blogs.oracle.com/warehousebuilder/2007/07/more_process_flow_basics_for_l.html
    OMBALTER PROCESS_FLOW_MODULE
    Purpose
    Alter the Process Flow Module by renaming it, and/or reset its properties.
    Prerequisites
    Should be in the context of a project.
    Syntax
    alterProcessFlowModuleCommand =  OMBALTER ( PROCESS_FLOW_MODULE
         "QUOTED_STRING" ( "renameClause" [ "alterPropertiesOrReferenceClause"
         ] | "alterPropertiesOrReferenceClause" ) )
    renameClause =  RENAME TO "QUOTED_STRING"
    alterPropertiesOrReferenceClause =  SET ( "setPropertiesClause" [ SET
         "setReferenceClause" [ UNSET "unsetReferenceClause" ] | UNSET
         "unsetReferenceClause" [ SET "setReferenceClause" ] ] |
         "setReferenceClause" [ UNSET "unsetReferenceClause" ] ) | UNSET
         "unsetReferenceClause" [ SET "setReferenceClause" ]
    setPropertiesClause =  PROPERTIES "(" "propertyNameList" ")" VALUES "("
         "propertyValueList" ")"
    setReferenceClause =  ( "setReferenceLocationClause" [ SET
         "setReferenceIconSetClause" ] | "setReferenceIconSetClause" )
    unsetReferenceClause =  ( "unsetReferenceLocationClause" [ UNSET
         "unsetReferenceIconSetClause" ] | "unsetReferenceIconSetClause" )
    propertyNameList =  "UNQUOTED_STRING" { "," "UNQUOTED_STRING" }
    propertyValueList =  "propertyValue" { "," "propertyValue" }
    setReferenceLocationClause =  ( REFERENCE | REF ) LOCATION "QUOTED_STRING"
    setReferenceIconSetClause =  ( REFERENCE | REF ) ICONSET "QUOTED_STRING"
    unsetReferenceLocationClause =  ( REFERENCE | REF ) LOCATION
         "QUOTED_STRING"
    unsetReferenceIconSetClause =  ( REFERENCE | REF ) ICONSET
    propertyValue =  ( "QUOTED_STRING" | "INTEGER_LITERAL" |
         "FLOATING_POINT_LITERAL" )
    Keywords And Parameters
    alterProcessFlowModuleCommand
    This command modifies an existing process flow module.
    renameClause
    Rename an existing process flow module.
    setPropertiesClause
    Set values of properties of a process flow module.
    Base properties for PROCESS_FLOW_MODULE:
    Name: BUSINESS_NAME
    Type: STRING(200)
    Valid Values: N/A
    Default: NAME
    Business name of a Process Flow Module
    Name: DESCRIPTION
    Type: STRING(4000)
    Valid Values: N/A
    Default: ''
    Description of a Process Flow Module
    propertyNameList
    Comma-delimited list of property names. Property names are not in
    quotation marks.
    propertyValueList
    Comma separated list of property values.
    setReferenceLocationClause
    Set a location to a supported workflow engine.
    unsetReferenceLocationClause
    Unset the location of the process flow module.
    propertyValue
    Value of a property.
    Examples
    OMBALTER PROCESS_FLOW_MODULE 'process_module' RENAME TO 'p_module' SET
    PROPERTIES (DESCRIPTION, BUSINESS_NAME) VALUES ('This becomes a process
    flow module.', 'process module')
    This will rename the Process Flow Module "process_module" to "p_module",
    and set its description to "This becomes a process flow module", set its
    business name to "process module".
    See Also
    OMBALTER, OMBCREATE PROCESS_FLOW_MODULE, OMBDROP PROCESS_FLOW_MODULE

  • What'wrong with my script?

    I'm new in scripting in AE, here is a script I've got to use in my animation, but it doesn't work. Could anubody tell me what's wrong with it, and how to apply it in a right way? Thank you!
    freq = 1.0
    squashFreq = 4.0
    decay = 5.0
    masterDecay = 0.4
    amplitude = 25
    delay = 1/(freq*4);
    if (time > delay){
      bounce = Math.sin(squashFreq*time*2*Math.PI);
      bounceDecay = Math.exp(decay*((time - delay)%(freq/2)));
      overalldecay = Math.exp(masterdecay*(time - delay));
      x = scale[0] + amplitude*bounce/BounceDecay/overallDecay;
      y = scale[0]*scale(1)/x;
      [x,y]
    }else{
      scale

    It didn't work because it had quite a few mistakes in it (i.e. BounceDelay instead of bounceDelay and scale(1) instead of scale[1]). It's an expression you need to apply to the Scale property of a layer. Here's a fixed version.
    freq = 1.0
    squashFreq = 4.0
    decay = 5.0
    masterDecay = 0.4
    amplitude = 25
    delay = 1/(freq*4);
    if (time > delay){
      bounce = Math.sin(squashFreq*time*2*Math.PI);
      bounceDecay = Math.exp(decay*((time - delay)%(freq/2)));
      overallDecay = Math.exp(masterDecay*(time - delay));
      x = scale[0] + amplitude*bounce/bounceDecay/overallDecay;
      y = scale[0]*scale[1]/x;
      [x,y]
    }else{
      scale;

  • What is the action script for "go to next page"?

    I'm new to flash and need help with action scripts.  What is the code for "go to next page"  I'll be using a mouse event.
    Thanks!

    It depends on where the next page is.

  • What does "URL Access Scripting" do?

    I tried the demo of the Little Snitch application to see what kind of network stuff is initiated from my account. On login I get:
    The application "URL Access Scripting" wants to connect to perso139-g5.free.fr on TCP port 80 (http)
    That seems suspect to me. What kind of script wants to go there and how do I find out what kind of script is being run here?
    G

    This was helpful (sorry, clicking the helpful button did not work). I found out it was CoreDuoTemp.app which is in my startup. This is a script. I looked for strings in the script and found
    0http://macbricol.free.fr/coreduotemp/version.txt
    %http://macbricol.free.fr/coreduotemp/
    %http://macbricol.free.fr/coreduotemp/
    and it turns out macbriol is an alias for the site I found in Little Snitch
    $ nslookup macbricol.free.fr
    Server: 192.168.2.99
    Address: 192.168.2.99#53
    Non-authoritative answer:
    macbricol.free.fr canonical name = perso139-g5.free.fr.
    Name: perso139-g5.free.fr
    Address: 212.27.63.139

Maybe you are looking for

  • How do you delete duplicate songs from your iPhone that do not show up in your iTunes library?

    everytime i purchase songs on itunes and sync them to my iphone 4, the songs downloads twice. one as the actual song, and the second one doesnt do anything. when you click on it, it just skips to the next song and doesnt play anything. also this seco

  • Creation of Multiple Activities for same Employee,same day and same time

    Hi Experts, In CRM 2007 I am creating an Activity(e.g Customer Visit) for a particular day for a particular employee. I am selecting the Option "Whole Day". When again I am creating another Activity same day and for same employee the ideally system s

  • WRT54GS NAT Settings Concerning Xbox 360 Setup

    My xbox 360 is connected to a Dell Inspiron B130 notebook via an Ethernet cable. The notebook is then connected wirelessly to a Linksys WRT54GS router. The router, finally, is connected to a Sprint DSL modem. My problem is that with this setup, whene

  • Why do you use jsp:useBean?

    Hi, I have one "simple" question :) : When or why do you are using <jsp:useBean>,<jsp:getProperty> and <jsp:setProperty>? For practice, I am creating a form, sends the data to a servlet and the servlet "packs" the parameter into a Bean and put this B

  • Apps crashing after upgrading to OS6

    Any updates in what to do with my iPhone apart from throwing it on a wall ? ever since I upgraded the new OS all my apps and calls keep crashing, battery always drains in a matter of hours ! The worst upgrade ever !