Object name relation with t-code

hi,
this is jimmy, i am new in SAP, in security i am very confused that in PFCG when we give t-codes then in profile generator it creates list of object then how can we find which object name refers to which t-code so that we can change activity according to that.
please help me out from this confusion
Thanks

Hi,
Jimmy
according to your ?
in order to see which Objects will reflect to the selected
T-Codes is like
Example:- u have given 3 T-Codes in PFCG
like SU01, SU53 , SU56 wright
and when u Generate Profile Generator the PFCG will
automatically pulls the conserened Objects and if we want to check which Objects belong to which T-Code is
Go to SU24 (Transaction for conserned Object)
give the T-Code which u have given and Execute
and u will get displayed with the Objects under the conserened T-Code and here we will have 4 status
like exatelly I am not remembering those Status
here we will have one status like CM (CHECK & MAINTAINED) what happens like which ever the Object is checked & maintained those Object will be pulled into the PFCG Automatically and so u can see here and clarify
and if u uncheck and select M those Object will not be pulled into the PFCG Tool
with regards
prashanth

Similar Messages

  • Computer Name prompt with Country Code

    Using SCCM 2012 R2.. 
    Currently we have 21 global sites indicated by a two digit country code, for example United States US, United Kingdom, GB, Spain ES  etc.....
    We are a Dell shop so we want the serial number as well.
    Our end result should look like this. United States Computer
    <CountryCode>-<Serialnumber>
    US-23GHT54 for example.
    What is the best way to have a drop down or prompt for country code in computer name field when a tech starts the OSD process??

    Hi
    You can have a look at two of my blog post. The first one will show you how to enable Powershell support in your boot images:
    http://www.mimercon.dk/da/easyblog/entry/adding-powershell-support-in-configuration-manager-2012-r2-boot-images
    And the second one will guide you through all the step required to implement a Powershell GUI prompting for a Computer Name if the machine is unknown:
    http://www.mimercon.dk/da/easyblog/entry/prompt-for-computer-name-during-configmgr-2012-r2-os-deployment-1
    I know that this is not exactly what you want but you would "only" need to create your own Powershell GUI where you can select the country code and append the serial number to get your computer name generated. And then you could just follow the
    step in the second post and substitue my Prompt-Computer-Name GUI with your own.
    If you know a bit about about Windows Forms and Powershell it is fairly easy to create even though it might be easy for me to say that :)
    If you want I could create a basic GUI for you but you would have to be specific in how you would like it to look and I would need all the country codes you need in the drop-down box. You can find my e-mail at my web site.

  • Cost of goods sold is related with gl code combination id

    Can any one pass the query how the cost of good sold account is l liked with GL code_combination_id

    Like any other GL code, i.e.:-
    select code_combination_id
    from gl_code_combinations
    where segment1 = ’01’
    and segment2 = ’540’
    and segment3 = ’5360’
    and segment4 = ’0000’
    and segment5 = ’000’
    -- etc. according to how your COA is structured
    and chart_of_accounts_id = +{ your COA id }+;
    Regards,
    Jon

  • How to find the text id & object name to be used with read_text  ?

    Hi All
    how to determine the text id & object name associated with PO to be used with FM read_text  ?
    Regards
    Jaman

    Hi,
    For PO there will be Header Texts and Item texts.
    For header texts just Take the PO number as TDNAME.
    for Item texts Conactenate the PO number and Item Number and use as TDNAME.
    in ME23N Go to any text.Double click on it
    It will take you to text editor.
    GOTO-> header
    it will display the TEXT  ID,TEXTNAME,LANG  and TEXT OBJECT etc
    Similarly for every  text you will find and use;
    Regards,
    Anji

  • Invalid Object Name When Executing from Report Manager

    I ran some code to create a modified view of ExecutionLog3 on a SQL Server 2012 instance.  The ReportServer and ReportServerTempDB were transferred from a 2005 instance and are still on that compatibility level. After creating the new view, I 
    created a report in SSDT and it runs fine.  I deployed the dataset followed by the report.  I went to Report Manager to test it and the report fails with the following:
    An error has occurred during report processing. (rsProcessingAborted)
    The execution failed for the shared data set
    'ExecutionLog'. (rsDataSetExecutionError)
    Query execution failed for dataset ''. (rsErrorExecutingCommand)
    Invalid object name 'ExecutionLog3_Modified'.
    The code for the view is below and it came from MSSQLTips.  Why does the report run fine from SSDT and fail in Report Manager?
    USE [ReportServer]
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE VIEW [dbo].[ExecutionLog3_Modified]
    AS
    SELECT
    EL.InstanceName,
    COALESCE(C.Path, 'Unknown') AS ItemPath,
    EL.UserName,
    EL.ExecutionId,
    CASE(EL.RequestType)
    WHEN 0 THEN 'Interactive'
    WHEN 1 THEN 'Subscription'
    WHEN 2 THEN 'Refresh Cache'
    ELSE 'Unknown'
    END AS RequestType,
    -- SubscriptionId,
    EL.Format,
    Parameters,
    CASE(EL.ReportAction)
    WHEN 1 THEN 'Render'
    WHEN 2 THEN 'BookmarkNavigation'
    WHEN 3 THEN 'DocumentMapNavigation'
    WHEN 4 THEN 'DrillThrough'
    WHEN 5 THEN 'FindString'
    WHEN 6 THEN 'GetDocumentMap'
    WHEN 7 THEN 'Toggle'
    WHEN 8 THEN 'Sort'
    WHEN 9 THEN 'Execute'
    ELSE 'Unknown'
    END AS ItemAction,
    EL.TimeStart,
    YEAR(EL.TimeStart) AS Start_Year,
    MONTH(EL.TimeStart) AS Start_Month,
    DATENAME(MONTH,EL.TimeStart) AS Start_Month_Name,
    DATENAME(DW,EL.TimeStart) AS Start_Day_Of_Week,
    DATEPART(WEEKDAY,EL.TimeStart) AS Start_Day_Number_of_Week,
    EL.TimeEnd,
    EL.TimeDataRetrieval,
    EL.TimeProcessing,
    EL.TimeRendering,
    CASE(EL.Source)
    WHEN 1 THEN 'Live'
    WHEN 2 THEN 'Cache'
    WHEN 3 THEN 'Snapshot'
    WHEN 4 THEN 'History'
    WHEN 5 THEN 'AdHoc'
    WHEN 6 THEN 'Session'
    WHEN 7 THEN 'Rdce'
    ELSE 'Unknown'
    END AS Source,
    EL.Status,
    EL.ByteCount,
    EL.[RowCount],
    EL.AdditionalInfo,
    C.Name,
    C.CreatedByID,
    C.ModifiedByID,
    C.Description,
    C.CreationDate,
    C.ModifiedDate,
    CASE
    WHEN C.TYPE=1 THEN 'Folder'
    WHEN C.TYPE=2 THEN 'Report'
    WHEN C.TYPE=3 THEN 'XML'
    WHEN C.TYPE=4 THEN 'Linked Report'
    WHEN C.TYPE=5 THEN 'Data Source'
    WHEN C.TYPE=6 THEN 'Model'
    WHEN C.TYPE=8 THEN 'Shared Dataset'
    WHEN C.TYPE=9 THEN 'Report Part'
    END AS Type_Description
    FROM
    ExecutionLogStorage AS EL
    LEFT OUTER JOIN Catalog AS C ON (EL.ReportID = C.ItemID)
    GO
    Lee Markum

    Hi Lee,
    According to your description, you can't process the dataset when viewing the report on report server. Right?
    In this scenario, as you can see the dataset name in error message is empty, and it says "Invalid Object Name". Because you have already created a view in your database. When you run this report again, this query be executed again so that you can
    not create another view with same name. So you just need to query the view directly when creating dataset. 
    Select * from ExecutionLog3_Modify
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Invalid object names

    Hi,
    When a Library object is created with certain special chars in Ifs I get the following exception : oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    oracle.ifs.common.IfsException: IFS-32609: Object name would produce a path containing illegal characters]
    I would like to know if there is any documentation relating to what are valid object names in Ifs. If so can you please let me know.
    Thanks
    Lavanya

    Hi Luis,
    Thanks for your response.That was helpful.
    What I have found is besides the characters which the api getIllegalPathCharacters() returns , an object name ending with a "." is also invalid, b'cause I get the same exception I have mentioned above.
    I would like to know if there are any more such cases.
    Thanks
    Lavanya

  • Code 91 - Caused Error: (Object variable or With block variable not set)

    Hi,
    We are using FDM 9.3.1. We have enabled batch processing.
    We are having following process being followed
    - Batch Loader script will pull the data from dwh table for each entity, scenario, year and period
    - Batch processing is set to serial and processlevel set to Up-To-Check
    - We had following five files created for Location - EMAFF100
    i. 1_EMAFF100_ACT_May-2011_RR.txt
    ii. 1_EMAFF100_ACT_Jun-2011_RR.txt
    iii. 1_EMAFF100_ACT_Jul-2011_RR.txt
    iv. 1_EMAFF100_ACT_Aug-2011_RR.txt
    v. 1_EMAFF100_ACT_Sep-2011_RR.txt
    Batch loader process completed the processing for May - 2011, Jul - 2011, Aug-2011, Sep-2011.
    But for Jun 2011 it has given the following error in the 'tbatchinformation' table and failed at import stage.
    40751.6239236111 1_EMAFF100_ACT_JUN-2011_RR.TXT 2 2 91-Object variable or With block variable not set
    When we checked the view error log from tool menu we found following
    ** Begin FDM Runtime Error Log Entry [2011-07-27-14:58:29] **
    ERROR:
    Code......................................... 91
    Description.................................. File [1_EMAFF100_ACT_Jun-2011_RR.txt] Caused Error: (Object variable or With block variable not set)
    Procedure.................................... clsBatchLoader.mFileCollectionProcess
    Component.................................... upsWBatchLoaderDM
    Version...................................... 931
    Thread....................................... 5600
    IDENTIFICATION:
    User......................................... ncreighton
    Computer Name................................ HYAPSDEV1
    App Name..................................... EMATTEST
    Client App................................... WebClient
    CONNECTION:
    Provider..................................... ORAOLEDB.ORACLE
    Data Server..................................
    Database Name................................ hydev_serv
    Trusted Connect.............................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location..................................... EMAFF100
    Location ID.................................. 762
    Location Seg................................. 16
    Category..................................... ACT
    Category ID.................................. 13
    Period....................................... Jun - 2011
    Period ID.................................... 30/06/2011
    POV Local.................................... False
    Language..................................... 1033
    User Level................................... 1
    All Partitions............................... False
    Is Auditor................................... False
    We then re submitted data for Jun period and saw batch process got successfully completed and June data got imported successfully and also rest other processes got through.
    Can any one provide exact cause for this error? As we have automated the data load from DWH to FDM And then to HFM. Hence when such error comes it disturbs lot of processing there on. Appreciate your early response.
    Thanks in advance.

    Hi SAP collegues,
    At my site, BPC Excel created this problem too "Object Variable or With Block Variable not set" .
    It turned out that this is symptom of a a dys-functioning BPC COM Plug-in in XL2007 or XL2010!
    This is a consequence that your Excel recently crashed while using BPC. And it relates to an Excel Add-in becoming disabled when the applications crashes.  Please check the following.
    Note before doing the following, close all other open Excel and BPC sessions.
    Within Excel go to File à Options
    Select the Add-Ins option on the left
    Select the <<COM Add-ins >> option in the Manage drop down, and click Go
    Make sure that the Planning and Consolidation option is selected.  If not, mark this box and click OK.
    If you do not see anything listed, return to the Add-in screen and select the Disabled Items option, and see if Planning and Consolidation is listed there.
    Let me know if you have any queries,
    Kind Regards,
    robert ten bosch

  • The user '*' preference item in the 'User - 6th Form Students Policy {E03166E7-A848-48B5-AA93-97B848AA9C13}' Group Policy object did not apply because it failed with error code '0x80070003 The system cannot find the path specified.' This error was suppres

    I am looking at an issue with users not getting specific group policies. 
    After searching a number of client computers I found that the following error
    The user '*' preference item in the 'User - 6th Form Students Policy {E03166E7-A848-48B5-AA93-97B848AA9C13}' Group Policy object did not apply because it failed with error code '0x80070003 The system cannot find the path specified.' This error was suppressed.
    I can find the folder in the Sysvol folder on all of the domain controllers. 
    The issue with end users seems to be that the proxy settings for internet explorer is not being applied. 
    Potential problems?
    one folder in sysvol entry is empty 
    \\<server>\SYSVOL\<domain.name>\Policies\{E03166E7-A848-48B5-AA93-97B848AA9C13}\User\microsoft\IEAK\LOCK
    or is this our issue
    The old method of configuring proxy settings  to Internet Explorer 9 has changed?
    https://support2.microsoft.com/kb/2530309?wa=wsignin1.0 
    http://thommck.wordpress.com/2013/11/08/the-new-way-to-configure-internet-explorer-proxy-settings-with-group-policy/

    Hi all 
    In administering this policy I am a little confused. 
    We have a policy that distributes proxy settings in the internet explorer maintenance settings section - however when opening this policy up in GPO editor the internet explorer maintenance section is not present.
    I plan to apply the settings via User/preferences/control panel settings/ internet settings (or registry settings from article) however I am unable to edit the settings for internet explorer maintenance and these will persist. Ideas????

  • Cost element report with cost object name column

    Hi,
    i'm looking for a report similar to S_ALR_87013601: Cost Elements: Breakdown by Object Type, but including a column with the cost object name. Does anyone know if such a report exists? If it doesn't exist, how can i create a report like this?
    Some of my company costs are assigned to cost centers and some of them are assigned to wbs elements. We would like a report where we could have all the information together.
    Thank you very much

    Hi Xavi ,
    Some of my company costs are assigned to cost centers and some of them are assigned to wbs elements. We would like a report where we could have all the information together.=>
    There is not standard report available..  which will display total cost per company code.. i,e cost booked on cost centers, internal order and WBS elements ... This is becuse each modules store data in seperate tables.
    You have to create a ABAP report to serve your pourpose. You have to collate all the costs booked in a company code for cost centers, IO and WBS elements . Pick up real costs only as per company code..
    We are using such custom report and its working fine.
    Regards
    Sarada

  • Marking object names to be identified in fxg code

    We have engaged a designer to build screen layouts out that we want to replicate in Flash builder- Pls note we are not exporting the layout as Fxg as we need to build subcomponents within the layout
    So we have tried to export the Illustrator output in fxg format and check the settings which we replicate in FlashBuilder. We would like to name the objects in Illustrator meaningfully so we can connect the front-end with names in the fxg code.Right now the fxg code runs into 1000+ lines and challenging to connect the individual controls with objects in the code. Currently we see an objID.
    How do we name objects in Illustrator meaningfully from the front end?

    Did you try naming them in the Layer Panel?
    here I name an object rectangle and it shows up as rectangle the symbols are called bubble they show up as well so I think you may simply name the object and then look for userLabel="name" and you will be able to find the objects in the case of a symbol they will all be the same so you can change all.

  • List of Authorization Object with Transaction Code

    Dear All ,
        Does SAP provide  any report to list all the Authorization Object ? and which object is belong to which transaction code ?
    Thanks .

    hi olrang ,
    STEP BY STEP TO CREATE AUTHORIZATION OBJECT:
    STEP1:  goto  SU21 transaction and create a new Authorization Object
    Object Name:  Z.....
    Text:  ...........
    ClassL  SD (YOUR MODULE)
    AUTHOR:  YOUR ID
    STEP2:  Give authorizatin fields as
    ACTION - Action of the Authorization
    Activity -  Document Destribution.
    STEP3:  Basis will create a role using transaction  PFCG and assign this authorization object to that role.
    STEP4:  Call the AUTHORITY-CHECK Object in your code.
    AUTHORITY-CHECK OBJECT <authorization object>
    ID <authority field 1> FIELD <field value 1>.
    ID <authority field 2> FIELD <field value 2>.
    IF sy-subrc 0.
    MESSAGE e000(zzpp) WITH 'No Authorization'.
    ENDIF.
    and it belongs to  SU24 transaction code
    Saurabh Goel

  • I want parameter for program name entering with f4 help pls send  code

    I want parameter for program name entering with f4 help pls send code
    Points if helpful

    Hi,
    PROG is a string which indicates the type of the object --- program
    u can call the FM as follows
    CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'
      EXPORTING
    <b>    object_type                     =  'PROG'
       OBJECT_NAME               =  p_report</b>
      ENCLOSING_OBJECT                =
      SUPPRESS_SELECTION              = 'X'
      VARIANT                         = ' '
      LIST_VARIANT                    = ' '
      DISPLAY_FIELD                   =
      MULTIPLE_SELECTION              =
      SELECT_ALL_FIELDS               = ' '
      WITHOUT_PERSONAL_LIST           = ' '
    IMPORTING
      OBJECT_NAME_SELECTED            =
      ENCLOSING_OBJECT_SELECTED       =
      STRUCINF                        =
    TABLES
      OBJECTS_SELECTED                =
      RECORD_TAB                      =
    EXCEPTIONS
      CANCEL                          = 1
      WRONG_TYPE                      = 2
      OTHERS                          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Patil

  • All my contacts are stored with country code for eg   233 244 123456. Contact names do not appear during incoming calls. Once the country code is removed , names appear. Please help

    All my contacts are stored with country code for eg   +233 244 123456. Contact names do not appear during incoming calls.
    Please help

    http://discussions.apple.com/thread.jspa?threadID=2280669&tstart=0

  • How to know the workflow object name assigned to a Transaction code

    Hi Friends,
    There is one workflow object assigned to one transaction code VKM1. How can i know the workflow object name assigned to that particular transaction. Can anybody help me?
    Regards
    shankar

    HI
    Please check t.code PPOMW
    Thanks & Regards
    Phaneendra

  • BOXIR2: Object name not prefixed with class

    While creating Webintelligence report from a universe having more than one Dimension object with same name in different classes, the Object name is not prefixed with Class Name.
    1. The issue occurs after migration to XIR2 Webintelligence.
    2. 6.5 version of WebIntelligence and XI Desktop intelligence is prefixing class name in above scenario.
    REPRODUCTION STEPS:
    Create a universe with 2 classes (C1 & C2), Create a dimension object D1, D2 under class C1 and D2 & D3 under class C2. Export the universe.
    Create a webi report from the published universe, In Java Query panel , Drag all 4 Dimension Objects to Query Filter Section.
    Perform the above in Webintelligence of BO 6.5 & BO XI. Note that in BOXI Class name is not prefixed.
    Please let me know weather its change in the product or bug.

    Yes this is a bug...

