Can one method  import parameters can be added in another method parameters

hello all,
I am using a BADI   WORKORDER_UPDATE  in which In_update method is there with certain import parameters.
I want some of those parameters in another method named at_release of same BADI .
Those import parameters are not there in at_release. They are only in Import of in_update.
I have actually created an Implementation of the BADI.
I dont know how to do that please let me know.
Thanks in advance.

Hello Sonal
The solution for your problem is quite simple:
Define all required IMPORTING parameters of IN_UPDATE as instance attributes of your class, e.g.:
MT_HEADER    TYPE cobai_t_header.
Within method IN_UPDATE store the required IMPORTING parameters, e.g.:
METHOD IF_EX_WORKORDER_UPDATE~IN_UPDATE.
  me->mt_header = it_header.
ENDMETHOD.
Within method AT_RELEASE you can access the header data like this:
LOOP AT me->mt_header INTO ...
ENDLOOP.
Regards
  Uwe

Similar Messages

  • Iphoto has been importing photos for over an hour and i can't get it to stop. can't stop importing and can't shut down computer.

    iphoto has been importing photos for over n hour and I can't get it to stop.  Can't get out of iphoto and can't shut down computer.

    iPhoto works best when the source (Pictures folder) is on a different disk drive than the iPhoto Library is on.
    And you need to have enough free disk space to work with, the faster the better.
    Also, do not keep your media folders and those in your home folder on the same drive as the system, also another bottleneck.
    Until or unless you have everything on 1400MB/sec SSD PCIe controller, you want
    System boot drive
    Media and data folders and such
    scratch
    backup
    etc
    I put iPhoto on an SSD off an SSD PCIe Sonnet Tempo card
    If you stop- it, you will need to trash the Library it was creating.
    Reading and writing to/from the same hard drive will be slow.
    You don't mention which Mac, or how large you are trying to import etc
    Also the support page and link to the iPhoto Commuinity is off this page:
    http://www.apple.com/support/iphoto
    Take a look in Activity Monitor. See what the % being used for iPhoto, how many pageouts, how much free space on the various disk drives, and how much RAM do you have installed?
    http://support.apple.com/kb/HT1342

  • Can one display show a window displaying part of another?

    I am running OS 10.8.3 on a Mac Pro with the ATI HD5870 graphics card.
    I want to run the following combination of screens:
    Output 1: 1080p (1920 x 1080)
    Output 2: 720p (1280 x 720)
    such that Output 2 shows the centre 1280x720 of the image displayed on Output 1
    This is apparently generally referred to as a "Viewport" and was a feature of "Twinview" on nvidia graphics cards running Windows XP. Here you had the option of panning the smaller window around the larger one, or locking it into an arbitrary location. You can still do it, I believe, with nvidia Quadra workstation cards... but I don't have any of those.
    In other words, I want Output 2 to replicate only a window on to the centre of the screen displayed on Output 1. I don't need to move the window about, but it needs to be at or near the centre (not at a corner).
    In my case I am capturing video from an application running in a 1080p window. It has a lot of screen furniture that I need to see, but not capture, round the edge, and I simply want to grab the middle 1280x720p of the screen - this also gives me a kind of viewfinder in which I can see elements that are outside the capture area (eg to avoid them).
    Can this be done on a Macintosh? If so, how? By all means specify additional hardware or software. Because of the fact that I am capturing the 720p output to video, however, the latency must be minimal.
    Thanks in advance!
    --Richard E

    No, not on OS X. The best you can do is mirror the displays which would result in display 1 (1920 x 1080) downsizing to the same size as display 2 (1280 x 720).

  • Can one deauthorize FCE HD 3.5 so that another user can install?

    Hi,
    Many thanks in advance for your attention.
    1. Is there a limited number of installs one is permitted with FCE? How do I deauthorize 3.5 in my computer so that it can be installed anew on another's computer? Put another way, how do I transfer the 3.5 Serial Number over to someone else?
    2. I have FCE 4 now. Can I install that over my FCE HD 3.5 imbedded in computer now? Or should I uninstall FCE 3.5 first? From what I read, no easy way to uninstall 3.5
    3. Like in iTunes, if one gets a new computer, you can deauthorize your old one, and reinstall your iTunes purchases anew in your new computer.

    1. The FCE license allows you to install on one desktop and one laptop as long as you own both, are the user of both, and only use it on one machine at at time. This is somewhat on the honor system. There is no formal deauthorization like there is in iTunes. You can transfer the 3.5 license to someone else as long as you don't keep 3.5 on your system and you don't use 3.5 as the basis for upgrading to FCE4 (i.e. the $99 upgrade as opposed to the $299 full license).
    2. Yes, you can install FCE4 over FCE 3.5. If you really want to uninstall FCE3.5 first, here are the instructions.
    But be honest here. If you purchased the FCE 4 upgrade (as opposed to the full version) for the purpose of upgrading from FCE 3.5 then you are legally not allowed to transfer the 3.5 version to someone else, or even to another computer that you own. You will need the 3.5 serial number in order to install 4.0
    3. FCE is not like iTunes.

  • HT201250 How can one Time Capsule be backed up backup to another?

    My Macbook pro with 160GB hard drive is almost full, and so is is my 1TB time capsule (on which I backup for 5 macs in my family). I have just bought a 3TB Time Capsule now for all backups. My question: how can I use the old time capsule for my Macbook data to free up space on my hard drive and backup my data to the new Time Capsule?

    leejpepper wrote:
    how can I use the old time capsule for my Macbook data to free up space on my hard drive
    Usually not a good idea.  See Time Machine - Frequently Asked Question #20.
    and backup my data to the new Time Capsule?
    Just start fresh.  You can always view and restore from the old ones via the Browse Other Backup Disks option, per #17 in the FAQ.

  • HT5661 can one apple ID blacklist, block an iPhone with another apple ID?

    i bought the iPhone from my friend, reset it and activated it with my apple id that is with iOS 6. i want to upgrade to iOS 7.1 is there any possibility that he can report it lost or block it remotely if it is still in his iCloud account?

    O yes, and it is really stupid to continue keeping his icloud account on the phone. But it seems to me you said you changed that and there is your Appleid when you go to setting and icloud. If it is yours you are safe to update.

  • Can one combine static and instance methods?

    Hi,
    Can one define a method so that is can be used as both a static or an instance method?
    Basically I'm trying to simplify my class to so that I can call a method either statically with parameters or instantiated using it's own attributes.
    In other words, I'm trying to accomplish both of these with one method:
    zcl_myclass=>do_something_static( im_key = '1234' ).
    lv_myclass_instance->do_something( ).   " key in private attributes
    Why would I want to do that?
    I would like to avoid instantiation in some cases for performance reasons and would like to keep it simple by having only one method to do basically the same thing.
    Any input or alternative suggestions welcome.
    Cheers,
    Mike

    Ok, I may be reaching here a bit, I know, but maybe this may give you some ideas.  After creating the object, pass it back to the method call.
    report zrich_0001.
    *       CLASS lcl_app DEFINITION
    class lcl_app definition.
      public section.
        data: a_attribute type string.
        class-methods: do_something importing im_str type string
                                   im_ref type ref to lcl_app optional.
    endclass.
    *       CLASS lcl_app IMPLEMENTATION
    class lcl_app implementation.
      method do_something.
        if not im_ref is initial.
           im_ref->a_attribute = im_str.
          write:/ 'Do_Something - ',  im_ref->a_attribute.
        else.
          write:/ 'Do_Something - ',  im_str.
        endif.
      endmethod.
    endclass.
    data: o_app type ref to lcl_app.
    start-of-selection.
      create object o_app.
      call method o_app->do_something(
               exporting
                   im_str = 'Instansiated'
                   im_ref = o_app ).
      call method lcl_app=>do_something(
               exporting
                   im_str = 'Static' ).
    Regards,
    Rich Heilman

  • In a call method, I can make an IMPORT?

    In a call method, I can make an IMPORT?
    thanks!!

    You can import, export parameters using call method.
    check out this example.
    DATA : w_num1 type i value 5,
           w_num3 type i value 7,
           w_num4 type i.
    CLASS c1 DEFINITION.
    PUBLIC SECTION.
      METHODS : m1
                   IMPORTING num1 TYPE i
                   EXPORTING num4 TYPE i
                   CHANGING  num3 type i.
    ENDCLASS.
    CLASS c1 IMPLEMENTATION.
    method m1.
      num3 = num3 * 2.
      num4 = ( num1 + num3 ) ** 2.
    endmethod.
    ENDCLASS.
    START-OF-SELECTION.
    DATA : oref1 TYPE REF TO c1 .
    CREATE OBJECT : oref1.
    CALL METHOD oref1->m1 EXPORTING num1 = w_num1
                          IMPORTING num4 = w_num4
                          CHANGING  num3 = w_num3.
    Write:/5 w_num1 , w_num3 , w_num4 .
    This might help you.
    Regards,
    Sailaja.

  • How do I transfer my play lists from one pc to another? I can't find import on the new version.

    How do I transfer my play lists from one pc to another? I can't find import on the new version.

    Holtey wrote:
    Not an option.
    Onlly have turn on home sharing or get artwork
    Do ou have the iTunes menus showing across the top of the iTunes window?
    ctrl B

  • How does one pass import parameters to a report within a method?

    Hello all,
    Well how does one  pass import parameters to a report which is within a method ...end method.
    for example :
    method 123
    SUBMIT reportname using selection '1000'
    endmethod .
    Here we need to pass values into the selection screen and run the report for those values.
    The values are say 'ABC'   (  tablename "DEF" and field name "HIJ" ).
    I hope the question is clear, awaiting your response 
    Thanks and Regards,
    Sandeep.

    Go to SE24
    Parameters: Give the Parameter name, Typing method is "Type" is the domain type that u are selecting, say for e.g :  Parameter is "P_CONT" , its associated type "CHAR32" etc
    For Select Options:  Parameter name say "S_CUST", Type"importing". For this you need to give an associated type which must be created as "TABLE TYPE " in SE11. That table type needs to have a "LINE TYPE" .
    LINE TYPE is a Structure created with components "SIGN, OPTION, LOW & HIGH" for select-Options.
    NOTE: for a Table type related to Customer data fields "say KUNNR", the line type created must have the Component Type and data Type corresponding to the Data Element associated with "KUNNR" ;i.e: "CHAR" etc.
    See if this is clear to you or revert back in case of any Confusion.

  • Suddenly I can't open one document in inumbers: "The sheet can't be imported. The document was created with an unsupported application version."

    Yesterday I worked on a inumbers document on my mac mini. No problem. 3 hours later I would open the same document on my ipad. It told me that there were 2 versions and I had to choose one (surprisingly bouth had the same time/date). Since then I can't open this document anymore (regardless if iphone, ipad, mac mini): "The sheet can't be imported. The document was created with an unsupported application version." I worked on this document more than 1 year only on my ipad, iphone, imac... how can i get it worked or back? Other documents are still working properly.
    Thanks for any hint.

    The first part of the warning message was in german, so it's probably not translated as it really appears in englisch:
    Massage on IPad and IPhone: "Tabelle kann nicht importiert werden. The document was created with an unsupported application version.
    Message on mac mini: ""Verbrauch.numbers" kann nicht geöffnet werden"
    What changed since is also, that the mini privew for this document no more exist; it shows just the inumbers icon in the sheet. The other documents around this one appears with preview and can be open, e.g. are working fine.

  • My desktop,model s5-1204, came without hdmi port. can one be added

    My desktop,model s5-1204, came without hdmi port. can one be added.
    it has a dvi

    Hi,
    Based on its specs, it has:
    Expansion Slots:
    1 PCI Express x16 (Gen2.0)
    3 PCI Express x1 (Gen2.0)
    1 PCI Express Mini Card x1
    The option: you can add a video card to the PCIe x16 and use a card which has HDMI port. It only has 220W PSU therefore you have to update the PSU too.
      Please also read the following link:
         http://answers.yahoo.com/question/index?qid=20120510114931AALOCHU
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • CrystalReportView control in VS2008 : Does the parameters can be shown on one form

    Hi SAP expert :
        I develop a winform program to show crystal report by CrystalReportView control in VS2008. When refresh report , parameters shown in forms one by one. Does the parameters can be shown on one form ? Thanks.
    Message was edited by: Ludek Uher

    You can test Don's idea by downloading an eval of CR 2008 (v. 12.x) from here:
    https://www.sap.com/campaign/2010_CURR_SAP_Crystal_Reports_2008/WTY_2010_CURR_SAP_Crystal_Reports.epx
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Can one import their iTunes Library to a 7th Generation NANO on a laptop using OS 10.6.5?

    Can one import their iTunes library onto a 7th Generation NANO on OSX 10.6.5?

    The seventh generation iPod nano requires Mac OS X 10.6.8 and iTunes 10.7 or newer to sync; both of these are free updates for computers running Mac OS X 10.6.
    (76207)

  • My computer died and I had to buy another one.  Now I can't sync my ipod classic.  What is the deal with this?  I added songs about three months ago and it was fine.  Now it won't sync.  It says it has a duplicate file.

    My computer died and I had to buy another one.  Now I can't sync my ipod classic.  What is the deal with this?  I added songs about three months ago and it was fine.  Now it won't sync.  It says it can't sync because there is a duplicate file.

    There are server problems right now with iMessage effecting some users.  See http://www.apple.com/support/icloud/systemstatus/.

Maybe you are looking for

  • Change parameter for S812

    Hi Experts I want to change the parameters for variances. Which is as Belows. But confused what new value should I put. My requirement is as belows. Delivery Schedule Variance           >>>>>>>>>>     Current >>>>>>>                                  

  • TDS Certificate Not printed

    Dear All When I am printing the TDS certficate I am getting the following error: No data selected for printing Message no. 8I000 Thanks & Regards Kanwaljit

  • Hinges+Display problem

    Hi all (from Australia) I've been using the MBA since its launch and had the classic hinges problem. I went to an Apple Store then though they quoted me AUD900 to fix... So I used it for a little over a year until one day, I accidentally wore the bro

  • Problem working on Linux

    Hi. Sorry i don't know any other place i could post this to get the attention of a couple flash developers... is there anyone here also developing on Linux? i have this problem http://forums.adobe.com/thread/1055012 and i was wondering if anyone else

  • Complex Query -Parent/Child

    Dear All, I have a strange requirement of generating report from a table, which has 2 columns trace element and trace reference where the relationship between trace reference and trace element is 1-Many. i.e each trace reference may have may childs a