Which package for saving a variant of transaction SM30?

Hello,
I use SHD0 to create a variant of the transaction SM30. After saving it, I got the dialog to select the package. Z* packages are not allowed, only SAP Packages. Which is the correct package for saving the variant?
Best regards,
Alexander

I create them in SE93.
Z* Transaction code.  Transaction with variant.
The transaction is  SM30. 
The default values are:
update X or blank for non-edit
VIEWNAME:  **
where ** is the name of the table you are maintaining.
Michelle

Similar Messages

  • Tables used in SHD0 for saving screen variants?

    Hi all,
    Which are the tables are used in SHD0 , which saves details like transcation varinat, screen variant, groups etc?
    Reply urgent.
    Thaks,
    Madhura Nadgauda

    hi,
    tables used are:
    standard variant : shdtv,
    transaction variant : shdtv
    screen variant : SHDSVCI
    other tables are: SHDSTUSR, BDCMH, BDCLM,

  • Access seq created in which package i saved

    HIi all,
    I created one access sequnce for tax in which package / local object shall i save pls help me in this regard. i am working in development client.
    Babu.

    Hi,
    if you don't want to transport it to a different client (Quality or Production) then you can directly save it as a local package (Package -  $TMP)
    In that case system won't ask for a transport request number.
    If you want to transport it, then please ask your ABAP person or Technical person on transportable packages they have. Get it form him, and enter it in the pop up under package ID.
    Then it will ask you for a new transport request number. where you can release and transport later.
    Best regards,
    Anupa

  • Find exact package for saving the workbech request for std SAP object

    Hello friends I have edited a std SAP prog for printing the import PO(got access key from market place).After editing while creating transport request I am not able to find the package to which it should be saved.now the problem is that How to move that program to our quality server.
    the program is
    /1BCDWB/LSF00000063TOP

    Hi achal,
    are you sure you modified a standard SAP object. /1BCDWB/ prefix is common with all quick view reports - they are local and user-specific. You can convert a quickview to query to report. Using a modification key you may add it to the standard - choose a package as you prefer. But better copy the generated query report to customer name space - because it never was and never will be SAP standard. If it is in customer name space, release changes are no problem at all.
    Regards,
    Clemens

  • Which packages for (IBM X31) laptop?

    Hi guys,
    i have arch installed on my ibm x31 laptop and need to install laptop-related features. i have read some entries on the wiki but it is confusing as some of them seem to recommend different utilities for similar jobs.
    i have found out about acpid, pm-utils, cpufrequtils, speedstep-ich, powernowd, laptop-mode-tools, lapsus, nvram, tpb, tphdisk...oh my god!
    i mean, who still has a clue what is needed and how to configure it?
    which are obsolete packages?
    what should i install in my case? please also consider that i have a thinkpad laptop when you give your recommendations.
    thanks a lot, i know you will help

    I run arch on a T21 thinkpad which is a tad slower and older than your x31 but the keyboard layout looks almost the same.  I just use acpi and the acpid daemon is launched by hal in my case.  For frequency scaling I use cpudyn and not powernowd as a daemon. Check this post: http://bbs.archlinux.org/viewtopic.php?id=39400
    And this post is pretty much what I do for the thinkpad Fn+ keys to work: http://bbs.archlinux.org/viewtopic.php?id=45710
    He also metions about nvram which never did a thing for me either.
    I tried out tpb but it didn't do anything special that I could see or use.
    I don't use laptop-mode-tools on my thinkpad.  Just never seemed to need it.  Your mileage may vary as thinkpads seem to work differently for everyone.  Just do a forum search on thinkpads and you'll see what I mean.
    This site: http://www.thinkwiki.org/wiki/ThinkWiki  may give you some general info as well--if you haven't already seen it.

  • Reuse of existing packages for saving data?

    Hi,
    I'm pretty new to APEX so I lack the in-depth know-how how to do certain tasks.
    We want to build a simple management application for a customer and reuse as much code as possible to keep the price low. For example, there are procedures in packages which do certain business logic and we don't want (and can't do this) to copy and/or modify all this stuff to fit in APEX. This packages accept some IN-parameters and have some OUT-parameters which indicate if the action was successfull or not.
    So lets say we have a (dummy-)procedure
    pkg_handleData.p_saveData
    with following parameters
    - inParam1 IN varchar2,
    - outParam1 OUT pls_integer
    We want to call this packageprocedure after submitting a form (inParam1 => content of a specific formfield) and we want to define our next step after looking at outParam1.
    Is there a way to handle this with APEX - and if yes, how? Is there a tutorial out there which describes "advanced" stuff like this? All I found were basic tutorials for people who just want to view/alter data of a table or forms which rely on procedures (but not packageprocedures).
    (After working with APEX for some few days now I have to say APEX is somewhat mighty, I really doubt this isn't possible. :))

    You can use conditional branching (PL/SQL Function Returning a boolean), but you have to 'wrap' your existing procedures into a function to use that.
    Example:
    Funtion p_savedata( inparam ) returning boolean
    is
    p_out pls_integer;
    begin
    pkg_handledata( inparam, p_out);
    return (p_out > 0);
    end;

  • Data of table control not saved in variant of report

    Hi ppl,
    I have created a report program with some selection parameters.
    Also, I have included a table control on the selection screen (using subscreen).
    The report works perfectly.
    But, when I press the SAVE button on the selection screen to save the data on the selection screen into a variant, the variant only stores the values of the parameters and select-options present on the screen. It is not capturing the data in the table control.
    Please let me know if I need to do some additional coding for this.
    Thanks,
    David.

    Hi David,
    I too struggled a lot to find the solution ....atlast got it....It possible by exporting and importing the table control values to Database Index.
    1. AT SELECTION SCREEN OUTPUT event  triggers when you SAVE and GET the variant.
    2. So write the logic in AT SELECTION-SCREEN OUTPUT event.
    CONSTANTS: c_vari TYPE char30 VALUE
                             '(SAPLSVAR)RSVAR-VARIANT'.
      FIELD-SYMBOLS: <lfs_vari> TYPE ANY.
      ASSIGN: (c_vari) TO <lfs_vari>.
      IF sy-subrc = 0.
        IF <lfs_vari> IS NOT INITIAL.
          IF ok_code = 'SPOS'.
            EXPORT gt_chars[] TO DATABASE vari(tc) ID <lfs_vari>.
          ELSEIF ok_code = space.
            IMPORT gt_chars[] FROM DATABASE vari(tc) ID <lfs_vari>.
          ENDIF.
        ENDIF.
      ENDIF.
    In the above logic if OK_CODE is 'SPOS', that is for saving the variant with the name <lfs_vari>.
    Similarly if the OK_CODE is other than, 'GET'....that is for retrieving the variant. But in case of getting the variant OK_CODE is not filled with 'GET', but variant will be filled. We should take variant filling as base and do as done above.
    It worked for me.....

  • User Exit OR Badi for MK01 transaction (used for saving vendor amster data)

    Hi All,
    I have a requirement where I have to call my workflow, when we create the Vendor using my custom transaction (ZMK01, which is a copy of standard transaction MK01).
    For Workflow triggering I am using FM 'SAP_WAPI_CREATE_EVENT' in the user exit  'EXIT_SAPMF02K_001' but this is only for checking the data on saving Vendor Master.
    So I want to use FM 'SAP_WAPI_CREATE_EVENT' at right place. For that , I need User-Exit or BADI which is used for saving vendor master data.
    Could anyone please help me to find out the user exit or BADI for save event of vendor master data using transaction MK01.
    Looking forward to your advise and thanks in advance.
    Best Regards,
    Mamta

    Hi ,
    I forgot to activiate the project linked with User exit 'EXIT_SAPMF02K_001' .
    so problem is solved now
    Thanks,
    Mamta

  • Which packages are required for make?

    I'd like to compile athcool and grabbed the source, but for the life of me, can't figure out which packages are needed for make.

    Thanks for the suggestion.  I got errors:
    # pacman -S base-devel
    base-devel package not found, searching for group...
    :: group base-devel (including ignored packages):
    diffutils ed gcc libtool m4 patch pkgconfig
    :: Install whole content? [Y/n] y
    :: group base-devel (including ignored packages):
    autoconf automake make
    :: Install whole content? [Y/n] y
    :: group base-devel (including ignored packages):
    autoconf automake bin86 bison ed fakeroot flex gcc libtool m4
    make patch pkgconfig
    :: Install whole content? [Y/n] y
    warning: diffutils-2.8.1-5 is up to date -- reinstalling
    warning: gcc-4.3.2-2 is up to date -- reinstalling
    warning: pkgconfig-0.23-1 is up to date -- reinstalling
    warning: automake-1.10.2-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (14): diffutils-2.8.1-5 ed-1.1-2 gcc-4.3.2-2 libtool-2.2.6a-1
    m4-1.4.12-1 patch-2.5.9-1 pkgconfig-0.23-1 autoconf-2.63-1
    automake-1.10.2-1 make-3.81-3 bin86-0.16.17-3 bison-2.4.1-1
    fakeroot-1.12.1-1 flex-2.5.35-1
    Total Download Size: 1.59 MB
    Total Installed Size: 78.50 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core-testing...
    diffutils-2.8.1-5-i686 191.5K 65.8K/s 00:00:03 [#####################] 100%
    ed-1.1-2-i686 45.7K 63.6K/s 00:00:01 [#####################] 100%
    libtool-2.2.6a-1-i686 578.7K 121.0K/s 00:00:05 [#####################] 100%
    patch-2.5.9-1-i686 54.3K 67.9K/s 00:00:01 [#####################] 100%
    pkgconfig-0.23-1-i686 49.9K 62.7K/s 00:00:01 [#####################] 100%
    :: Retrieving packages from core...
    bin86-0.16.17-3-i686 54.5K 210.0K/s 00:00:00 [#####################] 100%
    bison-2.4.1-1-i686 427.0K 52.3K/s 00:00:08 [#####################] 100%
    fakeroot-1.12.1-1-i686 52.7K 99.6K/s 00:00:01 [#####################] 100%
    flex-2.5.35-1-i686 176.0K 57.1K/s 00:00:03 [#####################] 100%
    checking package integrity...
    (14/14) checking for file conflicts [#####################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    /usr/info/dir exists in both 'diffutils' and 'make'
    make: /usr/info/dir exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by graysky (2009-02-17 01:44:04)

  • I'm applying for jobs online through my iPad using the safari app. For some reason when I try to attach my resume, which I have saved in Pages, it does not give me an option to go to Pages. It only gives my an option to choose a file from photos. Does it

    I’m applying for jobs online through my iPad using the safari app. For
    some reason when I try to attach my resume, which I have saved in
    Pages, it does not give me an option to go to Pages. It only gives
    my an option to choose a file from photos. Does it not have the
    capability to choose a location other than photos??

    No. Safari does not have the option to attach files for uploading other than photos.
    Look at iCab Mobile in the App Store. There are other browsers that may do this, but I'm pretty sure that iCab will fill the need.
    iCab Mobile (Web Browser) on the App Store on iTunes
    take a look at this.
    http://www.icab-mobile.de/faq.html

  • Which package of dreamweaver should I buy for my local scout association? Personal? smallbusiness? It's only user will be me

    Hello,
    I want to create a webpage for my local scout association, and I would like to use dreamweaver to do it.
    It's not something I will get paid for.
    But I can not figure out which package I need to buy.
    Because it is only me who will be using it, and therefore I thought it should be a personal license.
    But I am also a student at university college of northern, therefore I thought it should be a Student license.
    but maybe I'm wrong and it should be a license for a small business?
    Can anybody please explains to me which package I need to buy?
    In advance thank you for your time :-)
    //Lars

    if you can qualify as a student, getting a student license is less expensive (but more of a hassle to obtain because of documentation needed).
    otherwise, you would get a personal/individual license.

  • I think i got ripped off by this verizon store , I got the 4 line $140.00 edge plan, which I had to pay for the phone in monthly payment, i did the math it was 268.00 total..  At check out this guy charge me $50.00 care package for each phone and sim card

    I think i got ripped off by this verizon store , I got the 4 line $140.00 edge plan, which I had to pay for the phone in monthly payment, i did the math it was 268.00 total..  At check out this guy charge me $50.00 care package for each phone and sim card which was $10.00 , $25.00 set up with TCP and he said the rest was tax.  I had to pay $474.36.. my brother went to costco and did the same verizon deal he didn't have to pay anything...

    Welcome to this forum.
    This is a customer to customer forum only, where forum members, who are only BT customers, can help each other with BT Retail products and services.
    Anything you post here does not go to BT. Although the forum is moderated by BT, not all posts are read.
    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • [SOLVED] pacman: which package should I install for a given file?

    Hi there!
    I'm still trying to learn arch's essentials. A question coming up frequently is:
    Say I know I need file /usr/bin/zipinfo. How do I find out which package it's delivered in? The only thing remotely similar in the wiki is
    pacman -Qo /path/to/a/file
    but this only works for already installed packages. So what next?
    Best wishes,
    Rufus
    P.S.: google told me the package is called unzip so that's not the problem. Still, there has to be some way to get this information from the command line.
    Last edited by RufusD (2010-04-24 15:30:31)

    brilliant, thanks! I could have figured it's not a standard pacman function (since the situation is similar with debian's apt-get).
    Maybe this is worth a mention on pacman's wiki page. This is the first time arch's fabulous wiki let me down
    Last edited by RufusD (2010-04-24 15:32:35)

  • User exits for saving in IQ02 transaction.

    Hi All,
    I have the following problem: The end user is unable to save few fields (Stock type, plant, storage location) data in IQ02 transaction.
    1. Enter IQ02 transaction, give the material and serial number.
    2. In SerData tab, give the stock type, plant and storage location
    3. Now when I am trying to save, the following error is prompted: "System status ESTO is active (EQU 30055392)"
    4. After this when I press continue button, the data is not saved.
    I feel that there could be some problem in the user exits for this transaction. Please tell me the user exits for saving in this transaction.
    Thanks,
    Vishal.

    Hi Vishal,
    Please find list of userexit for Tcode IQ02 as below,
    Exit Name           Description
    IEQM0001            Add. checks for equip. installation at functional locations
    IEQM0002            Additional checks for definition of equipment hierarchies
    IEQM0003            Additional checks before equipment update
    IEQM0004            Object is allowed for contract partner (Order->MaintCont.)
    IEQM0005            Object allowed for SD contract (MaintContract->MaintCont.)
    IEQM0006            Object allowed for SD contract (Maintain maintenance cont.)
    IEQM0007            Check/change manufacturer field in equipment master.

  • Which are the latest business packages for ESS and Mss?

    Hi all,
    Which are the latest business packages for ESS and Mss?
    Regards
    Rajendra

    Hi rajendra
    It's all about R3 version, which R3 version u used?
    the following BP are available for ESS/MSS on service.sap.com u need sid-password to download it.
    <b>R3 4.6C/4.7 Enterprise</b>
    ESS: - Business Package for Employee Self-Service 4.6C - 4.7 50.4
    https://websmp102.sap-ag.de/~swdc/011000358700005104712004D/BPESS46C504_0-20000613.ZIP?_ACTION=DL_DIRECT
    MSS: - Business Package for MSS 60.1
    https://smpdl.sap-ag.de/~swdc/012002523100003529452006D/BPMSS601_19-20001489.zip?_ACTION=DL_DIRECT
    <b>ERP2004: - (R3 ECC 5.0)</b>
    ESS:- BP for Employee Self-Service (mySAP ERP 2004) 60.2
    https://smpdl.sap-ag.de/~swdc/002007974700000167412004D/BPERP4ESS0_0-10003146.zip?_ACTION=DL_DIRECT
    MSS:- BP for Manager Self-Service (mySAP ERP 2004) 60.1.1
    https://smpdl.sap-ag.de/~swdc/002007974700000246072005D/BP_ERP4MSS0_2-10002991.zip?_ACTION=DL_DIRECT
    <b>ERP2005 : - (R3 ECC 6.0)</b>
    ESS: - BP ERP05 ESS 1.0 Support Package 03 ( Up to SP5 available)
    https://smpdl.sap-ag.de/~swdc/012002523100000076042006D/BPERP5ESS03_0-10003288.sca?_ACTION=DL_DIRECT
    MSS: - BP ERP05 MSS 1.0 Support Package 03 ( Up to SP5 available)
    https://smpdl.sap-ag.de/~swdc/012002523100000076062006D/BPERP5MSS03_0-10003289.sca?_ACTION=DL_DIRECT

Maybe you are looking for

  • Indicator of changing Input Source

    Hi all, today I noticed strange thing. I'm used to have 2 input sources and change them using Cmd+Alt+Space, but I do'nt like to show the Input menu in menu bar. In earlier versions of OS X there was an indication shown temporarily in the centre of d

  • HTML emails with attachments

    When I compose an html email (ie: using the float left alignment on a picture) and add an attachment(word doc), the formatting is lost on the recipient's end. In fact usually, the body of the message is blank and the pictures, html file, and original

  • TS3694 i keep getting code 1015 how can i get rid of it on my 8g

    hi i keep getting erro 1015 on my iphone 3g how can i get ride of it

  • Aperture 3.3 Bug: Syncing Stacks Syncs All Versions, Not Just Pick

    Aperture 3.3 has a pretty significant bug.  Syncing to iOS devices results in all versions in a Stack to be synced to the device, not just the Picks.  This is a HUGE problem as two things happen: 1) The amount of space consumed by the versions can be

  • Where are my cdroms?

    Ie just installed some new packages and now when I try to mount a cdrom mount /mnt/cdrom it says: mount: special device /dev/cdroms/cdrom0 does not exist When I ls /dev/cdroms I get a blank listing, so indeed the devices aren there. How do I get them