Maybe you are looking for

  • Colors not printing correctly. Only blue and black work.

    I just got a new HP OfficeJet all in one inkjet 8620 printer. The colors aren't printing correctly. Everything comes out light blue with black lettering. I tried installing new cartridges (genuine HP) and also tried gently shaking the cartridges. But

  • Can I encode real-time sound to A-LAW or U-LAW? And make it louder?

    Hi there, I'm making a voice chat application, that currently works using the Java Sound API (So no JMF), in the following PCM_SIGNED format: public static final AudioFormat FORMAT = new AudioFormat(             AudioFormat.Encoding.PCM_SIGNED, 16000

  • Loading OS 9 - It's never ending

    The last few times I've tried to load OS 9 the loading indicator bar gets almost to the end, but not quite. It doesn't stop, either. It just keeps showing that it's loading. I've reinstalled OS 9 from the disk that came with my iMac 5. Nothing change

  • How to add value to Root node in message mapping i.e. ns1:sObjects to ns1:sObjects xsi:type="Account"

    Hi Experts,   please provide me any  UDF or Java or XSLT maaping code to add text into the root node of the payload i.e. my target Payload will be like <ns1:sObjects> <ns2:Id>123</ns2:Id> <ns2:name>Test message <n/s2:name> </ns1:sObjects> and i have

  • SOAP and Export Functionality

    How does one enable Export Functionality on a form? We're trying to use SOAP to load information dynamically into a form running in a browser. Works fine with Acrobat but doesn't work with Adobe Reader 7.0. I see in the documentation that you need Ex