Run Transaction with Custom Inputs

Hi,
I am trying to schedule a transaction in Background
like this.What Should I do if I don't have a PARAMETER ID for that field.
I need to Uncheck the default Option which is checked while scheduling this job.
SET PARAMETER ID: 'ACM' FIELD KKA0100-BIS_ABGR_M.
SET PARAMETER ID: 'ACJ' FIELD KKA0100-BIS_ABGR_J.
CALL TRANSACTION 'KKAO' .
regards
Vara
Message was edited by: Vara K

If there is no parameter id set for this checkbox, then I am not sure we can try this without using BDC. I am not aware of Transaction variants in detail but you can check this thread for more details -
Transaction variant

Similar Messages

  • Report similar to Se16 with customized input fields

    Hi
    I have to create a report  which is similar to SE16 for j_1abcd some table and  the user should see customized input selection screen and He would enter data and it should display all the data satisfying the selection Screen
    It should then display a List where he can select one or more lines and there should be some button to edit or delete data.
    Which is the best method to do this?
    SHould i use table control or ALV or normal report for this?
    Pls suggest the best way to do this in the least time.
    George

    Why don't you just creat a Maintenance Table on SE11??? You could maintain the table on <b>SM30</b>...Otherwise...You use do an OO ALV....
    Greetings,
    Blag.

  • Running BDLS with SHDB input

    Hi experts,
    Some time ago, I have written a program that uses ABAP4_CALL_TRANSACTION RFC to call user defined transactions. It works by using a textfile - generated by SHDB - as input for the dynpros.
    Now I need to use this program to execute BDLS automaticly, but it fails with this message:
    <b>"Start screen does not exist in batch input data"</b>
    What does this message mean and how can I avoid it?
    Here some additional information:
    Running BDLS manually works.
    Running BDLS by using SHDB & SAPGUI directly works, too.
    Running other Transactions (SM21, SE38, AL08) by my executeable works.
    I'm using:
    SAP IDES 4.70
    SAP_BASIS 620 Level 38
    Client and AS are running on the same host, which is AIX 5.3.0.0
    BDLS Status data:
    Transaction      BDLS
    Program          RBDLSMAP
    Program (screen) RBDLSMAP
    Screen number    1000
    Program (GUI)    RSSYSTDB
    Here is my input (removed additional white spaces for easier read):
              0000  T  BDLS
    RBDLSMAP  1000  X
              0000     BDC_CURSOR     NEW_LS
              0000     BDC_CURSOR     =ONLI
              0000     OLD_LS         DTZ_801
              0000     NEW_LS         Z_DTZ_801
              0000     CLNT_IND       X
              0000     TESTRUN        X
              0000     CHECK_IT       X
              0000     MAXIMUM        1.000.000
    Thanks
    Christian

    Hi ,
    Can you try with the following input...
    RBDLSMAP  1000  X
              0000     BDC_CURSOR     NEW_LS
              0000     BDC_CURSOR     =ONLI
              0000     OLD_LS         DTZ_801
              0000     NEW_LS         Z_DTZ_801
              0000     CLNT_IND       X
              0000     TESTRUN        X
              0000     CHECK_IT       X
              0000     MAXIMUM        1.000.000
    and the import parameters to the FM would be Tcode = 'BDLS', skip_screen = ' ' ...
    Thanks.

  • Run forms with custom URL

    Hi to all ....
    I have a Forms/Report Application that run on Oracle AS to run the application I have the URL
    http://myserver/forms/frmservlet?config=myconfig
    there is a way to change it in the application server to have the ability to run the application with a URL like
    http://myserver/myapplication?config=myconfig
    thank's in advance

    If there is no parameter id set for this checkbox, then I am not sure we can try this without using BDC. I am not aware of Transaction variants in detail but you can check this thread for more details -
    Transaction variant

  • [solved] run dmenu with custom aliases and functions

    Is it possible to run my custom bash aliases and functions with dmenu?
    My aliases are placed in ~/.bash_aliases and my functions are in ~/.bash_functions.
    I source them in my ~/.bashrc through:
    Functions
    if [ -f ~/.bash_functions ]; then
    . ~/.bash_functions
    fi
    # Aliases
    if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
    fi
    Last edited by orschiro (2013-12-27 08:41:40)

    No problem!... sorry, I was about to post an "improved" version, but it breaks support for functions, doh!
    EDIT: finally got it to work as I wanted Sorry, zsh stuff is gone from mine, I don't use it -- feel free to borrow the improvements for your version though!
    v1.4 Changes:
    - removed unnecessary if statements
    - removed unnecessary 'source' command
    - added some logic to see if the command is a real program, or an alias/function - this saves spawning bash shells that aren't needed
    v1.5 TODO list:
    - add some "history" feature so that commonly used commands appear first in the list
    #!/bin/bash
    cachedir=${XDG_CACHE_HOME:-"$HOME/.cache"}
    if [ -d "$cachedir" ]; then
    cache=$cachedir/dmenu_run
    else
    cache=$HOME/.dmenu_cache # if no xdg dir, fall back to dotfile in ~
    fi
    cmd=`(
    IFS=:
    if [ -f ~/.bash_aliases ]; then
    aliases=( ~/.bash_aliases )
    fi
    if [ ~/.bash_functions ]; then
    functions=( ~/.bash_functions )
    fi
    if stest -dqr -n "$cache" $PATH || stest -fqr -n "$cache" "$aliases" || stest -fqr -n "$cache" "$functions"; then
    stest -flx $PATH
    source $aliases
    alias | awk -F '[ =]' '{print $2}'
    compgen -A function
    ) | sort -u | tee "$cache" | dmenu "$@"
    else
    dmenu "$@" < "$cache"
    fi
    )`
    if [ -f ~/.bash_aliases ]; then
    if [ ! -z $(which $cmd) ]; then
    exec $cmd &
    else
    echo -e "source ~/.bash_aliases \n $cmd" | bash -O expand_aliases &
    fi
    fi
    Last edited by dennis123123 (2014-04-21 10:09:39)

  • Error while running JSP with custom tag

    I am trying to run a jsp with a tag and I am getting the following error when I run the jsp:
    "Unable to open taglibrary /WEB-INF/jsp/mytaglib.tld : Parse Error in the tag library descriptor: External parameter entity "%(DOCTYPE);" has characters after markup."
    I have no idea what this is, can anyone help me here?
    tx
    -AB

    Its difficult to tell without looking at your TLD file i.e. mytaglib.tld
    However, a guess is that you may be refering to an invalid or otherwise corrupted DTD from your TLD.
    Check that out.
    The official DTD for TLDs in JSP 1.1 is http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd
    and the official DTD for TLDs in JSP 1.2 is http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd

  • Mappings with custom input parameter.

    We are using PL/SQL wrappers to execute all the OWB 10G (10.1.0.4) mappings. How do we call a mapping in the wrapper which has a input mapping parameter.?
    We use the sql exec template in a procedure.

    I believe it's done by this statement. By adding the custom parameters.
    @sqlplus_exec_template.sql MY_RUNTIME MY_WAREHOUSE PLSQL MY_MAPPING "," "input_param1='YES',input_param2=TRUE"Name the input_param1 and input_param2 after the names of the inputparameters you use is the mapping.
    Regards,
    Ilona

  • Batch input with customer fields

    I have to create a batch input process that post documents through FB01L.
    As the lines of each document have been added customer fields, when I tried to go from one line of the document to the following one, a screen appears when I have to introduce some data (two of the fields are mandatory). I had solved these issue by ending with a "Call Transaction" with option "No batch input" = 'X'. This way, these customer fields appear directly in the screen, and not in a popup screen, so the batch input process was very easy.
    But, I have been told that I don't have to use "Call transacion", I have to create a session, and the user will post the document by launching it in SM35. This way, even adding "No batch input" = 'X' in the options of "BDC_INSERT", the popup screen appears when running the session.
    So, is there any way of running the session in SM35 with the option "No batch input"? If it's not possible, which is the best option of dealing with these popup screens? I have been able to go from one dynpro to another, and to open that popup screen, but I can't fill the mandatory fields.
    I hope you understand my problem, please excuse my English.

    Hi ,
    Go to the T code Mass , put the object as KNA1 for customers .
    Execute the same and you will find all the option available for making mass changes .
    In case if your requirement does not meet here then you will have to go for a LSMW .
    Regards ,
    Dewang T

  • VSTS loadtest error while running Loadtest with Runsettings as No of test iterations , ERROR is : could not read result repository: unknown transaction id in results:

    Subject: VSTS loadtest error while running Loadtest with Runsettings as  No of test iterations ,  ERROR is :  could not read result repository: unknown transaction
    id in results:
    Hello All,
    I am facing the following error while running a loadtest (when i choose the scenario to be executed for No of test iterations). But the same loadtest with the Run duration for X minutes is running fine without any issues. 
    Any suggestions on the issue i am facing
    error is :
    could not read result repository: unknown transaction id in results:
    or
    could not read result repository: unknown request id in results: 
    Thanks
    Satish

    Hi Kotapati,
    >>Subject: VSTS loadtest error while running Loadtest with Runsettings as  No of test iterations ,  ERROR is :  could not read result repository: unknown transaction
    id in results:
    According to your description, you mean that when you run your load test using the Test Iterations way and then get the error message, am I right?
    If yes, please you try to close the VS, and then open this VS again. Then clean your load test project/solution and then re-build it, run your load test again check this issue again.
    In addition, I suggest you could try to create a new load test and then run it using Test Iterations way check if you get the issue for the specified load test or all load tests.
    If possible, I suggest you could share me simple load test for us so that we will further help you.
    You could upload your load test to OneDrive and then copy link here.
    Best Regards,
    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 delete Pending WIP Move Transactions with running status

    hello,
    can any one guide me, how to delete Pending WIP Move Transactions with running status
    thanks in advance
    sadiq

    Please refer to the following note:
    Note: 105647.1 - WIP and COST Frequently Used Troubleshooting Scripts
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=105647.1

  • Help with RFKPYL00_MASS program/payment run transaction

    program  RFKPYL00_MASS is for payment run transaction.
    transactional record is t_payh / i_payh   with structure PAYH.
    In this program i see the statement GET PAYH.
    I need to know from which table  the data is populated to this structure/t_payh especially name and the code how value is assigned.I don't see this here.
    Any help?Thanks.

    Hello,
    The following are data base tables for payment program
    DPAYC            Payment program - administrative records
    DPAYCHKH      Header: Accounting Using Creation of Payme
    DPAYCHKH1    Supplemental Assignments with Creation of
    DPAYCHKNUM  Check Number Lot: Header
    DPAYCHKNUMP:Check Number Lot: Single Numbers
    DPAYCHKP       Header: Accounting Using Creation of Payme
    DPAYCHKSET   Check: Settings for Check Creation for Hou
    DPAYG              Payment program - payment group
    DPAYH              Payment program - data for payment
    DPAYN              Sequential Number Assignment
    DPAYP              Payment program - data on paid item
    DPAYV         Payment program: Variants for payment medium
    DFKKCR      Repository For Checks
    DFKKCR2P       Check Repository: Additional Payees
    DFKKCRCASH  CR: Cashed Checks Not Yet Entered in Register
    DFKKCRCL  :   Table for Checks To Be Clarified
    DFKKCRCL_DOCS:  Table for Checks To Be Clarified
    DFKKCRDELD2   Check Register: Deleted Payment Media
    DFKKCRDOC2    Check Management: Partial Encashments
    Rgds
    Rajendra

  • Run emigall with a "mig.object" and "input file" as parameters in a job?

    Hi!
    I'm looking for a way to run emigall with a "mig.object" and "input file" as parameters in a job. We will use emigall in a data load step of a process. Is this possible? Is emaigall designed for this use?
    Thanks for any help and suggestions.
    Best regards.

    Hi!
    I'm looking for a way to run emigall with a "mig.object" and "input file" as parameters in a job. We will use emigall in a data load step of a process. Is this possible? Is emaigall designed for this use?
    Thanks for any help and suggestions.
    Best regards.

  • SNP Optimizer run ends with error: Error when determining Customizing data

    Hi All
    Can you help please what settings are missing: SNP optimizer run canceled with error "Error when determining Customizing data".
    Thanks
    Best Regards
    Andrey

    On integration tab of SNP optimizer profile,
    maintain 'regard as customer demand' for both dependent demands and distribution demands for fixed orders.
    By default it is 'regard as hard constraint' which should be changed.
    bye,
    Nitin Thatte

  • Running powershell script with customer parameters as a scheduled task

    tfl wrote:I guess I don't get why you are wanting thisMy regular tasks run,. and take data from data files. Want your batch to get processed today? Then add it to the queue file by 5:00 PM.. The task runs at 5:01 and works with whatever data is available. And if the file is empty, nothing happens each night. If you want to pass parameters like this, then why bother with a scheduled task? You'd need to remove the old one and add the new one each time. Which is extra work and complexity, especially if the task at hand is in any way 'dangerous' if run twice with the same data (ie you forget to change the task or remove it).I'm using a scheduled task to trigger the script, I'm using the "on event" trigger and then calling the script as an action. The method I was using before (calling via a bat file with the event Id hard coded into that"...

    Hi all,Having one of those hair pulling issues where something should work but for some reason its blindly refusing not to!I've created this script that is a bit of an extension to the email on eventID for task scheduled. It basically pulls out the various information from the actual event and fires off an email to our alerting team to investigate etc.That all works great, but what I'm now trying to do is get it to accept a custom parameter so the actual event ID its looking for doesn't have to be hard coded and can be passed to it via the commandline etc. I've got it all setup and work great but for the life of me can't get it to work correctly when set as a scheduled task. This is what the command basically looks like:powershell -executionpolicy bypass -command "& 'pathtofile\script.ps1' -evtid 8004"The latter part is the customer...
    This topic first appeared in the Spiceworks Community

  • MacPro with10.7.3. running a Python script in terminal I see a : "There is no more application memory available on your startup disk". Python uses 10G of 16G RAM and  VM =238G with 1TB free. Log: macx-swapon FAILED - 12. It only happens with larger inputs

    On my MacPro with10.7.3. while running a Python script in terminal, after a while, in several hours actually,  I see a system message for the Terminal app: "There is no more application memory available on your startup disk". Both RAM and VM appear to be fine at this point, i.e. Python uses only 10G of 16G RAM and  VM =238G with ~1TB free. Log reads: " macx-swapon FAILED - 12" multiple times. Furthermore, other terminal windows can be opened and commands run there. It only happens with larger inputs (text files), but with inputs that are about half the size everything runs smoothly.  So the issue must be the memory indeed, but where to look for the problem/fix?

    http://liulab.dfci.harvard.edu/MACS/README.html
    Have you tried with the --diag flag for diagnostics? Or changing verbose to 3 to show debug messages? Clearly one of three things is happening;
    1. You ARE running out of disk space, but once it errors out the space is reclaimed if the output file is deleted on error. When it fails, does your output have the content generated up to the point of termination?
    2. The application (Terminal) is allocated memory that you are exceeding
    3. The task within Terminal is allocated memory that you are exceeding
    I don't know anything about what this does but is there a way to maybe run a smaller test run of it? Something that takes 10 minutes? Just to see if it works.

Maybe you are looking for

  • Create draft incoming payments

    Hi all, i am having great difficulty in creating draft incoming payments through the DI, whatever I seem to do I cannot see the sort of properties that the help files say are there e.g. .cashsum .transferaccount etc. The only propoerties that are sho

  • Colour grade with Kuler RGB or Hex values

    Is there a grading/colour correction effect in PPRO which allows you to map midtones/shadows/hilights to an RGB or Hex value such as one acquired through Adobe Kuler? If not that easily, how could one use the swatches (RGB values) from Kuler as a pal

  • Bringing already existing html pages into iWeb, possible???

    My sister is a graphic designer who created some html pages for me using Dreamweaver & GoLive. I want to update the text, images, and tables in these pages, and thought I could use iWeb, but it only wants to let me use it's templates. Am I doing some

  • Kernal Panic after update to 10.4.6/Missing HD Space/Won't Startup from DVD

    Sorry to lump three problems together, but they may all be related. First - I was getting random Kernal Panics while at 10.4.5, so I attempted to update to 10.4.6. The computer wouldn't even come close to starting up. I got a screen full of Kernal Pa

  • HT201328 How to unlock iphone before you get a new sim card?

    I read the article on unlocking the iphone 4, and got permission from the carrier to unlock it.  But the instruction assume you already have a 2nd / diferent sim card.  How do you unlock the iphone before you get a new sim card?  I.e, as in unlocking