SET/GET Parameter not working? pls hlp

hi i am using a transaction variant on transaction LT01 - create transfer order. using the transaction variant i have greyed out 3 fields on the initial screen. for the greyed out fields i am passing the values using a SET PARAMETER. This is working fine for 2 fields but it does not work for the third field. any idea where i am going wrong?? the first field is warehouse number which is working fine. the second field is movement type and the third field is storage location. the first 2 works fine and the data gets populated in the greyed out field but the storage location field does not work. The field has a parameter id. pls help its urgent.
promise will reward points if its resolved

Hi american,
1. but the storage location field does not work.
In such cases, we have to follow another approach.
(CALL TRANSACTION USING BDCDATA
2. Just copy paste in new program.
  (it will populate the STORAGE LOCATION field)
3.
report abc.
data : bd like table of bdcdata with header line.
bd-program  = 'SAPML03T'.
bd-dynPRO = '0101'.
bd-dynbegin = 'X'.
append bd.
CLEAR BD.
bd-fnam = 'LTAK-BWLVS'.
bd-fval = 'AAA'.
append bd.
bd-fnam = 'LTAK-LGNUM'.
bd-fval = '015'.
append bd.
STORAGE LOCATION
bd-fnam = 'LTAP-WERKS'.
bd-fval = 'AAA'.
append bd.
CALL TRANSACTION 'LT01'
USING BD.
regards,
amit m.

Similar Messages

  • Event in Jmen not work pls hlp me

    hello all
    please help me in this problem
    my problem is that begin when i change from 1.3 to 1.5
    the problem is can not handle key event in jmen this mean i worte
    any application use jmenu in arabic locale when i use left arrow key i set key
    code to right ket code and if i use right key code use left arrow code
    this is in left version(1.3) every thing is ok but when i change to 1.5 this problen
    finded my short cut code is
    1-jmenu.addkeylistener(....)
    when key code == left
    set key code right
    else
    when key code == right
    set key code == left
    this code does not notify in 1.5
    thanx

    hello all
    please help me in this problem
    my problem is that begin when i change from 1.3 to 1.5
    the problem is can not handle key event in jmen this mean i worte
    any application use jmenu in arabic locale when i use left arrow key i set key
    code to right ket code and if i use right key code use left arrow code
    this is in left version(1.3) every thing is ok but when i change to 1.5 this problen
    finded my short cut code is
    1-jmenu.addkeylistener(....)
    when key code == left
    set key code right
    else
    when key code == right
    set key code == left
    this code does not notify in 1.5
    thanx

  • Set get parameter but free memory id is not working

    Hi All,
    I am using set get parameter  to transfer data from one module to another .
    But when i am trying to clear the memory id using Free memory id .
    it is not doing that.
    Does it work with import export.
    What method i should use to clear this memory id ..
    Thanks in advance
    ANit gautam

    Clears the memory:
    SET PARAMETER ID pid FIELD space.

  • SET GET Parameter working fine but no entery in table TPARA

    Hi Experts,
    I am using SET/GET Parameter.
    All is working fine but no entery is created in table TPARA for this ID beacuse of this i am not able to use DELETE FROM MEMORY ID 'ZID' .It always returns 4 since there is no entry in table TPARA.
    Why there is no entery created in TPARA and how can i delete this ID from SAP memory?
    Thanks,
    Anubhav

    >
    Anubhav Jain wrote:
    > Why there is no entery created in TPARA and how can i delete this ID from SAP memory?
    > Anubhav
    Entry in TPARA automatically gets created when you assign PID to data element.
    Check if ZID is assigned to any data element.
    To clear the content of PID from memory use SET PARAMETER statement with empty field.
    DATA lv_blank type char10 .
    CLEAR lv_blank.
    SET PARAMETER ID ZID FIELD lv_blank.

  • I just upgraded to the New OS on my Mac Book Pro and now my trackpad does not zoom in or out.  I looked at system settings on trackpad and it is set, but does not work How do I get it started?

    I just upgraded to the New OS on my Mac Book Pro and now my trackpad does not zoom in or out.  I looked at system settings on trackpad and it is set, but does not work How do I get it started?

    This is really unfortunate. I'm sorry that nothing works. I was going to mention holding down the power button and doing a force shutdown but you already did that. You might need to take it into the Apple store. I don't know if booting into safe mode would help. You would have to turn off the machine again, hit the start button and hold down the shift key after you hear the tone, but normally you would let go of the shift key when you see the apple logo and spining wheel. Maybe by holding down the shift key after you here the tone will cause the screen to come back on? The other option is to start up from the 'install disk' if your machine came with one. You would insert the disk, then shut down the computer, and hold down the C key right after hitting the start button.
    Here's the link for the safeboot
    http://support.apple.com/kb/HT1564?viewlocale=nl_nl

  • SUBMIT program VIA JOB and SET/GET parameter

    Hi All
    I need to pass the content of a variable from the program 'A' to program 'B'.
    Program A uses JOB_OPEN , SUBMIT program VIA JOB jobname NUMBER jobnumber AND return, JOB_CLOSE.
    I tried to use import/export memory but it didn't work. Then I am trying to use set/get parameters but it also did not work.
    Program A is going to run in any server and program B will run in the central instance (it is determined in the FM JOB_CLOSE, parameter target_server).
    Program does not have selection-screen.
    Is it possible use set/get parameter with submit via job?
    Could you please advise?
    Thanks in advance.
    João Gaia

    Here a simple code
    *Submit report as job(i.e. in background)
    data: jobname like tbtcjob-jobname value
                                 'TRANSFER DATA'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1 value 'X'.
    * Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    * Insert process into job
    SUBMIT zreport and return
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    * Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
    "            event_id             = starttime-eventid
    "            event_param          = starttime-eventparm
    "            event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
    "            laststrtdt           = starttime-laststrtdt
    "            laststrttm           = starttime-laststrttm
    "            prddays              = 1
    "            prdhours             = 0
    "            prdmins              = 0
    "            prdmonths            = 0
    "            prdweeks             = 0
    "            sdlstrtdt            = starttime-sdlstrtdt
    "            sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
    "            targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    Then... for import/export of a variable, you can use Import Memory and Export Memory function.
    Like this:
    REPORT A:
      IF NOT it_dlist_out IS INITIAL.
        EXPORT it_dlist_out TO MEMORY ID 'TEST1234'.
      ELSE.
    * Clearing memory
        FREE MEMORY ID 'TEST1234'.
      ENDIF.
    REPORT B:
    IMPORT it_dlist_out TO lt_dlist_out FROM MEMORY ID 'TEST1234'.
    Edited by: spantaleoni on Jan 11, 2011 3:21 PM
    Edited by: spantaleoni on Jan 11, 2011 3:23 PM

  • Why my apps are not transferring from PC to iPhone 5? When I connected to PC the icon shows when I select apps it show 'will install' but it never show on iPhone, I re installed iTunes, deleted all apps and downloaded again but its not working pls help.

    Why my apps are not transferring from PC to iPhone 5? When I connected to PC the icon shows when I select apps it show 'will install' but it never show on iPhone, I re installed iTunes, deleted all apps and downloaded again but its not working pls help.

    Next time an app update gets stuck try a reset. Press and hold both the home and power buttons for10-15 seconds till the Apple logo appears. Then release both buttons. Wait till your iPad starts on it's own. Try now. Also YouTube is still available. If you can't find it the the app store go to the bottom of the app store page and tap purchased. All your deleted apps will be listed and you can reinstall YouTube from there.

  • I have deployed one application containing youtube video but it is not working pls help

    I have deployed one application containing youtube video but it is not working pls help Application is build using struts2 and is deployed in oracle cloud, login page works fine but the success page is not displayed please help

    Hello,
    A wild guess, given the lack of details:
    I wonder whether it would violate the http://en.wikipedia.org/wiki/Same-origin_policy ?
    This is part of the security infrastructure.
    "Stealing" content to insert it anywhere else might also violate copyrights?
    Technically, does it at least work "on premises" onto WLS 10.3.6?
    Regards
    Patrick.

  • Keep getting "itunes not working"  when trying to sync my music to my iphone4

    keep getting "itunes not working"  when trying to sync my music to my iphone4

    Just a basic gateway computer from futureshop(bestbuy) I get that message about half way through the sync then it closes iTunes?

  • Why can't I get into photoshop or elements 10? I just get a not working message

    why can't I get into photoshop or elements 10. I just get a not working message

    I have the same problem, I sent my submission when 4.9 came out. No way to get in the direcotry, I am also listed anywhere else.
    I have a jazz podcast which is member of Association of Music Podcasting. It's podsafe and I have a growing number of listeners. Please Apple do something.
    my feed:
    http://feeds.feedburner.com/NightPassagePodcast
    Renato
    The Night Passage Podcast
    http://nightpassage.blogspot.com
    http://nightpassage.org

  • HT201412 my iphone ( 4 ) suddenly switched off...i press several time in power button but not working.pls advice me

    my iphone ( 4 ) suddenly switched off...i press several time in power button but not working.pls advice me

    hold the power button and home button for about a minute
    plug it into a computer with itunes on
    either way should work

  • Home Page setting option is not working. Home Page always reverts back to Modzilla Firefox Start Page.

    Home Page setting option is not working after saving a new or different home page on Firefox 19.0. When opening a new page (not tab) it always reverts back to the default "Modzilla Firefox Start Page" no matter what.

    That was it! There was a duplicate preference file in the profile folder. Followed the instructions under "Locked Preferences File" to
    6. Delete any prefs-n.js files where n is a number (e.g. prefs-2.js).
    Once I deleted it I was able to then save my preferred home page.
    Thanks!!

  • TS3406 Everytime is restart or update my iPhone 5s it stops making calls, i tried the air plain mode toggle & to reset thenetwork setting, it's not working !! What should i do ??

    Everytime is restart or update my iPhone 5s it stops making calls, i tried the air plain mode toggle & to reset thenetwork setting, it's not working !! What should i do ??

    If it has been officially unlocked, it will stay unlocked after an update:
    iPhone: About unlocking

  • CS3 asked serial number suddenly and the box-set serial number not work.

    CS3 asked serial number suddenly, and the box-set serial number not work.

    Elton Adobe which web browser are you utilizing?  Are you signed into http://www.adobe.com/ when you attempt to contact our support team directly at Contact Customer Care.
    I would recommend utilizing a different web browser and contacting our support team directly as suggested by KGlad in message #6.

  • Problem with SET/GET Parameter id

    Hi Folks,
    I have two programs.
    First is ztest_j which is as follows :
    DATA : mem TYPE char10 VALUE 'id1'.
    set parameter id 'PARA_XXX' field mem.
    Second  is ztest_j1 which is as follows :
    DATA : mem TYPE char10 .
    get PARAMETER ID 'PARA_XXX' FIELD mem.
    WRITE : / 'mem from get ', mem.
    When i execute both in sequence, I m not getting value of Parameter id in seconds program.
    What is wrong ? kindly suggest.
    Thanks in Advance.
    Regards,
    jitu188

    HI
    No Need to maintiain paramter ID in TPARA Table.
    I have created two program with same  Para ID = PARA_XXX its working fine .
    Please check following code =
    Program 1) => 
    DATA : mem TYPE char10 VALUE 'San'.
    set parameter id 'PARA_XXX' field mem.
    Press on Excute Button.
    Program 2) =>
    DATA : mem TYPE char10 .
    get PARAMETER ID 'PARA_XXX' FIELD mem.
    WRITE : / 'mem from get= ', mem.
    Press On Excute Button
    O/p => San
    Please check system settings with BASIS Team.

Maybe you are looking for

  • FM after the Payment run is executed

    Hello All, Please can anyone let me know, which event can be used for follow up activity after the payment run (FPY1) is executed. Regards Charvi Edited by: CharviS on Jan 23, 2012 8:39 AM

  • What's with the version number mess?

    So, 10gR3 = 10.3.0 11gR1 = 10.3.x, where x >=1 (so 10.3.1, 10.3.2, 10.3.3 are all considered "11gR1") Correct? And in the future, 11gR2 will probably be 10.4.x, only starting with with x=0 ? Also, does "Patch Set x" apply to WebLogic server or is it

  • Data transfer protocols

    Hi all ! I can't find the information about: 1) What data transfer protocols used in client-server SBO; 2) What is the recommended width of the channel; 3) What ports are used. could anybody help me? Thanks.

  • No wireless status bars - airport settings don't stick

    I just got a new Macbook Pro 17" and loaded Leopard. The wireless strength indicator shows no bars even though I have the box checked to "show status in menu bar". It also says airport is not configured, even though I have configured it. I can find m

  • Why won't pages 5.2.2 open SOME old msword docs? i'm using mac os 10.9.5.

    Why won't pages 5.2.2 open SOME old msword docs? i'm running mac os 10.9.5.