How  can i find how many smartforms  using a particular smart style

hi experts  ,
how  can i find how many smartforms  using a particular smart style
thnks in advance

Hi,
Go to your smartform
Click on Form Attributes->Output options> There you can find the Style.
Reward points if useful.
Thanks!

Similar Messages

  • How can i find how many sessions are opened in my database

    Hai
    Iam using Oracle 10g version, front end that iam using is oracle forms6i, sometimes my system get hanged because of some session and not closed i think, can i know how can i find how many session is opened on my database.

    You could query the V$SESSION dynamic view. More info...here...
    HTH!

  • How can I find if someone is using my computer remote

    how can I find if someone is using my computer remote

    Do you mean "using your computer remotely," as in accessing it from another location?  That's extremely unlikely, as it's no trivial task to set up sharing over the internet, and would require physical access to your computer to get that done.  What symptoms are you seeing that lead you to believe this is happening?
    Alternately, if you mean literally "using your computer remote," if someone is fiddling with an Apple Remote in the same room, you would probably see iTunes opening, music starting to play, volume changing, etc.  My 2-year-old got hold of my remote once and caused me no end of frustration trying to figure out what the *%&*#(& was going on! 

  • How can I find my lost IPod using its serial number?

    How can I find my lost iPod using its serial number?

    As I said, and Varjak said, if it is setup in iCloud, login to iCloud from your comptuier or other device, click on Find My and find the entry for the iPod, and if it is turned on and connected to the internet it will show up.

  • HT201386 how can I find the Image number of a particular photo in the Photos app included with iPad Air?

    how can I find the Image number of a particular photo in the Photos app included with iPad Air?

    Hello yamacutta,
    Thanks for using Apple Support Communities.
    The Photos app will not show you the actual file name of the photo.  However when you go through the image import process on your computer, you should be able to see both the thumbnail of the photo, as well as the filename of the image.
    Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support
    Take care,
    Alex H.

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • How can i find out who is using my email in iMessage

    How can i find out what devices on my apple id are using my email for imessage?

    On the devices go to Settings>Messages>Send and Receive and look. There is no way of doing that remotely.

  • How can I find out what's using storage on iPhone 4s

    Hi,
    My daughter's 8GB iPhone4s is showing 4.7gb used space and only 430Mmb free - but when we go to Manage Storage the total of all items listed there is less than 1gb.
    How can we find out what is hoarding all of this space, and why is an 8gb device only showing just over 5gb in total space (used and free)?
    We've just upgraded to IOS 8.1.3, but also had the same problem with IOS8

    Connect the iPhone to a computer and use iTunes to check its storage. Do you see more than 1-2GB of Other? If so, the phone must be restored to correct that issue.
    5GB of total storage sounds about right for a phone advertised as 8GB. A portion of the space is used for iOS and included apps and some goes "missing" due to the way the device calculates storage.
    ~Lyssa

  • How can I find which font is used inside a PNG?

    Hi,
    When I started my company, I had a company logo and website designed for me by another company.  This company doesn't exist anymore and all I have left are the source files of my logo and website.  They delivered me the logo in PNG format.  I am trying to make different sizes and shapes of my logo, but when I open the PNG file in Fireworks (CS5), it says that the font is missing, so whether I want to replace the font or keep appearance.  How can I find out which font was used in the original PNG file?  When I select the text, the font selection box is empty, so I cannot see which font was originally used...
    Thx,
    Steven

    Hi Linda,
    I tried it and you are right.  I kept trying to preserve the appearance.  Never tried the replace fonts option! 
    Thank you very much for your help!!
    Steven

  • How can I find out who is using all my UNTO tablespace?

    The usage has grown from a usual 60% to 100% this morning, how can I find the culprit?
    Thanks

    Run the following query.
    SET LINESIZE 200
    COLUMN username FORMAT A15
    SELECT s.username,
    s.sid,
    s.serial#,
    t.used_ublk,
    t.used_urec,
    rs.segment_name,
    r.rssize,
    r.status
    FROM v$transaction t,
    v$session s,
    v$rollstat r,
    dba_rollback_segs rs
    WHERE s.saddr = t.ses_addr
    AND t.xidusn = r.usn
    AND rs.segment_id = t.xidusn
    ORDER BY t.used_ublk DESC;

  • How can I find how much material has been delivered for a PO

    Hi
    I status tab of Tcode ME23N there is some data regarding delivered material
    like
    delivered
    ordered
    yet to deliver
    How can i find this data (preferably Database table)
    Thanks

    Hi,
    I believe sap is calculating this information in the program...
    You can use the table EKBE to do the calculation..
    <b>For delivered quantity.</b>
    SELECT * FROM EKBE
                 INTO TABLE T_EKBE
                 WHERE EBELN = 'Input po'
                 AND      EBELP = 'Po line item'
                 AND      VGABE = '1'.    " Material documents.
    LOOP AT T_EKBE.
      IF T_EKBE-SHKZG = 'S'.    " Po delivered.
        V_MENGE = V_MENGE + T_EKBE-MENGE.
      ELSE.
       V_MENGE = V_MENGE - T_EKBE-MENGE.
      ENDIF.
    ENDLOOP.
    SELECT SINGLE * FROM EKPO
                 WHERE EBELN = 'Input po'
                 AND      EBELP = 'Po line item'.
    IF V_MENGE = EKPO-MENGE.
      WRITE: / 'Fully delivered'.
    ELSEIF V_MENGE IS INITIAL.
      WRITE: / 'Not delivered'.
    ELSEIF V_MENGE < EKPO-MENGE.
      WRITE: / 'Partially delivered'.
    ENDIF.
    Thanks,
    Naren

  • How can I find how much credit is on my account?

    I received a credit from the ebook settlement. How can I find out the amount still remaining?

    See >  http://support.apple.com/kb/ht5035

  • HT204370 How can I find how much remaining credit I have on my gift card

    How do I find how much credit I have on my voucher after I re deemed it for part payment on a film ie. voucher was 25 and film not that much

    https://discussions.apple.com/thread/4563991?tstart=0
    Or more threads under More Like This at the right.
    Regards.

  • How can I find which applications are using the most power?

    I have recently noticed a full charge of power doesn't last as long as it used to on my iPad 2.  Is there some way to determine which applications are using the most power?
    I have been monitoring my home network router accesses and have noticed the iPad logs accesses every 15 seconds.  This only happened recently.  It had been well behaved and only accessing once or twice a day before.  I installed the most recent iTunes upgrade, per suggestions during a Sync.  The problems seemed to occur after this update.  I have gone through all the settings and have minimized the applications requiring higher power (I switch off the location services unless I'm away from home.  Likewise, I turn off my cellular carrier unless I'm away from home, etc.)
    In short, how can I maximize my power usage (aside from turning it off)?
    Thanks.
    Dave

    Thanks for responding so quickly.
    I'm really trying to find out why the battery is depleting much faster than it used to all of a sudden.  I used to be able to put a full charge on it and it would last about 5 to 6 days with normal use (normal for me).  Now that battery only lasts about 2 to 3 days with the same use.
    I DO recharge it when it needs to be charged but this is indicating there is something else (new) that is causing the power drain.

  • How can you find your password to use the App Store on an iPhone?

    My friend has forgotten her password for the App Store.
    Her account is her email address.
    How can she either get her password or create a new one in order to use the App Store?

    I think I tried this last night but will attempt it again.
    I was tired after talking with an AT&T technical representative about a voicemail issue.
    I hope her voicemail is still accessible today.
    I asked the AT&T person to remove the voicemail password.

