Enhancements in ASN Search Query - additional selection parameter

Hi,
I am working on adding an additional search parameter in ASN Overview screen in supplier view. The search is POWL based and in the "Maintain Search Criteria" screen I have been able to add a custom field named "ZTEST_DATE" of type DATS.
To get the above work done I have followed the following steps
1. Enhanced the method IF_POWL_FEEDER~GET_SEL_CRITERIA of class /SCF/CL_FEEDER_ASN_OV.
2. Enhanced the method PREPARE_LOAD_ASN_FROM_DB  of class /SCF/CL_WD_APPL_MODEL_ASN_OV in order to make the additional field as part of ODM parameter.
Now on running the query I get an error mesage sayng "Access Path for the parameter selection couldnt be found".
This error message can be traced to an exception which was raised in GET_ACCID_FOR_READ method of class /SCMB/CL_ODM.
To get rid of this issue I have added additional entry in two Tables /SCMB/ORCPRM (for defining new parameter ZTEST_DATE and linking it to the ODM component DLH1) and another entry in table /SCMB/ORDTPACCSQ to link the previously defined selection parameter to the access Path ORDN for Order Data Type DELV with a sequence no 24 (all the access sequence till 23 had already been taken up for the other selection parameters). Now I am facing trouble to create an active version of this entry. It should be noted that each entry in the table /SCMB/ORDTPACCSQ has two entries one active and one inactive for each Access Path linked to Order Data Type. At this moment only inactive access path could be created.
Is there any additional config step required to get an active version of the newly added access Path?
Thanks and Regards,
Rohit
Edited by: rkb_1984 on Dec 22, 2011 1:25 PM

Hello Rohit,
   My understanding of your question is that, you are not able to create the ACTIVE access sequence with all those details what you've provided in your query.  I am sure you might have used the Standard SPRO path for ODM configs.
You need to check whether you are creating the access sequence for the correct 'Access Path' or not (i.e. field ACCID in table /SCMB/ORDTPACCSQ). Also, you need to use the access sequence number beyond 90. Might be this would resolve your problem.
Regards,
Rohan Arvindrao

