How to check Variable Names

Hi All,
I am checking in CMOD include.  It has lot of code. Example:  When 'ZFISPER' . I think that is Variable Technical name. How to check that variable and in Which Query it is.
Please let me know...
Thanks in advance..
KN

Hello,
You can go over into transaction code RSA1 and then on your left hand side you will be able to see lot of tabs in terms of Modeling, Administration, Transport Connection and so on.
So go ahead and click on the tab "Transport Connection" and in the next screen you will be able to see all object types available in your environment.
Please go ahead and open up the section "Query Elements", if you are not able to see the same, on the left under the transport connection you will see the folder "SAP Transport" and within that the option called "Object Types", just click on it once and all the object types which are available for transports will show up.
Once you have selected Query Elements, under that you will be able to see different Query related objects and you will be having "Variable". When you drilldown on Variable folder you can double click "Select Objects" and select your appropriate variable name.
One other way to proactively get a list of variables available in your system and to find out on which InfoObject they have been buill, please go into transaction se16 or se12 and then enter the table name RSZGLOBV.
In this table you can get a list of all the variables along with the metadata without trying to parse through one by one variable.
Thanks
Dharma.

Similar Messages

  • How to get Variable name in output (Report Writer/Painter)

    Hello Experts,
    We have maintained one Repot by using Report Writer, this is the report for Cost center (periodic report), input fields are Fiscal year, Period and Cost Center. In out put system will display the selected cost center balances for individual cost element.
    Output: Excel format: in first sheet it will display balance of the total cost centers selected and from second sheet it will display individual cost center balances.
    My requirement is in the output system is displaying sheet name as CC1,CC2,CC3.......CC50, but my user want to display this as Cost Center 1, Cost Center 2, Cost Center 3...... like this. we have maintained variable name as Cost center 1, cost center 2....., but why system is displaying as CC1,CC2,.... .
    Please help me how to get the full description as sheet name in excel.
    Thanks ......Sudheer

    Hello Everybody,
    Please help me how to get variable name in Report Painter outout ( Excel format ).
    Thanks

  • How to check variable type?

    Hi,
    How to get variable type if I want to check variable
    type.which function or class do thsi.Thanks
    Mark

    I believe you use the function typeof()
    ie
    var myString:String = "test";
    trace(typeof(myString)); //should output string

  • How to check file name in APP server

    Hi,
    Iam writing some files to APP server .Iam unable to check those files by using AL11. How to check those files in APP server?

    Hi,
    You can use this FM EPS_GET_DIRECTORY_LISTING.
    Also please try this FM /SAPDMC/LSM_F4_SERVER_FILE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_apath.
    * Open the Browse Dialog Box on the Application Server
    CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
      IMPORTING
        serverfile = p_apath
      EXCEPTIONS
        canceled_by_user = 1
        OTHERS           = 2.
    IF sy-subrc <> 0.
    * No need to check for sy-subrc
    ENDIF.
    Regards,
    Ferry Lianto

  • How to output variable names and units used in binary file

    My colleague will be giving me binary files (*.dat) generated from within LabView. There are over 60 variables (columns) in the binary output file. I need to know the variable names and units, which I believe he already has set up in LabView. Is there a way for him to output a file containing the variable name and unit, so that I'll know what the binary file contains? He can create an equivalent ASCII file with a header listing the variable name, but it doesn't list the units of each variable.
    As you can tell I am not a LabView user so I apologize if this question makes no sense.
    Solved!
    Go to Solution.

    Hi KE,
    an ASCII file (probably csv formatted) is just text - and contains all data that is (intentially) written to. There is no special function to include units or whatever!
    Your collegue has to save those information the same way he saves the names and the values...
    (When writing text files he could use WriteTextFile, FormatIntoFile, WriteToSpreadsheetFile, even WriteBinaryFile could be used...)
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to check file name in local c drive and run exe file

    Hi All,
    I'm newbie user in action script. How can i check sepecific
    file name in local c:\ drive and if file doesn't exist in local
    drive download from server and run and if exist go to frame ..... .
    Please help to me.
    Thanks,

    Dear Marghoob Suleman
    Thank you very much for your kind help.
    Thanks in advance

  • How to check variable if chars are inside

    Hi fellow sufferers :)
    How can I accomplish to check if a variable a$ contains only chars like (A,B,C,D,E, ....) ... I need to make sure that my variable only contains numbers ....
    Thanks in advance for your help/ideas!
    Markus

    function Is-Numeric ($Value) {
    return $Value -match "^[\d\.]+$"
    Is-Numeric 1.23
    True
    Is-Numeric 123
    True
    Is-Numeric ""
    False
    Is-Numeric "asdf123"
    False
     Source from http://stackoverflow.com/

  • How to arrange variable names by A/Z automatically?

    Hi, All
    Is there any way to arrange lists of Locals and Parameters automatically? My sequence has a lot of variables, but they aren't arranged by name.. Manual resort is a solution, but it is not the best =)
    Regards,
    Max

    maksya,
    I will refer you to 'Jonathan N' response in the following message
    http://forums.ni.com/ni/board/message?board.id=330&message.id=11810&query.id=223073#M11810
    You should find the example in <publics directory>\TestStand 4.x\Examples\Tools
    I hope this helps you.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • How to check computer name in AD without Get-ADComputer?

    Hello,
    I wrote a script to rename computer and checking its new name in AD and use another (add 1) if exists. But I find a way to rewrite this script to avoid using Get-ADComputer, because I do not want to install RSAT and AD Module on each client machine. Please
    give advice. I saw examples (ADO) using VB, but I need to write using PS.
    import-module ActiveDirectory
    $pass = 'Pass'
    $password = ConvertTo-SecureString -String 'Pass' -AsPlainText -Force
    $login = 'contoso\administrator'
    $ComputerName = (Get-WmiObject - Class Win32_ComputerSystem).Name
    $ComputerName = $ComputerName -replace "NT","7"
    $cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $login, $password
    try {
    Get-ADComputer $ComputerName -Credential $cred -ErrorAction Stop
    $ComputerName = $ComputerName + '1'
    $ComputerInfo.Get-WmiObject -Class Win32_ComputerSystem
    $ComputerInfo.rename($ComputerName, $pass,
    $login)
    catch {
    $ComputerInfo.Get-WmiObject -Class Win32_ComputerSystem
    $ComputerInfo.rename($ComputerName, $pass,
    $login)

    Hi Andev,
    What about using ADSI ?
    http://www.lazywinadmin.com/2013/10/powershell-get-domaincomputer-adsi.html
    If you need to specify credential, you can check this link too
    http://www.lazywinadmin.com/2013/10/powershell-using-adsi-with-alternate.html
    Hope this help

  • How to check variable if present or not ?

    I have a main form and put the :global.gdate, When I call the others form
    I want to use the :global.gdate.
    I wirte a trigger "when new form instance" for each form (except main form) so I can get :global.date.
    But I can only running this program from main form, if I am running the form without the main form, the error message :global.gdate does not exists.
    Question:
    Is it posible to check if :global.gdate is exists or not ?
    maybe somthing like :
    IF get_variable(:global.gdate) IS NULL THEN --?????????
    :global.gdate := sysdate;
    END IF;

    From Oracle documentation:
    DEFAULT_VALUE built-in
    Description
    Copies an indicated value to an indicated variable if the variable's current value is NULL. If the variable's current value is not NULL, DEFAULT_VALUE does nothing. Therefore, for text items this built-in works identically to using the COPY built-in on a NULL item. If the variable is an undefined global variable, Form Builder creates the variable.
    Syntax
    PROCEDURE DEFAULT_VALUE
    (value_string VARCHAR2,
    variable_name VARCHAR2);
    Example:
    ** Built-in:  DEFAULT_VALUE
    ** Example:   Make sure a Global variable is defined by
    **           assigning some value to it with Default_Value
    BEGIN
      ** Default the value of GLOBAL.Command_Indicator if it is
      ** NULL or does not exist.
      Default_Value('***','global.command_indicator');
      ** If the global variable equals the string we defaulted
      ** it to above, then it must have not existed before
      IF :Global.Command_Indicator = '***' THEN
        Message('You must call this screen from the Main Menu');
        RAISE Form_Trigger_Failure;
      END IF;
    END;

  • How to put Variable Name in Description dynamically

    Hi Experts,
    I have a structure in which I am restricting calender day by 0I_DAYS (period from and To), so that I can select the date range in variable screen.
    Now my requiremnet is to pass the selected date in one of the Column's description dynamically.
    Pls help me.
    Thanks,
    Guru

    Hi Younes,
    Is it possible to create the Variables dynamically?
    My requirement is,
    for eg if the user selects the dates from 23Aug2008 to March2010 in variable screen, then in the output I should be able to drilldown and see the individual months data i.e., from Aug2008 to March2010.
    Is it possible to display in output like this?
    Is it possible to creat columns dynamically(based on the period selected) in the output?
    Kindly help.
    Thanks,
    Guru

  • Check our name in SAP data base

    Hi,
    Please tell me how to check our name in SAP data base and can we check our score as well as our sertification details also, if yes tell me proceedure.
    Thanks.
    Regards
    Samir.

    Hi
    I dont know if I understood your question but as far as I understood you are asking how to see your name in the SAP database. User names are maintained in the data base and you can see the details after logging into the system using menu option System> User Profile> Own data. Here you can see the user ID and and more details about the company address etc if it is maintained.
    Please let me know if this is what you are looking for
    Thanks

  • How to check for the variable passed to a function inside a component

    I'm trying to pass a variable to a function inside of a
    component in a conditional statement.
    How to check the existance of this variable inside the
    function so that I can use the right <CFarguments>:
    in aForm.cfm I have:
    <cfinvoke component="#application.cfcroot#.business.Order"
    method="selOrderItems"
    returnvariable="q_OrderItems"
    OrderItemAbbreviation="Min"></cfinvoke>
    <cfset MCompIDs = ValueList(q_OrderItems.OrderItemID)>
    <cfif listFind(MCompIDs,attributes.CompID)>
    <cfset isM = true>
    <cfelse>
    <cfset isM = false>
    </cfif>
    <cfinvoke component="#application.cfcroot#.business.Order"
    method="selOrderItems"
    returnvariable="q_OrderItems"
    OrderItemAbbreviation="SMEnroll"></cfinvoke>
    <cfset SM_CompIDs =
    ValueList(q_OrderItems.OrderItemID)>
    <cfif listFind(SM_CompIDs,attributes.CompID)>
    <cfset isSM = true>
    <cfelse>
    <cfset isSM = false>
    </cfif>
    <CFIF isSM>
    <cfset temppath = frmcreator.buildFrm(isSMFlag=isSM)>
    <CFELSE>
    <cfset temppath = frmcreator.buildFrm(isMFlag=isM)>
    </CFIF>
    On aFormComp.cfc where the function is,
    I checked the existance of isSMFlag this way and I got error
    saying that :
    Context validation error for tag CFARGUMENT.; The tag must be
    nested inside a CFFUNCTION tag.
    How can I properly check the existance of isSMFlag inside the
    function so I can use the right cfarguments?
    <CFFUNCTION NAME="buildFrm" access="public"
    returntype="String" output="No">
    <cfif StructKeyExists(arguments, "isSMFlag")>
    <CFARGUMENT NAME="isSMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    <cfelse>
    <CFARGUMENT NAME="isMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    </cfif>
    ........ etc
    </CFFUNCTION>

    <CFFUNCTION NAME="buildFrm" access="public"
    returntype="String"
    output="No">
    <cfif StructKeyExists(arguments, "isSMFlag")>
    <CFARGUMENT NAME="isSMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    <cfelse>
    <CFARGUMENT NAME="isMFlag" REQUIRED="YES"
    TYPE="NUMERIC">
    </cfif>
    ........ etc
    </CFFUNCTION>
    NOT this way, that is for sure.
    The <cfargument ...> tag is for defining the arguments
    a function
    accepts either optional or not, but they are not required.
    Give this a
    try to see the differences.
    test.cfc
    <cfcomponent>
    <cffunction name="a">
    <cfdump var="#arguments#">
    </cffunction>
    <cffunction name="b">
    <cfargument name="foo">
    <cfargument name="bar">
    <cfdump var="#arguments#>
    </cffunction>
    </cfcomponent>
    test.cfm
    <cfset something = createObject("component","test")>
    <cfoutput>
    #something.a("blue","green")#
    #something.b("blue","green")#
    </cfoutput>
    Not tested or debugged so watch out for typos.

  • How to declare internal table in BADI with variable name beginning with 0..

    Gurus,
    How to declare an internal table within a BADI. I have to implement a BADI UC_TASK_CUSTOM for BCS to BW load and there i have to  declare an internal table like:
    TYPES:          BEGIN OF t_cube_data,
                    0cs_version       TYPE /bi0/oics_version,
                    0sem_cgcomp       TYPE /bi0/oisem_cgcomp,
                    bcs_vers          TYPE /bic/oibcs_vers,
                    bcs_lcus          TYPE /bic/oibcs_lcus,
                    bcs_ldch          TYPE /bic/oibcs_ldch,
                    bcs_invcom       TYPE /bi0/oibcs_invcom,
                    bcs_litem         TYPE /bic/oibcs_litem,
                    bcs_llob          TYPE /bic/oibcs_llob,
                    bcs_lmay          TYPE /bic/oibcs_lmay,
                    0move_type        TYPE /bi0/oimove_type,
                    pcompany         TYPE /bi0/oipcompany,
                    bcs_lprg          TYPE /bic/oibcs_lprg,
                    figlxref3         TYPE /bic/oifiglxref3,
                    fiscyear         TYPE /bi0/oifiscyear,
                    fiscper3         TYPE /bi0/oifiscper3,
                    fiscvarnt        TYPE /bi0/oifiscvarnt,
                    curkey_gc        TYPE /bi0/oicurkey_gc,
                    unit             TYPE /bi0/oiunit,
                    cs_trn_gc        TYPE /bi0/oics_trn_gc,
                    cs_trn_qty       TYPE /bi0/oics_trn_qty,
              END OF t_cube_data
    But with this declaration it gives a error saying that u cannot have a variable beginning with 0...like 0cs_version....
    but i have to do it for my functionality to wrk...
    Please help me do it....
    how can i declare a internal table that allows me to have variable names that start with 0....
    Please help....Its URGENT....
    Thanks
    Sam

    Murali,
    I need to have 0 before the variable name in the declaration of the internal table....how can i attain that....
    Please suggest...
    Thanks
    Sam

  • Unable to publish in Swf format. Get error message: 'Swf compilation failed. Note: Please verify if any of the actionscript keywords is used as user variable name'. Anyone know how to fix?

    Unable to publish in Swf format. Get error message reads: 'Swf compilation failed. Note: Please verify if any of the actionscript keywords is used as user variable name'. Anyone know how to fix?

    Hi There,
    Can you tell me the Operating System and Captivate version you are using?
    Also can you confirm if you are getting this issue will this one project or all the projects? Try to copy paste this project on a new blank project and then try to publish.
    Regards,
    Mayank

Maybe you are looking for

  • MacOSX Server administration : system.log errors to be investigated

    Hi all, I have the following lines repeated on my system.log errors. Can anyone tell me how to investigate/get rid of these ? Does it mean that my server has been compromised ? At night (when nobody is connected) : - cp: error processing extended att

  • How to configure JBoss for Oracle BPEL Process Manager

    an any body tell me , how to configure JBoss4.0.5 for Oracle BPEL Process Manager?

  • Can't find "My pictures" and "My music" folders. What could have happen?

    I worked on my computer Sat. I had to reinstall my system 10.4. Everything was working fine by the time I put the computer to sleep. Sunday morning I was looking at the two "Previous System" folders I had. The first from the first time I installed sy

  • Download Never Starts

    Trying to download a trial of Adobe Photoshop Elements 10, and after clicking on the "Download now" button I get a pop up for a License Agreement for Adobe Air, and I click "I Agree". After that, nothing happens. I'm using Mozilla Firefox on a Window

  • Recover playlists?

      Hello, I need help!!! I was "helping" a friend with his iTunes yesterday and I've inadvertantly lost all his playlists. Latest version of OSX Mountain Lion itunes 10.7 - his personal preference, he doesn't like iTunes 11 All music, videos etc is st