In table pa0002 need which fields is used for what countries

Hi
My client is implementing PA for 10 countries
From pa0002 table the client wants a reports where he wants fields and the countries in which thats fields are used ?
How and where can i get this information
Thanks
Raj

Hi Raj,
you can take this from Ad-Hoc qry (SQ01) as a report.

Similar Messages

  • How are the Apps Store and iTunes store different? Which do you use for what?

    Can you explain the difference between Apps Store and iTunes store? Is Apps a subset of iTunes store? To which store do you go for what?

    Apps you buy from the Mac App store can be used on your computer.  You use the same Apple ID as the iTunes Store, but that's the only connection.
    Apps you buy from the iTunes App Store are written to run on an iOS device (iPhone, iPad or iPod Touch).  They won't run on your computer, only on your iDevice.

  • Which fields are used for iTunes Store search?

    Guys,
    I'm tring to work out how iTunes searches podcast XML (on the 'Search iTunes Store' bit of iTunes - I'm sure it all comes up in power search) as I want to target my podcast as best possible (and cut down updating XML if it's not even being used!). Can anyone help pin this down?
    <channel><title> = yes
    <channel><itunes:author> = yes?
    <channel><description> = no?
    <channel><itunes:summary> = no?
    <channel><itunes:keywords> = no?
    <item><title> = no?
    <item><itunes:author> = yes?
    <item><description> = no?
    <item><itunes:summary> = no?
    <item><itunes:keywords> = no?
    Cheers!

    The following I know are what you need to focus on,
    to have people be able to find you:
    <channel><title> = yes
    <channel><itunes:author> = yes?
    <channel><description> = no?
    <channel><itunes:summary> = no?
    <channel><itunes:keywords> = no?
    <item><title> = no?
    <item><itunes:author> = yes?
    <item><description> = no?
    <item><itunes:summary> = no?
    <item><itunes:keywords> = no?

  • Hard Drive Setup - which drives to use for what

    So I have decided on buying a segate 7200.14 hard drive (Tell me if this is a bad one, I just saw a bunch of reviews and benchmarks and it is supposed to be one of the fastest), but I'm not sure weather to use it as a scratch disk, a media disk, or an OS disk. Currently I only have one slow, old 500gb drive, which I was going to use to store old media and exports (I don't need to acces projects that I worked on a year ago). I have an external backup drive as well. I was thinking of getting the 7200.14 drive, since it is so fast and cheap and using it for my main drive, but now I'm wondering, would I be better off using it as the scratch drive? I can always wait for my OS and programs and such to load slower, but I'd like stuff inside of the program to be quick. I also don't care much about exports since I'm in no rush to get the work out as quick as I can, and I normally just leave it rendering overnight.
    TL;DR
    1.) slow, old 500gb drive
    2.) new, fast 7200.14 drive
    3.) I can possibly buy another drive if it's absolutely necessary, but I have gathered that the third drive is for OS, which I don't need to load quickly at all.
    Which one of these things is most bottlenecked by the hard drive? What should I do with my hard drive setup?
    EDIT:
    Also, is the 7200.14 a good drive? Tell me a better one if you think of one. I was thinking of getting the 1tb version but I might get the 3tb version for storage, since its a much better $/gb.

    Alright, I've gathered that the media cache and the medi files are not suited to be on an SSD (media because of large file sizes and media cache because of longevity, since it has to read and write so many times). But which one would I benefit more from being faster? Or could I just leave them both slow, and get two cheaper slower hard drives instead of the one fast 7200.14?

  • Which legacy systems are used for what purpose?

    Hi gurus,
    I tried looking in this forums, but couldnt gather much information on which legacy systems are used and for what purpose? <b>can any body send me a link that can help me understand when and where, which systems are used for what purpose..</b> I have a general understanding of Legacy systems so i am not looking for terminology explanation,  i would appreciate any thing that is related to business and explains the purpose.
    thanks,
    kishore karnati

    Hi,
    Term legacy system means tailor made system by group of software developer or any branded software which deals with the group requirement  like tally we user for finance.
    Legacy system can be based on any technology like visual basis as front end and oracle as back end or Developer 2k as front end and oracle as back end. For report most of the legacy system we have seen uses crystal report.
    You can develop and implement based on the requirement from the user though you need to define some specify process to keep the system streamline which is in your hands.
    Concept like devlopment/quality/production we don't have that verys strict concept.
    More and more they are not intergrated each other functionally mean lets say inventory has come to the godown then your vendor outstanding should increase in finance which does not happens you need to key in the seperate value for it.
    Hope this helps!!!

  • I need copy fields below using sales flow (VA, VL, VF, J1B3N to printer DAN

    Help me!!
    I need copy fields below using sales flow (VA, VL, VF, J1B3N to DANFE form)
    How to copy the field VBAP-VOLUM to the field J_1BDYDOC-SHPMRK and
    How to copy the field VBAP-VOLEH to the field J_1BDYDOC-SHPNUM, to DANFE form)
    Best regards,
    Wilson

    Hi,
    J_1BDYDOC this is structure table here you didn't get the values of required field's.
    Try with J_1BNFDOC table instead of J_1BDYDOC.
    Regards
    Ram

  • Is there a custom function available which can be used for logging errors captured in a sp in a sql table

    Is there a custom function  available which can be used for logging errors captured in a sp during and after execution in a sql table?
    Basically we  would like to utilize such function  in every sp and log errors of each sp in a error log table
    Mudassar

    Thanks .
    I was able to write this however I am thinking I am missing something
    CREATE FUNCTION testfunction1()
    RETURNS @temp_error TABLE (
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    AS
    BEGIN
    insert @temp_error(procedure_name,line_number,error_number,error_message,error_state,error_severity)
    select error_procedure(),error_line(),error_number(),error_message(),error_state(),error_severity()
    RETURN;
    END;
    CREATE TYPE test_type AS TABLE(
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    GO
    create proc usp_error_test
    @test_type AS test_type READONLY
    as
    begin
    begin try
    select 1/0
    end try
    begin catch
    select * from testfunction1(@test_type)
    end catch
    end
    Mudassar

  • I have a licence code for Adobe CS6 Master Collection which I'm using for more  than a year, suddeny I am in trial mode (all programs)  an it seems that this code is not accepted anymore. Help needed!!

    I have a licence code for Adobe CS6 Master Collection which I'm using for more  than a year, suddeny I am in trial mode (all programs)  an it seems that this code is not accepted anymore. Help needed!!

    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Which CKM is used for moving data from Oracle to delimited file ?

    Hi All
    Please let me know Which CKM is used for moving data from Oracle to delimited file ?
    Also is there need of defining each columns before hand in target datastore. Cant ODI take it from the oracle table itself ?

    Addy,
    A CKM is a Check KM which is used to validate data and log errors. It is not going to assist you in data movement. You will need an LKM SQL to File append as answered in another thread.
    Assuming that you have a one to one mapping, to make things simpler you can duplicate the Oracle based model and create a file based model. This will take all the column definitions from the Oracle based model.
    Alternatively, you can also use an ODI tool odiSQLUnload to dump the data to a file
    HTH

  • Which tool you use for your datamodel?

    Which tool you use for your datamodel?
    To show your tables with pk and fk and all.
    designer
    jdev
    other?

    I am using ERwin® Data Modeler r7.1 (7.1.1.1207). It supports most new features of Oracle 10g such as hash, list, composite hash, setting LOB storage properties etc.
    We just upgraded from version 4 recently. In the old version, I had to manually modify the generated scripts.
    ERWin r7 supports all Oracle 10g (Release 2) new features we need for our projects. It offers far more functionality and options than the old version. It supports all partition types in Oracle 10g: Range, Hash, List, Composite-Hash and Composite-LIST and offers more storage settings.
    Another nice new feature of ERWin r7 is that it offers purge option in the DROP TABLE statement. In Oracle 10g, the recycle bin contains all the dropped database objects until you permanently drop them with the PURGE option. Otherwise, you will see many funny looking objects like this: 'BIN$0+ktoVChEmXgNAAADiUEHQ==$0'.
    With the purge option, you don't need to purge the recycle bin after the forward engineering.
    SQL> purge recyclebin;
    My favorite is Oracle Designer.
    http://www.oracleabc.com/forums/thread-24-1-1.html

  • How to specify which cert to use for software virt server?

    Is there a way to specify which certificate to use for each software virtual server? So, for example a user hitting https://somewhere.com would get the certificate for somewhere.com while the virtual server https://somewhereelse.com would use the certifcate with the name somewhereelse.com in it?

    No, this is not possible due to limitations of the underlying protocols.
    HTTP requests are sent over TCP connections which deal with IP addresses and port numbers (i.e. hardware virtual server properties), not hostnames (i.e. software virtual server properties). The HTTP protocol adds software virtual server support by allowing a client to identify the hostname (e.g. "www.iplanet.com") of the server it wishes to communicate with. This is achieved by including a "Host:" header with each HTTP request.
    Unfortunately, the SSL/TLS protocols require that the web server present its SSL/TLS certificate BEFORE the client sends its HTTP request. Since the software virtual server information is contained in the HTTP request, it is not possible for the server to select different certificates for different software virtual servers.
    You will need to use hardware virtual servers (i.e. virtual servers that have different IP addresses and/or port numbers) if you wish to use distinct SSL/TLS certificates.

  • After reopening Firefox does not remember which desktop was used for each window. Can you help, please.

    I'm using two displays and several desktops on my Mac (OS X 10.9.4).
    When I need to restart Firefox, it remembers to open windows from last session in correct display, but does not remember which desktop was used for each window. So when the application starts, it opens all windows on a desktop which is currently active instead of reopening them on desktops used during the last session. How to fix the issue?

    Hi Nerva,
    Thank you for your question, there is a add on I have been recommended to custom set up of opening windows in new monitors. It's called [https://addons.mozilla.org/en-US/firefox/addon/monitor-master/ Monitor Master].
    However, in regards to the session remembering which monitor the window was open in, in the profile folder there is a file that stores window positions and dimensions. It is called localstore.rdf.
    Please stay tuned for more investigation, as there are definitely bugs on file for similar issues. Pinpointing it is the hard part.

  • Which cable should use for Sony DV connect to iMac ?

    Which cable should use for Sony DV(IEEE 1394)connect to iMac ?

    If your iMac has just the FireWire 800 connection, you will need the 9 pin to 4 pin cable.
    http://www.cwol.com/firewire/firewire-800-1394b-cables.htm
    If your iMac has the FireWire 400 connection, you will need the 6 pin to 4 pin cable.
    http://www.radtech.us/Products/ProCableFW400800.aspx
    Links are to illustrate examples. You should be able to pick them up at most computer stores.

  • Which function is used for  adding days to given month

    which function is used for  adding days to given month

    Hi Jagrut,
    Good ... Check out the following examples
    <b>Get a date</b>
    DATE_GET_WEEK Returns week for a date
    WEEK_GET_FIRST_DAY Returns first day for a week
    RP_LAST_DAY_OF_MONTHS Returns last day of month
    FIRST_DAY_IN_PERIOD_GET Get first day of a period
    LAST_DAY_IN_PERIOD_GET Get last day of a period
    RP_LAST_DAY_OF_MONTHS Determine last day of month
    <b>Date calculations</b>
    DATE_COMPUTE_DAY Returns a number indicating what day of the week the date falls on. Monday is returned as a 1, Tuesday as 2, etc.
    DATE_IN_FUTURE Calculate a date N days in the future.
    RP_CALC_DATE_IN_INTERVAL Add days/months to a date
    RP_CALC_DATE_IN_INTERVAL Add/subtract years/months/days from a date
    SD_DATETIME_DIFFERENCE Give the difference in Days and Time for 2 dates
    MONTH_PLUS_DETERMINE Add or subtract months from a date. To subtract a month, enter a negative value for the 'months' parameter.
    DATE_CREATE Calculates a date from the input parameters:
    Example: DATE_CREATE
    CALL FUNCTION 'DATE_CREATE'
    EXPORTING
       anzahl_jahre  = 1
       anzahl_monate = 2
       anzahl_tage   = 3
       datum_ein     = '20010101'
    IMPORTING
       datum_aus     = l_new_date.
       Result:
       l_new_date = 20020304
    Example: MONTH_PLUS_DETERMINE
    data: new_date type d.
    CALL FUNCTION 'MONTH_PLUS_DETERMINE'
    EXPORTING
    months = -5 " Negative to subtract from old date, positive to add
    olddate = sy-datum
    IMPORTING
    NEWDATE = new_date.
    write: / new_date.
    <b>Hollidays</b>
    HOLIDAY_GET Provides a table of all the holidays based upon a Factory Calendar &/ Holiday Calendar.
    HOLIDAY_CHECK_AND_GET_INFO Useful for determining whether or not a date is a holiday. Give the function a date, and a holiday calendar, and you can determine if the
    date is a holiday by checking the parameter HOLIDAY_FOUND.
    Example: HOLIDAY_CHECK_AND_GET_INFO
    data: ld_date                 like scal-datum  default sy-datum,
          lc_holiday_cal_id       like scal-hcalid default 'CA',
          ltab_holiday_attributes like thol occurs 0 with header line,
          lc_holiday_found        like scal-indicator.
    CALL FUNCTION 'HOLIDAY_CHECK_AND_GET_INFO'
      EXPORTING
        date                               = ld_date
        holiday_calendar_id                = lc_holiday_cal_id
        WITH_HOLIDAY_ATTRIBUTES            = 'X'
      IMPORTING
        HOLIDAY_FOUND                      = lc_holiday_found
      tables
        holiday_attributes                 = ltab_holiday_attributes
      EXCEPTIONS
        CALENDAR_BUFFER_NOT_LOADABLE       = 1
        DATE_AFTER_RANGE                   = 2
        DATE_BEFORE_RANGE                  = 3
        DATE_INVALID                       = 4
        HOLIDAY_CALENDAR_ID_MISSING        = 5
        HOLIDAY_CALENDAR_NOT_FOUND         = 6
        OTHERS                             = 7.
    if sy-subrc = 0 and
       lc_holiday_found = 'X'.
      write: / ld_date, 'is a holiday'.
    else.
      write: / ld_date, 'is not a holiday, or there was an error calling the function'.
    endif.
    Checking dates
    DATE_CHECK_PLAUSIBILITY Check to see if a date is in a valid format for SAP. Works well when validating dates being passed in from other systems.
    Converting dates
    DATE_CONV_EXT_TO_INT Conversion of dates to SAP internal format e.g. '28.03.2000' -> 20000328 Can also be used to check if a date is valid ( sy-subrc <> 0 )
    Function to return literal for month
    he table you want to use is T247. You can also use the function MONTH_NAMES_GET.
    You can also try table T015M. It has the month number in it's key.
    Formatting
    DATUMSAUFBEREITUNG Format date as the user settings
    Other
    MONTH_NAMES_GET It returns all the month and names in repective language.
    Good Luck and thanks
    AK

  • Which tool is used for database designing

    Hi,
    Can you please share which tool is used for database(Oracle) designing most
    Thanks

    Kim Berg Hansen wrote:
    Personally I use brain, pen and paper for designing/modelling - then simply write scripts to create those tables.Me too.
    But of course I realize that is not the way of a modern programmer :-)No, modern programmers rely less on the brain part.
    I have heard other people saying that the (now free) [url http://www.oracle.com/technetwork/developer-tools/datamodeler/overview/index.html]SQL Developer Data Modeler is helpful for modelling. I haven't any personal experience, though.
    I have used it to reverse engineer the design resulting from the brain / pen / paper / scripts process and produce pretty pictures for the modern programmers to try and understand. It works quite well for this.

Maybe you are looking for

  • Override method on an object construted by somebody

         customMenuComponent.addCustomLink(new CustomLinkComponenet("strlink","Storage Inbox",Index.class) {                protected BookmarkablePageLink getBookmarkablePageLink() {                     BookmarkablePageLink bookmarkablePageLink=   new Bo

  • How to use MDM ABAP API?

    Hi Guys, I want to use ABAP API for manipulating MDM records(EX Adding two field values and assign into another field value). Can anybody guide me step by step process? Best Regards Devaraj PK

  • Transport layer change ?

    Is there any function module or class methods to chnge the tansport layer of a package. I need to change the transport layer from a program. Best Regards, Sreeram

  • Fireworks CS5 not finding Photoshop plug-ins

    I recently installed Alien Skin Eye Candy 6 and Exposure 3 64-bit plug-ins. They are in my Photoshop plugins folder. When I open the Fireworks preferences and select this as the Photoshop plug-ins folder, the plug-ins are not available in Fireworks.

  • Creating a website "badge" that shows up when you post your website link

    Hey, Normally when you post a link an image comes up and a small description. How do you create that in iweb? Thanks, Katherine