Users in flat file not shown in Ressources Tab

Is it normal that users saved in flat (XML)files are not shown in the ressources tab?
When I acces the active directory or a WINNT or Solaris passwd file I see a "+" in front of the ressource with clicking on it I see all users within this ressource.
But there's no "+" in front of my XML ressource also I have some users saved within my XML file!?

I think you must be looking at the reconciliation account index. Only resources that you have reconcile against will have entries in the account index.
sbr

Similar Messages

  • Files not shown in main catalog

    Why does my main catalog say that there are 17 files not shown? There are no hidden files.

    Thank you Brett; I have several files in stacks. I am new to Photoshop and still learning the program.

  • Ship to party,Bill to party, payer, sold to party not shown in partners Tab

    Hi,
    Kindly note that Ship to party,Bill to party, payer, sold to party not shown in partners Tab.
    Eventhough SP,SH,BP,PY are assigned to customer KU only.
    And we have assigned Partner Functions ot account Group.
    Still Ship to party,Bill to party, payer, sold to party not shown in partners Tab
    Please help.
    Regards,
    Rajkumar.C

    Hi
    Please check the following setting once again in spro > sales and distribution > baisc function > partner determination > For customer master
    1. check for partner determination procedure AG , if you have created a new one then please check whether it is there in the list.
    2.Select the AG and then check for whether the partner function has been made mandatory in the procedure or not.
    tick mark  SP, BP,SH,PY , since Sold to party should not be allowed to change so mark it as Not Modifable
    3. partner determination procedure assingment for the account group. AG should be assinged to your account group
    4. Account Group Function assingment - Make sure your all the partner function SP,BP.PY.SH has been assinged to the Account group here.
    Thanks
    RB

  • Flat file not created

    when i run the procedure i created, the flat file is not created in the specified directory....can someone tell me why?
    the procedure is below. thanks
    PROCEDURE po_creation IS
    fHandle UTL_FILE.FILE_TYPE;
    sc_shipcode varchar2(3); -- XX
    sc_po_no varchar2(14);-- orderform.FORMNO VARCHAR2(20)
    sc_po_status varchar2(1);-- orderform.orderformstatus number(1)
    sc_ol_status varchar2(1); -- XX
    sc_vender_no varchar2(10);-- sparetype.makerid number(9)
    sc_credate date; -- orderform.CREATEDDATE DATE
    sc_lastdelivery_date date; --orderform.LATESTDELIVERYDATE date
    sc_gl_acccode varchar2(30); -- XX
    sc_curr_code varchar2(3); -- orderline.CURRENCYCODE CHAR(3)
    sc_freigtt_vendor varchar2(15); -- XX
    sc_orderline_no number(4,0);-- orderline.orderlineno NUMBER(4)
    sc_contact_no varchar2(40); -- XX
    sc_description varchar2(40);-- orderline.NAME VARCHAR2(60)
    sc_price number(12,2);-- orderline.PRICE NUMBER(12,2)
    sc_quantity number(12,2); -- [sparepartlog.quantity NUMBER(9,2)](coded item) OR [orderline.received NUMBER(9,2) - orderline.sapqtyreceived NUMBER(9)](non coded items)
    sc_unit varchar2(15); --unit.name VARCHAR2(15)
    sc_discount_val number(12,2);-- orderform.SHIPPING NUMBER(12,2)
    sc_discount_per number(5,2); -- orderline.DISCOUNT NUMBER(5,2)
    sc_partno varchar2(40); -- sparetype.parttypeno varchar2(30)???
    sc_makerref varchar2(40); -- orderline.MAKERREF VARCHAR2(50)
    sc_po_user varchar2(40); -- orderform.CREATEDBY NUMBER(9)
    sc_order_date date; -- orderform.ORDEREDDATE DATE
    sc_asset_no varchar2(16); --orderline.COMMENT2 VARCHAR2(40)
    sc_receive_date date; --orderform.receiveddate date(coded item) sparepartlog.transdate date (non coded item)
    Cursor my_cursor is
    select substr(a.formno,1,3), substr(a.formno,1,14), a.formstatus, a.formstatus, d.makerid, to_date(a.createddate,'YYYYMMDD'),
    to_date(a.latestdeliverydate,'YYYYMMDD'),b.budgeted ,b.currencycode,substr(b.name,1,15),b.orderlineno ,b.comment1, substr(b.name,1,40),b.price,
    substr(c.quantity,1,12),/*substr( b.received,1,12), substr(b.starcruises_sap_qty_received,1,12),*/e.name , a.shipping , b.discount,
    substr(d.parttypeno,1,40), substr(b.makerref,1,40), to_date(a.createdby,'YYYYMMDD'),to_date(a.ordereddate,'YYYYMMDD'),
    b.comment2,to_date(a.receiveddate,'YYYYMMDD')--, to_date(c.transdate,'YYYYMMDD')
    from orderform a, orderline b, sparepartlog c, sparetype d, unit e
    where a.orderid=b.orderid
    and b.unitid=e.unitid
    and a.orderid=c.orderid
    and e.unitid=d.stockunitid
    and rownum < 10 ;-----------testing purpose
    Begin
    fHandle := UTL_FILE.FOPEN('c:\pete','po.txt','w');
    UTL_FILE.PUT_LINE (fHANDLE,to_char(sysdate,'YYYYMMDD'));
    open my_cursor;
    LOOP
    FETCH my_cursor into sc_shipcode, sc_po_no,sc_po_status ,sc_ol_status ,sc_vender_no,sc_credate, sc_lastdelivery_date,
    sc_gl_acccode,sc_curr_code ,sc_freigtt_vendor,sc_orderline_no ,sc_contact_no,sc_description,
    sc_price,sc_quantity,sc_unit,sc_discount_val,sc_discount_per,sc_partno,sc_makerref,sc_po_user,
    sc_order_date ,sc_asset_no ,sc_receive_date;
    EXIT WHEN
    my_cursor%NOTFOUND;
    /*check the lenght of each colum to be written to text file*/
    sc_shipcode:=RPAD(sc_shipcode,3,'');
    sc_po_no:=RPAD(sc_po_no,14,'');
    sc_po_status:=RPAD(sc_po_status,1,'');
    sc_ol_status:=RPAD(sc_ol_status,1,'');
    sc_vender_no:=RPAD(sc_vender_no,10,'');
    sc_gl_acccode:=RPAD(sc_gl_acccode,30,'');
    sc_curr_code:=RPAD(sc_curr_code,3,'');
    sc_freigtt_vendor:=RPAD(sc_freigtt_vendor,15,'');
    sc_orderline_no:=RPAD(sc_orderline_no,4,'');
    sc_contact_no:=RPAD(sc_contact_no,40,'');
    sc_description:=RPAD(sc_description,40,'');
    sc_price:=RPAD(sc_price,12,'');
    sc_quantity:=RPAD(sc_quantity,12,'');
    sc_unit:=RPAD(sc_unit,15,'');
    sc_discount_val:=RPAD(sc_discount_val,12,'');
    sc_discount_per:=RPAD(sc_discount_per,5,'');
    sc_partno:=RPAD(sc_partno,40,'');
    sc_makerref:=RPAD(sc_makerref,40,'');
    sc_po_user:=RPAD(sc_po_user,40,'');
    sc_asset_no:=RPAD(sc_asset_no,16,'');
    /*write to file */
    UTL_FILE.PUT_LINE( fHandle,sc_shipcode||sc_po_no||sc_po_status||sc_ol_status||sc_vender_no||sc_credate||sc_lastdelivery_date
    ||sc_gl_acccode||sc_curr_code||sc_freigtt_vendor||sc_orderline_no||sc_contact_no||sc_description||sc_price||
    sc_quantity||sc_unit||sc_discount_val||sc_discount_per||sc_partno||sc_makerref||sc_po_user||
    sc_order_date||sc_asset_no||sc_receive_date);
    END LOOP;
    close my_cursor;
    --commit;
    --message('1');pause;
    utl_file.fclose(fHandle);
    --message('2');pause;
    exception
         when no_data_found then
         null;
    when others then
         null;
    --     WHEN UTL_FILE.INVALID_PATH THEN
    -- message('Invalid Path');pause;
    End;

    If you are using 9i then you can Create a Directory instead of setting the ult_file_dir parameter in the init file. The user creating the directory need CREATE DIRECTORY privilege
    Example: Create directory MY_DATA as 'c:\pete' ;
    And here is the list of exceptions (using 9i)
    INVALID_PATH          File location is invalid.
    INVALID_MODE          The open_mode parameter in FOPEN is invalid.
    INVALID_FILEHANDLE          File handle is invalid.
    INVALID_OPERATION          File could not be opened or operated on as requested.
    READ_ERROR          Operating system error occurred during the read operation.
    WRITE_ERROR          Operating system error occurred during the write operation.
    INTERNAL_ERROR          Unspecified PL/SQL error
    CHARSETMISMATCH           A file is opened using FOPEN_NCHAR, but later I/O operations
                   use nonchar functions such as PUTF or GET_LINE.
    FILE_OPEN           The requested operation failed because the file is open.
    INVALID_MAXLINESIZE     The MAX_LINESIZE value for FOPEN() is invalid; it should be
                   within the range 1 to 32767.
    INVALID_FILENAME          The filename parameter is invalid.
    ACCESS_DENIED          Permission to access to the file location is denied.
    INVALID_OFFSET          The ABSOLUTE_OFFSET parameter for FSEEK() is invalid; it
                   should be greater than 0 and less than the total number of bytes
                   in the file.
    DELETE_FAILED          The requested file delete operation failed.
    RENAME_FAILED          The requested file rename operation failed.
    You can also have NO_DATA_FOUND, VALUE_ERROR

  • Disable user via flat file resource

    Hi,
    is it possible to disable a user in Sun Identity Manager using a flat file resource? I have tried using a db table resource without success.
    what do I have to do to have this functionality?
    thanks in advance

    I am not sure if understood your question properly;however my thoughts here
    If you need the approval process -workflow then use IP to load flat files and STS (status and tracking system) as workflow concept(manager approving the data).
    For monitoring you can install BI Admin Cockpit .
    All of the aforementioned process can be achived via WEB.
    BI - Admin Cockpit
    Activation of Statistics cube for performance
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/15c54048035a39e10000000a422035/frameset.htm
    Maintenance of Statistic Properties
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/e37f8a6df402d3e10000000a1553f7/content.htm
    Note 934848 - Collective note: (FAQ) BI Administration Cockpit
    Note 980569 - Role for BI Administration Cockpit
    Hope it Helps
    Chetan
    @CP..

  • Non English Charaters in Flat file(Note pad)

    Dear Friends,
    I have a flat file from presentation server which needs to be uploaded and do some validations on that file based on the data existing.
    I have some Russian language words in that file. E.g: "ОЩИ В ПОДГ". If this word exists in the file i need to get some other data from a database table. But when trying to check for the word, these characters are appearing as junk characters like ####&^^.
    I tried logging into RU language also, but still not working. And also tried changing the file as type Unicode, ASCII and also not worked.
    Please let me know how to get identify these words to see the exact russian words.
    Thanks for your help.
    Srinivas.

    Hello,
    Is your file .txt file.If yes,while saving it gives a pop up for file name.There you have option for encoding, there select encoding as
    Unicode and try to upload.
    It worked for me.I tried with the data provided by you.
    data:begin of it_tab occurs 0,
          val type string,
         end of it_tab.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = 'C:\Documents and Settings\xxx\Desktop\SDN1.txt'
      FILETYPE                      = 'ASC'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            = VIRUS_SCAN_PROFILE
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    = FILELENGTH
      HEADER                        = HEADER
      TABLES
        data_tab                      = it_tab
    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.
    Thanks.
    Ramya.

  • Background job finished but flat file not created in the Background

    Dear all,
    ZHR_CSD program is scheduled to run daily at 00:01:00. This program is generating the flat file in the folder CSD/HR.
    when i  schedule this program to run immediately it is generating the flat file.
    But when i schedule this program in Background it is not generating flat file .
    Regards

    Hi,
    As suggested by Eric, your Z Program is probably using GUI_DOWNLOAD Function Module.
    GUI_DOWNLOAD or any other GUI function modules (FM) will only run in foreground, not in Background.
    Ask your developer to code that Z Program with OPEN DATASET logic, if its possible.
    The Reverse situation is well described in [this thread|Background Job assigment with variant in SM37 , for Textfile uploading], please refer it to get some relative information for the same.
    Regards,
    Bhavik G. Shroff

  • Manage Weblogic users through Flat file in obiee11g

    Dear Experts
    Need information about the following :
    I have a requirement to manage users and groups (roles - like BI Author, Consumer etc) through FLAT FILE . The users in Weblogic will be populated through LDAP.
    To elaborate more say there is some change/new addition of users in their groups and roles. SO instead of managing it through Weblogic , I wish to upload some flat file with the change and it shpould be done automatically rather than doing it manually.
    Any pointer/help will be highly appreciated.

    Hi,
    Weblogic stores all this information by default in a .xml file. So, uploading some excel/xml manually for this might be quite tough. But, how about uploading the excel/storing the Group information in some database tables, which is quite good.
    Hope this helps.
    Thank you,
    Dhar

  • Uploaded file not shown

    I have uploaded pdf file to files.acrobat.com (89Mb), but it is not shown in list of uploaded files (no errors). I tried it several times.

    Hm, it's getting more and more tricky...
    From stack trace I figured out the Macromedia driver ColdFusion seems to be using when I just select "Sybase" as driver type, so I configured it using "other" as type:
    JDBC URL: jdbc:sybase:Tds:<servername>:1433/<dbname>
    Driver Class: macromedia.jdbc.sybase.SybaseDriver
    For comparison, I used the following parameter to configure it for the Sybase provided JDBC driver:
    JDBC URL: jdbc:sybase:Tds:<servername>:1433/<dbname>
    Driver Class: com.sybase.jdbc4.jdbc.SybDriver
    To my surprise, the Macromedia driver still does NOT work with cfqueryparam, I got the same error!
    As I mentioned before, I cannot select "Sybase" as driver type on our production server because it's Standard Edition, so the only option for me to use Sybase is to configure the driver this way. Now it seems no matter what driver I use, as long as the driver is configured this way, INSERT won't work with CFQUERYPARAM?!
    Needless to say, I'm really quite frustrated by this...

  • Pdf files not shown

    When trying to open PDF files in Safari 6 are not shown. It shows a gray screen. What do I do to view these PDF files directly in Safari?

    Try:
    *[/questions/816793]

  • App shown in "Purchase History" but not shown in "Purchase" tab

    I tried syncing my Ipad2 to Ipad3. Only some of my  apps transferred to the new Ipad3.
    I checked Itunes purchase log "Purchase History"  and it DOES show that I purchased the apps, but yet the app is not shown on the ipad3.
    On the ipad3, went into App Store/ Purchased (tab at bottom).
    My puchased app is not there. I only see the Free version.
    I thought to try to see if I tried to purchase again, I would get a message that the item is already purchased.
    It brought me all the way up to the credit card info page, so I stopped as I do not want to purchase again.
    Question is...How do I get my purchased apps back ?
    Purchase History shows it there and paid for, but everytime I try to restart and reconnect and re-sync and turn off then turn on, it does not come back.
    I checked my Itunes apps, and the only app shown is the free version. What happened to the bought version?
    I only have (1) Apple Id account.
    Any help would be GREATLY APPRECIATED.
    Thank you.
    J

    Does it also not show under the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes ?
    You can try contacting iTunes support and see if they can see why it's not there (I'm not aware of any phone support for iTunes) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Depreciation value not shown under the tab 'posted value' in AW01N

    Dear experts
    I have in chart of depreciation US GAAP book(posted to G/L), local GAAP book(not posted), book to post difference of two GAAP(posted to G/L), and local tax book.
    In AW01N, the ordinary depreciation value is shown correctly for all books in the first tab 'planned values',
    But on the second tab 'posted values', depreciation value only shown for the US GAAP book.
    I'm thinking it maybe relavant with posting to G/L or not, that means only book with posting to G/L is shown with deprecation value on the second tab.
    But something strange is in another chart of deprecation, deprecation value is shown for US book, local book.
    Could someone comment how to control deprecation value shown or not on the second tab by local book?
    Best Regards,
    Nicole

    Hi,
    If you would have mentioned it as a "area post in real time" it will show you in the aw01n. If not, it will not show. Because, the tab specifies the posted values which means how much depreciation posted to GL.
    As you have put "area doesnot post" for the local book, it will not show the balance.
    Thanks,
    sravankumar

  • Books on iPad not shown under iPad tab in iTunes

    For some reason existing ebooks on my iPad mini are not visible under the "Books" sidebar entry inside iTunes, under the "On This iPad" tab. I can add books to iBooks on the iPad by dragging them to the iPad icon inside iTunes, and the books transfer OK; they simply are not shown in the list in iTunes. I have another iPad which works fine, i.e. books on the iPad shows up in the list; same with an iPhone which works correctly. Alldevices have synch switched off so I manually add books (and music; music list works fine on all of them so it is only books having the problem).
    This is frustrating since it means I cannot remove books from the iPad using iTunes. Deleting all the books on the iPad (by doing it inside the iBooks app on it), deleting the iBooks app itself, rebooting, and then re-adding books does not help. Also, the iPad in questio  was recently reset using an iCloud backup which did not change the situation.
    So any ideas why my iTunes insists there are no books on this particular iPad, even though iTunes happily transfers them?

    Firstly, make sure that your device is not hidden (left hand pane). If it just reads device then toggle between SHOW and HIDE.
    Secondly, try all the other ports on your computer, even a number of times.
    Thirdly, if you have another computer try plugging your device into it without taking any action, give it a moment, remove it and try it back in your other computer again.
    Failing all that, see here - http://support.apple.com/kb/TS1538 for Windows and http://support.apple.com/kb/TS1591 for Macs
    And failing all that put the device into Recovery mode. See here and note the paragraph 'If you restore from a different computer.... ' down near the bottom of the page -
    http://www.apple.com/support/ipad/assistant/itunes/

  • Suggestion: Allow users to attach a note to an open tab for later reference.

    I just wanted to make a quick suggestion: I work with about 25 tabs open, and sometimes need to append a quick note so that I remember what I needed to do with the info on the tab. It would be really handy if I were able to type a brief note that was attached to the tab for later reference. Perhaps a window that appears if I right-click on the tab and select "Append Note". A pop up appears where I can type a note, and then disappears when I click "save". I can recall the note by right-clicking on the tab and selecting "Reveal Note". Maybe each tab that has a note could have a colored bar across the top of the tab to indicate there is a note.
    Keep up the good work; thank you!
    -Cary Snowden

    That's an interesting idea.
    Currently, the closest thing would be the extensions that allow you to create a "Post-it style" note associated with a web page. It's not specific to the tab, so if you went back and forth in history, the note wouldn't be visible on the other pages. So not as useful in that sense.
    Still, one of these might be helpful for the time being until someone can work on something tab-specific. Note: I haven't tried these myself:
    * Internote: https://addons.mozilla.org/firefox/addon/internote/
    * Sticky Notes: https://addons.mozilla.org/firefox/addon/sticky-notes/

  • PAT file not shown in Support package manager

    Hi All,
    We had to create a custom BAPI to achieve an functionality in our product.
    We are doing this for the first time.
    As a standard procedure we followed the AAK (Assembly Add On ) toolkit to create the deploy-able.
    Finally in the consolidation system we could see the following PAT file created in the out directory.
    QA70020777848_0000002.PAT
    I copied the file to the in directory of the production SAP server where this needs to be deployed.
    I ran the transaction SPAM on the server.
    Load packages from Application server
    QA70020777848_0000002.PAT    SAPK-170COINCOMPANY1    @EB\QUpload Already Occurred@    0004    OCS file already exists in inbox. Upload not required.
    IT decompresses the file properly.
    Now the problem occurs ahead.
    IF i click on the New Support package nothing is shown visible .
    Am i missing any steps here.
    Regards
    Manoj

    Got the solution in fact it's not a solution it's just an awareness on how the disks are available in fail-over cluster manager.
    1) All the available disks are shown in fail-over cluster manager "storage".
    2) While installation it asks us to add available disks for SQL Server then add accordingly. (Ex: E:drive for data files and L:drive for Log files) 
    3) Once the installation is done you see those disks in MSSQL (SQL Server) group.
    Means when you click on Active node it should show you MSSQL (SQL Server) group in which you can find network name, network ip, E: & L: Drives, SQL Server and Agent services.
    Note: MSDTC and Quorum are also clustered disks which can reside (Preferably Active Node) in any of the nodes but automatically fail-overs to active node in case of any passive node failures.
    Regards,
    Kalyan
    Grateful to your time and support. Regards, Shiva

Maybe you are looking for

  • How do transfer photos from an iPad to the Mac?

    I am trying to figure out how to sync photos from an iPad to my Mac. I'm having a little trouble. Any help?

  • CRM Mobile Sales Application : HTTP Communication Failure ERROR

    Hi All, I am trying to build a CRM mobile application in the Windows mobile. the steps that we have followed are: 1. Activated and generated the Standard CRM mobile software component MAS_SMARTPHONE_DMSCV 2. Created the same Users in the CRM and DOE

  • How to lookup application set status in BPC for Excel

    Hello, we have created some packages diabling the appset status when running. These packages update dimension data and/or fact data. Other users will receive an error when sending data to the application when the packages are running. Ist there a cha

  • Workflow Referencing another Workflow and logs

    I have a requirement were the business would like a workflow to create material master, but prior to actually creating the material they have a form that needs passed around and approved my many business units. Once all approvals are obtained a mater

  • Start managed server cause acl.NotOwnerException

    After domain admin server started, starting a managed server causes acl.NotOwnerException. The username and password for the managed server are set identical to that of the Admin server. WLS version 6.0sp2 platform NT4.0