What is parameter id and default component in data element? Help!

Hi experts,
      In the further characteristics, What is parameter id and default component name in data element? what are they used for?
Example: S_CARR_ID.
Thanks
Gopal

Hi,
Parameter ID :- Is used for assigning value to field.
Suppose u call a transaction in u porgram.
and u want to assign some value to field before executing the transaction.
if the field has parameter id u can assign value to field before calling the transaction.
that is it take the default value from the memmory.
and u set value in the memmory using parameter id.
<b>----
GET PARAMETER -
</b>
Basic form 3
GET PARAMETER ID pid FIELD f.
In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. See ABAP Unicode - Other Changes
Effect
First, the value stored under the key pid is transferred from the local SAP memory into the field f. If this key is not available in the local SAP memory, the value stored under the same key pid is transferred from the global user-related SAP memory to the field f.
A parameter ID can have up to 20 characters. You can find an overview of the keys (parameters) used in the SAP system description or the appropriate function in the ABAP Workbench.
The Return Code is set as follows:
SY-SUBRC = 0: A value was read from SAP memory. SY-SUBRC = 4: No value was found in SAP memory under the specified key.
Notes
The global user-related SAP memory is available to each user for the entire duration of a terminal session. For this reason, set values are retained when you leave a program.
You should not use SAP memory for temporary storage because a user's parallel sessions use the same global memory.
Example
Read the program name from SAP memory:
DATA : REPID LIKE SY-REPID.
GET PARAMETER ID 'RID' FIELD REPID.
<b>----
SET PARAMETER -
</b>SET PARAMETER ID pid FIELD f.
In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. See ABAP Unicode - Other Changes
Effect
Writes the contents of the field f to the global user-specific SAP memory and the local transaction-specific SAP memory under the ID pid. Any existing values under the same ID are overwritten.
Parameter IDs can be up to 20 characters long. They cannot consist entirely of spaces. The SAP system description contains an overview of parameter IDs. You can also produce a list using the ABAP Workbench.
Notes
The global, user-specific SAP memory is available to a user for the duration of a single terminal session. Values written to it are retained even when the user exits a program.
Do not use SAP memory as a temporary storage area, since parallel sessions belonging to the same user all use the same memory area.
Only store data of the types C, N, D, and T, as well as structures that consist of these types, in the SAP Memory.
You can create new parameter IDs using the ABAP Workbench.
Parameter IDs may have a namespace prefix.
Example
DATA REPID like sy-repid VALUE 'RSPFPAR'.
SET PARAMETER ID 'RID' FIELD REPID.
Message was edited by: Manoj Gupta

