EEDM01 EEDM02 Profile values Enhancement

Hi,
I was looking on a way to enhance the EDM Profile values transactions (EEDM01/02) by adding some extra fields in the ALV showing the profile values.
Since I haven't found any Screen-exits or BAdI, are you aware about any solution to achieve that?
Regards,
John

Check table EPROFVALSTAT that your profile values also have a status for the period you are looking at in EEDM02.
If they don't then they won't show up.
If there is no status then something must go wrong in your upload. Check the STAT in the PROFILEVALUES parameter in your BAPI call. Make sure it is translated from external to internal status in customizing.

Similar Messages

  • Upload Profile Values

    Hi Folks,
    I would like to know how to upload profile values in SAP.
    In our current project due to time zone problem half of the profile values are stored in one valueday and the rest of the values are stored for the next valueday.
    Thanks,
    Imran

    Hi Imran,
    You can upload profile values through transaction code EEDM01.
    However, through the above transaction code  you can only upload on a one to one basis and not mass.
    If you want to perform a mass upload of profile values you need to develop a customise program using the FM BAPI_ISUPROFILE_UPLOAD.
    Hope it helps...
    Thanks,
    Amlan
    Edited by: Amlan B on Aug 11, 2010 10:09 PM

  • How to change the profile value in the pl/sql code without making change in the database

    How to change the profile value in the pl/sql code without making change in the database.

    I have program ,where if the profiles 'printer and nunber of copies ' are set at the user level, by default when the report completes the O/p will be sent to the printer mentioned in the set-up. but what user wants is
    if these Profiles are set for the user running this program automatic printing should not be done.

  • How to create a profile value at user level programatically

    Dear all,
    I want to create a profile value at user level programatically, I refer to the developer guide and try to use fnd_profile.put() to create a new value.
    But I find out the value is just created in session level, not be inserted into base table.
    So is there anyone know how to realize this function in PL/SQL?
    Any idea is appreciated.
    Best Regards,
    Kenny

    Check Note: 364503.1 - How to Set a System Profile Value Without Logging in to the Applications
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=364503.1

  • Partner profile value for XI system

    I got a outbound message with partner profile value as
    <SAP:SNDPOR>XIDEV</SAP:SNDPOR>
      <SAP:SNDPRN>XiALE01</SAP:SNDPRN>
      <SAP:SNDPRT>LS</SAP:SNDPRT>
    Where do I go and change the SNDPRN value in SLD? or is it SLD I change it. SAP R3 is looking for sender partner profile in caps. How to change this value in XI
    thanks

    Hi,
    Please update few things.
    1. Since it is an outbound from XI into another R/3 machine, I would first suggest you to check IDOC posted in R/3 which has an error message tagged to it. This is applicable only when Message went from XI into R/3 and we see an error in the SXMB_MONI as RFC destination not found etc.,.
    In such a case, IDOC error message with 53/51 etc, will post an error message like "SENDER NOT IDENTIFIED". This SENDER and RECEIVERs can be seen in the CONTROL RECORD of the IDOC.
    From R/3, use transaction WE02/WE05 and locate your IDOC (normally in the OUTBOUND folder on left, look at last few messages which have RED TRAFFIC SIGNAL and match the partners).
    To resolve this, create the RFC PORT first. XIDEV using WE21 referring to your XI client. The prerequisite for this is to have a RFC destination already created to port XI and a logical system (BD54 transaction).
    Create a Logical System (Business Partner) of type LS using WE20 and (Logical system you have created or identified in BD54) should be configured as you want.
    This should resolve your issue.
    2. If the issue is with XI and message is not seen in R/3, make sure you have assigned proper logical system in the SLD for your technical landscape. If this is pointing to a different logical system, then probaboy you may want to change to suitable logical system.
    Suggest you to look for the definitions using SM59 and IDX1 in R/3.
    Hope this answers, please let us know your findings.
    Thanks,
    Srini.

  • WebI Publication: Logical OR in Profile Values

    Hello,
    In my WebI publication I am using profile values, which I defined for every user.
    For example I have two profiles: "Employee City" and "Sales City". For my user I defined the the values Employee City=New York, Sales City=New York.
    How can I define an logical OR between those profiles, so that a row shows up in the report, if the dimension [Employee City]="New York" OR [Sales City]="New York"?
    I am using BO 4.0 SP7 Patch 2
    Thanks!

    The only solution would be implementing in with Row Level Security. Or has anyone a better idea?
    Thanks!

  • Profile value per_person_id is not listed for $PROFILE$ block

    Hi All,
    I have reqirement to retrive the person_id to default Employee number in Personal analysis descriptive flex filed segment.
    When i tried using $PROFILES$.PER_PERSON_ID or fnd_profile.value('PER_PERSON_ID') is not working for me.
    Then i have checked the profile value list using "diagnostic-->examin" option in the application where i am not able to find the Per_person_id in the list.
    Note: We are using the Oracle Applications : 11.5.9
    Is there any way to meet my reqirement?
    Appriciate your contribution towards this issue.
    Thanks in advance.
    Kumar
    Edited by: Kumar Kasinathan on 04-Jul-2012 00:07
    Edited by: Kumar Kasinathan on 04-Jul-2012 00:14
    Edited by: Kumar Kasinathan on 04-Jul-2012 00:16

    Hi, I need to attach a value set to attribute12 which should not be the employee number, attribute12 of per_all_people_f and employee_number of a custom table and the number for the attribute12 should be the unique value.
    The steps i have followed
    1. created a table file_number to hold the numbers from 0000001....to...9999999
    2. created a view-file_number_v to have unique numbers as
    SELECT fn.file_number
    FROM file_number fn
    WHERE NOT EXISTS (SELECT 1
    FROM per_all_people_f pap1
    WHERE pap1.employee_number = fn.file_number)
    AND NOT EXISTS (SELECT 1
    FROM per_all_people_f pap2
    WHERE pap2.attribute12 = fn.file_number)
    AND NOT EXISTS (SELECT 1
    FROM table1 t1
    WHERE t1.employee_number = fn.file_number)
    3. Created a table validated value set based on the above view and attached it to the Attribute12 of the DFF
    Its worked fine for new inputs, but when ever i try to requery the employee,hence the number is inserted in the attribute12 column of per_all_people_f table the value set validates and provides error message.
    To avoid this i have used the following temp table query,
    (select file_number fn from file_number_v
    union all
    select attribute12 fn from per_all_people_f where attribute12 = :PERSON.ATTRIBUTE12:NULL) temp
    I have used the above query as table in the valueset.
    Now i have to get the person_id to use it on the above query to avoid the issue which i have mentioned in previous discussion.

  • Setting dynamic profile values in R3.0

    Hi
    Using the SDK can we set up profile values dynamically for use with Bursting. Currently it seems I have to define the profile values manually for each user and group or can use only the username, email or fullname for dynamic purposes.
    What i want to do is have a table, report or file which has a listing like
    user1   USA   blankets
    user2   USA   pillows
    user1   CAN   pillows
    user1   IND     shirts
    using this I want to setup a dynamic profile such that user1 = SELECT country FROM table WHERE uname = '%SI%TITLE%'
    or any similar mechanism....
    thanks for your help!
    Asim

    Profiles are fairly static things, so I don't think altering them via the SDK would be amenable to dynamically changing profile values or targets on-the-fly.
    Sincerely,
    Ted Ueda

  • How to capture profile value in AM

    Hi,
    How to capture profile value in AM.
    Krishna

    Here is the code you can use
      String profileValue=  getOADBTransaction().getProfile("profile Name");Thanks
    --Anil                                                                                                                                                                                                                                                                                       

  • Need to get profile value defined at responlibility level

    Hi I have a procedure which have to get the profile value defind at responsibility level.
    I will be passing resp id as in parameter to that procedure.
    The thing here is, I will not be creating a concurrent program for this. And this procedure will be accessed by some other application by connecting to apps database and executing
    SO this is completly a procedure which is runned from back end.
    Now to get that profile value I used
    fnd_profile.value_specific('XXPROFILE',NULL,RESP_ID,NULL,NULL,NULL)
    BUt it is not getting any value.
    Please let me know for any other solutions.
    Thanks

    Hi;
    Please check below which could be helpful for your issue:
    How To Set A System Profile Value Without Logging In To The Applications [ID 364503.1]
    Script To List The Values Of A Profile Option At All Levels [ID 803587.1]
    How to Change Profile Option Value Without Forms [ID 943710.1]
    Regard
    Helios

  • IDOC date interval for Profile values during Summer/winter change

    Hi SDNers,
    I have a Mail-to-IDoc Scenraio, where I need to import profile values with 15 min time intervals. Everything is OK except for the date of Summer/Winter change. For example the normal day has 96 intervals where the Day during which Summer->Winter time change occurs must contain 100 intervals. I tried the combination in various ways but in vain. I recieve SQL dup rec error or Invalid date error. Any suggestions how to implement this in an efficient manner.
    Thanks in advance
    regards
    satish

    Sachin,
    No offence intended, but , it would be helpful if you can also tell us how you arrived at the soltuion.
    Regards,
    Bhavesh

  • EDM Report to generate profile values (synthetic profile)

    Hi profis!
    I want to create a report to generate synthetc profile values in IS-U/EDM.
    Can you suggest a function modul or an object type and accordingly method/methods?
    thanks a lot!
    regards
    Reiner

    Hello,
    The following function module  ISU_S_SYNPROF_GENERATE_ALL should be of help...however be aware it has status "not released" for customers
    Regards
    Olivia

  • User Personal Profile Values

    Hello,
    We have a custom profile to set up the default printer at a user level for our shipping program (in R12).  Currently, our users do not have access to the Personal Profile Values form and I would like to give them the ability to change this themselves.
    The issue I have is allowing them to change other profiles.  I'd like to limit them only to the one profile for changing their default printer.
    Is it feasible to run an update statement like the one below to set this up:
    update applsys.fnd_profile_values
    set user_visible_flag = 'N',
    user_visible_flag = 'N'
    where profile_option_id <> 11632;
    Or is there a better script that we should run to update this.
    Regards,
    Matt

    You can use the above update to change the visibility of your custom profile option (or you can achieve the same from the application -- Application Developer or System Administrator > Define Profile Option).
    You may also see the docs in this thread https://forums.oracle.com/thread/2569789
    Btw, why are you setting user_visible_flag twice in your above update? And, I think you need to change "profile_option_id <> 11632;" to be "profile_option_id = 11632;" -- Assuming 11632 is the profile option if of your custom profile option.
    Thanks,
    Hussein

  • EDM Profile values

    Hi all,
    Could someone tell me what is the industry standard of profile values under Profile value Category "Quantity", whether it is readings or consumption.
    As of now when we compute the billed quantity it is calculated as sum of the profile values, indicating the profile values are consumption values.
    Are there also scenarios where meter readings (instead of consumption) are used in profile values. If so what is the procedure to compute the consumption
    With thanks & regards,
    Vinodh

    Profile values are typically consumption (electricity or gas, resp. kWh and m3) or demand (electricity, kW).
    I have not seen a scenario where the profile contained the readings. However if the meter (or metering system) would provide this information on a periodic time basis it would be no problem to store it in a profile.
    Consumption would then have to be derived in the RTP interface from the readings in the period billed.

  • Difference in SYSADMIN Profile Values

    Is there a way to query the SYSADMIN profile values from two different environments and to compare the differences? I figured I could query them and dump them into excel side by side and somehow compare but I wondered if there was a way to do it via SQL or PL/SQL.
    thanks in advance!
    Rob

    Not sure what you mean by the SYSADMIN profile. If you are talking about database profiles one method of comparison would be to setup a database link between the two databases of interest and then issue a query like the following:
    SELECT  A.RESOURCE_NAME
    ,       A.LIMIT
    ,       B.LIMIT
    FROM    DBA_PROFILES A
    JOIN    DBA_PROFILES@DBLINK B ON A.RESOURCE_NAME        = B.RESOURCE_NAME
                                 AND A.PROFILE              = B.PROFILE
    WHERE   A.PROFILE='SYSADMIN'HTH!

Maybe you are looking for

  • Mail help! Looking for an additional Mail App for Exchange!

    I have been desperately looking for an additional (not the built in) app so I can read my corporate email on my iphone. Does anyone know of such an app? Thanks...

  • Item categories are re-determining based on batch split during delivery

    Hello All, During delivery item categories of bill of materilas are changing based on batch split. Scenerio: item level bill of materials configured. Ex: COMPUTER is main item and item category group is LUMP and item category is TAP but it is releven

  • How can I delete a template

    The envelope templates provided generate a "media not loaded correctly".  I made my own that works, but in the process I made and saved one that also generates the  "media not loaded correctly" error.  I would like to get rid of that one (or at least

  • Bookmark with Query View Issue !!!

    Hello Experts, I have a query view for my data provider. I change the Variable at runtime and modify the layout and when i try to bookmark the page it always uses the defaults from the Query view. Variable Screen <SAP_BW_URL CMD='PROCESS_VARIABLES' V

  • Enter Ms Acess from java with password

    I've written a program that can save the user's detail into a database, which was build with MS Access. This database has been set a password which i need to enter password to access the table to view the data. What the java code need to enter the ID