Number of personalised forms in AP,GL,AR

Hi,
How can we find out the no of personalized forms in each modules like AP,AR,GL etc.
please help me to find an SQL query for the same
Ssugat

You can find the list of tables in (Do Personalizations Holdup After A Patch Is Applied? [ID 1286576.1]).
Refer to eTRM website for details about the tables -- http://etrm.oracle.com
https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_FORM_CUSTOM_ACTIONS&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • Need to Find Total number of InfoPart form in our Web application

    Hello,
    We have to find total number of Infopath forms in our web application. IS there any Power sheell Scripts or anuthing which can output the Infopath Forms location and file count .
    Thanks
    Kundan

    How about something like:
    Get-SPWebApplication http://yourWebAppUrl |
    Get-SPSite -Limit All |
    Get-SPWeb -Limit All |
    Select -ExpandProperty Lists |
    Where { $_.GetType().Name -eq "SPDocumentLibrary" -AND -NOT $_.Hidden } |
    Select -ExpandProperty Items |
    Where { $_.Name -LIKE "*.xsn" }
    Select {$_.Web.Url}, Url
    The above will list all of the files. Do you need counts by library, by site or other?
    Mike Smith TechTrainingNotes.blogspot.com

  • Any1 aware of a function module to convert a number in exponential form

    any1 aware of a function module to convert a number in exponential form to normal form...
    eg... a no. like 8.00000000000004E-01 
                     8.88888888888884E-01
    and
    a no. like 1.50000000000000E+00 
               9.44444444444442E-01

    I think you can just move from type F to type p.
    p =  f .
    Regards,
    Rich Heilman

  • Adding a refernce number to a form

    Hi Folks,
    I have a form on my website which acts as a questionanire. As
    the data is purely qualitative I've not set it up to insert the
    data into a databse, only to forward it via a formail page to my
    email address. I would however like to add sequential reference
    number to every form. It's all set up in PHP with a MYSQL databse
    tie dinto oter parts of the site, so I could use a table to hold
    teh reference number if necessary, although I don't really need the
    number for anything more than to distinguish one email from another
    when they're piled up onmy desk.
    My guess is that I need to ctreate a table to hold the number
    then use that number as a hidden field which will be submitted with
    the form then somehow (and this is the bit I'm not sure about) add
    1 to the refence number in the databse table when the submit button
    is clicked.
    Can anyone suggest a better way or help me with the code to
    add to the submit button which will increment the database number?
    Cheers
    Dave

    Use a simple page counter like some might use to count
    visitors.
    No need to create a database table just to get a unique id.
    Unfortunately I'm a ASP developer so can't help with PHP, but
    I'm sure there
    are plenty out there.
    Just append the counter variable to your e-mail and you're
    done.
    "mac-in-the-mountains" <[email protected]>
    wrote in message
    news:eqc8ab$f26$[email protected]..
    > Hi Folks,
    >
    > I have a form on my website which acts as a
    questionanire. As the data is
    > purely qualitative I've not set it up to insert the data
    into a databse,
    > only
    > to forward it via a formail page to my email address. I
    would however
    > like to
    > add sequential reference number to every form. It's all
    set up in PHP
    > with a
    > MYSQL databse tie dinto oter parts of the site, so I
    could use a table to
    > hold
    > teh reference number if necessary, although I don't
    really need the number
    > for
    > anything more than to distinguish one email from another
    when they're
    > piled up
    > onmy desk.
    >
    > My guess is that I need to ctreate a table to hold the
    number then use
    > that
    > number as a hidden field which will be submitted with
    the form then
    > somehow
    > (and this is the bit I'm not sure about) add 1 to the
    refence number in
    > the
    > databse table when the submit button is clicked.
    >
    > Can anyone suggest a better way or help me with the code
    to add to the
    > submit
    > button which will increment the database number?
    >
    > Cheers
    >
    > Dave
    >

  • To get the contact fax number in my form

    Hi!
    I would like to get the fax number on the customer section of my smartform for BOL. How do i get the contact fax number in my form with following lines that i ahve for getting contact name.
    data: l_parnr like vbpa-parnr,
          l_name1 like knvk-name1,
          l_namev like knvk-namev. "first name
    select parnr into l_parnr from
           vbpa
           where
           vbeln = g_sale_ord and
    *      vbeln = is_nast-objky and
           parvw = 'AP'.
           exit.
    endselect.
    if l_parnr is not initial.
       select single name1 namev  into (l_name1, l_namev)
          from knvk
          where
           parnr = l_parnr.
       concatenate l_namev l_name1 into g_contact separated by ' '.
    endif.
    Thanks

    I added this and it shows up the fax number:
    data: l_parnr like vbpa-parnr,
          l_name1 like knvk-name1,
          l_namev like knvk-namev, "first name
          l_kunnr like vbpa-kunnr,
          l_persnumber like adcp-persnumber,
          l_fax_number like adcp-fax_number,
          l_vbelv like vbfa-vbelv.
    select parnr into l_parnr from
           vbpa
           where
           vbeln = g_sale_ord and
    *      vbeln = is_nast-objky and
           parvw = 'AP'.
           exit.
    endselect.
    if l_parnr is not initial.
       select single name1 namev  into (l_name1, l_namev)
          from knvk
          where
           parnr = l_parnr.
       concatenate l_namev l_name1 into g_contact separated by ' '.
    endif.
    select vbelv into l_vbelv from vbfa where
    vbeln = gs_hd_adr-deliv_numb and
    vbtyp_n = 'J' and
    vbtyp_v = 'C'.
      exit.
    endselect.
    select single parnr from vbpa into l_parnr
    where vbeln eq l_vbelv
    and parvw eq 'AP'.
    if sy-subrc eq 0.
      select single * from knvk into g_knvk where
      parnr = l_parnr.
      select single fax_number into g_contact_fax
      from adcp
      where persnumber = g_knvk-prsnr.
    else.
      select single kunnr from vbpa into l_kunnr
      where vbeln eq gs_hd_adr-deliv_numb
      and   parvw eq 'AG'.  "sold to
      if sy-subrc <> 0.
    *from ship to
        select single kunnr from vbpa into l_kunnr
        where vbeln eq gs_hd_adr-deliv_numb
        and   parvw eq 'WE'.  "ship to
      endif.
      check sy-subrc = 0.
      select single * from knvk into g_knvk where
      kunnr = l_kunnr and
      abtnr = 'Z007'.
      select single fax_number into g_contact_fax
      from adcp
      where
      persnumber = g_knvk-prsnr.
    endif.
    Thanks

  • Ways to get the line number in sapscript form?

    Hi, all.
    May I know whether that there are ways to get the line number in sapscript form?
    For example, I want to get to know the certain line number in the MAIN window.
    Thanks in advance.

    Thanks Naimesh Patel  .
    Is there anyway to get the PENDING_LINES  value in the script?
    Because i can't modify the standard print program, i can only edit the Sapscript Form and add in some extra subroutine only.
    tnx.

  • Number of "Draft Forms" showing in Licensing Adobe Document Services, why?

    Hi Friends,
    I can see following details under the services -->Document Services License Service  in VA of ADS Server.
    Number of SAP Forms : 0
    Number of Customer Forms : 0
    Number of Draft forms: 3 <-----only showing.
    so where is the setting ? How to convert it customer Forms. why it is showing as Draft forms? any idea???
    Thanks
    Ali

    Hi R.A.,
    Forms are classified and displayed as:
    ● Customer Forms, the total number of your forms.
    ● SAP Forms, the total number of original SAP forms.
    ● Draft Forms, the total number of forms in a draft state. Draft forms are forms that are not currently in production and therefore do not count as a licensed/unlicensed form.
    Have a look at this link on ADS Configuration guide.
    http://help.sap.com/saphelp_nw70/helpdata/en/37/504b8cbc2848a494facfdc09a359b1/frameset.htm
    Go to section Licensing Adobe Document Services, in this you will get more information.
    Regards,
    Vinod

  • Page number in adobe form

    when the form execution goes to 2nd page it displays a page number on right potion lil below top margin..
    can some body tell me where the setting is for that pageno.. like sy-pagno or any thing like that..
    reminding you it doesnt show that page number on the form when it is a one page output. only for >2 pages it shoes...the page number.

    solved

  • Print a number variable as a real number without approximation forms

    Dear all
    I want to pront my variable number without approximation forms, here is my output problem:
    SQL> select imsi from table where num like '393';
    number
    *2.2202E+14*
    I want that the output will display as a real nyumber without approximation.
    Regards
    Ali

    chg78 wrote:
    yes, and it is working for me, i am using SQL DEVELOPER,
    how can i paste the result?
    CAST(2.2202E+14ASNUMBER(38,2))
    222020000000000
    All you're doing is turning a number specified in scientific notation to a number i.e. doing nothing.
    Just to prove it, if you look at the underlying datatypes:
    SQL> ed
    Wrote file afiedt.buf
      1  select dump(2.2202E+14)
      2        ,dump(cast(2.2202E+14 as number(38,2)))
      3* from dual
    SQL> /
    DUMP(2.2202E+14)
    DUMP(CAST(2.2202E+14ASNUMBER(38,2)))
    Typ=2 Len=4: 200,3,23,3
    Typ=2 Len=4: 200,3,23,3Both the original number and the CAST'd number produce identical results.
    The difference is that your SQL Developer environment isn't set up to display large numbers in scientific notation, but displays it as a full number.
    The issue the OP was having was that querying a number in the SQL*Plus environment (as indicated by the "SQL>") a full number was being displayed as the short hand scientific notation.
    Edited by: BluShadow on 16-Mar-2011 11:30
    to add the proof of cast making no difference.

  • Format a decimal number to percentage form, e.g. 0.01 to 1%

    Hi all,
    As titles, i want to format a decimal number to percentage form, e.g. 0.01 to 1%. I can't find it in PQ.
    Thanks,
    Arthur
    Keep involved!

    PQ doesn't currently have a way to specify number formats (that's usually done in Excel after filling the data to the sheet, or in Power Pivot). But if you want to generate some text that represents a number as a percentage, you can use this formula:
    = Text.From(TheNumberYouWantToFormat * 100) & "%"
    Ehren
    Any plans to add this functionality in the future?
    Keep involved!

  • Number of Oracle Forms customers

    Hello everyone, I am helping an SI migrate Oracle forms apps to ADF and Java apps. We wanted to know the number of Oracle forms customers, preferrably by version #, to understand the size of the opportunity.
    I would appreciate help.
    Thanks,
    Raj

    That is Oracles' secret. They wouldn't give that away, now would they? If you look at the forum facts (3.2 million views), you can be sure that there are quite a lot of Forms customers.

  • Creating a tracking number for a form

    What's a good (and easy) way to create a random tracking
    number in a form? I would want this to be hidden from the user on
    the HTML form but this tracking number would be processed by the
    script in order to send the user the tracking number in an email.
    The tracking number would be the same length each time but
    randomly generated.

    .oO(Johnny the boy)
    >What's a good (and easy) way to create a random tracking
    number in a form? I
    >would want this to be hidden from the user on the HTML
    form but this tracking
    >number would be processed by the script in order to send
    the user the tracking
    >number in an email.
    If it's in the HTML form, it's not really hidden. Even hidden
    form
    fields can be seen and manipulated. Instead generate the
    number on the
    server when you process the form data and keep it there,
    never send it
    to the client in an HTML form.
    > The tracking number would be the same length each time
    but randomly generated.
    It should not be purely random, but be build using the
    current timestamp
    to avoid collisions. Or simply incremental, for example with
    the current
    year at first if you don't like too-short numbers:
    2009-1
    2009-2
    2009-3
    2010-1
    2010-2
    2010-3
    There are a hundred ways, just don't make them purely random.
    These
    numbers should be unique, which randomness can't guarantee.
    Micha

  • How to get requisiton number on the form after running requisition import

    Hi guys,
    My requirement is populated requisition number on custom form after requisition created.plz tell me link between concurrent request id and standard requisition tables
    where i can fetch requisition number after running requisition import program. plz give sql script.
    thanks.....

    Hi;
    Did you check etrm site?
    Regard
    Helios

  • What applied to total response number of a form which form author is free plan and co-author is paid plan?

    Hi, all.
    What applied to total response number of a form which form author is free plan and co-author is paid plan? Do any one have any idea?

    Yes you sure can. 
    Right click in the cell corresponding to the attachment field in the View Responses response table and choose "Insert File" (also in the "Insert" menu).  The column must correspond to an attachment type field or you will not see the "Insert File" option.
    Thanks,
    Josh

  • How to capture number of tabular form rows in javascript

    Greetings All -
    I have a tabular form that I created manually.
    I am looking for a way in javascript to capture the number of rows that are displayed on the page.
    Is this possible?
    Regards,
    Mark

    Bill -
    Thank you for the reply.
    I had thought of your suggestion but I was unsure where I could execute the apex_application.g_fxx.count command without submitting the page.
    I cannot do this on a submit, because I need to now the number of rows displayed in order to do a calculation while entering a row on a manually created tabular form
    Suggestions appreciated
    Regards,
    Mark

Maybe you are looking for

  • How can I get Outlook calendar to sync with iPhone and iPad?

    I think I have tried evert known setting but syncing seems very selective.  I have googled for solutions, too. Currently, I load an even into my Outlook calendar (and have the right boxes checked in iTunes) but I am damned if the even will transpose

  • Final Cut HD 4.5 crashes upon opening project

    Hello, Any help is greatly appreciated. As we all are here, I'm in a HUGE panic. When I try to open my FCP project, it starts to open: the canvas, viewer, timeline and browser open, and I get to the "files offline" screen and FCP crashes. I have seve

  • I updated to my itunes to 11.1.3 now it wont open

    i updated to my itunes to 11.1.3 and now it wont open I've tried uninstalling and installing again and nothing is happening its still not opening

  • Connecting directly to CompactRio from a Matlab program

    Hello I'm working at Control lab of the Aerospace Faculty in Technion - Israel Institute of Technology in Haifa we are working on a new project that we require to establish Computerized control system for Vehicles and Quad-helicopters. we required to

  • Thread 1 cannot allocate new log:Checkpoint not complete

    Hai, i got this statement frequently in alert log file. current database in non archive log mode and 2 log groups with each 2 members. tell me how to overcome this issue. regards dba