HR t.code showing error

Hii,
T.code (S_PHO_48000513) in  reporting tools of HR  is showing error
No user group created
i have used t.code SQ02,SQ03.
thanks
Edited by: aks on Dec 6, 2008 5:33 AM

Hi Adamski,
I have been facing the same problem with Ad Hoc query (S_PHO_48000513 ) Your suggestion helped me.
This tcode will work only for standard query area user groups and infosets
Whereas S_PHO_48000510 will work for global query areas and infosets.
Thanks,
Raghu Kolukuluri

Similar Messages

  • LSMW ERROR IN FOLLOWING CODE SHOWING ERROR  AT LINE NO 79

    ALL GURUs,
    I AM CREATING A NEW LSMW (RECORDING TYPE), FOR MOVEMENT TYPE 309,BUT AT THE 11TH LEVEL IN (CONVERT DATA) DUMP IS COMING SHOWING THE ERROR
    in the Include "/1CADMC/SAP_LSMW_CONV_00000124 " in line 79:
    "For type "C", a length specification from 1 to 65535 is allowed.
    PL. HELP ITS VERY URGENT.
    PONTS WILL BE REWARDED FOR CORRECT SOLUTION
    LSM Workbench: Data Conversion Program
    Program:      /1CADMC/SAP_LSMW_CONV_00000124
    Date:         11.02.2008
    Time:       19:07:03
    User:          VMDM_SUNITA
    Project:       CUTOVER
    Subproject:   BALANCES
    Object:        TRIAL
    report /1CADMC/SAP_LSMW_CONV_00000124
      message-id /sapdmc/lsmw.
    Global data definitions and table declarations
    include:
      /SAPDMC/SAP_LSMW_INC_GLOBALS.
    Additional data definitions and table declarations
    include:
      /sapdmc/sap_lsmw_conv_data.
    Target structure definitions
    data:
      begin of TRANSFERPO occurs 0,
        TABNAME(000030) type C,
        TCODE(000020) type C,
        TRANSACTION_TYPE(000003) type C,
        REFERANCE(000003) type C,
        MOVEMENT_TYPE(000003) type C,
        DOC_DATE(000010) type C,
        POSTING_DATE(000010) type C,
        OUTPUT(000001) type C,
        LINE(000004) type C,
        SOURCE_ITEM(000040) type C,
        DEST_ITEM(000040) type C,
        SOURCE_PLANT(000030) type C,
        DEST_PLANT(000030) type C,
        SOURCE_SLOC(000016) type C,
        DEST_SLOC(000016) type C,
        QUANTITY(000017) type C,
      end of TRANSFERPO .
    data:
      init_TRANSFERPO like TRANSFERPO,
      prev_TRANSFERPO like TRANSFERPO.
    Source structure definitions
    data:
      begin of LSMW_TP309,
        DOC_DATE(008) type C,
        POSTING_DATE(008) type C,
        LINE(004) type C,
        SOURCE_ITEM(018) type C,
        DEST_ITEM(018) type C,
        SOURCE_PLANT(004) type C,
        DEST_PLANT(004) type C,
        SOURCE_SLOC(004) type C,
        DEST_SLOC(004) type C,
        QUANTITY(010) type C,
      end of LSMW_TP309.
    data:
      begin of TP309 occurs 0.
            include structure LSMW_TP309.
    data:   recnr_000001 type i.
    data:
      end of TP309.
    Counters
    data:
      g_cnt_TP309  type i.
    Counter ct_xxxxxxxxxx: number of transferred records
    data:
      ct_TRANSFERPO  type i,
      cs_TRANSFERPO  type i.
    Fixedvalues
    data:
      fv_309TRF(000000) type C.
    parameters:
      p_filept no-display,
      p_trfcpt no-display,
      p_packge(5) type n no-display.
    Select-option for wildcard value in file names
    selection-screen begin of block selopts3
                     with frame title text-003.
    select-options:
      so_wldcd for /sapdmc/lsofiw-wildcardvalue no-display.
    selection-screen end of block selopts3.
    initialization.
    Object identifer
      g_project = 'CUTOVER        '.
      g_subproj = 'BALANCES       '.
      g_object = 'TRIAL          '.
      g_objecttype = '02'.
    start-of-selection.
    Initializations
      perform initializations.
    Reset counters and flags
      perform reset_counters_and_flags.
    Reset tables
      perform reset_tables.
    Create initial structures with nodata characters
      perform create_initial_structures.
    Assign values to fixedvalues
      read table gt_lsratt with key
                 ruletype = con_rule_fixedvalue
                 rulename = '309TRF'.
      if sy-subrc = 0.
        if gt_lsratt-fixedvalue is initial.
          write: / text-019, '309TRF                        '.
        else.
          fv_309TRF = gt_lsratt-fixedvalue.
        endif.
      endif.
    Execute data conversion.
      perform execute_data_conversion.
    Final message
      perform final_message.
    Close files
      perform close_files.
    Write protocol.
      perform write_protocol.
    End program
      exit.
    Form Routines
      include:
        /sapdmc/sap_lsmw_conv_forms,
        /sapdmc/sap_lsmw_conv_prot.
    *&      Form  execute_data_conversion
          text
    form execute_data_conversion.
      data: struc_length type i.
      do.
        perform read_next_record.
        if g_flg_end_of_file = yes. exit. endif.
        case g_record.
          when 'TP309'.
            if g_flg_convert_transaction = yes.
              perform convert_transaction.
              perform clear_source_tables.
            else.
              g_flg_convert_transaction = yes.
            endif.
            assign gs_buffer-data to <g_buffer_to_struc>
                   casting like lsmw_TP309.
            move-corresponding <g_buffer_to_struc> to TP309.
            TP309-recnr_000001 = g_cnt_records_read.
            append TP309.
            add 1 to g_cnt_TP309.
            add 1 to g_cnt_transactions_read.
          when others.
    perform insert_message using ... .
        endcase.
        if ( so_tcntr-option = 'BT' and
             g_cnt_transactions_read > so_tcntr-high ) or
           ( so_tcntr-option = 'EQ' and
             g_cnt_transactions_read > so_tcntr-low ).
          exit.
        endif.
      enddo.
    Process last transaction.
      perform convert_transaction.
      perform clear_source_tables.
    endform.                    "execute_data_conversion
    *&      Form  convert_transaction
          text
    form convert_transaction.
      check so_tcntr.
      loop at TP309.
        perform convert_0001. " TRANSFERPO
      ENDLOOP.
    End of transaction
      transfer_transaction.
    endform.                    "convert_transaction
    *&      Form  clear_source_tables
          text
    form clear_source_tables.
      clear TP309[].
    endform.                    "clear_source_tables
    *&      Form  create_initial_structures
          text
    form create_initial_structures.
      perform initialize_with_nodata using
              'TRANSFERPO' init_TRANSFERPO.
    endform.                    "create_initial_structures
    *&      Form  convert_0001
          text
    form convert_0001. " TRANSFERPO
      check g_skip_transaction = no.
      g_skip_record = no.
      g_record = 'TRANSFERPO'.
    --- __BEGIN_OF_RECORD__
      TRANSFERPO = INIT_TRANSFERPO.
    --- TRANSFERPO-TABNAME
      TRANSFERPO-TABNAME = 'TRANSFERPO'.
    --- TRANSFERPO-TCODE
      TRANSFERPO-TCODE = 'MIGO'.
    --- TRANSFERPO-TRANSACTION_TYPE
      TRANSFERPO-TRANSACTION_TYPE = 'A08'.
    --- TRANSFERPO-REFERANCE
      TRANSFERPO-REFERANCE = 'R10'.
    --- TRANSFERPO-MOVEMENT_TYPE
      TRANSFERPO-MOVEMENT_TYPE = '309'.
    --- TRANSFERPO-DOC_DATE
      TRANSFERPO-DOC_DATE = TP309-DOC_DATE.
    --- TRANSFERPO-POSTING_DATE
      TRANSFERPO-POSTING_DATE = TP309-POSTING_DATE.
    --- TRANSFERPO-OUTPUT
      TRANSFERPO-OUTPUT = '2'.
    --- TRANSFERPO-LINE
      TRANSFERPO-LINE = TP309-LINE.
    --- TRANSFERPO-SOURCE_ITEM
      TRANSFERPO-SOURCE_ITEM = TP309-SOURCE_ITEM.
    --- TRANSFERPO-DEST_ITEM
      TRANSFERPO-DEST_ITEM = TP309-DEST_ITEM.
    --- TRANSFERPO-SOURCE_PLANT
      TRANSFERPO-SOURCE_PLANT = TP309-SOURCE_PLANT.
    --- TRANSFERPO-DEST_PLANT
      TRANSFERPO-DEST_PLANT = TP309-DEST_PLANT.
    --- TRANSFERPO-SOURCE_SLOC
      TRANSFERPO-SOURCE_SLOC = TP309-SOURCE_SLOC.
    --- TRANSFERPO-DEST_SLOC
      TRANSFERPO-DEST_SLOC = TP309-DEST_SLOC.
    --- TRANSFERPO-QUANTITY
      TRANSFERPO-QUANTITY = TP309-QUANTITY.
    --- __END_OF_RECORD__
      transfer_record.
      g_skip_record = no.
    endform.                    "convert_0001

    the bad guy is
    data:
    fv_309TRF(000000) type C.
    check the definition of this fixed value in step 6, especially whether output length is > 0.
    Then generate the conversion program and try again.
    Cheers
    Thomas

  • I have a problem for download in app store . it shows error code : 1009

    i have a problem for download in app store . it shows error code : 1009

    https://discussions.apple.com/thread/2439043

  • When i try to open itunes its showing error 7 code 193

    when i try to open itunes its showing error 7 code 193. it wont let me open it at all. i dont want to lose my music. i did the repair option already and it did not work.

    That article has been withdrawn.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If the advice above doesn't resolve things you could try this alternate version:
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    which is a 64-bit installer for the 32-bit version of the core application, similar to previous 64-bit releases.
    Or roll back to the previous build:
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    tt2

  • Help, my iphone is in recovery mode, and itunes shows error code 1

    help me, please. my iphone 4 is stuck in recovery mode, and when trying to restore, itunes shows " error code 1, an unknown error occurred"
    please help!!!

    me to ;/
    [23:05:36.0982] [nand_part_core:INF@2289] first 2 pages of boot blocks written with copies of partition table
    [23:05:36.0982] [nand_part_core:INF@3169] next 98 pages of boot blocks written with LLB image of size 150080 bytes
    [23:05:36.0982] [nand_part_core:INF@3172] final 156 pages of boot blocks written with random data in full page format
    [23:05:36.0982] entering update_gas_gauge
    [23:05:36.0982] entering update_ir_mcu
    [23:05:36.0982] looking for mcu nub...no entry from path!
    [23:05:36.0982] TiSerialFlasher not supported on this platform. Exiting.
    [23:05:36.0982] entering update_baseband
    [23:05:36.0982] update_baseband: registering for progress notifications
    [23:05:36.0982] create_baseband_update_options: Got imeisv: 16
    [23:05:36.0982] baseband updater options = <CFBasicHash 0x17533030 [0x59b710]>{type = mutable dict, count = 7,
    [23:05:36.0982] entries =>
    [23:05:36.0982]     0 : <CFString 0xcf1e38 [0x59b710]>{contents = "SystemRoot"} = <CFString 0x1761cb70 [0x59b710]>{contents = "/mnt1"}
    [23:05:36.0982]     5 : <CFString 0xcf1dc8 [0x59b710]>{contents = "DisallowFusiing"} = <CFBoolean 0x59b910 [0x59b710]>{value = true}
    [23:05:36.0982]     6 : <CFString 0xcf1f48 [0x59b710]>{contents = "autoSetupEnv"} = <CFBoolean 0x59b918 [0x59b710]>{value = false}
    [23:05:36.0982]     7 : <CFString 0xcf1e48 [0x59b710]>{contents = "DataRoot"} = <CFString 0x1761e8e0 [0x59b710]>{contents = "/mnt2"}
    [23:05:36.0982]     8 : <CFString 0xcf1d98 [0x59b710]>{contents = "forceUpdate"} = <CFBoolean 0x59b910 [0x59b710]>{value = true}
    [23:05:36.0982]     9 : <CFString 0xcf1f58 [0x59b710]>{contents = "disablePing"} = <CFBoolean 0x59b910 [0x59b710]>{value = true}
    [23:05:36.0982]     10 : <CFString 0xcf1eb8 [0x59b710]>{contents = "IMEISwVersion"} = <CFNumber 0x17533010 [0x59b710]>{value = +16, type = kCFNumberSInt32Type}
    [23:05:36.0982] }
    [23:05:36.0982] update_baseband: querying baseband info
    [23:05:36.0982] bbupdater: BEGIN: Querying info at stage first
    [23:05:36.0982] bbupdater:     BEGIN: Preparing first stage
    [23:05:36.0982] bbupdater:         Requested boot mode:  kBBUBootModeNone
    [23:05:36.0982] bbupdater:         Creating transport, attempts remaining 5...bbupdater:         FAILED(kBBUReturnIOError)
    [23:05:36.0982] bbupdater:         powercycling modem
    [23:05:36.0982] bbupdater:         Creating transport, attempts remaining 4...bbupdater:         FAILED(kBBUReturnIOError)
    [23:05:36.0982] bbupdater:         powercycling modem
    [23:05:36.0982] bbupdater:         Creating transport, attempts remaining 3...bbupdater:         FAILED(kBBUReturnIOError)
    [23:05:36.0982] bbupdater:         powercycling modem
    [23:05:36.0982] bbupdater:         Creating transport, attempts remaining 2...bbupdater:         FAILED(kBBUReturnIOError)
    [23:05:36.0982] bbupdater:         powercycling modem
    [23:05:36.0982] bbupdater:         Creating transport, attempts remaining 1...bbupdater:         FAILED(kBBUReturnIOError)
    [23:05:36.0982] bbupdater:         powercycling modem
    [23:05:36.0982] bbupdater:         Creating transport, attempts remaining 0...bbupdater:         FAILED(kBBUReturnIOError)
    [23:05:36.0982] bbupdater:     END(kBBUReturnIOError): Preparing first stage
    [23:05:36.0982] bbupdater: END(kBBUReturnIOError): Querying info at stage first
    [23:05:36.0982] send_bbupdate_status: sending baseband update status to host
    [23:05:36.0982] update_baseband: calling CFNotificationCenterRemoveEveryObserver
    [23:05:36.0982] update_baseband: bbupdater error: The operation couldn\U2019t be completed. (BBUpdater error 3 - Failed creating a communication transport to baseband.)
    [23:05:36.0982] 0: RamrodErrorDomain/3ec: update_baseband: failed querying baseband info
    [23:05:36.0982] 1: BBUpdater/3: Failed creating a communication transport to baseband.
    [23:05:36.0982] unable to convert ramrod error 1004
    [23:05:36.0982] restore failed with CFError:
    [23:05:36.0982] 0: AMRestoreErrorDomain/ffffffff: failed to update device firmware
    [23:05:36.0982] 1: AMRestoreErrorDomain/ffffffff: ramrod firmware update failed
    [23:05:36.0982] 2: RamrodErrorDomain/3ec: update_baseband: failed querying baseband info
    [23:05:36.0982] 3: BBUpdater/3: Failed creating a communication transport to baseband.
    [23:05:36.0982] waiting for host to acknowledge final status received...
    [23:05:36.0982] void AppleUSBDeviceMuxXXXXXXXXXXXXXXXXXXX(mbuf_t) received reset, closing 0x97b1e4d0
    [23:05:36.0982] recv(12, 4) failed: connection closed
    [23:05:36.0982] unable to read message size: -1
    [23:05:36.0982] received NULL message from host, expected final status
    [23:05:36.0982] attempting to dump restore log
    [23:05:36.0982] writing log file: /mnt1/restore.log

  • My ipod classic keeps showing error code 1439 and says its corrupted and nothing on the site that it says to do is working has anyone else had the problem

    my ipod classic 160 gb keeps showing error code 1439 and says it is corrupted and i have done everything the article on it says to do and still reads the same thing. has anyone else had the same problem if so what can i do to fix it. the ipod is only 2 months old

    If it is under warranty, bring it in to Apple Store, most of our suggestions, comes from the Apple support site..
    Besides Restoring the iPod, there are winsocks which have conflict with iTunes, perhaps, disable those plugins and disconnect the Internet and stop antivirus, while you are Restoring or Syncing the iPod.

  • My friend has send me a app gift he is in UK and i am in pakistan my itunes is showing error of redeem code which i dont have ?? require help

    my friend has send me a app gift he is in UK and i am in pakistan my itunes is showing error of redeem code which i dont have ?? require help

    You cannot gift to another country.
    Sorry.

  • Cannot restore my brand new iphone 4s ,got stuck in DFU mode and itunes shows error code (-1) please help?

    Cannot restore my brand new iphone 4s ,got stuck in DFU mode and itunes shows error code (-1) please help?
    repeatedly tried from diffierent computers and the same error code pops up (error -1)

    That's a hardware problem which will require a trip to the Apple store for evaluation, unless your phone has been jailbroken, then it's a corrupt hosts file (and we can't help you with that here as it is against the forum's terms of use).

  • I can't download/install apps (like skype) in my iphone 5 from apple store....it shows error code-1009.... can anybody help me...?

    i can't download/install apps (like skype) in my iphone 5 from apple store....it shows error code-1009.... can anybody help me...?

    The error 1009 error is normally associated with a blocked country. There are a list of countries that Apple is not allowed to sell their software to due to US restrictions

  • I'm now at Sudan. I'm from Bangladesh. After coming Sudan I can't download/install any application from apps store. It shows error code-1009. Now what to do ? can anybody help me....?

    I'm now at Sudan. I'm from Bangladesh. After coming Sudan I can't download/install any application from apps store. It shows error code-1009. Now what to do ? can anybody help me....?

    Are you trying to download apps from the Sudan app store?  If so, you have to have a valid credit card and billing address in the country of the app store to purchase from that app store.
    Some countries also have restrictions on the apps and functions allowed in their countries.

  • I updated iOS in iPhone 5 just now... But I can not download/install apps (Skype,Facebook etc.) from apple store...it shows error code -1009... What can I do...?

    I updated iOS in iPhone 5 just now... But I can not download/install apps (Skype,Facebook etc.) from apple store...it shows error code -1009... What can I do...?

    The error 1009 error is normally associated with a blocked country. There are a list of countries that Apple is not allowed to sell their software to due to US restrictions

  • HT1218 Time Capsule is showing error code -6584)

    My Time Capsule is showing error code - "An unexpected error occurred (error code -6584)"; can someone tell me what this means? Correlated, Time Machine does not show any backed up data although it says that ~400 GB out of 1 TB is remaining.

    On the More Like This.. see the various very common complaints.. just to the right >>>
    First one is good.. anything Pondini responds to listen. https://discussions.apple.com/message/17748380#17748380
    A simple reboot of the whole network.. from off.. modem .. router/TC.. clients.. 2min gap will probably fix it.
    If it keeps happening, tell us your OS. (Most likely Mountain Lion.. which has networking ability of wet string and a pair of tin cans).

  • This is my iphone 4  ECID: ********, now restore or update showing error code 1 what can i do now?

    this is my iphone 4  ECID: ******, now restore or update showing error code 1 what can i do now?

    From the article:
    Error 1 means that your device or computer may have a hardware issue that's preventing the update or restore from completing.
    1.Check that your security software and settings aren't preventing your device from communicating with the Apple update server.
    2.Then try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    3.Confirm that your security software and settings are allowing communication between your device and update servers.
    4.If you still see the error message when you update or restore, contact Apple support.

  • Hi guys i have a problem related updating icloud desktop.while updating it shows (error code :A12E5).I have macbook air mid 2011..plz sort this out

    hi guys i have a problem related updating icloud desktop.while updating it shows (error code :A12E5).I have macbook air mid 2011..plz sort this out

    olliemilne wrote:
    - I've tried holding a bunch of different keys when starting up (cmd+R etc.) but again, nothing.
    You could try booting the MBP using the OPTION+COMMAND+R keys and see if it will connect to the Apple servers.  This would allow you to install the original OSX .  I have my doubts though.
    - I've tried something crazy suggested in another thread; leaving the Macbook partially opening and shaking it, which supposedly does something to the "sudden motion sensor".
    The Sudden Motion Sensor is applicable for conventional Hard Drives, not the SSD that is in a MBA.  Doing that will serve no useful purpose.
    You have exhausted all reasonable options and will just have to have the MBA evaluated at the genius bar.
    Ciao.

  • Hi my friends why I can't download from App Store,during the download process shows error code 9001

    Hi my friends why I can't download from App Store,during the download process shows error code 9001
    I 'm from Iran and like apple very much I waiting for your response... !

    In short, because you are in Iran and probably trying to use the App store in another country. You can search the forums for several other threads on this topic.

Maybe you are looking for