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,

Similar Messages

  • 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

  • Using NAST info for selection screen design

    Hi
    I am doing customization for RFQ printing ( TCODE ME9A)
    I want to know can I get the same selection screen as of ME9A using NAST info for my z driver program.
    Which function module can be used?
    Kindly provide sample code
    Regards
    Harshada

    Hi Piyush,
    Add the below code in your program.
    *Note: you have to take two parameters for files.
    If you select check box then p_pc parameter is visible.
    if you dont select check box then p_app parameter is visible.
    PARAMETERS: p_chk1 AS CHECKBOX USER-COMMAND rusr.
    SELECTION-SCREEN: BEGIN OF BLOCK blk1 WITH FRAME.
    PARAMETERS: p_pc  LIKE rlgrap-filename MODIF ID abc.
    PARAMETERS: p_app LIKE rlgrap-filename MODIF ID def.
    SELECTION-SCREEN: END OF BLOCK blk1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'ABC'.
          CLEAR: p_pc, p_app.
          IF p_chk1 = 'X'.
            screen-active = 1.
          ELSE.
            screen-active = 0.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
        IF screen-group1 = 'DEF'.
          CLEAR: p_pc, p_app.
          IF p_chk1 <> 'X'.
            screen-active = 1.
          ELSE.
            screen-active = 0.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_app.
      PERFORM get_fname_app.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_pc.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = p_pc.
    *&      Form  get_fname_app
          text
    FORM get_fname_app.
      DATA: c_fnh_mask TYPE dxfields-filemask VALUE '.',
      search_dir TYPE dxfields-longpath VALUE '/sapglobal/users',
      file_path LIKE dxfields-longpath.
      CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'
        EXPORTING
          i_location_flag = 'A'
          i_server        = ' '
          i_path          = search_dir
          filemask        = c_fnh_mask
          fileoperation   = 'R'
        IMPORTING
          o_path          = file_path
        EXCEPTIONS
          rfc_error       = 1
          OTHERS          = 2.
      IF sy-subrc EQ 0.
        p_app = file_path.
      ENDIF.
    ENDFORM.                    "get_fname_app

  • Location/directory used by JRE, for saving the temporary Internet files

    Hello sir,
    I am working on a project( in JavaFX ) which takes the URL of a streaming FLV video( eg: http://sun.edgeboss.net/download/sun/media/1460825906/1460825906_11810873001_09c01923-00.flv ) as input and plays it in Media Player component.
    I have successfully played the streaming video, by taking the aid of sample project, Media Box( http://javafx.com/samples/MediaBox/ ).
    Now I am interested in knowing the location/directory, where these temporary Internet files will be downloaded to. Please let me know, the location/directory used by JRE( on both Windows and Linux ) for saving the temporary Internet files. Also let me know, if there is any possibility of changing that location/directory.
    Thanks for any help, in advance.
    Edited by: prabhakar9885 on Aug 22, 2010 2:29 AM

    You should avoid posting the same message multiple times...
    By definition, streaming is supposed to play the received movie data on the fly, without intermediary file. Now, it depends on implementation, if that's real streaming, etc., so in practice there might be a temp file, or not.
    But this temp location will be, obviously, highly dependent on the current system (even between WinXP and Win7, for example). You can find the answer experimentally, eg. on Windows by using Sysinternals' Process Monitor application (did that to find out where Storage files go), but it is brittle.
    I doubt there is (an official) way to know that from within the JavaFX application...

  • Fill table using different statements for each field (newbie question)

    Hi all, I'm about to fill table table1 (field1, field2, etc.) using different statements (and maybe variables) for each field.
    My statements are too different to combine them into one query, but my example is simple:
    statement 1:
    SELECT ttt AS field1 FROM dual
    statement 2:
    SELECT yyy AS field2 FROM dual
    Each statement returns one value. Maybe I need some variable for each value, so var_field1 = field1, var_field2 = field2, etc.
    As a result I have to fill table table1 using my variables, so it must be some procedure.
    I know I can do it using one statement below, but I have more than 100 queries, so they should be executed one by one.
    with t1 as(
    select (SELECT 'ttt' FROM dual) field1, (SELECT 'yyy' FROM dual) field2 from dual
    select * from t1;
    Could you please show me some example, how this procedure should be written?
    Thanks ahead.

    This hasn't got anything to do with Oracle Reports, but here we go anyway. Your query can simply be:
    with t1 as(
    select 'ttt' field1, 'yyy' field2 from dual
    select * from t1;
    FIE FIE
    ttt yyy
    1 row selected.But maybe your example was an over simplification of your problem.

  • Best Compression To Use In QT For Saving Videos For DVD

    I own a number of DVDs of compliation videos that I'm extracting each video using Cinematzie to create a library of videos clips. If I save a video without any compression, its alsmost the size of the entire DVD. But I also have a choice to save the video clip with compression but am given a large number of choices to select from. I would like to compress a video clips to the best quality and sound possible to eventually burn my own DVD of my favorites. Can someone who has worked with various compression software suggest the best one for me to use. Thanks.

    I've has a lot of success with H.264 for the purpose you're speaking of if you're just archiving them to play back on the computer. If you want to output them to dvd to eventually play back on a conventional dvd and ntsc monitor, consider DV/DVC Pro. However, I've also read that H.264 is going to be the standard codec for some of the new HD DVDs (like BluRay).
    G4 Powerbook and G5 imac and 30GB ipod   Mac OS X (10.3.9)   1.33 GHz PowerPC G4 and 1.8 GHz PowerPC G5

  • Hi. a blind web site development student from australia. i use the jaws for windows screen reader fr

                        e                   e         

    Someone who uses such features may be better placed to assist you, and as far any policy issues are concerned I am not sure the best place to ask.
    Have you seen
    * http://www.accessfirefox.org/
    * and our kb article [[Accessibility]]
    ** I note that links to an archived article, I have now asked about that, maybe it is an article that should be updated and unarchived https://support.mozilla.com/en-US/forums/knowledge-base-articles/707737
    BTW Does your screen reader cope ok with inline links ?
    * [[accessibility]] link is https://support.mozilla.com/en-US/kb/Accessibility if that is easier to read.

  • Changing the column position & width using Screen Variant..

    Hi Experts,
        Iam trying to change the column position and width for the standard transaction (eg. FB60 or VA02) using the transaction code SHD0 (Transaction and Screen Variant).
        Iam able to create and save the transaction and screen variant and i could see the check box options for table control like
        a. Auto Column Position
        b. Auto Column Width
         I tried checking and unchecking both the check boxes but iam unable to modify / maintain the column position and width.
         Please guide me in changing the column position and width.
       Thanks in Advance.

    Hi Mudit,
    Kindly go through this link below:
    http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm
    Hope it helps you
    Regrds
    Mansi

  • 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.....

  • Transaction Variant for Selection Screen

    Hi, experts!
    A question regarding transaction variants: Is it possible to create screen variants and transaction variants via SHD0 for selection screens? I' ve created a customer report with one selection screen including parameters and select options and would like to provide the users with a variant transaction for this.
    Utilizing the "Save as variant" option from the selection screen itself works out perfectly, but this variant cannot be transported. And trying to create a transaction variant via SHD0 fails because values entered in the selection screen parameters and select options help screens are not saved and presented.
    Any hints are more than welcome!
    Regards,
    Thomas

    You wrote
    Utilizing the "Save as variant" option from the selection screen itself works out perfectly, but this variant cannot be transported.
    But, give the variant a name beginning with "CUS&" and this variant will be transported. Variant beginning with "CUS&" or "SAP&" are so-called "system variant" and are  transported automatically. You can then copy the transaction code and use this new variant in the new transaction.
    Regards,
    Raymond

  • SHD0 Maintain Screen Variant in Variant Transaction

    Hi all,
    I would like to know how tom maintain screen variant in variant transaction ?
    I created a variant of MM01 using SHD0, the recording gived me as much screen variant as screen maintained during record session, this works perfectly.
    The problem is when I want to maintain an already created screen variant : I try to hide Basic Data View fields that was not initally hidden. I do change the field "invisible" for the basic date fileds I would like to hide. I save the screen variant changes.
    It seems to work but when I try to test the transaction variant, hidden fields remain visibles ...
    do you have an idea of that problem ?
    regards
    Morgan

    Hi,
    thanks for answer but unfortunately, it won't help.
    I already found how to record a transaction, create a transaction variant and associated screen variants and it works. The thing that doesn't works is, after all these steps, when I try to maintain the screen variant because I have to do change something.
    IN my case, I created the screen variant with some visible fields on basic Views of material master but now, I want to change it because some fields has to be invisible.
    So I go to SHD0 and maintain screen variant. Check the value "unvisible" for required fileds and save.
    Next, I launch transaction variants where the screen variants was used but the fields remain visible ...

  • How to create a variant for a screen (not a selection screen)

    Hi
    I foud a function module RS_CREATE_VARIANT.
    Is this the correct fm for creating screen variant, if yes then pls provide me some help about how to pass values to this fm.
    if not then pls help me to find out new one.
    thnks
    satisfactory answer will be definitely rewarded.
    S@meer

    passing values to RS_CREATE_VARIANT.
    data : LS_VARIANTDESC TYPE VARID.
      DATA : LT_VARIANTTEXT TYPE TABLE OF VARIT ,
             WA_VARIANTTEXT TYPE VARIT.
      DATA : TT_REPORTPARAM TYPE TABLE OF  RSPARAMS,
             WA_REPORTPARAM TYPE RSPARAMS.
    CLEAR LS_VARIANTDESC.
              LS_VARIANTDESC-MANDT   = SY-MANDT.                " gr 46A
              LS_VARIANTDESC-REPORT  = 'ZXXXXX'.
              LS_VARIANTDESC-VARIANT = 'VARIANT'.
              LS_VARIANTDESC-EDAT    = SY-DATUM.
              LS_VARIANTDESC-ETIME   = SY-UZEIT.
              REFRESH LT_VARIANTTEXT.
              CLEAR WA_VARIANTTEXT.
              WA_VARIANTTEXT-MANDT    = SY-MANDT.               " gr 46A
              WA_VARIANTTEXT-LANGU    = SY-LANGU.
              WA_VARIANTTEXT-REPORT   = 'ZXXXXXX'.
              WA_VARIANTTEXT-VARIANT  = 'VARIANT'.
              APPEND WA_VARIANTTEXT TO LT_VARIANTTEXT.
           CALL FUNCTION 'RS_CREATE_VARIANT'
                  EXPORTING
                    CURR_REPORT               = 'ZXXXXX'
                    CURR_VARIANT              = 'VARIANT'
                    VARI_DESC                 = LS_VARIANTDESC
                  TABLES
                    VARI_CONTENTS             = TT_REPORTPARAM
                    VARI_TEXT                 = LT_VARIANTTEXT
                  EXCEPTIONS
                    ILLEGAL_REPORT_OR_VARIANT = 1
                    ILLEGAL_VARIANTNAME       = 2
                    NOT_AUTHORIZED            = 3
                    NOT_EXECUTED              = 4
                    REPORT_NOT_EXISTENT       = 5
                    REPORT_NOT_SUPPLIED       = 6
                    VARIANT_EXISTS            = 7
                    VARIANT_LOCKED            = 8
                    OTHERS                    = 9.
                IF SY-SUBRC EQ 7.
    If variant with same name already exists, change variant
                  CALL FUNCTION 'RS_CHANGE_CREATED_VARIANT'
                    EXPORTING
                      CURR_REPORT               = 'ZXXXXX'
                      CURR_VARIANT              = 'VARIANT'
                      VARI_DESC                 = LS_VARIANTDESC
                    TABLES
                      VARI_CONTENTS             = TT_REPORTPARAM
                    EXCEPTIONS
                      ILLEGAL_REPORT_OR_VARIANT = 1
                      ILLEGAL_VARIANTNAME       = 2
                      NOT_AUTHORIZED            = 3
                      NOT_EXECUTED              = 4
                      REPORT_NOT_EXISTENT       = 5
                      REPORT_NOT_SUPPLIED       = 6
                      VARIANT_DOESNT_EXIST      = 7
                      VARIANT_LOCKED            = 8
                      SELECTIONS_NO_MATCH       = 9
                      OTHERS                    = 10.
                ELSEIF SY-SUBRC NE 0.
                MESSAGE WITH 'Cannot create/change variant for'
                SY-UNAME.
                ENDIF.

  • Screen variant for Create Sales order

    Friends,
    I intended to make one of the fileds mandatory for a sales doc type. For which I made a new screen variant wherein I changed a setting for the reqd field and then assigned to a new transaction variant. This transaction variant would be then assigned to the doc type.
    While testing for the screen variant it behaves perfect. While testing for the transaction variant (which has the screen variant as included) I am not getting the desired response.
    Request advise on where I am missing out. Thanks in advance.
    Regards,
    Tariq

    Hello Tariq,
    try to maintain "NO_VARIANT" for field "Variant" in transaction VOV8 for the used sales order type. Then it should work.
    Best regards,
    Joerg

  • Change column sequence for screen variant FB50

    Hi Experts,
    I am able to hide unwanted fields in screen variant for items for tcode fb50 by creating screen variant and i also selected adopt column sequence check box.when  i go tcode shd0 and clicked screen variant that i already created and click with processing button i can get FB50 tcode screen there i can change column sequence by drag and drop .is it correct way to change the column sequence? but i am unaware how to save the changes i made.
    Please let me know how to proceed to change the column sequence and save it.
    Thanks&Regards,
    narasimha.

    Hi Faheem,
    After changing the column sequence i clicked configuration button and click save button and again clicked Configuration and selected Administrative button there i can see the column sequence change and clicked activate button .now if i close and reopen the transaction my column sequence is same with out changes that i made .
    you asked me to save the changes where i can do exactly ? Could you please tell in briefway from scratch so that i can trace where i done mistake.
    Thanking you in advance.
    Regards,
    narasimha.

  • Best practice for deleting multiple rows from a table , using creator

    Hi
    Thank you for reading my post.
    what is best practive for deleting multiple rows from a table using rowSet ?
    for example how i can execute something like
    delete from table1 where field1= ? and field2 =?
    Thank you

    Hi,
    Please go through the AppModel application which is available at: http://developers.sun.com/prodtech/javatools/jscreator/reference/codesamples/sampleapps.html
    The OnePage Table Based example shows exactly how to use deleting multiple rows from a datatable...
    Hope this helps.
    Thanks,
    RK.

Maybe you are looking for

  • PROBLEM FLASH : settings are not saved

    Hello, I have a problem with flash recently, i'm using a PPC G4 1,5 GO RAM version osX 10.4.10 2x1 GHZ ( firefox 2007 ), when i want to set preferences of Flash on the site of adobe it's always getting by defect preferences when i reload the page for

  • Listening to Purchased Music on Different Windows XP Account

    My sister frequently purchases songs at the iTunes store. I like a lot of the songs she purchases but I don't wanna waste a CD by burning just a few songs on it. Does anyone know how to get her purchased music on her iTunes transferred over to my iTu

  • Use of Netgear SC101t with IQ518a Touchsmart

    G'day I've just purchased the model indicated in the title of this post, and I was wondering if anyone who owns a touchsmart owns a Netgear SC101t? The reason I ask is because Z-scan and Netgear have not (and probably will not) gotten to making drive

  • Time Card System (IP Phone Service)

    I know the title sounds odd however I was wondering if some one can help me. About a year or so there is/where a company that a time card keeping software that was web based and the big feature (I thought) was it also ran in the Cisco IP Phones as a

  • How can i share my app?

    hello, i'd like share my app on ipad and iphone, how can i?