Similar Messages

  • Delete selection parameter on account search

    Hi experts
    i've enhanced an bsp for add a selection parameter on search of an account.
    The problem occurs when i call the search twice, the second time i've the same parameter valorized two time.
    so, i need the clear, or hide, this parameter after set to this the value.
    i'm using a class type cl_crm_bol_dquery_service, and for add the selection parameter i use method add_selection_param,
    i need a same method for delete the paramet
    somebody can help me?
    best regards
    Marco
    Moderator message: please post each question only once, I have deleted the duplicates.
    Edited by: Thomas Zloch on Jul 6, 2010 5:01 PM

    hi Julius,
    search parameters entered on the main search screen are not appearing in the do prepare output method.
    lr_col_params = lr_qs->get_selection_params( ) doesn't return the value entered on the screen. LOW value is blank.

  • New Selection Parameter in existing query

    Dear All,
    Can anyone tell how to add additional selection parameters to an existing query ?
    Regards

    Mahesh,
      Query means Is it ABAP Query.
    If it is ABAP query there are 2 ways.
    You can create at infoset level :  In sq02 enter your infoset name press change button.press shift+ F8  there you can find the "Selections"   tab ,press.In that you can find creat button press.
    Enter name of the parameter name .Here you will find 2 radio buttons
    1. Select-options 2. parameters
    select the radio button whichever you want  press enter.
    In net screen give "Description"  "Selection text"   and there you will find 3 formats for parameters.
    1. Type   --if your parameter is your own defined ex : type c  length 12
    2.  like --if it is database field structure Ex: mara-matnr. 
    enter any one.enter & save.
    Pls. reward points for if it is useful.

  • The parameter name [...] in the query's selection criteria does not match..

    Hi all,
    I'm trying to pratice EJB 3 (which I learnt at school), with JSF and JPA, but i'm really stuck with that error :
    Exception [TOPLINK-6094] (Oracle TopLink Essentials - 2.0 (Build b41-beta2 (03/30/2007))): oracle.toplink.essentials.exceptions.QueryException
    Exception Description: The parameter name [departmentID] in the query's selection criteria does not match any parameter name defined in the query.
    Query: ReadAllQuery(oracle.datamodel.Employees)
    I will try to explain clearly what i'm trying to do :
    In fact, i'm following that tutorial :
    http://www.oracle.com/technology/obe/obe1013jdev/10131/ejb_and_jpa/master-detail_pagewith_ejb.htm
    But, as i didn't have any oracle database, but had a mysql one on my machine, i decided to use that DB instead of the the oracle DB... So i created a set of example data (to replace the oracle example set) ...so i created the tables EMPLOYEE, and DEPARTMENT... with the correct relations (FK) and PK)
    All was ok, i choose my "mysql-connector" (jdbc) instead of the oracle jdbc connector... so i could follow the tutorial.
    My problem appears at the step 12 (of "Creating a Master-Detail JavaServer Faces Page"), when i run the file deptEmployees.jspx.
    The information of the first departement displays correctly :
    departmentID 1
    departmentName ... etc
    but it can't display the employees belonging to that department !
    the error is :
    JBO-29000: Exception Description: The parameter name [departmentID] in the query's selection criteria does not match any parameter name defined in the query. Query: ReadAllQuery(oracle.datamodel.Employees)
    I think i understand what is the problem... I think that the query in charge of gathering the data of a specific departement need a parameter, but couldn't find it. But i don't know why :-/ I have tried many things and read the topics talking about that error... but it didn't solved the problem. I don't know anymore where to investigate.
    I have created a Zip file of my work (it's an EJB/JSF Application.. with jdev 10.1.3.3.0)
    (available here : http://dl.free.fr/mQ5esdQuS/EJB_appli.zip)
    I would be glad if someone could take few minutes to help me.
    Thank you in advance,
    Thomas B (student)

    Hello,
    This is a common mistake. Java string comparisons in TopLink are case sensitive by default, and since column names are uppercase when defaulted, TopLink cannot find the "departmentID" column name. In this case, Departments ID column defaults to "DEPARTMENTID" as required by the JPA specification.
    Either change Departments id annotation to     @Id
        @Column(name="departmentID", nullable = false)
        private Integer departmentID;or change Employees' ManytoOne annotation to:
        @ManyToOne
        @JoinColumn(name = "departmentID", referencedColumnName = "DEPARTMENTID")
        private Departments departments;Best Regards,
    Chris

  • Disable selection parameter in Query

    Hi,
    I would like to disable selection parameter in query.
    I add below coding in SQ02 "at selection-screen output" but it cannot work. Any solution besides use variant to disable it?
    loop at screen.
      if screen-name = 'pa_date'.
        screen-input = '0'.
        modify screen.
      endif.
    endloop.
    Thanks.

    Hello Winnie,
       Yes you can. Try this one:
    <><><><><><><><><><><><><><><><><><><><><><><><><><><>
    Parameters: aram1  like mara-matnr.
    AT SELECTION-SCREEN OUTPUT.
      loop at screen.
        if screen-name eq 'PARAM1'.
          screen-input = 0.
          modify screen.
        endif.
      endloop.
    <><><><><><><><><><><><><><><><><><><><><><><><><><><>
    Happy coding!

  • Attribute as Selection parameter in a Query?

    Hi,
    Can we add an Attribute of MAT_SALES as a Selection parameter in a Query.
    MAT_SALES is already available in Free characteristics in the query along with its attributes, it is not allowing me to make any changes to the existing one.
    I assume, we need to change the Attribute as a Navigational one and then add in Selection criteria.
    Can someone suggest on the same.
    Thanks
    Bhanu

    You have to make the attribute navigational in 0MAT_SALES and then go into your cube/ods/data target and make it a navigational attribute there as well.  If you are using a multiprovider on top of your data target, then you also need to make it navigational there as well.
    Brian

  • "Your server is not configured properly or your search query has ..."

    Config info:
    v490, 20k+users, JES 2005Q1,
    118540-23
    118207-42
    115614-20
    Brief Description:
    When users select the Corporate Directory under the Address Book tab in CE and click the ALL button (or do a wildcard search) they get the following error:
    "Your server is not configured properly or your search query has
    exceeded the limit. Please check server configuration."
    Additional info:
    Additionally this error shows up when a user chooses a View: letter and clicks next for the following page, and additionally if they have the Corporate Directory set as their default address book in options.
    Logs:
    /sun1/dirserv/slapd-mail/logs/errors:
    [11/Oct/2005:10:44:21 -0500] - WARNING<20805> - Backend Database - conn=161557 op=34 msgId=169 - search is not indexed
    /sun1/dirserv/slapd-mail/logs/access:
    [11/Oct/2005:10:23:21 -0500] conn=161557 op=17 msgId=124 - SRCH base="o=ualr.edu,dc=mail,dc=ualr,dc=edu" scope=2
    filter="(&(&(cn=*)(|(objectClass=INETORGPERSON)(objectClass=GROUPOFUNIQUENAMES)))(objectClass=*))"
    attrs="objectClass"
    [11/Oct/2005:10:23:31 -0500] conn=161557 op=17 msgId=124 - RESULT err=0 tag=101 nentries=20540 etime=10 notes=U
    /var/sun1/comexp/logs/uwc.log:
    Oct 11, 2005 10:52:20 AM com.sun.uwc.abclient.ABInitFilter doFilter WARNING: Address Book session already set!!
    changes in /var/sun1/comexp/WEB-INF/config/corp-dir/db_config.properties
    lookthru_limit=30000
    I have a ticket, just wondering if anyone else has this problem...

    You'll be getting this in your case update (answer in response to the internal conversation we've been having about your issue)
    So if they really want to control wildcard searches then they should look in the "personalstore.properties" file for the domain (default: /var/opt/SUNWuwc/WEB-INF/domain/personalstore.properties) for the value of "db.idir.wildcardsearch". Its possible settings are documented in the comments. If they wish to disable all "*" and "*x*" searches (i.e. turn off the 'All' and selecting a letter options) they should set the value to at least 2.

  • What is a saved search query? And can I delete it?

    I was making some back up disk and created a Saved Search Query. Can the file that's on my desktop be trash? What exactly is this, and what is it's purpose.
    Greg

    Hi Gregory, and a warm welcome to the forums!
    It's an xml file with Aliases to a previous search criteria.
    Selecting "Find..." from the Finder's "File" menu (or typing another user-configurable keyboard shortcut, command-option-space by default) brings up an "advanced" Spotlight search window that includes a field for a search string (treated like the same string typed into the Spotlight menu bar drop-down search field) and any number of additional search conditions.
    Any search performed in this window can be saved as a "smart folder." This "folder" is actually nothing more than a plain file with a ".savedSearch" file name extension. The file contains an XML serialization of the Spotlight query.
    http://arstechnica.com/apple/reviews/2005/04/macosx-10-4.ars/9
    One way you can delete it by going to the Finder>File>Find, click on a Saved Search, click the little Minus icon...

  • PCUI Saved Search query Producing dump

    Hi Floks,
    We have Un Expected issue with PCUI Saved Search Query which were saved before support pack Implementation.
    Now when we select the old Saved Queries (saved Query before support pack Implementation) producing short Dump . Please find  the below Error Message
    Business Server Page (BSP) Error
    What happened?
    Call of BSP page terminated due to error.
    Note
    Following error text processed in system:
    An exception with the type CX_SY_IMPORT_MISMATCH_ERROR occurred, but was neither handled locally, nor declared in a RAISING clause
    Exception Class CX_SY_IMPORT_MISMATCH_ERROR
    Error name CONNE_IMPORT_WRONG_STRUCTURE
    Program CL_CRM_BSP_FRAME_SREQ=========CP
    Include CL_CRM_BSP_FRAME_SREQ=========CM00B
    ABAP Class CL_CRM_BSP_FRAME_SREQ
    Method DO_ONSHOWLIST
    Row 202 
    Long Text -
    Error Type: Exception
    Your SAP Business Server Pages Team
    If we Create a New Query with same parameter values , query working pretty good..
    Quick response will be appreciated
    Regards
    Raju..

    Hi Adil Imran
    Thanks for the update,
    Problem was resolved by self ...By developing new program to delete the Default Queries in the Search Option
    Regards
    Raju

  • Impersonation of FullTextSqlQuery search query

    Hello,
    I am using FullTextSqlQuery class (http://msdn.microsoft.com/en-us/library/microsoft.office.server.search.query.fulltextsqlquery_members.aspx) to perform search for SharePoint 2010 sites.
    I would like to execute search query under some specific user permissions. I suppose I should use FullTextSqlQuery.PersonalizationData to impersonate search query. This property requires User's GUID as parameter. The question is how may I get user Guid for
    some user. SPUser.ID returns integer value. Is there any way to get user guid as System.Guid type? or impersonate search query in some other way. It should work both for windows and claims users so windows impersonation is not acceptable.
    Thanks beforehand,
    -Petro

    public static Int32 ImpersonatedQuery(string userName,string domain,string password)
    WindowsIdentity tempWindowsIdentity;
    IntPtr token = IntPtr.Zero;
    IntPtr tokenDuplicate = IntPtr.Zero;
    WindowsImpersonationContext impersonationContext = null;
    Int32 count = 0;
    DataTable retResults = new DataTable();
    if (RevertToSelf())
    try
    if (LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE,
    LOGON32_PROVIDER_DEFAULT, ref token) != 0)
    if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
    tempWindowsIdentity = new WindowsIdentity(tokenDuplicate);
    impersonationContext = tempWindowsIdentity.Impersonate();
    if (impersonationContext != null)
    using(SPSite site = new SPSite("http://basesmcdev2/sites/tester1"))
    FullTextSqlQuery fts = new FullTextSqlQuery(site);
    fts.QueryText = "SELECT Title,FileExtension,ContentType,Path FROM SCOPE() WHERE Title LIKE '%c%mp%r%'";
    fts.ResultTypes = ResultType.RelevantResults;
    fts.RowLimit = 20;
    ResultTableCollection rtc = fts.Execute();
    if (rtc.Count > 0)
    using (ResultTable relevantResults = rtc[ResultType.RelevantResults])
    retResults.Load(relevantResults, LoadOption.OverwriteChanges);
    count = retResults.Rows.Count;
    return count;
    return count;
    finally
    if (impersonationContext != null)
    impersonationContext.Undo();
    if (token != IntPtr.Zero)
    CloseHandle(token);
    if (tokenDuplicate != IntPtr.Zero)
    CloseHandle(tokenDuplicate);
    return count;
    The personalizationdata will not work, nor is it used by the FullTextSQLQuery. It is only used for KeywordQuery class. The only way to impersonate to do a query is to logon as that user and execute the query. The SPSite is not used by the FullTextSQLQuery
    to impersonate. You can try the following code which uses the windows api advapi32.dll to logon and execute the query. Unfortunately you will need to know the users password.
    Blog | SharePoint Field Notes Dev Tool |
    ClassMaster

  • How to link a search help to a parameter using which syntax

    hi
    how to link a search help to a parameter using which syntax

    Hi
    by useing this <b>F4IF_INT_TABLE_VALUE_REQUEST</b> you can creat a search help for a parameter on the screen
    under <b>AT SELCTION-SCREEN ON FIELD</b>
    write a selct query and store that values in the internal table and call that internal table in that FM
    <b>example</b>
    TYPES : BEGIN OF ST_OBJID_SH,
             OTYPE TYPE HRP1000-OTYPE,
             OBJID TYPE HRP1000-OBJID,
            END OF ST_OBJID_SH.
    DATA : IT_OBJID_SH TYPE STANDARD TABLE OF ST_OBJID_SH.
    DATA : WA_OBJID_SH TYPE ST_OBJID_SH.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.
    *  IF S_OBJID IS NOT INITIAL.
        SELECT OTYPE OBJID FROM HRP1000
                     INTO TABLE IT_OBJID_SH
                     WHERE OTYPE = 'D'.
    IF SY-SUBRC EQ 0.
    * SEARCH HELP FOR QUALIFICATION.
        CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
    *              DDIC_STRUCTURE         = ' '
            RETFIELD               =  'OBJID'
    *              PVALKEY                = ' '
           DYNPPROG               = SY-REPID
           DYNPNR                 = SY-DYNNR
           DYNPROFIELD            = 'S_OBJID'
    *              STEPL                  = 0
    *              WINDOW_TITLE           =
    *              VALUE                  = ' '
           VALUE_ORG              = 'S'
    *              MULTIPLE_CHOICE        = ' '
    *              DISPLAY                = ' '
    *              CALLBACK_PROGRAM       = ' '
    *              CALLBACK_FORM          = ' '
    *              MARK_TAB               =
    *            IMPORTING
    *              USER_RESET             =
          TABLES
            VALUE_TAB              =  IT_OBJID_SH
    *              FIELD_TAB              =
    *              RETURN_TAB             = RETURN_TAB
    *              DYNPFLD_MAPPING        =
    *            EXCEPTIONS
    *              PARAMETER_ERROR        = 1
    *              NO_VALUES_FOUND        = 2
    *              OTHERS                 = 3
        IF SY-SUBRC <> 0.
    *           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    <b>Reward if usefull</b>

  • SSRS 2012: How to get a "Select All" that returns NULL instead of an actual list of all values from a multi-select parameter?

    I have a multi-select parameter that can have a list of thousands of entries. In general, the user will pick a few entries from the list or "Select All". If they check "Select All", I would much prefer that I get a NULL or an empty string
    instead of a list of all values. Is there any way to do that?
    In experimenting with a work-around, I tried putting an "All" label with a null value in the list, but it is ignored (does not display in the drop-down). If I use an empty string for the value, my "All" entry does get displayed, but so
    does "Select All", which is confusing. Is there a way to suppress "Select All"?
    - Mark

    I adapted the following from a workaround posted by JNeo on 4/16/2010 at 11:14 AM at
    http://connect.microsoft.com/SQLServer/feedback/details/249227/multi-value-select-all-parameter-in-reporting-services
    To get a null value instead of the full list of all values when "Select All" is chosen:
    1) Add a multi-value parameter "MyParam" that lists the values to choose.
    2) Add a DataSet "ParamCount" identical to the one used by "MyParam", except that it returns a single column named [Count] that is a COUNT(*) of the same data
    3) Add a parameter "MyParamCount", set it to hidden and internal, then set the default value to 'Get values from a query', choosing "ParamCount" for the Dataset and the one [Count] column for the Value field.
    4) Change the parameter for the main report DataSet so that instead of using [@MyParam], it uses this expression:
    =IIF(Parameters!MyParam.Count =
    Parameters!ParamCount.Value, Nothing, Join(Parameters!MyParam.Value, ","))

  • SSRS using multiple select parameter in expression

    Hi,
    I am using parameters to create my query at runtime using data set expression.
    I have a multi select string parameter that gets populated using a query. I want to add this multi select parameter values to where clause in expression of mail data set. I am able to join the string and make it comma(,) separated but not sure how can I
    add single quotes(') to it.
    = join(Parameters!Column.Value,",")===>>a,b,c,d
    requirement===>'a','b' ,'c'
    Pls. guide

    make it like this
    = "'" & join(Parameters!Column.Value,"','") & "'"
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • SSRS report with tabular model - MDX query to filter parameter data based on Tuple value.

    Hello Everyone,
    I am working on SSRS report in which a tabular model is being used as a backend.
    I want to filter the report parameters which are dependent to other parameters. Like, country, state, and cities drop downs.
    All are multi-select parameters. I am using MDX queries to filter the parameters data.
    Based on selected one or more countries, the data of states needs to be filtered.
    The point is the text which is being displayed in state dropdown for each state name is combination of 3 different members.
    So, I created the following Tuple for the same and can see the expected display names in states dropdown.
    "("+
    [Location].[Code 1].CURRENTMEMBER.UNIQUENAME +","+
    [Location].[Code 2].CURRENTMEMBER.UNIQUENAME +","+
    [Location].[Descr].CURRENTMEMBER.UNIQUENAME +")"
    Now, when I would like filter the cities data based on selected one or more states, I am unable to pass the multiple Tuples (more than one selected Tuples) as parameter for cities dropdown.
    The following is my query for City parameter. It is working well when I select only one State from the dropdown.
    However, when I select multiple states, it is unable to convert the Tuple into SET in ELSE part of IIF condition specified in following query.
    Can anybody help me how to resolve the error that I am getting about STRTOSET function?
    Or
    Are there any other alternatives to achieve this requirement?
    Any help would be much appreciated.
    Query:
    WITH MEMBER [Measures].[ParameterCaption] AS [City].[City Business].CURRENTMEMBER.MEMBER_CAPTION
    MEMBER [Measures].[ParameterValue] AS [City].[City Business].CURRENTMEMBER.UNIQUENAME
    MEMBER [Measures].[ParameterLevel] AS [City].[City Business].CURRENTMEMBER.LEVEL.ORDINAL
    SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue], [Measures].[ParameterLevel]} ON COLUMNS ,
    [City].[City Business].Children ON ROWS
    FROM (
    SELECT ( STRTOSET(@State, CONSTRAINED) ) ON COLUMNS FROM [Model])
    WHERE ( IIF( STRTOSET(@State).Count= 1,
    STRTOTUPLE(@State, CONSTRAINED),
    STRTOSET("{
    ("+
    [Location].[Code 1].CURRENTMEMBER.UNIQUENAME +","+
    [Location].[Code 2].CURRENTMEMBER.UNIQUENAME +","+
    [Location].[Descr].CURRENTMEMBER.UNIQUENAME
    + ")
    }",CONSTRAINED )) ) CELL PROPERTIES VALUE
    Thanks, Ankit Shah
    Inkey Solutions, India.
    Microsoft Certified Business Management Solutions Professionals
    http://www.inkeysolutions.com/MicrosoftDynamicsCRM.html

    Hi,
    I used following dynamic query in expression of dataset of parameter and it works like a charm.
    "WITH MEMBER [Measures].[ParameterCaption] AS [City].[City Business].CURRENTMEMBER.MEMBER_CAPTION "&
    "MEMBER [Measures].[ParameterValue] AS [City].[City Business].CURRENTMEMBER.UNIQUENAME "&
    "MEMBER [Measures].[ParameterLevel] AS [City].[City Business].CURRENTMEMBER.LEVEL.ORDINAL "&
    "SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue], [Measures].[ParameterLevel]} ON COLUMNS , " &
    "[City].[City Business].Children ON ROWS " &
    " FROM [Model] WHERE ({"& join(Parameters!Location.Value,",") &"}) CELL PROPERTIES VALUE"
    Thanks, Ankit Shah
    Inkey Solutions, India.
    Microsoft Certified Business Management Solutions Professionals
    http://www.inkeysolutions.com/MicrosoftDynamicsCRM.html

  • Selecting open items in F-03 using additional selections

    I need to select open items in a GL account using more than one additional selection eg. document type, posting date, assignment
    I select Additional Selections then document type then add a document type, then I select Other Selection - posting date and then Process Open Items. Only the first selection for document type is recognised.
    Is this a bug?
    Edited by: Richard Somerset on Jan 7, 2009 5:14 PM

    However SAP help suggest that this can be done
    Searching for Open Items  
    Use
    After you have entered an account with open items, you can search for specific open items to be cleared.
    On the screen for selecting open items, you can search for specific open items to be cleared using the following additional selection fields:
    Gross amount
    Document number
    Posting date
    Other fields depending on the system configuration
    Procedure
    To search for open items using the additional selection criteria, proceed as follows:
    Choose one of these fields, such as Posting date, then choose Execute.
    The screen for entering selection criteria appears.
    Enter one or more single values or ranges within the selection, such as 01/01/1993 through 01/31/1993 for a range of posting dates.
    To search for specific open items by other criteria (optional), choose Edit ® Select more.
    Repeat steps 1 and 2 for the other selection criteria.
    After you enter your selection criteria, you have the following options:
    Display the list of open items by choosing Goto ® Open items.
    Display the clearing document header and the items entered so far by choosing Goto ® Doc. Overview.
    Post the clearing document by choosing Document ® Post
    Edited by: Richard Somerset on Jan 8, 2009 9:05 AM

Maybe you are looking for

  • Freight charges borne by the company

    Dear All, Issue is regarding the freight charges borne by the company. As we treat freight forwarder as vendor, and enter vendor at sales order level. However, how to make the posting of this freight charges to vendor reconciliation account. If any i

  • Publishing in Adobe Air Marketplace

    Hello everyone, I posted an offering on Air Marketplace and 24 days later  it's still showing as "Approved Pending" and not appearing in searches. Sent 2 emails to [email protected] - no answer. I'm puzzled at this lack of feedback. Has anyone here h

  • Why odd behaviour with these sites?

    Hi. I'm on Tiger 10.4.9 and Safari 2.0.4 (419.3). I've noticed that I get a blank screen when trying to view the "View all ads" link in the apple.com "Get a Mac" section. The tab reads "ads.gif 1x1 pixels" and the page is blank. Anyone know what's go

  • Hallo can´t find my ultrabeat anymore.. what´s happened where can i find it??

    Hallo can´t find my ultrabeat anymore.. what´s happened where can i find it??

  • MBP won't connect to Internet after sleeping

    Last night I woke up my MBP (2.2Ghz, 2GB RAM, OS X v10.5.6) and it wouldn't connect to the Internet. I thought it was a problem w/ the network itself and confirmed it by testing another computer. However, when the network connection was restored on t