Maybe you are looking for

  • Can't get 'clamshell' mode to work with Dell 2408

    I have been trying to get my Dell 2408 working in clamshell mode without any success. I have a USB keyboard, USB mouse, power adapter and monitor via DVI plugged in. I switch the display type to mirror, close the lid, wait for it to sleep, then wake

  • BB10 - Link does not sync new Contact note entries and crashes

    Hi - can anyone help. Link 1.1.1.26 syncs new entries on both my Windows 7 PC and Q10 both ways, including any text in the Notes field. But adding or changing a Note to an existing entry does not sync. In Link Settings I have Contacts (and Calender)

  • Wireless - Laserjet P1102w

    We have a HP Laserjet P1102w and when I reset it, I'm not able to reconfigure wireless. When I print a device config page wireless is enabled, not connected and ip configured by = manual with all zeros. How can I configure the printer to connect the

  • Error while loading web client

    We just got 10g appserver setup and I am able to login to Discoverer using 10gDS Discoverer Administrator and Discoverer Desktop (9.0.4.43.18). But when I go to the web URL and log in, the applet will not load. I am getting this error in both IE and

  • Cannot open a file by Applescript

    With Photoshop CS6, I am getting an error trying to open a file. This breaks a few of my scripts which continue to work with CS5. This code, copied almost exactly from the CS6 Applescript Reference, returns error "Adobe Photoshop CS6 got an error: Fi