Customer Account Statement Does not show SAP document number

Hello,
I want to have the SAP-document number on a customer-statement printed with report RFKORD11. I changed the used form now multiple times without success. If I enter the BSID-BELNR as an output parameter the system always gives me BSID-XBLNR what makes no sense to me!
If I look into the table the field is maintained correctly and I really have no idea why the system is always taking the XBLNR-content. If it output XBLNR I am getting the XBLNR-content but not the other way round...
Maybe it is a stupid problem but I have no idea why it works that way and I need the SAP-document number printed on the customer-statement. The other table RF140 does not offer me the document-number as a field.
Thanks in advance for all hints and solutions!
Regards,
Steffen

Hello Steffen,
It seems to be that the field XBLNR is blank.
This behaviour is of SAP standard design. It is the standard logic hard coded into the relevant program itself, see include RFKORI16 in SE38 for customer open items:
IF BSID-XBLNR IS INITIAL.
  MOVE BSID-BELNR TO RF140-BELEGNUM.
ELSE.
  MOVE BSID-XBLNR TO RF140-BELEGNUM.
ENDIF.
If you look at the description of the field RF140-BELEGNUM structure using transaction SE11 it is clearly mentioned that "Ref.Document Number, if available, otherwise Document Number".
The only other option you would have would be to consider a modification of the standard.
I hope it helped you
Best Regards,
Vanessa.