Similar Messages

  • I just purchased Adobe Photoshop Elements 13 for a Mac and trying to install. I am at the point to enter the serial number but it won't take letters. What do I do and where do I go for help?

    I just purchased Adobe Photoshop Elements 13 for a Mac and trying to install. I am at the point to enter the serial number but it won't take letters. What do I do and where do I go for help?

    If the code you are trying to enter has letters then you are not looking at a serial number.  A serial number only contains numbers - 6 sets of 4 numbers.
    Find your serial number quickly
    You might be dealing with a redemption code.  This is especially so if you purchased it from a store or the like.
    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • What are the pros and cons using Active Data Guard vs Data Guard?

    My understanding is that Active Data Guard is an additional database option for Oracle 11gR2 Enterprise Edition. I need to know the pros and cons using Active Data Guard vs Data Guard in order to decide whether to get pay extra for the Active Data Guard.
    Thanks for any help.

    Hemant K Chitale wrote:
    Before jumping in to Active Data Guard, one needs to evaluate :
    a. Is there really a need to run queries on the Standby ? The Standby could / should be at a remote site so queries are "across the network". Depending on the nature of the queries and the volume of output, the "performance" of the queries may not seem to be the same.
    b. If the database is not in Maximum Protection mode, the data "seen" at the standby may not be in "real-time" synch
    c. Not all applications are truely read-only when querying. Some applications use "jobs" that write to tables when querying. Such would not work with Active DataGuard. (example : EBusiness Suite). There are very complicated ways of handling this -- and one needs to consider if the complications can be introduced and supported.
    Over the network accessing standby read only is really not an good idea, I think no one will compare performance with primary and standby,
    But some of them they want to validate data which are very critical, as it is matching with primary or not, Its an added advantage with ACTIVE DATAGUARD
    Prior to that until unless stop MRP, open database and then we need to validate, So there is an interruption of recovery, I can say its also an advantage where there is no interruption of recovery.

  • What is conversion routine which is found in data element

    Hi all,
    I was just trying to creating a data element assigned to a particular domain in se11. While i am creating i can see a conversion routine
    Can anyone tell me what is the use of that conversion routine with an example.
    thanxs in advance
    hari

    Hi,
    Depending on the data type of the field, there is a conversion when the contents of a screen field are converted from display format to SAP-internal format and vice versa. If this standard conversion is not suitable, it can be overridden by defining a conversion routine in the underlying domain.
    Conversion routines are identified by a five-place name and are stored as a group of two function modules. The function modules have a fixed naming convention. The following function modules are assigned to conversion routine xxxxx:
    CONVERSION_EXIT_xxxxx_INPUT
    CONVERSION_EXIT_xxxxx_OUTPUT
    The INPUT module converts from display format to internal format, and the OUTPUT module converts from internal format to display format.
    When is a Conversion Routine Executed?
    If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically when entries are saved in this screen field or when values are displayed in this screen field. The conversion routine of the domain is also triggered when the field contents are output with the WRITE statement.
    Table SPFLI in the  flight model contains information about the flights offered by the carriers. The time for each flight is recorded in field FLTIME. Enter and display the time of the flight in input templates in the form HHH:MM (hours:minutes). Store the flight time entered in the database as an integer number (number of minutes of the flight). An entry 3:27 is therefore stored in the database as 207 (3 hours, 27 minutes = 207 minutes).
    Field FLTIME refers to domain S_DURA, to which conversion routine SDURA is assigned. The value is thus converted by the two function modules <b>CONVERSION_EXIT_SDURA_INPUT</b> and <b>CONVERSION_EXIT_SDURA_OUTPUT</b>.
    A conversion routine can also be triggered by specifying its five-place name in the attributes of a field in the Screen Painter or with the addition <b>USING EDIT MASK <Name of conversion routine></b> in the WRITE command in the program. With the USING NO EDIT MASK addition in the WRITE statement, you can skip a conversion routine defined for a domain when outputting.
    Parameters
    The two function modules of a conversion routine must have precisely two parameters with the names INPUT and OUTPUT for the value to be converted and the converted value.
    The INPUT parameter in the INPUT conversion and the OUTPUT parameter in the OUTPUT conversion should not have any reference fields because the value passed in the call could have a different length than that expected.
    Programming Conversion Routines
    ABAP statements that result in an interruption of processing (such as CALL SCREEN, CALL DIALOG, CALL TRANSACTION, SUBMIT, COMMIT WORK, ROLLBACK WORK, MESSAGE I, MESSAGE W) are not allowed in conversion routines.
    Only A messages are meaningful in output conversion, but A, E and S messages can be triggered in input conversion (although S messages are not very meaningful here). E messages result in an error dialog. Exceptions are not intercepted in the call.
    The output conversion is also triggered with WRITE and WRITE TO. The conversion routine may therefore occur very frequently with lists. The output conversion should therefore be programmed as efficiently as possible.
    No external performs should be used in conversion routines. Programs that are called externally use the table work areas of the first calling main program. In conversion routines this can result in errors that cannot be easily analyzed since they are sometimes called at unpredictable times in the program flow.
    <b>Pls refer link which contains code as an example to conversion routine used in abap</b>.
    <a href="http://www.bwexpertonline.com/downloads/source_code.doc">http://www.bwexpertonline.com/downloads/source_code.doc</a>
    Pls reward points.
    Regards,
    Ameet

  • What is that means and how to fix it ,, PLZ Help

    Hello ,
    I have FMS installed on my dedicated server Core2Due With
    4g Ram and 100Mbps dediacted port ..Win 2003 standrd.
    I use it for live streaming but i have a problem
    Admin console showing this error in the application log
    Dropping application (live/_definst_) message. Clients not
    allowed to broadcast message.
    Dropping application (live/_definst_) message. Clients not
    allowed to broadcast message.
    and when it happens the Flash Media Encoder Desconnect and
    reconnect again .. and the viewers number drops ..
    could u plz tell me why i face this error and how to solve it
    sorry for the bad english and thnx in advance.

    Hello,
    I'm having the same problems for some connections. I'm using
    FMS3 and I almost never see this problem. My application tries
    different connections, using ports 1935, 443 and 80 for rtmpe
    connection and then it tries tunneling rtmpte on port 80 using
    CONNECT and then last it tries port 80 using HTTP.
    Recently a user tried to connect to my application from a
    business network and the connection had to fall back to rtmpte on
    port 80 using HTTP. Every so often, the connection was interrupted
    and I saw this error message:
    Dropping application (MyApp/1234) message. Clients not
    allowed to broadcast message
    The client is using Flash Player 9.0.115 on Windows XP.
    Does anyone have an explanation for this behaviour?

  • My iPhone 4 has been vibrating for the past 2 hours and has still not stopped what should I do and the screen is blank please help me with this

    Somebody please give me an idea involving no loss of information
    Thank you

    Thank you very much for all your help lex schellings this solved my problem
    Thank you   very  much  again :-D

  • What is parameter mapping

    HI ,
      Can some one explain me what is parameter mapping and in what scenarios we need to use it??.

    <b>Hi
    Web Dynpro ParameterMapping API - IWDParameterMapping
    The parameter mapping is an instance of the UI element event. Therefore, it is defined at UI element level. You describe the parameter mapping for a UI element event using the wdDoModifyView method (see also Event Parameter and Parameter Mapping).
    Since the parameter mapping is defined at UI element event level, each UI element event has a corresponding mapping information. Therefore, each UI element that can trigger events returns the mappingOf<UIElementEventName> method. This method returns an instance of the IWDParameterMapping interface. A button UI element with the onAction event provides the mappingOfOnAction that returns the current parameter mapping for the button instance.
    Event Parameter and Parameter Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/2f/55f35ceb9ca9458598ba61a4ca2fbb/frameset.htm
    This url links to a short pdf describing the Webdynpro Java
    Go To Section 7.4 Parameter Mapping
    "Inside WebDynpro Java" Pdf File 2.50 MB</b>
    http://searchsap.techtarget.com/searchSAP/downloads/SAPPRESS.pdf
    <b>Regards
    Chandran</b>

  • New Employer and Default Rates Notice in BSI TaxFactory

    Do anyone know what this 'New Employer and Default Rates Notice in BSI TaxFactory " will entail? How will this affect existing employers? What is needed to ready your system to accommodate this?
    Thanks,

    You have two identical threads, and they are in the same forum.
    Please close one of them.

  • What is domain and dataelement.....diff b/w domain and data element

    dear all
    what is domain?
    what is data element?
    In one domain how many data elements are possible to used?
    with out data element how can u create a table? explain briefly.

    To clarify it little further the Data element and Domains are used in combination where similiar type of data fields are to be used with some more additional characteristics to each Data element.
    For example consider creating a table which contains Employee details. The Columns Name1 and Name2 are to be of type char and length 40. There are 2 ways to do this,
    1. You can assign the fields Name1 and Name2 directly to CHAR40(as the data element) in SE11. But this will make both the fields to have same characteristics with no difference among them.
    2. The other way is to assign the columns Name1 and Name2 to seperate Data elements say DE_NAME1 and DE_NAME2. This method has tha advantage of adding further charectristics and labels to the data element. Hence in this case you can add a label "Name1" for the data element DE_NAME1 and "Name2" for data element DE_NAME2. And both these data element will point to the same domain CHAR40, hence length and type is same.
    Hope this helps.
    Thanks,
    Prasath N

  • What is aging bucket and charge backs in receivables?

    Hi
    Iam new to oracle apps.
    what is aging bucket and charge backs in receivables?
    help me to learn basic terms of receivables?

    Chargebacks
    http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/ar/teches12.htm
    Aging Buckets
    http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/ar/system08.htm
    Regards,
    Srini

  • What are the advantages and disadvantages

    Hi All,
                      What is the use of Master Data Management. And What are the advantages and disadvantages of Master Data Management.
    Thanks,
    Satish.

    Hi ,
    have a look on same thread :
    Re: MDM?
    - An
    Better search before posting .

  • Create DATA ELEMENT with passing Parameter

    Dear All,
         When we create the Data elementt in tcode SE61, normally we will write the text inside the text area.  How about can we  pass the paramater to the data element in tcode SE61 ?
      Example i pass the parameter with the text  "Tesing 123" , so the Data element will display Testing 123 when being called. The text flexible.
    Thank

    Hello
    I want to use TPLNR to create data element in Operating Concern but I am not able to because of length of TPLNR (30) in Operating Concern we can create data element only upto 18 char. If i want to create new data element YTPLNR.
    I did following steps
    1. SE11
    2. Data Element
    3. and settings of particular data element what ever is required.
    My question is how can I use YTPLNR as characteristic as same value of TPLNR. I want all data that is available in TPLNR. I am creating new element because of data length issue.
    Table: IFLOT has data element TPLNR. I want all information of TPLNR in YTPLNR how it is possible to use that info in that.
    I tried to create user defined characteristics for operating concern
    i want to use with reference to existing value option in user define
    How can I do that
    thank you

  • Photoshop Elements Help | Organize your photos in albums and album categories

    This question was posted in response to the following article: http://helpx.adobe.com/photoshop-elements/getting-started/create-albums-album-categories.h tml

    I always learn so much by everyone's postings and your response. Thanks much!
    Date: Fri, 17 May 2013 08:23:30 -0700
    From: [email protected]
    To: [email protected]
    Subject: Photoshop Elements Help | Organize your photos in albums and album categories
        Re: Photoshop Elements Help | Organize your photos in albums and album categories
        created by dj_paige in Photoshop Elements - View the full discussion
    I have now downloaded all the pictures in my camera directly into PSE Organiser. The pictures are all in folders listed by date the pictures were taken. Are they now safely housed in the PSE program?
    PSE does not contain your photos. The photos are on your hard disk(s) somewhere, wherever they were put when they were moved from the camera to the hard disk (might be the default location chosen by PSE).
    Can I delete the old Canon programs, which are still sitting on my Mac?
    Yes
    And if I want to back up on an external hard-drive, how do I do that? Just drag the whole lot across?
    Your interest in making backups is to be commended.
    There are many ways to make backups, including the way you just suggested. You can also create a backup using PSE (which I recommend) since it includes the photos and the very important catalog file. In PSE, File->Backup Catalog, and set the destination of the backup to your external HD. Remember to do this regularly.
    Sometimes when I've used 'Smart Fix" or other tools in the Photo Fix toolbox, I'm not happy with the result. But how can I 'undo' a fix and revert to how it was before?
    PSE should create a version set when you do any editing, including the Smart Fix. Thus, you just need to expand the version set (right-click on the photo) to see both the original and the Smart Fix. Then you can delete the Smart Fix version.
    -- I want to create an album "Europe 2012", and within it categories for UK, France, Italy etc. But although I hit 'create album category' when Europe 2012 is highlighted, the category just attaches to the last listed album - something completely unrelated. How do I ensure categories are within the correct albums?
    I'm going to strongly recommend you don't do this via albums (unless your intent is to share the contents of the albums online somehow, in which case use Albums). I recommend you use tags instead of albums for this purpose. You can create a tag called Europe under Places, and another tag under Europe called France. I would also recommend you not bother including year or other calendar information in the tag (or album) names. You want "Europe" as your tag, not "Europe 2012". Why? Because you can always segregate by year (or other calendar time period) using the PSE Timeline; there's no need to do extra work to segregate the tags by year (or other calendar time period).
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5329550#5329550
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5329550#5329550
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5329550#5329550. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Export and Import of Configuration Data

    Hi All,
    I have created a number of custom properties, structures, groups, renderers, layout sets etc and would like to move them from Dev to Test system.
    I have found the following in the help doco:
    "Export and Import of Configuration Data"
    http://help.sap.com/saphelp_nw04/helpdata/en/e1/029c414c79b25fe10000000a1550b0/content.htm
    However I am unable to see its functionality in our portal systems (namely the Actions->Export and Actions->Import functions).
    Our version of Portal is: 6.0.9.6.0
    KM: 6.0.9.3.0 (NW04 SPS09 Patch3)
    Therefore we should be able to see it? no?
    Are there any special settings to see these buttons?
    Cheers,
    Vic

    Thanks for your replies.
    OK, so in otherwords, it is not available in SP09 and only in SP12+.
    So, to "transport" this information I will have to manually reapply thes settings in the Test system!
    Message was edited by: Victor Yeoh

  • What is the values and meaning for parameter TCLAS in functions

    what is the values and meaning for parameter TCLAS in functions like
    HR_INFOTYPE_OPERATION
    regards
    jan

    Hi Jan,
    Good Morning,
    In TCLAS,
    A, B , T will be there.
    A- Master data and time data.
    B- Applicant data.
    T- Shift Schedule.
    So, here we can say the default value will be integrated according to the above ABT.
    Means in the feature ABKRS, if you give the default values for all the three, your payroll area will appear in Master Data and Time data. And in recruitment ( Appicant data ) and work schedules. Means you are getting ingrated to all the three.
    And you can observe the feature PINCH also.
    If you dont want to get integrate with Master data, then dont give the default value under the A- Master date and Time data. And if you want to get integrate with Recruitment , then give the default value under B.
    I think u got the clear idea about TCLAS.
    Dont forget to give the points
    Thanks in Advance
    Cheers
    Vijai

Maybe you are looking for