Display name not getting generated When creating user thorugh GTC

We are using GTC flat file as a trusted source. We see that display name not getting generated. And same thing happening when creating a new GTC mapping.
previously when we ran with few test user got created with display name through GTC flat file , Suddenly we see this issue display name not getting generated through flat file recon.
Manually user creation has no issues.
Please let me know if you have any idea about this issue.

Don't use GTC... GTC is inflexible and buggy technology... Nothing guaranteed... Rather create your own custom trusted recon code...
For more details
26 Known Issues of Generic Technology Connectors
http://docs.oracle.com/cd/E10391_01/doc.910/e10360/issues.htm

Similar Messages

  • Profit Center Document not getting generated when direct FI doc is posted

    Dear Experts,
    Profit Center Document not getting generated when direct FI doc is posted. However CO Document is generated for Line Item 1 mentioned below.
    Accounting Entry
    Line 1 -Debit Expense ( Cost Center) 1000
    Line 2 - Credit Bank                             1000    
    Advance Thanks
    Sanjai

    Hi,
    Pls check profit center configuration.... Some config might have missed.....
    Use the t.code 1KE1 For analysing the profit center configuration.
    Regards,
    RAM
    Edited by: Ram000 on Oct 7, 2011 10:45 AM

  • Error: Object type '' could not be generated when creating sales order

    Hello Friends,
    I am using a SAP standard ITS service to create sales order.
    When I am creatin SO, it gives me error Object type '' could not be generated.
    Can you plz suggest me what is that issue & how I can reslove it.
    Regards,
    Narendra

    any inputs around this plz??

  • PO not getting generated when currency as MXN - Mexican Peso

    Hi,
    We are in SRM7.0 ECS, ECC 6.0
    When we try to create a SC with currency MXN - Mexican Pesos and vendor currency as MYR - Malaysian Ringgit, then after all the approvals SC is going to I-1111 Item in transfer Process and PO is not being generated.
    Upon my further analysis i noticed that the conversion factor for currency MXN-MYR is not maintained in TCURF table. We have maintained it now but still the same problem is occuring and SC is going to I-1111 Item in transfer Process
    When i tried to repush the SC with FM: BBP_PD_SC_TRANSFER got the message as
    Buffer table not upto date
    Could any one help on this problem
    Thanks & Regards,
    Venkat

    Hi Yann
    Thanks for your reply. I am using 4.5b. I am able to create a service PO manually in R/3 with reference to the service PR created by EBP. Also, I think this issue is very close to SAP Note 509059 but it is for EBP Release 3 & 3.5 & I am unable to find the simillar note for EBP2. Please let me know how to proceed further...
    Thanks & Regards
    Raghu

  • BED,CESS not get ubdated when creating excise invoice

    Hi experts,
    When i create excise invoice with reference to commertial invoice,BED,CESS notget ubdated
    in excise utilization tab "DEEMED is in blue color.How can i this into "NOBAND"
    I have done the CIN Customizing
    Please correct me ASAP........................
    Thanks

    When i create excise invoice,it automatically consider that the invoice belongs to deemed export..
    How can i change it to no bond from deemed in LOCAL tab of excise utilization screen

  • Application logs are not getting generated in OIM 9.1.0.2

    Hi guys,
    We have created schedulers in OIM using OIM api to create,modify and delete the users.All our schedulers working fine.and we are able to do all the opeartions quite some time back.But we are facing an issue where the logs not getting generated when we run the schedulers.But while creating/modifying/deleting users from OIM webconsole we are gettinng the logs.Any help would be appreciated.
    Thanks,
    Pavan.

    Have you configured the logger in your ljava class as well as log.properties of OIM

  • Utl_file not getting generated

    hi i wrote one procedure using utl_file , to check the output of the file in a text format and it was created successfully , intially it had problems with directory and i created that directory and even granted permissions using system user but nothing is happening the text file is not getting generated.
    CREATE TABLE ITEM (IT_CODE VARCHAR2(12),IT_NAME VARCHAR2(20))
    INSERT INTO ITEM VALUES ('A','AAA')
    SQL> CREATE DIRECTORY MY_DIR AS 'C:\TEMP'; -- this is the path of my local folder
    Directory created.
    SQL> GRANT READ ON DIRECTORY MY_DIR TO ORION2007;
    Grant succeeded.
    SQL> GRANT WRITE ON DIRECTORY MY_DIR TO ORION2007;
    Grant succeeded.
    CREATE OR REPLACE PROCEDURE it_status
    IS
    v_filehandle UTL_FILE.file_type;
    CURSOR itc
    IS
    SELECT *
    FROM item
    ORDER BY it_code;
    BEGIN
    v_filehandle := UTL_FILE.fopen ('MY_DIR', 'AAAA.TXT', 'w');
    --Opening a file utl_file.putf(v_filehandle,'Item file :GENERATED ON %s\n',SYSDATE);
    UTL_FILE.new_line (v_filehandle);
    FOR v_it_rec IN itc
    LOOP
    UTL_FILE.putf (v_filehandle,
    'Item Details %s are:s\n',
    v_it_rec.it_code,
    v_it_rec.it_name
    END LOOP;
    UTL_FILE.put_line (v_filehandle, '***END OF REPORT***');
    UTL_FILE.fclose (v_filehandle);
    END it_status;
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    i tried using get_line but there is a error
    SQL> ed
    Wrote file afiedt.buf
      1  CREATE OR REPLACE PROCEDURE it_status
      2  IS
      3     v_filehandle   UTL_FILE.file_type;
      4     CURSOR itc
      5     IS
      6        SELECT   *
      7            FROM item
      8        ORDER BY it_code;
      9  v_txt varchar2(1000) := 'aaa.txt';
    10  BEGIN
    11     v_filehandle := UTL_FILE.fopen ('MY_DIR', 'AAAA.TXT', 'w');
    12     --Opening a file          utl_file.putf(v_filehandle,'Item file :GENERATED ON %s\n',SYSDATE);
    13     UTL_FILE.new_line (v_filehandle);
    14     FOR v_it_rec IN itc
    15     LOOP
    16     UTL_FILE.GET_LINE(v_filehandle,v_txt,32767);
    17     UTL_FILE.FCLOSE(v_filehandle);
    18        UTL_FILE.putf (v_filehandle,
    19                       'Item Details %s are:s\n',
    20                       v_it_rec.it_code,
    21                       v_it_rec.it_name
    22                      );
    23     END LOOP;
    24     UTL_FILE.put_line (v_filehandle, '***END OF REPORT***');
    25     UTL_FILE.fclose (v_filehandle);
    26* END it_status;
    SQL> /
    Procedure created.
    SQL> exec it_status;
    BEGIN it_status; END;
    ERROR at line 1:
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE", line 98
    ORA-06512: at "SYS.UTL_FILE", line 656
    ORA-06512: at "ORION2007.IT_STATUS", line 16
    ORA-06512: at line 1

  • STPPOD.DELVRY03 idoc not getting generated

    Dear Experts,
    I have done the following settings for STPPOD.DELVRY03 but still idoc is not getting generated when i am posting goods reciept using VL32N
    1) For Confirmation control key selected A-Always POD Relevant
    2) For Item category ELN POD Relevant X and POD Automatic
      SAP->Customizing Implementation Guide -> LogisticsExecution ->Shipping
    ->Deliveries ->Proof of Delivery ->Set POD-Relevance Depending on
    Delivery Item Category
      3) In Vendor Master the field "POD-Relevant" is assigned the value "A".
       4) In NACE settings
              Application:E1
              condition records & output type:OPOD
              Delivery type:EL
              Function:LS
      4) In pratner profile
                  Partner Type-->LS
                  Partner Role -->  blank)
                   Message Type-->STPPOD
                   Basic Type ->DELVRY03
                  and under message control
                  Application->E1
                  Message Type
                  Process code-->OPOD
    Please suggest me if I am missing out on someting.
    Thanks
    Gaurav Gupta

    Hi Gaurav,
    Typically for STPPOD Idocs, the NACE and WE20 Settings are maintained at Vendor Level. Try changing your settings and see if it works.
    Refer this link for further details : Re: STPPOD triggered sending wrong material from SAP to SNC
    Thanks,
    Bharath

  • I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    Has your carrier been having issues with Call Display? Do the telephone numbers come up when people call, or does it just show 'Unknown Number' or 'Blocked' ?

  • When copying pic from iPhoto 09 to a file, to burn a CD, after 35 photos it stops copying and I get "Unable to create/users/dividrublesr/ documents/I don't know what is going on.

    When copying pic from iPhoto 09 to a file, to burn a CD, after 35 photos it stops copying and I get "Unable to create/users/dividrublesr/ documents/I don't know what is going on. Forgive me for any mistakes, I am a first timer.

    Given that the file is selected then the next possibility is that you're exporting two files with the same name. When you do this the export breaks down as the second file would overwrite the first. Check the filenames.
    Regards
    TD

  • Change pointers are not generated when creating a material master

    Dear Experts,  
    Change pointers are not generated when creating a material master. 
    However, when a change is made to the already created material, the change pointers are created according the fields in BD52.  
    Am I missing any settings?
    I need to create change pointers immediately when I create the material master in MM01.  
    Please suggest. 
    Regards,
    Shetty

    did you follow the steps given in
    http://help.sap.com/saphelp_nw73/helpdata/en/4a/6dcbe9c95261a3e10000000a421937/frameset.htm

  • Spool not getting generated in OO ALV report

    Hi,
    I developed a report in which we are giving output in same selection screen through OO ALV.
    But,when we are scheduling that report in background,spool is not getting generated.
    Waiting for your reply.
    BR,
    Praveen

    Hi Aparna,
    I tried NEW-PAGE PRINT ON.
    I am pasting source code extract below:
       IMPORT DATA = ME->IT_FINAL2 FROM MEMORY ID SY-CPROG.
        FREE MEMORY ID SY-CPROG.
        CHECK ME->IT_FINAL2 IS NOT INITIAL.
        CHECK LO_DOCK IS INITIAL.
        CREATE OBJECT LO_DOCK
          EXPORTING
            REPID = SY-REPID
            DYNNR = SY-DYNNR
            RATIO = 70
            SIDE  = CL_GUI_DOCKING_CONTAINER=>DOCK_AT_BOTTOM
            NAME  = 'DOCK_CONT'.
        IF SY-SUBRC NE 0.
          MESSAGE 'Error in Docking Control' TYPE 'S'.
        ENDIF.
        IF LO_ALV IS INITIAL.
          TRY.
              LO_CONT ?= LO_DOCK.
              CALL METHOD CL_SALV_TABLE=>FACTORY
                EXPORTING
                  LIST_DISPLAY   = IF_SALV_C_BOOL_SAP=>FALSE
                  R_CONTAINER    = LO_CONT
                  CONTAINER_NAME = 'DOCK_CONT'
                IMPORTING
                  R_SALV_TABLE   = LO_ALV
                CHANGING
                  T_TABLE        = ME->IT_FINAL2.
            CATCH CX_SALV_MSG.
          ENDTRY.
      CLEAR LR_COLUMN.
          TRY.
              LR_COLUMNS = LO_ALV->GET_COLUMNS( ).
              LR_COLUMN = LR_COLUMNS->GET_COLUMN( 'KSCHL' ).
              LR_COLUMN->SET_LONG_TEXT( 'Cond.Type' ).
    CATCH CX_SALV_NOT_FOUND.
          ENDTRY.
    NEW-PAGE PRINT ON.
            LO_ALV->DISPLAY( ).
            NEW-PAGE PRINT OFF.
    I am not getting spool list while executing it in background.
    BR,
    Praveen

  • Reports not getting generated

    Dear All,
    I know this is a repeat query but im unable to find information from the blogpost http://scn.sap.com/docs/DOC-41109.
    I have earlier configured the WWI setup in a linux server. Now I am testing it on a windows server. I have made all the configurations in word and for generation server. The issue is, the report is not getting generated in report management screen and is in status Generation possible always.
    When i check the wwi monitor, the doc type SBR is getting released but not getting completed. Please see the screenshot. CGSADM is working fine, RFC is working fine. I tried creating documents in CV01N and they are getting created. The DCOM settings are also good and activated the permissions there too. The DMS settings are set as per the SAP notes. However The job i scheduled is in status Finished for document generation. But when I try to generate the report, the report is created using a variant and the status of the report is in generation possible always. I checked the variant of the report and the validity is in REG_WORLD. I understand that there is some issue in the scheduled job.
    I have scheduled only one job for Document Generation as follows.
    a)Enter the job name - DOC GENERATION and choose a job class - A.
    d) Choose Start condition and in the dialog box, choose After event.
    e) Enter SAP_SYSTEM_START in the event field.
    f) Activate Periodic job - HOURLY
    g) Choose Check and save your entries.
    h) Choose Step and choose ABAP program in the dialog box that appears.
    i) Enter RC1WWIDS as the ABAP program name.
    j) Choose Check and save your entries.
    k) Before you leave the Define Background Job screen, you must save your entries once more.
    Result: The job is started whenever the SAP system is started.
    aFTER REPEATED ATTEMPTS, THE RESULT IS THE SAME AND NO CHANGE IN STATUS OF THE REPORT.
    Kindly suggest what step am i missing . I have been through all the blogs in SCN. My old blogs are however missing and hence I am not able to access them.
    I am using SAP GUI 7.30, ECC6 and EHP 5.
    Regards
    Dhinesh

    Dear Dhinesh
    Please help me to understand your system landscape.
    a.) Did you have had a SAP EHS up and running together with a "linux server" based WWI version
    and
    b.) now you are switching the same SAP system to a "windows server" based version?
    I am not sure about your screenshots. But you seem to have more than one gen server attached to the same system; did you updated as well WWI?
    So no adaption of general SAP set up (like DMS etc.)?
    Therefore any job scheduled (before afterwards) is done using a SAP account having the necessary access rights?
    Can you please check this:
    1.) create several sessions; one with WWi monitor and one with CG02; try to generate a different report for the same spec id (e.g. not MSDSUS in EN, but MSDS/FR) and check progress in WWI monitor as well as CG50
    2.) select in CG50 the report in status "generation possible"; mark it and try to "go" on ; check access rights afterwards (su53)
    I hate this status "generation possible". I believe you need to use "debug replace" to remove that entry; I can not remember any more but that was the only option to get "rid" of this entry
    Please read WWI cookbook, There is a set up possible in such a way that any action on WWI server is "logged"; may be try to analyze the log file to get idea why there is no progress regarding the generation
    PS: the problem you have detected is not related to the "validity area". It is a matter of communication issue between SAP and WWI server and the WWI process can not be finalized.
    But you are not alone with your problem (e.g. check:
    http://www.benxbrain.com/en/sap/program/RC1WWIDS-Generation-possible-status-not-changing-thread-1-1547841.htm)
    http://scn.sap.com/thread/3311944
    http://www.consolut.com/en/s/sap-ides-access/d/s/doc/H-ESEWSRSTAT
    https://scn.sap.com/thread/1575223
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/ehs-wwi-processing-272462
    Check as well your own thread: http://scn.sap.com/thread/3304285
    C.B.
    PS: may be check: http://www.stechno.net/sap-notes.html?view=sapnote&id=1094307
    as well as:
    http://www.stechno.net/sap-notes.html?view=sapnote&id=580586
    PPS I: logging feature of WWI is described here: Note 778684
    PPS II: may be check: http://www.stechno.net/sap-notes.html?view=sapnote&id=1094307
    PPS II: may be check as well: http://scn.sap.com/thread/3344033
    and http://scn.sap.com/thread/1381004

  • Alerts not getting generated from Alert rules

    Hello
    I had a problem displaying Alert messages in Alert Inbox.I have created my category and I am raising the alert from BPM and thats working fine.But in some cases where I have define rules(via Alert Configuration in Runtime Workbench) for Alert Generation alerts are not getting raised.I am having the two background jobs running as per the documentation.
    I checked by creating a rule where sender was BPM and receiver is File and the alert should get generated when the Adapter fails(i gave wrond username for FTP server).
    Any idea what step might be missing?
    Thanks in advance.
    Regards
    Rajeev

    Hello Rajeev,
    have you checked in transaction ALRTDISP if the required alert has been created at all?
    If yes, then have a look at the receivers, if no then check the following things:
    - are your jobs running sucessfully?
    - does the alert get created when you execute SALRTPROC report manually?
    - are there old alerts of the same category not confirmed and flag surpress multiple alerts activated in the alert rule?
    Best regards
    Christine

  • SP1 does not get installed when the machine is set to Japanese Language, software push through sccm 2012

    Hi,
    Please help me with the below issue, iam trying to deploy Service pack 1 on Windows 7 , 32 Bit OS
    SP1 does not get installed when the machine is set to Japanese Language, software push through sccm 2012 , it does gets installed of installed manually, by remoting into the machine
    also it gets installed through sccm when the machine is set to english language, 
    Thank you
    Tanoj
    OSLM ENGINEER - SCCM 2007 & 2012

    Hi Friends,
    we are deploying the SP1 via SCCM 2012 , and the success rate is around 50 %, its a Light touch installation where user will initiate the installation via Software Center ( Web based )
    i was able to gather few errors , and this are the errors which failed during SP1 Installation 0x800f0828,
    some errors which sccm reports display are 
    11171
    10008
    10021-
    17031 - 
    1602 - User Cancelled installation
    113 - No more internal file identifiers available
    10070 - File handle reference is no longer available
    10050 - A socket operation encountered a dead network
    11170  - The task sequence manager could not successfully complete execution of the task sequence
    i could not find the reason for some of the errors, also i am looking for a fix/woraround if any
    Also i have noticed that in few computers the task seq failed at a place where after the sp1 installation a reboot happens and then PGP BYPASS utility is uninstalled, it did not start the PGP bypass uninstall after reboot
    is there a way to cut short the Task seq and keep it simple ?
    right now its like this 
    1. checking for prerequisite : checks for OS Name and OS version
    2. installs PGP Bootgaurd Bypass
    3. System Restart
    4. Installing Windows 7 Service Pack 1
    5. Final Restart
    6. uninstall PGP Bootgaurd Bypass
    Regards
    Tanoj
    OSLM ENGINEER - SCCM 2007 & 2012

Maybe you are looking for