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

Similar Messages

  • 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.

  • 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                                                                                                                                                                                                                                                                                       

  • Upload a value in read-only field using Webservices or Workflow

    Can you please let me know if is feasible to upload a value into a read-only field using webservices or workflow
    If so, can you please provide an example?
    Thanks

    Using WS, you cant update the field value, if it is set as "Read-Only" @ the object - Field definition level, but you can update that using WS if it is set as "Read-Only" @ the layout level. Same applicable to Workflows too
    -- Venky CRMIT

  • Standard program for uploading budget values in expenses

    Hi Experts,
    can u please tell me the standard program to upload budget values in Expenses
    thanks & regards..
    Narendra

    Hi,
    This is a sample program to upload through excel sheet.
    Check this code to upload vendor master through SHDB transaction.
    report ZVEND_MST no standard page heading line-size
    255.
    *include bdcrecx1.
    *parameters: dataset(132) lower case default
    'c:\vend.mst'.
       DO NOT CHANGE - the generated data section - DO
    NOT CHANGE    ***
      If it is nessesary to change the data section use
    the rules:
      1.) Each definition of a field exists of two lines
      2.) The first line shows exactly the comment
          '* data element: ' followed with the data
    element
          which describes the field.
          If you don't have a data element use the
          comment without a data element name
      3.) The second line shows the fieldname of the
          structure, the fieldname must consist of
          a fieldname and optional the character '_' and
          three numbers and the field length in brackets
      4.) Each field must be type C.
    Generated data section with specific formatting -
    DO NOT CHANGE  ***
    data: begin of record,
    data element: LIF16
            LIFNR_001(016),
    data element: BUKRS
            BUKRS_002(004),
    data element: EKORG
            EKORG_003(004),
    data element: KTOKK
            KTOKK_004(004),
    data element: NAME1_GP
            NAME1_005(035),
    data element: SORTL
            SORTL_006(010),
    data element: LAND1_GP
            LAND1_007(003),
    data element: SPRAS
            SPRAS_008(002),
    data element: BSTWA
            WAERS_009(005),
          end of record.
    End generated data section ***
    DATA : ITAB TABLE OF RECORD WITH HEADER LINE.
    start-of-selection.
    *perform open_dataset using dataset.
    *perform open_group.
    *do.
    *read dataset dataset into record.
    *if sy-subrc <> 0. exit. endif.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\VENDOR.TXT'  
    "TEXT FILE
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = ITAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT ITAB.
    *In Loop Change Record With ITAB
    like record-lifnr_001 with itab-lifnr_001 
      perform bdc_dynpro      using 'SAPMF02K' '0100'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_field       using 'RF02K-LIFNR'
                                  record-LIFNR_001.
      perform bdc_field       using 'RF02K-BUKRS'
                                  record-BUKRS_002.
      perform bdc_field       using 'RF02K-EKORG'
                                  record-EKORG_003.
      perform bdc_field       using 'RF02K-KTOKK'
                                  record-KTOKK_004.
      perform bdc_dynpro      using 'SAPMF02K' '0110'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-SPRAS'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_field       using 'LFA1-NAME1'
                                  record-NAME1_005.
      perform bdc_field       using 'LFA1-SORTL'
                                  record-SORTL_006.
      perform bdc_field       using 'LFA1-LAND1'
                                  record-LAND1_007.
      perform bdc_field       using 'LFA1-SPRAS'
                                  record-SPRAS_008.
      perform bdc_dynpro      using 'SAPMF02K' '0120'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-KUNNR'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0130'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFBK-BANKS(01)'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
      perform bdc_dynpro      using 'SAPMF02K' '0210'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB1-AKONT'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0215'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB1-ZTERM'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0220'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB5-MAHNA'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0310'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFM1-WAERS'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_field       using 'LFM1-WAERS'
                                    record-WAERS_009.
      perform bdc_dynpro      using 'SAPMF02K' '0320'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RF02K-LIFNR'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=ENTR'.
      perform bdc_dynpro      using 'SAPLSPO1' '0300'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=YES'.
      perform bdc_transaction using 'XK01'.
    endLOOP..
    Check It, Activate it and process in SM35.

  • QM , Problem upload characteristic values with SERNR

    Hi,
    i've to upload char-values of samples with serialnumbers.
    The inspection lot is manually created ( without serialnumbers ).
    Now I use QM-IDI Function QIRF_GET_ORIGINAL_VALUES2 to get the values into the insp.lot.
    -> the values are in QASE. But the insp.lot has no ser.nrs (Tab SER04, OBJK)  ????
    How can I get the serialnumbers to the insp.lot?
    MANY thanks for any help!

    Possibility wuold be LSMW using Standard Batch/Direct Input:
    object 0130
    method 0001

  • 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

Maybe you are looking for

  • "Cannot connect to server" error when setting up MAMP local server in Dreamweaver cc 2014

    I am trying to set up my Wordpress 4.1 site with MAMP 3.0.7.3 in Dreamweaver cc 2014, but I am getting a "Cannot connect to server" error when trying to view the site live. The site works fine on the localhost:8888. I am using OS X Yosemite and PHP 5

  • Webutil, ora_ffi and source code

    Hi We use forms 6i, so, of course, we can't use webutil. What we currently do in client/server is use the get_file_name to allow the user to select a file from their drives and then that path and filename are stored in the database. Then, using some

  • Macbook Pro Crash Down

    Hi, I have a I7 macbook pro. And when a use videos or photos my macbook crash down and restart. Appear this message below. Can u help me? Anonymous UUID:       E72ED860-0FF2-9700-F2B3-E0F0D082BEE0 Sun Mar 30 02:16:22 2014 panic(cpu 0 caller 0xffffff7

  • Oracle 10G Encryption Problem - ORA-28353: failed to open wallet

    I have an Oracle 10g R2 database. I would like to use the Transparent Database Encription on a table. However, whenever I try to create or open a wallet I get the following error: ORA-28353: failed to open wallet I have a directory called wallet in t

  • Help With Vignettes?

    Greetings, all. I was just wondering if anyone had worked out a way to get the vignette effect (feathered or blurred edges on images, most commonly seen in an oval mask) in Pages. Is there anyway that's quicker, more convenient than shuffling the ima