Similar Messages

  • Custom scan box does not show scan button due to my 13" screen.  Can't reach it.  How do i fix?  Thx

    Custom scan box does not show scan button due to my 13" screen.  Can't reach it.  How do i fix?  Thx.

    Try increasing the resolution of your screen.

  • I have an invoice that I paid to use photoshop and now it is asking for serial number however it does not show a serial number when I log in

    I have an invoice that I paid to use photoshop and now it is asking for serial number however it does not show a serial number when I log in

    Please then use your web Browser  address http://www.adobe.com/  and sign in with your Adobe User ID and Password to your account the has your Subscription and use https://www.adobe.com/account/my-products-services.html capture the page which shows you have a subscription like I showed you I have.
    Open Adobe Creative Cloud desktop application use the APP tab and capture that scree to show Photoshop is installed and up to date like I did. Capture that screen. Show us you have installed Photoshop and its up to date.
    Open Photoshop and use menu Help it should show tha its activated because there will be a menu item Sign Out. If it is Sign In, Sign in  using the account that has the subscription the one you used above to Activate Photoshop.

  • IMessage does not show my phone number on iMac.

    iMessage does not show my phone number on iMac.  My family has 3 iPhones we sync to this computer and only the other two are available to checkmark in preferences on the iMac.  I tried updating my profile online, but only my number is listed on my account. iMessages works fine on my phone.  I've tried signing out and back in and rebooting.
    OSX 10.9.3

    Hi,
    My Apple ID profile does not contain my mobile (well either of them actually) number it make no difference to iMessages.
    To get an iPhone Number on the Mac the Apple ID must be added to an iPhone AND when you get the Pop ups on the Mac they should be accepted.
    If the the Apple ID is on the iPhone check it is set for Messages and not just iCloud.
    Check it is also set as a Send and Receive item And that the iPhone Number is itself (this should be greyed out so you can't turn it Off).
    If the apple ID is missing then add it.
    If the iPhone Number seems to be turned Off then Remove the Apple ID
    Set the iPhone to Airplane Mode.
    On taking it out of Airplane Mode check  the iPhone Number is active for iMessages and Verifies and logs in.
    Check by sending a Message to the Apple ID so the Mac sees it.
    Now add back the Apple ID and make sure that verifies.
    Now restart the app on the Mac.
    this should prompt the Pop ups.
    Accept these to add the iPhone number to the Receive At list (It will also be added to the Send From drop down list)
    9:35 pm      Saturday; June 21, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How can I remove a mail account that does not show up in Internet Accounts?

    I have a Mail account that I cannot remove because it does not show up in System Preferences > Internet Accounts.  How can I remove this account permanently?
    Here is the account in Mail:
    Here is what I get when I try to remove it:
    Here is what shows up when I click on Internet Accounts:

    Thanks, it was linked in iPhoto.  After removing it from iPhoto I still got the same message when trying to delete the account from Mail.  After rebooting, I was able to remove the account from Mail.

  • Custom header name does not show in ALV...

    Hello Experts,
    I am using custom column names for my ALV display but when I display it does not show
    the title I specified. For example, one of my columns which is 'AMOUNT' has a custom name
    which is 'YTD AMOUNT'. But how come it still shows 'AMOUNT' in my header? I am using
    cl_salv_table for my ALV. Below is my code:
    TRY.
            cl_salv_table=>factory(
              EXPORTING
                list_display = 'X'
              IMPORTING
                r_salv_table = lcl_table
              CHANGING
                t_table      = gt_output ).
          CATCH cx_salv_msg.                                "#EC NO_HANDLER
        ENDTRY.
        lcl_functions = lcl_table->get_functions( ).
    *   Set all standard ALV functions
        lcl_functions->set_all( abap_true ).
        lcl_columns = lcl_table->get_columns( ).
        lcl_columns->set_optimize( abap_true ).
    *   Set display to striped pattern
        lcl_display = lcl_table->get_display_settings( ).
        lcl_display->set_striped_pattern( cl_salv_display_settings=>true ).
    */Set column names
        TRY.
            lcl_column ?= lcl_columns->get_column( 'DESCRIPT' ).
            lcl_column->set_medium_text( text-h01 ).
            lcl_column->set_long_text( text-h01 ).
            lcl_column->set_output_length( '40' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'BUKRS' ).
            lcl_column->set_medium_text( text-h02 ).
            lcl_column->set_long_text( text-h02 ).
            lcl_column->set_output_length( '12' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'KHINR' ).
            lcl_column->set_medium_text( text-h03 ).
            lcl_column->set_long_text( text-h03 ).
            lcl_column->set_output_length( '17' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'KOSTL' ).
            lcl_column->set_medium_text( text-h04 ).
            lcl_column->set_long_text( text-h04 ).
            lcl_column->set_output_length( '10' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'AUART' ).
            lcl_column->set_medium_text( text-h05 ).
            lcl_column->set_long_text( text-h05 ).
            lcl_column->set_output_length( '04' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'KTEXT' ).
            lcl_column->set_medium_text( text-h06 ).
            lcl_column->set_long_text( text-h06 ).
            lcl_column->set_output_length( '20' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'AUFNR' ).
            lcl_column->set_medium_text( text-h07 ).
            lcl_column->set_long_text( text-h07 ).
            lcl_column->set_output_length( '12' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'ACTUAL' ).
            lcl_column->set_medium_text( text-h08 ).
            lcl_column->set_long_text( text-h08 ).
            lcl_column->set_output_length( '10' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'COMMIT' ).
            lcl_column->set_medium_text( text-h09 ).
            lcl_column->set_long_text( text-h09 ).
            lcl_column->set_output_length( '10' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'TOTAL' ).
            lcl_column->set_medium_text( text-h10 ).
            lcl_column->set_long_text( text-h10 ).
            lcl_column->set_output_length( '10' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'BUDGET' ).
            lcl_column->set_medium_text( text-h11 ).
            lcl_column->set_long_text( text-h11 ).
            lcl_column->set_output_length( '15' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'AMOUNT' ).
            lcl_column->set_medium_text( text-h12 ).
            lcl_column->set_long_text( text-h12 ).
            lcl_column->set_output_length( '15' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'AGE' ).
            lcl_column->set_medium_text( text-h13 ).
            lcl_column->set_long_text( text-h13 ).
            lcl_column->set_output_length( '15' ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
    */Set aggregations
        TRY.
            lcl_aggregations = lcl_table->get_aggregations( ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_aggregations->add_aggregation( 'ACTUAL' ).
          CATCH cx_salv_not_found cx_salv_data_error cx_salv_existing."#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_aggregations->add_aggregation( 'COMMIT' ).
          CATCH cx_salv_not_found cx_salv_data_error cx_salv_existing."#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_aggregations->add_aggregation( 'TOTAL' ).
          CATCH cx_salv_not_found cx_salv_data_error cx_salv_existing."#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_aggregations->add_aggregation( 'BUDGET' ).
          CATCH cx_salv_not_found cx_salv_data_error cx_salv_existing."#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_aggregations->add_aggregation( 'AMOUNT' ).
          CATCH cx_salv_not_found cx_salv_data_error cx_salv_existing."#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_aggregations->add_aggregation( 'AGE' ).
          CATCH cx_salv_not_found cx_salv_data_error cx_salv_existing."#EC NO_HANDLER
        ENDTRY.
    */Hide columns
        TRY.
            lcl_column ?= lcl_columns->get_column( 'SETNAME' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'TXT' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'BUDAT1' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'COMMIT' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'ACTUAL' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'BUDAT2' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'ASTNR' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'AVAIL' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'CTRDIV' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        TRY.
            lcl_column ?= lcl_columns->get_column( 'CTRORD' ).
            lcl_column->set_visible( if_salv_c_bool_sap=>false ).
          CATCH cx_salv_not_found.                          "#EC NO_HANDLER
        ENDTRY.
        lcl_events2 = lcl_table->get_event( ).
        CREATE OBJECT lcl_handle_events.
        SET HANDLER lcl_handle_events->on_link_click  FOR lcl_events2.
        SET HANDLER lcl_handle_events->on_top_of_page FOR lcl_events2.
        lcl_display_settings = lcl_table->get_display_settings( ).
        lcl_table->display( ).
    Also, my top of page only display if use LIST display but when I use GRID, it does not show.

    Thanks anyways...

  • Custom Ribbon tab does not show in generic list

    Hi.
    I'm deploying the following definiton on a generic list, but the new custom tab does not show up. Anyone that can see what I have done wrong?
    Thanks!
    <Elements xmlns=”http://schemas.microsoft.com/sharepoint/“>
    <CustomAction
    Id=”Ribbon.MyTab”
    Title=”Adds a new Ribbon tab to Generic List”
    RegistrationType=”List”
    RegistrationId=”100″
    Location=”CommandUI.Ribbon.ListView”
    >
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location=”Ribbon.Tabs._children”>
    <Tab Id=”Ribbon.MyTab” Sequence=”110″ Description=”" Title=”My Tab Name”>
    <Scaling Id=”Ribbon.MyTab.Scaling”>
    <MaxSize
    Id=”Ribbon.MyTab.Scaling.MyGroup.MaxSize”
    Sequence=”15″
    GroupId=”Ribbon.MyTab.MyGroup”
    Size=”LargeMedium”/>
    </Scaling>
    <Groups Id=”Ribbon.MyTab.Groups”>
    <Group
    Id=”Ribbon.MyTab.MyGroup”
    Sequence=”15″
    Description=”"
    Title=”My Group Name”
    Template=”Ribbon.Templates.MyTab.MyGroup.CustomTemplate”>
    <Controls Id=”Ribbon.MyTab.MyGroup.Controls”>
    <Button
    Id=”Ribbon.MyTab.MyGroup.Button”
    Alt=”Ribbon.MyTab.MyGroup.Button”
    Command=”Ribbon.MyTab.MyGroup.Button_CMD”
    Image16by16=”/_layouts/images/siteIcon.png”
    Image32by32=”/_layouts/images/siteIcon.png”
    LabelText=”Button”
    Sequence=”10″
    TemplateAlias=”o1″
    ToolTipTitle=”Button”
    ToolTipDescription=”Shows a dialog” />
    </Controls>
    </Group>
    </Groups>
    </Tab>
    </CommandUIDefinition>
    <CommandUIDefinition
    Location=”Ribbon.Templates._children”>
    <GroupTemplate Id=”Ribbon.Templates.MyTab.MyGroup.CustomTemplate”>
    <Layout Title=”LargeMedium”>
    <OverflowSection Type=”OneRow” TemplateAlias=”o1″ DisplayMode=”Large”/>
    <OverflowSection Type=”ThreeRow” TemplateAlias=”o2″ DisplayMode=”Medium”/>
    </Layout>
    </GroupTemplate>
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler
    Command=”Ribbon.MyTab.MyGroup.Button_CMD”
    CommandAction=”javascript: alert('Hello World');” />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>

    Hello,
    I was able to use your custom ribbon tab XML just fine.  The only thing is, the copy you provided had a bunch of illegal characters embedded in it (like reverse quotes?), I'm not sure if they're showing up in your version of the XML or not.  Anyway,
    after replacing those with straight quotes and fixing some other misc formatting, it worked fine.  I created an empty SharePoint project and added an empty element, then added your XML to the Element.xml file.  In SP, I created a new custom
    list and the "My Tab Name" tab appeared with a button that displayed "Hello World" when I clicked it. So, I recommend checking the formatting of your XML.  Just look for red squiggles in the editor and fix them.
    Regards,
    - Kemp Brown [MSFT]

  • Signing up for iCloud wiped out my contacts and my photos and does not show my documents,  what happened?

    Signing up for icloud wiped out my contacts, photos, and my apps.  It also does not show my pages docs for my imac.  What happened?

    You can install the portable Firefox 3.6.19 version.
    * http://portableapps.com/apps/internet/firefox_portable#legacy
    * http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • F9N1 - Bank Account statement does not generate FINSTA IDOC

    Hi SAP guru,
    Could any of you advise me what I am missing??
    I am currenly experiencing the issue relating to the generation of FINSTA IDOC
    within IHC (which was not experienced in March).
    ALE is established correctly and current account contain the turnover.
    Application log states that internal account statement seems to have been generated, however, no FINSTA IDOC has been generated.
    Thanks for your help
    Kind regards
    taro

    Hi there,
    The issue i faced regarding the generation of FINSTA idocs were due to the following reason
    The basic customizing of activating the IHC flag against the bank area  is not done, without which the FINSTA IDocs can not be created.
    Current account for the recipient subsidiary did not have EDI/IDOC In addition make sure that if you use F9N7 to create bank statements do not activate that flag 'Standard Output' otherwise the FINSTA IDocs will not be created.
    Hope that this helps
    cheers
    taro

  • Custom ribbon button does not show for a Tasks list

    I created a simple app using Visual Studio 2012 to add a custom ribbon button for a tasks list. After deploying the app to the SharePoint online, the button does not appear on the ribbon. The exact same button gets displayed properly
    when added to the ribbon for a custom list.  The elements file with the location of the button gets generated, so I can't imagine it would be wrong, but just in case, this is what I have:
    <CustomAction Location="CommandUI.Ribbon"....
    <CommandUIDefinition Location="Ribbon.ListItem.Actions.Controls._children">...
    Any help is greatly appreciated.
    One more thing, if I add this button using SharePoint Designer 2013, the button does not get displayed either. I have a feeling it might be problem with the Tasks list?
    Thanks

    Hi Danny,
    The button needs to be displayed only for one specific list. And as I mentioned, the elements file for the ribbon button was generated by VS, here is the content:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="02aa4c3b-bb73-4dfa-989c-d63a9591dcee.RibbonCustomAction" RegistrationType="List" RegistrationId="{$ListId:Lists/Projects;}" Location="CommandUI.Ribbon" Sequence="10001" Title="Create Project Site">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.ListItem.Actions.Controls._children">
    <Button Id="Ribbon.ListItem.Actions.RibbonCustomActionButton" Alt="Create Project Site" Sequence="100" Command="Invoke_RibbonCustomActionButtonRequest" LabelText="Create Project Site" TemplateAlias="o1" Image32by32="_layouts/15/images/placeholder32x32.png" Image16by16="_layouts/15/images/placeholder16x16.png" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="Invoke_RibbonCustomActionButtonRequest" CommandAction="~remoteAppUrl/Pages/Default.aspx?{StandardTokens}&SPListItemId={ItemId}&SPListId={ListId}"/>
    </CommandUIHandlers>
    </CommandUIExtension >
    </CustomAction>
    </Elements>
    If the same button is added for a custom (not a Tasks) list, the button shows up fine.
    Thanks

  • My Account Account Transactions does not show all transactions

    I set up a test Webtools site based on OEC Computers backend db and created a WT user linked to Account C41000.
    When logged in using this user I see that
    there are three transactions dated in 2005 on that account which did not come accross to WT in the Account Transactions display however current transactions dated in 2008 are being pulled accross fine.
    Does anyone know if there is a restriction on the records pulled across on initial synch or if there are additional criteria in play here?

    by way of note ....
    the missing 2005 invoices do appear when I log in as a superuser in the Business Partners>Transactions>Invoices  screen.

  • HT4928 My Mac App Store account page does not show any options for unhiding purchases.

    I purchased Mountain Lion and want to re-download it to make a flash drive, but it does not appear in my purchase history. Clicking Option-Purchases doesn't change anything, and my Mac App Store account info page does not have anything regarding hidden purchases, although my iTunes account info page does. They are using the same Apple ID.

    Mac App Store: Hiding and unhiding purchases
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    Make sure and use the same Apple ID used for the original purchase.
    How to create an OS X 10.8 Mountain Lion install drive

  • Crystal report paramater not showing all document number in parameter

    Hi,
    Customer is using Crystal report 2008 add on. The DO is having Doc Number in crystal report parameter. Eg DO in system had reached #1000 but it crystal report parameter user can only view DO up to 800. Is there any limitation in Crystal parameter if the records are many? How to resolve?
    Regards
    Thomas

    DO=Delivery Order in Sales A/R module.
    Customer is using Crystal report to print Delivery Order. DO DocNum is parameter in Crystal report for user to select which DO to print out but the selection list did not show all DO No.
    I saw similar question in forum. I had added "MaxRowsetRecords" ='99999999' into registry but the parameter still doesn't show all the DONo.
    I am using Type=REG_DWORD, value data=99999999 in registry and in crystal report the DocNum parameter is having "Dynamic" type.
    Don't know whether the setting is correct. Sorry I am not a Tech guy.
    Please advise.
    Regards
    Thomas

  • Employee Self-Service Shopping Area (POWL) does not show any documents

    Hello gurus,
    My client has upgraded to SRM 7.0 and are configuring portal and SRM to meet the needs. The Shopping Area of the Employee Self-Service is being displayed; however we have some problems:
    1) No Shopping Cart documents are being shown in the table query (even though there are SC created in the SRM system which you can see in BBP_PD)
    2) When you go to the Shop functionality to create the SC, you can't select any Goods/Services because no Product Categories / Product IDs are being displayed (here also they are created in the SRM and backend systems).
    Does anyone know if there is a feature or custo that I have to set so that the documents are displayed?
    I don't know if this is a Portal config or SRM customizing issue, so I will post this thread to both forums.
    Many thanks!
    Adi

    Hi Adi,
    Have you tried using the POWL under Purchasing tab rather than the one in ESS?
    Does this only affect your user or is no-one able to see POWL data?
    Are the carts visible under the advanced search or not there also?
    Regards,
    Jason

  • Finder does not show new documents or images

    Hi,
    I have a new macbook pro (10.5.6) and installed the official Office 2008 for Mac on it. For weeks now I have the same problem that when I create new documents (word and jpg) and save them in the chosen folders in 'documents', they don't show up when I check the same folder in the finder window. While they are there for they show up when attaching them to my mail.
    Then, as soon as the documents are a couple of days old, they do show up in the finder window. Does anybody have this problem or/and know how to resolve this?
    Thank you in advance!!!

    Just a couple of thoughts:
    1) Run Disc Utility and Repair Permissions on the hard drive
    2) Grab a copy of MainMenu (Free) and once installed select 'Other Tasks' then 'Remove .DS_store files' then Reboot.

Maybe you are looking for

  • Problems after starting the Enterprise Manager agent

    Hello, I have a problem, the agent of the enterprise manager does not start, do not know how I can do to reinstall the agent, in executing the command emctl start agent, inevitably show that the agent can not be started, I've done many things and not

  • Warning: Leaving out empty argument '-windowtitle'

    When I generated a javaDoc for my project I received the following Warning: Leaving out empty argument '-windowtitle' Could someone please explain to me what is that warning and how to fix it? Thanks in advance

  • No Sales BOM explosion via BAPIs

    Hi all, We use BAPI_INQUIRY_CREATEFROMDATA to create inquiries; however this does not explode sales BOM; rather it creates just one line for the main material. Are there any specific input parameters that need to be modified to trigger BOM explosion

  • Built-in Digital Input - Tap Tap Tap Noise

    Hi Guys, Can someone out there confirm the following as normal behaviour or otherwise - Using Linein software (by rogue amobia) when i select "Built-in Digital Input: Digital In" as the input source and output this to "Defaul System Output" I get a l

  • Activation cancelled due to missing approval - RECN061

    Hi, I do not have any worflow triggerred for creation of the contract. but i am facing this error. please help regards jaya